2025-06-05T23:49:10.4336303Z Current runner version: '2.325.0' 2025-06-05T23:49:10.4344304Z Runner name: 'i-035e150fbe1784c84' 2025-06-05T23:49:10.4345646Z Machine name: 'ip-10-0-56-141' 2025-06-05T23:49:10.4349503Z ##[group]GITHUB_TOKEN Permissions 2025-06-05T23:49:10.4352514Z Contents: read 2025-06-05T23:49:10.4353481Z Metadata: read 2025-06-05T23:49:10.4354284Z ##[endgroup] 2025-06-05T23:49:10.4356918Z Secret source: Actions 2025-06-05T23:49:10.4358201Z Prepare workflow directory 2025-06-05T23:49:10.5017428Z Prepare all required actions 2025-06-05T23:49:10.5063048Z Getting action download info 2025-06-05T23:49:10.7498103Z Download action repository 'actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683' (SHA:11bd71901bbe5b1630ceea73d27597364c9af683) 2025-06-05T23:49:11.0327645Z Download action repository 'pytorch/pytorch@9c1bc9ce4684de96db025292610c0664d3d55345' (SHA:9c1bc9ce4684de96db025292610c0664d3d55345) 2025-06-05T23:49:24.3255149Z Download action repository 'actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093' (SHA:d3f86a106a0bac45b974a628896c90dbdf5c8093) 2025-06-05T23:49:24.6409466Z Download action repository 'pmeier/pytest-results-action@a2c1430e2bddadbad9f49a6f9b879f062c6b19b1' (SHA:a2c1430e2bddadbad9f49a6f9b879f062c6b19b1) 2025-06-05T23:49:24.7395818Z Download action repository 'actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02' (SHA:ea165f8d65b6e75b540449e92b4886f43607fa02) 2025-06-05T23:49:25.1401251Z Download action repository 'seemethere/upload-artifact-s3@baba72d0712b404f646cebe0730933554ebce96a' (SHA:baba72d0712b404f646cebe0730933554ebce96a) 2025-06-05T23:49:25.4270905Z Getting action download info 2025-06-05T23:49:25.5094856Z Download action repository 'pytorch/pytorch@main' (SHA:28796f71d04302029290f473a286efc2aba339c2) 2025-06-05T23:49:28.7925036Z Complete job name: test-huggingface-transformers (google/gemma-3-1b-it) / linux-job 2025-06-05T23:49:28.8420544Z A job started hook has been configured by the self-hosted runner administrator 2025-06-05T23:49:28.8535699Z ##[group]Run '/home/ec2-user/runner-scripts/before_job.sh' 2025-06-05T23:49:28.8546073Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:49:28.8546888Z ##[endgroup] 2025-06-05T23:49:30.3550513Z Runner Type: linux.2xlarge.memory 2025-06-05T23:49:30.3551215Z Instance Type: r5.2xlarge 2025-06-05T23:49:30.3551597Z AMI Name: unknown 2025-06-05T23:49:30.3576868Z AMI ID: ami-071226ecf16aa7d96 2025-06-05T23:49:36.5349986Z ##[group]Run set -euxo pipefail 2025-06-05T23:49:36.5350526Z set -euxo pipefail 2025-06-05T23:49:36.5350969Z if [[ "${NO_SUDO}" == "false" ]]; then 2025-06-05T23:49:36.5351498Z  echo "::group::Cleanup with-sudo debug output" 2025-06-05T23:49:36.5352041Z  sudo rm -rfv "${GITHUB_WORKSPACE}" 2025-06-05T23:49:36.5352477Z else 2025-06-05T23:49:36.5352868Z  echo "::group::Cleanup no-sudo debug output" 2025-06-05T23:49:36.5353363Z  rm -rfv "${GITHUB_WORKSPACE}" 2025-06-05T23:49:36.5353785Z fi 2025-06-05T23:49:36.5354097Z  2025-06-05T23:49:36.5354429Z mkdir -p "${GITHUB_WORKSPACE}" 2025-06-05T23:49:36.5354860Z echo "::endgroup::" 2025-06-05T23:49:36.5366052Z shell: /usr/bin/bash -e {0} 2025-06-05T23:49:36.5366476Z env: 2025-06-05T23:49:36.5366862Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:49:36.5367396Z REPOSITORY: pytorch/executorch 2025-06-05T23:49:36.5367868Z PR_NUMBER: 2025-06-05T23:49:36.5382948Z 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 [ "google/gemma-3-1b-it" == "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="google/gemma-3-1b-it" 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:36.5399011Z NO_SUDO: false 2025-06-05T23:49:36.5399338Z ##[endgroup] 2025-06-05T23:49:36.5431343Z + [[ false == \f\a\l\s\e ]] 2025-06-05T23:49:36.5443446Z + echo '::group::Cleanup with-sudo debug output' 2025-06-05T23:49:36.5444132Z + sudo rm -rfv /home/ec2-user/actions-runner/_work/executorch/executorch 2025-06-05T23:49:36.5451518Z ##[group]Cleanup with-sudo debug output 2025-06-05T23:49:36.6640317Z removed directory '/home/ec2-user/actions-runner/_work/executorch/executorch' 2025-06-05T23:49:36.6657667Z + mkdir -p /home/ec2-user/actions-runner/_work/executorch/executorch 2025-06-05T23:49:36.6670017Z + echo ::endgroup:: 2025-06-05T23:49:36.6671138Z ##[endgroup] 2025-06-05T23:49:36.6825208Z ##[group]Run actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 2025-06-05T23:49:36.6825816Z with: 2025-06-05T23:49:36.6826160Z repository: pytorch/test-infra 2025-06-05T23:49:36.6826619Z path: test-infra 2025-06-05T23:49:36.6826988Z submodules: recursive 2025-06-05T23:49:36.6827818Z token: *** 2025-06-05T23:49:36.6828135Z ssh-strict: true 2025-06-05T23:49:36.6828459Z ssh-user: git 2025-06-05T23:49:36.6828805Z persist-credentials: true 2025-06-05T23:49:36.6829175Z clean: true 2025-06-05T23:49:36.6829522Z sparse-checkout-cone-mode: true 2025-06-05T23:49:36.6829920Z fetch-depth: 1 2025-06-05T23:49:36.6830245Z fetch-tags: false 2025-06-05T23:49:36.6830567Z show-progress: true 2025-06-05T23:49:36.6830905Z lfs: false 2025-06-05T23:49:36.6831212Z set-safe-directory: true 2025-06-05T23:49:36.6831573Z env: 2025-06-05T23:49:36.6832177Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:49:36.6832672Z REPOSITORY: pytorch/executorch 2025-06-05T23:49:36.6833122Z PR_NUMBER: 2025-06-05T23:49:36.6848109Z 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 [ "google/gemma-3-1b-it" == "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="google/gemma-3-1b-it" 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:36.6873500Z ##[endgroup] 2025-06-05T23:49:36.8187461Z Syncing repository: pytorch/test-infra 2025-06-05T23:49:36.8189069Z ##[group]Getting Git version info 2025-06-05T23:49:36.8190353Z Working directory is '/home/ec2-user/actions-runner/_work/executorch/executorch/test-infra' 2025-06-05T23:49:36.8192108Z [command]/usr/bin/git version 2025-06-05T23:49:36.8192759Z git version 2.47.1 2025-06-05T23:49:36.8212369Z ##[endgroup] 2025-06-05T23:49:36.8229011Z Temporarily overriding HOME='/home/ec2-user/actions-runner/_work/_temp/955797bb-c7fc-428c-a52a-13aa6aeb3c0d' before making global git config changes 2025-06-05T23:49:36.8231408Z Adding repository directory to the temporary git global config as a safe directory 2025-06-05T23:49:36.8236631Z [command]/usr/bin/git config --global --add safe.directory /home/ec2-user/actions-runner/_work/executorch/executorch/test-infra 2025-06-05T23:49:36.8267999Z ##[group]Initializing the repository 2025-06-05T23:49:36.8273948Z [command]/usr/bin/git init /home/ec2-user/actions-runner/_work/executorch/executorch/test-infra 2025-06-05T23:49:36.8306211Z hint: Using 'master' as the name for the initial branch. This default branch name 2025-06-05T23:49:36.8307607Z hint: is subject to change. To configure the initial branch name to use in all 2025-06-05T23:49:36.8309030Z hint: of your new repositories, which will suppress this warning, call: 2025-06-05T23:49:36.8310064Z hint: 2025-06-05T23:49:36.8310739Z hint: git config --global init.defaultBranch 2025-06-05T23:49:36.8311566Z hint: 2025-06-05T23:49:36.8312335Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and 2025-06-05T23:49:36.8313616Z hint: 'development'. The just-created branch can be renamed via this command: 2025-06-05T23:49:36.8314603Z hint: 2025-06-05T23:49:36.8315174Z hint: git branch -m 2025-06-05T23:49:36.8316568Z Initialized empty Git repository in /home/ec2-user/actions-runner/_work/executorch/executorch/test-infra/.git/ 2025-06-05T23:49:36.8321365Z [command]/usr/bin/git remote add origin https://github.com/pytorch/test-infra 2025-06-05T23:49:36.8348080Z ##[endgroup] 2025-06-05T23:49:36.8349111Z ##[group]Disabling automatic garbage collection 2025-06-05T23:49:36.8353976Z [command]/usr/bin/git config --local gc.auto 0 2025-06-05T23:49:36.8381876Z ##[endgroup] 2025-06-05T23:49:36.8382867Z ##[group]Setting up auth 2025-06-05T23:49:36.8389632Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2025-06-05T23:49:36.8417572Z [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:36.8711927Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-06-05T23:49:36.8738130Z [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:36.9017897Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** 2025-06-05T23:49:36.9060136Z ##[endgroup] 2025-06-05T23:49:36.9060862Z ##[group]Determining the default branch 2025-06-05T23:49:36.9063541Z Retrieving the default branch name 2025-06-05T23:49:37.1096555Z Default branch 'main' 2025-06-05T23:49:37.1097468Z ##[endgroup] 2025-06-05T23:49:37.1098078Z ##[group]Fetching the repository 2025-06-05T23:49:37.1102876Z [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:37.4631643Z From https://github.com/pytorch/test-infra 2025-06-05T23:49:37.4632239Z * [new branch] main -> origin/main 2025-06-05T23:49:37.4654262Z ##[endgroup] 2025-06-05T23:49:37.4654849Z ##[group]Determining the checkout info 2025-06-05T23:49:37.4656372Z ##[endgroup] 2025-06-05T23:49:37.4661409Z [command]/usr/bin/git sparse-checkout disable 2025-06-05T23:49:37.4695251Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig 2025-06-05T23:49:37.4720571Z ##[group]Checking out the ref 2025-06-05T23:49:37.4724584Z [command]/usr/bin/git checkout --progress --force -B main refs/remotes/origin/main 2025-06-05T23:49:37.5677552Z Switched to a new branch 'main' 2025-06-05T23:49:37.5678395Z branch 'main' set up to track 'origin/main'. 2025-06-05T23:49:37.5686049Z ##[endgroup] 2025-06-05T23:49:37.5686655Z ##[group]Setting up auth for fetching submodules 2025-06-05T23:49:37.5692470Z [command]/usr/bin/git config --global http.https://github.com/.extraheader AUTHORIZATION: basic *** 2025-06-05T23:49:37.5739250Z [command]/usr/bin/git config --global --unset-all url.https://github.com/.insteadOf 2025-06-05T23:49:37.5769222Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf git@github.com: 2025-06-05T23:49:37.5798669Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf org-21003710@github.com: 2025-06-05T23:49:37.5823115Z ##[endgroup] 2025-06-05T23:49:37.5823669Z ##[group]Fetching submodules 2025-06-05T23:49:37.5827429Z [command]/usr/bin/git submodule sync --recursive 2025-06-05T23:49:37.6112010Z [command]/usr/bin/git -c protocol.version=2 submodule update --init --force --depth=1 --recursive 2025-06-05T23:49:37.6395406Z [command]/usr/bin/git submodule foreach --recursive git config --local gc.auto 0 2025-06-05T23:49:37.6676767Z ##[endgroup] 2025-06-05T23:49:37.6677411Z ##[group]Persisting credentials for submodules 2025-06-05T23:49:37.6682901Z [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:37.6961485Z [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:37.7246073Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'git@github.com:' 2025-06-05T23:49:37.7529054Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'org-21003710@github.com:' 2025-06-05T23:49:37.7805182Z ##[endgroup] 2025-06-05T23:49:37.7840028Z [command]/usr/bin/git log -1 --format=%H 2025-06-05T23:49:37.7861844Z e339ed56a2ad5e0f901a4edc5e1d5770100696d3 2025-06-05T23:49:37.8060105Z Prepare all required actions 2025-06-05T23:49:37.8060740Z Getting action download info 2025-06-05T23:49:37.8907049Z Download action repository 'pytorch/test-infra@main' (SHA:e339ed56a2ad5e0f901a4edc5e1d5770100696d3) 2025-06-05T23:49:39.3868405Z Getting action download info 2025-06-05T23:49:39.4809762Z Download action repository 'nick-fields/retry@3e91a01664abd3c5cd539100d10d33b9c5b68482' (SHA:3e91a01664abd3c5cd539100d10d33b9c5b68482) 2025-06-05T23:49:39.6504927Z ##[group]Run ./test-infra/.github/actions/setup-linux 2025-06-05T23:49:39.6505412Z env: 2025-06-05T23:49:39.6505776Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:49:39.6506257Z REPOSITORY: pytorch/executorch 2025-06-05T23:49:39.6506669Z PR_NUMBER: 2025-06-05T23:49:39.6521318Z 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 [ "google/gemma-3-1b-it" == "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="google/gemma-3-1b-it" 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:39.6536358Z ##[endgroup] 2025-06-05T23:49:39.6633319Z ##[group]Run set -euo pipefail 2025-06-05T23:49:39.6633772Z set -euo pipefail 2025-06-05T23:49:39.6634352Z function get_ec2_metadata() { 2025-06-05T23:49:39.6634870Z  # Pulled from instance metadata endpoint for EC2 2025-06-05T23:49:39.6635700Z  # see https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-data-retrieval.html 2025-06-05T23:49:39.6636465Z  category=$1 2025-06-05T23:49:39.6637623Z  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:39.6638830Z } 2025-06-05T23:49:39.6639190Z echo "ami-id: $(get_ec2_metadata ami-id)" 2025-06-05T23:49:39.6639768Z echo "instance-id: $(get_ec2_metadata instance-id)" 2025-06-05T23:49:39.6640400Z echo "instance-type: $(get_ec2_metadata instance-type)" 2025-06-05T23:49:39.6640960Z echo "system info $(uname -a)" 2025-06-05T23:49:39.6647570Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:49:39.6673751Z env: 2025-06-05T23:49:39.6674189Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:49:39.6674696Z REPOSITORY: pytorch/executorch 2025-06-05T23:49:39.6675079Z PR_NUMBER: 2025-06-05T23:49:39.6690030Z 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 [ "google/gemma-3-1b-it" == "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="google/gemma-3-1b-it" 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:39.6705006Z ##[endgroup] 2025-06-05T23:49:39.6849394Z ami-id: ami-071226ecf16aa7d96 2025-06-05T23:49:39.6948932Z instance-id: i-035e150fbe1784c84 2025-06-05T23:49:39.7048114Z instance-type: r5.2xlarge 2025-06-05T23:49:39.7059029Z system info Linux ip-10-0-56-141.ec2.internal 6.1.130-139.222.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Mar 11 01:10:58 UTC 2025 x86_64 x86_64 x86_64 GNU/Linux 2025-06-05T23:49:39.7099378Z ##[group]Run echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-06-05T23:49:39.7100596Z echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-06-05T23:49:39.7107437Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:49:39.7108061Z env: 2025-06-05T23:49:39.7108409Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:49:39.7108912Z REPOSITORY: pytorch/executorch 2025-06-05T23:49:39.7109313Z PR_NUMBER: 2025-06-05T23:49:39.7123944Z 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 [ "google/gemma-3-1b-it" == "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="google/gemma-3-1b-it" 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:39.7138873Z ##[endgroup] 2025-06-05T23:49:39.7222952Z ##[group]Run if systemctl is-active --quiet docker; then 2025-06-05T23:49:39.7223550Z if systemctl is-active --quiet docker; then 2025-06-05T23:49:39.7224057Z  echo "Docker daemon is running..."; 2025-06-05T23:49:39.7224503Z else 2025-06-05T23:49:39.7224969Z  echo "Starting docker deamon..." && sudo systemctl start docker; 2025-06-05T23:49:39.7225538Z fi 2025-06-05T23:49:39.7231807Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:49:39.7232309Z env: 2025-06-05T23:49:39.7232685Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:49:39.7233163Z REPOSITORY: pytorch/executorch 2025-06-05T23:49:39.7233562Z PR_NUMBER: 2025-06-05T23:49:39.7248308Z 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 [ "google/gemma-3-1b-it" == "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="google/gemma-3-1b-it" 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:39.7263344Z ##[endgroup] 2025-06-05T23:49:39.7345532Z Docker daemon is running... 2025-06-05T23:49:39.7378652Z ##[group]Run AWS_ACCOUNT_ID=$(aws sts get-caller-identity|grep Account|cut -f4 -d\") 2025-06-05T23:49:39.7379493Z AWS_ACCOUNT_ID=$(aws sts get-caller-identity|grep Account|cut -f4 -d\") 2025-06-05T23:49:39.7380175Z retry () { "$@" || (sleep 1 && "$@") || (sleep 2 && "$@") } 2025-06-05T23:49:39.7380986Z retry aws ecr get-login-password --region "$AWS_DEFAULT_REGION" | docker login --username AWS \ 2025-06-05T23:49:39.7381927Z  --password-stdin "$AWS_ACCOUNT_ID.dkr.ecr.$AWS_DEFAULT_REGION.amazonaws.com" 2025-06-05T23:49:39.7388734Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:49:39.7389225Z env: 2025-06-05T23:49:39.7389602Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:49:39.7390083Z REPOSITORY: pytorch/executorch 2025-06-05T23:49:39.7390466Z PR_NUMBER: 2025-06-05T23:49:39.7405074Z 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 [ "google/gemma-3-1b-it" == "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="google/gemma-3-1b-it" 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:39.7420081Z AWS_RETRY_MODE: standard 2025-06-05T23:49:39.7420448Z AWS_MAX_ATTEMPTS: 5 2025-06-05T23:49:39.7420808Z AWS_DEFAULT_REGION: us-east-1 2025-06-05T23:49:39.7421180Z ##[endgroup] 2025-06-05T23:49:40.8791739Z WARNING! Your password will be stored unencrypted in /home/ec2-user/.docker/config.json. 2025-06-05T23:49:40.8792998Z Configure a credential helper to remove this warning. See 2025-06-05T23:49:40.8794042Z https://docs.docker.com/engine/reference/commandline/login/#credentials-store 2025-06-05T23:49:40.8794620Z 2025-06-05T23:49:40.8794769Z Login Succeeded 2025-06-05T23:49:40.8983745Z ##[group]Run env | grep '^GITHUB' >> "${RUNNER_TEMP}/github_env_${GITHUB_RUN_ID}" 2025-06-05T23:49:40.8984540Z env | grep '^GITHUB' >> "${RUNNER_TEMP}/github_env_${GITHUB_RUN_ID}" 2025-06-05T23:49:40.8985532Z env | grep '^CI' >> "${RUNNER_TEMP}/github_env_${GITHUB_RUN_ID}" 2025-06-05T23:49:40.8992439Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:49:40.8992960Z env: 2025-06-05T23:49:40.8993310Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:49:40.8993820Z REPOSITORY: pytorch/executorch 2025-06-05T23:49:40.8994211Z PR_NUMBER: 2025-06-05T23:49:40.9009036Z 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 [ "google/gemma-3-1b-it" == "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="google/gemma-3-1b-it" export OUTPUT_DIR="$(pwd)/${MODEL_ID}_custom_sdpa_8da4w" pushd optimum-executorch optimum-cli export executorch \ --model ${MODEL_ID} \ --task text-generation \ --recipe xnnpack \ --use_custom_sdpa \ --output_dir ${OUTPUT_DIR} \ --qlinear ls -FlAGhp ${OUTPUT_DIR} popd echo "::endgroup::" echo "::group::Inference using python API" pushd optimum-executorch python -c " import os from optimum.executorch import ExecuTorchModelForCausalLM from transformers import AutoTokenizer model_id = os.getenv('MODEL_ID') pte_dir = os.getenv('OUTPUT_DIR') print(f'Loading model {model_id} from {pte_dir}.') model = ExecuTorchModelForCausalLM.from_pretrained(pte_dir) generated_text = model.text_generation( tokenizer=AutoTokenizer.from_pretrained(model_id), prompt='Simply put, the theory of relativity states that', max_seq_len=64 ) print(generated_text) " popd echo "::endgroup::" echo "::group::Inference using executor_runner with ETDump" ./cmake-out/executor_runner \ --model_path ${OUTPUT_DIR}/model.pte \ --etdump_path ${OUTPUT_DIR}/etdump.etdp export TSV_PATH=artifacts-to-be-uploaded/${MODEL_ID}_op_prof.tsv mkdir -p $(dirname "$TSV_PATH") python3 -m devtools.inspector.inspector_cli \ --etdump_path ${OUTPUT_DIR}/etdump.etdp \ --tsv_path ${TSV_PATH} echo "::endgroup::" 2025-06-05T23:49:40.9023962Z ##[endgroup] 2025-06-05T23:49:40.9119065Z ##[group]Run RUNNER_ARTIFACT_DIR="${RUNNER_TEMP}/artifacts" 2025-06-05T23:49:40.9119710Z RUNNER_ARTIFACT_DIR="${RUNNER_TEMP}/artifacts" 2025-06-05T23:49:40.9120242Z sudo rm -rf "${RUNNER_ARTIFACT_DIR}" 2025-06-05T23:49:40.9120736Z mkdir -p "${RUNNER_ARTIFACT_DIR}" 2025-06-05T23:49:40.9121332Z echo "RUNNER_ARTIFACT_DIR=${RUNNER_ARTIFACT_DIR}" >> "${GITHUB_ENV}" 2025-06-05T23:49:40.9121914Z  2025-06-05T23:49:40.9122331Z RUNNER_TEST_RESULTS_DIR="${RUNNER_TEMP}/test-results" 2025-06-05T23:49:40.9122907Z sudo rm -rf "${RUNNER_TEST_RESULTS_DIR}" 2025-06-05T23:49:40.9123399Z mkdir -p "${RUNNER_TEST_RESULTS_DIR}" 2025-06-05T23:49:40.9124045Z echo "RUNNER_TEST_RESULTS_DIR=${RUNNER_TEST_RESULTS_DIR}" >> "${GITHUB_ENV}" 2025-06-05T23:49:40.9124653Z  2025-06-05T23:49:40.9124992Z RUNNER_DOCS_DIR="${RUNNER_TEMP}/docs" 2025-06-05T23:49:40.9125451Z sudo rm -rf "${RUNNER_DOCS_DIR}" 2025-06-05T23:49:40.9125901Z mkdir -p "${RUNNER_DOCS_DIR}" 2025-06-05T23:49:40.9126438Z echo "RUNNER_DOCS_DIR=${RUNNER_DOCS_DIR}" >> "${GITHUB_ENV}" 2025-06-05T23:49:40.9132709Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:49:40.9133208Z env: 2025-06-05T23:49:40.9133555Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:49:40.9134048Z REPOSITORY: pytorch/executorch 2025-06-05T23:49:40.9134431Z PR_NUMBER: 2025-06-05T23:49:40.9149172Z 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 [ "google/gemma-3-1b-it" == "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="google/gemma-3-1b-it" export OUTPUT_DIR="$(pwd)/${MODEL_ID}_custom_sdpa_8da4w" pushd optimum-executorch optimum-cli export executorch \ --model ${MODEL_ID} \ --task text-generation \ --recipe xnnpack \ --use_custom_sdpa \ --output_dir ${OUTPUT_DIR} \ --qlinear ls -FlAGhp ${OUTPUT_DIR} popd echo "::endgroup::" echo "::group::Inference using python API" pushd optimum-executorch python -c " import os from optimum.executorch import ExecuTorchModelForCausalLM from transformers import AutoTokenizer model_id = os.getenv('MODEL_ID') pte_dir = os.getenv('OUTPUT_DIR') print(f'Loading model {model_id} from {pte_dir}.') model = ExecuTorchModelForCausalLM.from_pretrained(pte_dir) generated_text = model.text_generation( tokenizer=AutoTokenizer.from_pretrained(model_id), prompt='Simply put, the theory of relativity states that', max_seq_len=64 ) print(generated_text) " popd echo "::endgroup::" echo "::group::Inference using executor_runner with ETDump" ./cmake-out/executor_runner \ --model_path ${OUTPUT_DIR}/model.pte \ --etdump_path ${OUTPUT_DIR}/etdump.etdp export TSV_PATH=artifacts-to-be-uploaded/${MODEL_ID}_op_prof.tsv mkdir -p $(dirname "$TSV_PATH") python3 -m devtools.inspector.inspector_cli \ --etdump_path ${OUTPUT_DIR}/etdump.etdp \ --tsv_path ${TSV_PATH} echo "::endgroup::" 2025-06-05T23:49:40.9164122Z ##[endgroup] 2025-06-05T23:49:41.4704865Z ##[group]Run needs=0 2025-06-05T23:49:41.4705256Z needs=0 2025-06-05T23:49:41.4705749Z if lspci -v | grep -e 'controller.*NVIDIA' >/dev/null 2>/dev/null; then 2025-06-05T23:49:41.4706368Z  needs=1 2025-06-05T23:49:41.4706687Z fi 2025-06-05T23:49:41.4707030Z echo "does=${needs}" >> $GITHUB_OUTPUT 2025-06-05T23:49:41.4713996Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:49:41.4714506Z env: 2025-06-05T23:49:41.4714871Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:49:41.4715357Z REPOSITORY: pytorch/executorch 2025-06-05T23:49:41.4715761Z PR_NUMBER: 2025-06-05T23:49:41.4730610Z 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 [ "google/gemma-3-1b-it" == "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="google/gemma-3-1b-it" 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:41.4745723Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:49:41.4746494Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:49:41.4747240Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:49:41.4747828Z ##[endgroup] 2025-06-05T23:49:41.5017193Z ##[group]Run # ignore expansion of "docker ps -q" since it could be empty 2025-06-05T23:49:41.5017974Z # ignore expansion of "docker ps -q" since it could be empty 2025-06-05T23:49:41.5018561Z # shellcheck disable=SC2046 2025-06-05T23:49:41.5019027Z docker stop $(docker ps -q) || true 2025-06-05T23:49:41.5019488Z # Prune all of the docker images 2025-06-05T23:49:41.5019940Z docker system prune -af 2025-06-05T23:49:41.5027192Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:49:41.5027774Z env: 2025-06-05T23:49:41.5028140Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:49:41.5028618Z REPOSITORY: pytorch/executorch 2025-06-05T23:49:41.5029023Z PR_NUMBER: 2025-06-05T23:49:41.5043689Z 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 [ "google/gemma-3-1b-it" == "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="google/gemma-3-1b-it" 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:41.5058812Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:49:41.5059588Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:49:41.5060326Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:49:41.5060847Z ##[endgroup] 2025-06-05T23:49:41.5323600Z "docker stop" requires at least 1 argument. 2025-06-05T23:49:41.5324151Z See 'docker stop --help'. 2025-06-05T23:49:41.5324403Z 2025-06-05T23:49:41.5324626Z Usage: docker stop [OPTIONS] CONTAINER [CONTAINER...] 2025-06-05T23:49:41.5325013Z 2025-06-05T23:49:41.5325176Z Stop one or more running containers 2025-06-05T23:49:41.5504018Z Total reclaimed space: 0B 2025-06-05T23:49:41.5588691Z ##[group]Run ./test-infra/.github/actions/setup-ssh 2025-06-05T23:49:41.5589522Z with: 2025-06-05T23:49:41.5590492Z github-secret: *** 2025-06-05T23:49:41.5591873Z 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:41.5593773Z activate-with-label: false 2025-06-05T23:49:41.5594358Z label: with-ssh 2025-06-05T23:49:41.5594829Z remove-existing-keys: true 2025-06-05T23:49:41.5595401Z fail-silently: true 2025-06-05T23:49:41.5595991Z env: 2025-06-05T23:49:41.5596915Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:49:41.5597750Z REPOSITORY: pytorch/executorch 2025-06-05T23:49:41.5598276Z PR_NUMBER: 2025-06-05T23:49:41.5612850Z 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 [ "google/gemma-3-1b-it" == "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="google/gemma-3-1b-it" 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:41.5627988Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:49:41.5628913Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:49:41.5629660Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:49:41.5630184Z ##[endgroup] 2025-06-05T23:49:41.6830697Z Please see https://github.com/pytorch/pytorch/wiki/Debugging-using-with-ssh-for-Github-Actions for more info. 2025-06-05T23:49:41.6832268Z Not on pull request and ciflow reference could not be extracted, skipping adding ssh keys 2025-06-05T23:49:41.6989573Z ##[group]Run actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 2025-06-05T23:49:41.6990135Z with: 2025-06-05T23:49:41.6990460Z repository: pytorch/executorch 2025-06-05T23:49:41.6991055Z ref: bd572346e4f196b36aaa03a1645d12b1618fe88b 2025-06-05T23:49:41.6991521Z path: pytorch/executorch 2025-06-05T23:49:41.6991882Z fetch-depth: 1 2025-06-05T23:49:41.6992218Z submodules: recursive 2025-06-05T23:49:41.6992752Z token: *** 2025-06-05T23:49:41.6993066Z ssh-strict: true 2025-06-05T23:49:41.6993400Z ssh-user: git 2025-06-05T23:49:41.6993797Z persist-credentials: true 2025-06-05T23:49:41.6994154Z clean: true 2025-06-05T23:49:41.6994495Z sparse-checkout-cone-mode: true 2025-06-05T23:49:41.6994892Z fetch-tags: false 2025-06-05T23:49:41.6995225Z show-progress: true 2025-06-05T23:49:41.6995550Z lfs: false 2025-06-05T23:49:41.6995877Z set-safe-directory: true 2025-06-05T23:49:41.6996220Z env: 2025-06-05T23:49:41.6996625Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:49:41.6997093Z REPOSITORY: pytorch/executorch 2025-06-05T23:49:41.6997483Z PR_NUMBER: 2025-06-05T23:49:41.7012344Z 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 [ "google/gemma-3-1b-it" == "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="google/gemma-3-1b-it" 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:41.7027506Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:49:41.7028351Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:49:41.7029085Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:49:41.7029599Z ##[endgroup] 2025-06-05T23:49:41.8106675Z Syncing repository: pytorch/executorch 2025-06-05T23:49:41.8115895Z ##[group]Getting Git version info 2025-06-05T23:49:41.8116747Z Working directory is '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch' 2025-06-05T23:49:41.8145923Z [command]/usr/bin/git version 2025-06-05T23:49:41.8184118Z git version 2.47.1 2025-06-05T23:49:41.8212388Z ##[endgroup] 2025-06-05T23:49:41.8225518Z Temporarily overriding HOME='/home/ec2-user/actions-runner/_work/_temp/a6de317c-8c55-42f1-878b-3e37cfe8269a' before making global git config changes 2025-06-05T23:49:41.8226891Z Adding repository directory to the temporary git global config as a safe directory 2025-06-05T23:49:41.8231471Z [command]/usr/bin/git config --global --add safe.directory /home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch 2025-06-05T23:49:41.8262229Z ##[group]Initializing the repository 2025-06-05T23:49:41.8267545Z [command]/usr/bin/git init /home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch 2025-06-05T23:49:41.8298794Z hint: Using 'master' as the name for the initial branch. This default branch name 2025-06-05T23:49:41.8299865Z hint: is subject to change. To configure the initial branch name to use in all 2025-06-05T23:49:41.8301075Z hint: of your new repositories, which will suppress this warning, call: 2025-06-05T23:49:41.8301675Z hint: 2025-06-05T23:49:41.8302046Z hint: git config --global init.defaultBranch 2025-06-05T23:49:41.8302565Z hint: 2025-06-05T23:49:41.8303014Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and 2025-06-05T23:49:41.8303819Z hint: 'development'. The just-created branch can be renamed via this command: 2025-06-05T23:49:41.8304730Z hint: 2025-06-05T23:49:41.8305207Z hint: git branch -m 2025-06-05T23:49:41.8306063Z Initialized empty Git repository in /home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/ 2025-06-05T23:49:41.8309728Z [command]/usr/bin/git remote add origin https://github.com/pytorch/executorch 2025-06-05T23:49:41.8336007Z ##[endgroup] 2025-06-05T23:49:41.8336582Z ##[group]Disabling automatic garbage collection 2025-06-05T23:49:41.8340661Z [command]/usr/bin/git config --local gc.auto 0 2025-06-05T23:49:41.8367280Z ##[endgroup] 2025-06-05T23:49:41.8367849Z ##[group]Setting up auth 2025-06-05T23:49:41.8373493Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2025-06-05T23:49:41.8400015Z [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:41.8675465Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-06-05T23:49:41.8701964Z [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:41.8977852Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** 2025-06-05T23:49:41.9019298Z ##[endgroup] 2025-06-05T23:49:41.9019958Z ##[group]Fetching the repository 2025-06-05T23:49:41.9027933Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin bd572346e4f196b36aaa03a1645d12b1618fe88b 2025-06-05T23:49:44.3245016Z From https://github.com/pytorch/executorch 2025-06-05T23:49:44.3245977Z * branch bd572346e4f196b36aaa03a1645d12b1618fe88b -> FETCH_HEAD 2025-06-05T23:49:44.3266829Z ##[endgroup] 2025-06-05T23:49:44.3267482Z ##[group]Determining the checkout info 2025-06-05T23:49:44.3269748Z ##[endgroup] 2025-06-05T23:49:44.3275423Z [command]/usr/bin/git sparse-checkout disable 2025-06-05T23:49:44.3311628Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig 2025-06-05T23:49:44.3337110Z ##[group]Checking out the ref 2025-06-05T23:49:44.3341047Z [command]/usr/bin/git checkout --progress --force bd572346e4f196b36aaa03a1645d12b1618fe88b 2025-06-05T23:49:44.8926368Z Note: switching to 'bd572346e4f196b36aaa03a1645d12b1618fe88b'. 2025-06-05T23:49:44.8926846Z 2025-06-05T23:49:44.8927172Z You are in 'detached HEAD' state. You can look around, make experimental 2025-06-05T23:49:44.8927960Z changes and commit them, and you can discard any commits you make in this 2025-06-05T23:49:44.8928777Z state without impacting any branches by switching back to a branch. 2025-06-05T23:49:44.8929247Z 2025-06-05T23:49:44.8929530Z If you want to create a new branch to retain commits you create, you may 2025-06-05T23:49:44.8930249Z do so (now or later) by using -c with the switch command. Example: 2025-06-05T23:49:44.8930686Z 2025-06-05T23:49:44.8930840Z git switch -c 2025-06-05T23:49:44.8931130Z 2025-06-05T23:49:44.8931291Z Or undo this operation with: 2025-06-05T23:49:44.8931553Z 2025-06-05T23:49:44.8931679Z git switch - 2025-06-05T23:49:44.8931868Z 2025-06-05T23:49:44.8932206Z Turn off this advice by setting config variable advice.detachedHead to false 2025-06-05T23:49:44.8932709Z 2025-06-05T23:49:44.8933090Z HEAD is now at bd57234 Qualcomm AI Engine Direct - QAIRT Visualizer Engagement (#10873) 2025-06-05T23:49:44.8955867Z ##[endgroup] 2025-06-05T23:49:44.8956474Z ##[group]Setting up auth for fetching submodules 2025-06-05T23:49:44.8962079Z [command]/usr/bin/git config --global http.https://github.com/.extraheader AUTHORIZATION: basic *** 2025-06-05T23:49:44.9011535Z [command]/usr/bin/git config --global --unset-all url.https://github.com/.insteadOf 2025-06-05T23:49:44.9037366Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf git@github.com: 2025-06-05T23:49:44.9065128Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf org-21003710@github.com: 2025-06-05T23:49:44.9087653Z ##[endgroup] 2025-06-05T23:49:44.9088308Z ##[group]Fetching submodules 2025-06-05T23:49:44.9091307Z [command]/usr/bin/git submodule sync --recursive 2025-06-05T23:49:44.9380060Z [command]/usr/bin/git -c protocol.version=2 submodule update --init --force --depth=1 --recursive 2025-06-05T23:49:44.9658492Z 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:44.9661774Z 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:44.9663689Z Submodule 'backends/cadence/utils/FACTO' (https://github.com/pytorch-labs/FACTO.git) registered for path 'backends/cadence/utils/FACTO' 2025-06-05T23:49:44.9665958Z 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:44.9668859Z 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:44.9671394Z Submodule 'backends/vulkan/third-party/volk' (https://github.com/zeux/volk) registered for path 'backends/vulkan/third-party/volk' 2025-06-05T23:49:44.9674493Z Submodule 'backends/xnnpack/third-party/FP16' (https://github.com/Maratyszcza/FP16.git) registered for path 'backends/xnnpack/third-party/FP16' 2025-06-05T23:49:44.9677535Z Submodule 'backends/xnnpack/third-party/FXdiv' (https://github.com/Maratyszcza/FXdiv.git) registered for path 'backends/xnnpack/third-party/FXdiv' 2025-06-05T23:49:44.9680873Z Submodule 'backends/xnnpack/third-party/XNNPACK' (https://github.com/google/XNNPACK.git) registered for path 'backends/xnnpack/third-party/XNNPACK' 2025-06-05T23:49:44.9684135Z Submodule 'backends/xnnpack/third-party/cpuinfo' (https://github.com/pytorch/cpuinfo.git) registered for path 'backends/xnnpack/third-party/cpuinfo' 2025-06-05T23:49:44.9688191Z Submodule 'backends/xnnpack/third-party/pthreadpool' (https://github.com/Maratyszcza/pthreadpool.git) registered for path 'backends/xnnpack/third-party/pthreadpool' 2025-06-05T23:49:44.9691555Z Submodule 'extension/llm/tokenizers' (https://github.com/pytorch-labs/tokenizers.git) registered for path 'extension/llm/tokenizers' 2025-06-05T23:49:44.9695315Z Submodule 'kernels/optimized/third-party/eigen' (https://gitlab.com/libeigen/eigen.git) registered for path 'kernels/optimized/third-party/eigen' 2025-06-05T23:49:44.9698814Z Submodule 'shim' (https://github.com/facebook/buck2-shims-meta) registered for path 'shim' 2025-06-05T23:49:44.9702681Z Submodule 'third-party/ao' (https://github.com/pytorch/ao.git) registered for path 'third-party/ao' 2025-06-05T23:49:44.9707594Z Submodule 'third-party/flatbuffers' (https://github.com/google/flatbuffers.git) registered for path 'third-party/flatbuffers' 2025-06-05T23:49:44.9713573Z Submodule 'third-party/flatcc' (https://github.com/dvidelabs/flatcc.git) registered for path 'third-party/flatcc' 2025-06-05T23:49:44.9717752Z Submodule 'third-party/gflags' (https://github.com/gflags/gflags.git) registered for path 'third-party/gflags' 2025-06-05T23:49:44.9722254Z Submodule 'third-party/googletest' (https://github.com/google/googletest.git) registered for path 'third-party/googletest' 2025-06-05T23:49:44.9726500Z Submodule 'third-party/ios-cmake' (https://github.com/leetal/ios-cmake) registered for path 'third-party/ios-cmake' 2025-06-05T23:49:44.9731068Z Submodule 'third-party/json' (https://github.com/nlohmann/json.git) registered for path 'third-party/json' 2025-06-05T23:49:44.9735861Z Submodule 'third-party/pocketfft' (https://github.com/mreineck/pocketfft) registered for path 'third-party/pocketfft' 2025-06-05T23:49:44.9740558Z Submodule 'third-party/prelude' (https://github.com/facebook/buck2-prelude.git) registered for path 'third-party/prelude' 2025-06-05T23:49:44.9745290Z Submodule 'third-party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third-party/pybind11' 2025-06-05T23:49:44.9773760Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/arm/third-party/ethos-u-core-driver'... 2025-06-05T23:49:45.8085925Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/arm/third-party/serialization_lib'... 2025-06-05T23:49:46.3166759Z warning: redirecting to https://git.gitlab.arm.com/-/push_from_secondary/7/tosa/tosa-serialization.git/ 2025-06-05T23:49:47.1055241Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/cadence/utils/FACTO'... 2025-06-05T23:49:47.3665146Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/vulkan/third-party/Vulkan-Headers'... 2025-06-05T23:49:47.8199675Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/vulkan/third-party/VulkanMemoryAllocator'... 2025-06-05T23:49:48.0931548Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/vulkan/third-party/volk'... 2025-06-05T23:49:48.3512238Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/xnnpack/third-party/FP16'... 2025-06-05T23:49:48.6303830Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/xnnpack/third-party/FXdiv'... 2025-06-05T23:49:48.8867044Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/xnnpack/third-party/XNNPACK'... 2025-06-05T23:49:49.7203076Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/xnnpack/third-party/cpuinfo'... 2025-06-05T23:49:50.1241592Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/backends/xnnpack/third-party/pthreadpool'... 2025-06-05T23:49:50.3016656Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers'... 2025-06-05T23:49:50.5369434Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/kernels/optimized/third-party/eigen'... 2025-06-05T23:49:51.4649543Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/shim'... 2025-06-05T23:49:51.6897164Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/ao'... 2025-06-05T23:49:52.1571782Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/flatbuffers'... 2025-06-05T23:49:52.5275276Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/flatcc'... 2025-06-05T23:49:52.7911327Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/gflags'... 2025-06-05T23:49:53.0372949Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/googletest'... 2025-06-05T23:49:53.3484290Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/ios-cmake'... 2025-06-05T23:49:53.5548030Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/json'... 2025-06-05T23:49:54.2800883Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/pocketfft'... 2025-06-05T23:49:54.4998162Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/prelude'... 2025-06-05T23:49:54.9040194Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/pybind11'... 2025-06-05T23:49:56.5131883Z From https://git.gitlab.arm.com/artificial-intelligence/ethos-u/ethos-u-core-driver 2025-06-05T23:49:56.5132814Z * branch 7bf44c54527e718b99d588ce520cf2f96343adb1 -> FETCH_HEAD 2025-06-05T23:49:56.5251746Z Submodule path 'backends/arm/third-party/ethos-u-core-driver': checked out '7bf44c54527e718b99d588ce520cf2f96343adb1' 2025-06-05T23:49:57.0183737Z warning: redirecting to https://git.gitlab.arm.com/-/push_from_secondary/7/tosa/tosa-serialization.git/ 2025-06-05T23:49:57.9961421Z warning: redirecting to https://git.gitlab.arm.com/-/push_from_secondary/7/tosa/tosa-serialization.git/ 2025-06-05T23:49:58.9838929Z From https://git.gitlab.arm.com/tosa/tosa-serialization 2025-06-05T23:49:58.9839693Z * branch 187af0d41fe75d08d2a7ec84c1b4d24b9b641ed2 -> FETCH_HEAD 2025-06-05T23:49:58.9957652Z Submodule path 'backends/arm/third-party/serialization_lib': checked out '187af0d41fe75d08d2a7ec84c1b4d24b9b641ed2' 2025-06-05T23:49:58.9973627Z 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:49:59.0001426Z 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:00.1135931Z From https://github.com/google/flatbuffers 2025-06-05T23:50:00.1136622Z * branch 0100f6a5779831fa7a651e4b67ef389a8752bd9b -> FETCH_HEAD 2025-06-05T23:50:00.2306539Z Submodule path 'backends/arm/third-party/serialization_lib/third_party/flatbuffers': checked out '0100f6a5779831fa7a651e4b67ef389a8752bd9b' 2025-06-05T23:50:00.8426958Z From https://github.com/pytorch-labs/FACTO 2025-06-05T23:50:00.8427680Z * branch 1db37fc79d0d59638cbb794fa49d878aafc24461 -> FETCH_HEAD 2025-06-05T23:50:00.8513699Z Submodule path 'backends/cadence/utils/FACTO': checked out '1db37fc79d0d59638cbb794fa49d878aafc24461' 2025-06-05T23:50:01.7213166Z From https://github.com/KhronosGroup/Vulkan-Headers 2025-06-05T23:50:01.7213919Z * branch 0c5928795a66e93f65e5e68a36d8daa79a209dc2 -> FETCH_HEAD 2025-06-05T23:50:01.7779741Z Submodule path 'backends/vulkan/third-party/Vulkan-Headers': checked out '0c5928795a66e93f65e5e68a36d8daa79a209dc2' 2025-06-05T23:50:02.4710678Z From https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator 2025-06-05T23:50:02.4711534Z * branch a6bfc237255a6bac1513f7c1ebde6d8aed6b5191 -> FETCH_HEAD 2025-06-05T23:50:02.5063329Z Submodule path 'backends/vulkan/third-party/VulkanMemoryAllocator': checked out 'a6bfc237255a6bac1513f7c1ebde6d8aed6b5191' 2025-06-05T23:50:02.9737838Z From https://github.com/zeux/volk 2025-06-05T23:50:02.9738552Z * branch b3bc21e584f97400b6884cb2a541a56c6a5ddba3 -> FETCH_HEAD 2025-06-05T23:50:02.9816275Z Submodule path 'backends/vulkan/third-party/volk': checked out 'b3bc21e584f97400b6884cb2a541a56c6a5ddba3' 2025-06-05T23:50:03.4996576Z From https://github.com/Maratyszcza/FP16 2025-06-05T23:50:03.4997269Z * branch 4dfe081cf6bcd15db339cf2680b9281b8451eeb3 -> FETCH_HEAD 2025-06-05T23:50:03.5091168Z Submodule path 'backends/xnnpack/third-party/FP16': checked out '4dfe081cf6bcd15db339cf2680b9281b8451eeb3' 2025-06-05T23:50:04.0738247Z From https://github.com/Maratyszcza/FXdiv 2025-06-05T23:50:04.0738960Z * branch b408327ac2a15ec3e43352421954f5b1967701d1 -> FETCH_HEAD 2025-06-05T23:50:04.0798418Z Submodule path 'backends/xnnpack/third-party/FXdiv': checked out 'b408327ac2a15ec3e43352421954f5b1967701d1' 2025-06-05T23:50:05.7364939Z From https://github.com/google/XNNPACK 2025-06-05T23:50:05.7365614Z * branch 4ea82e595b36106653175dcb04b2aa532660d0d8 -> FETCH_HEAD 2025-06-05T23:50:06.4030133Z Submodule path 'backends/xnnpack/third-party/XNNPACK': checked out '4ea82e595b36106653175dcb04b2aa532660d0d8' 2025-06-05T23:50:06.9913335Z From https://github.com/pytorch/cpuinfo 2025-06-05T23:50:06.9914068Z * branch c61fe919607bbc534d7a5a5707bdd7041e72c5ff -> FETCH_HEAD 2025-06-05T23:50:07.0847507Z Submodule path 'backends/xnnpack/third-party/cpuinfo': checked out 'c61fe919607bbc534d7a5a5707bdd7041e72c5ff' 2025-06-05T23:50:07.5423938Z From https://github.com/Maratyszcza/pthreadpool 2025-06-05T23:50:07.5424651Z * branch 4fe0e1e183925bf8cfa6aae24237e724a96479b8 -> FETCH_HEAD 2025-06-05T23:50:07.5513808Z Submodule path 'backends/xnnpack/third-party/pthreadpool': checked out '4fe0e1e183925bf8cfa6aae24237e724a96479b8' 2025-06-05T23:50:08.0036474Z From https://github.com/pytorch-labs/tokenizers 2025-06-05T23:50:08.0037181Z * branch fc5962cd9e08019c5df6667eba3377e7d76441f7 -> FETCH_HEAD 2025-06-05T23:50:08.0311336Z Submodule path 'extension/llm/tokenizers': checked out 'fc5962cd9e08019c5df6667eba3377e7d76441f7' 2025-06-05T23:50:08.0327990Z 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:08.0330312Z Submodule 'third-party/json' (https://github.com/nlohmann/json.git) registered for path 'extension/llm/tokenizers/third-party/json' 2025-06-05T23:50:08.0333210Z Submodule 'third-party/pcre2' (https://github.com/PCRE2Project/pcre2.git) registered for path 'extension/llm/tokenizers/third-party/pcre2' 2025-06-05T23:50:08.0335953Z Submodule 'third-party/re2' (https://github.com/google/re2.git) registered for path 'extension/llm/tokenizers/third-party/re2' 2025-06-05T23:50:08.0339103Z Submodule 'third-party/sentencepiece' (https://github.com/google/sentencepiece.git) registered for path 'extension/llm/tokenizers/third-party/sentencepiece' 2025-06-05T23:50:08.0367639Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers/third-party/abseil-cpp'... 2025-06-05T23:50:08.4224781Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers/third-party/json'... 2025-06-05T23:50:08.8795818Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers/third-party/pcre2'... 2025-06-05T23:50:09.3131196Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers/third-party/re2'... 2025-06-05T23:50:09.5614292Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers/third-party/sentencepiece'... 2025-06-05T23:50:11.0203427Z From https://github.com/abseil/abseil-cpp 2025-06-05T23:50:11.0204517Z * branch 7d96b2e93d9a84530748b68abd2f97595c51ecf4 -> FETCH_HEAD 2025-06-05T23:50:11.1287392Z Submodule path 'extension/llm/tokenizers/third-party/abseil-cpp': checked out '7d96b2e93d9a84530748b68abd2f97595c51ecf4' 2025-06-05T23:50:11.9088736Z From https://github.com/nlohmann/json 2025-06-05T23:50:11.9089843Z * branch e6cafa573aac6ed9227f752a5371c0b3f436307d -> FETCH_HEAD 2025-06-05T23:50:12.0140524Z Submodule path 'extension/llm/tokenizers/third-party/json': checked out 'e6cafa573aac6ed9227f752a5371c0b3f436307d' 2025-06-05T23:50:12.6869646Z From https://github.com/PCRE2Project/pcre2 2025-06-05T23:50:12.6870363Z * branch 2e03e323339ab692640626f02f8d8d6f95bff9c6 -> FETCH_HEAD 2025-06-05T23:50:12.7689368Z Submodule path 'extension/llm/tokenizers/third-party/pcre2': checked out '2e03e323339ab692640626f02f8d8d6f95bff9c6' 2025-06-05T23:50:12.7708114Z Submodule 'deps/sljit' (https://github.com/zherczeg/sljit.git) registered for path 'extension/llm/tokenizers/third-party/pcre2/deps/sljit' 2025-06-05T23:50:12.7737049Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/extension/llm/tokenizers/third-party/pcre2/deps/sljit'... 2025-06-05T23:50:13.6676684Z From https://github.com/zherczeg/sljit 2025-06-05T23:50:13.6677364Z * branch 98802d939be3f0ccc2c538d611ec4c728564e8cf -> FETCH_HEAD 2025-06-05T23:50:13.6888817Z Submodule path 'extension/llm/tokenizers/third-party/pcre2/deps/sljit': checked out '98802d939be3f0ccc2c538d611ec4c728564e8cf' 2025-06-05T23:50:14.1883226Z From https://github.com/google/re2 2025-06-05T23:50:14.1883913Z * branch 6dcd83d60f7944926bfd308cc13979fc53dd69ca -> FETCH_HEAD 2025-06-05T23:50:14.2068180Z Submodule path 'extension/llm/tokenizers/third-party/re2': checked out '6dcd83d60f7944926bfd308cc13979fc53dd69ca' 2025-06-05T23:50:14.7924706Z From https://github.com/google/sentencepiece 2025-06-05T23:50:14.7925406Z * branch d8f741853847553169444afc12c00f4bbff3e9ce -> FETCH_HEAD 2025-06-05T23:50:14.9353602Z Submodule path 'extension/llm/tokenizers/third-party/sentencepiece': checked out 'd8f741853847553169444afc12c00f4bbff3e9ce' 2025-06-05T23:50:16.4616751Z From https://gitlab.com/libeigen/eigen 2025-06-05T23:50:16.4617465Z * branch a39ade4ccf99df845ec85c580fbbb324f71952fa -> FETCH_HEAD 2025-06-05T23:50:16.6012499Z Submodule path 'kernels/optimized/third-party/eigen': checked out 'a39ade4ccf99df845ec85c580fbbb324f71952fa' 2025-06-05T23:50:17.1135651Z From https://github.com/facebook/buck2-shims-meta 2025-06-05T23:50:17.1136393Z * branch cf6a954aae4bee7b4515e13475878460115027d1 -> FETCH_HEAD 2025-06-05T23:50:17.1358183Z Submodule path 'shim': checked out 'cf6a954aae4bee7b4515e13475878460115027d1' 2025-06-05T23:50:17.7677009Z From https://github.com/pytorch/ao 2025-06-05T23:50:17.7677714Z * branch bc68b11f1bf77be38721ca7dd2c477aeb5e6626e -> FETCH_HEAD 2025-06-05T23:50:17.8819662Z Submodule path 'third-party/ao': checked out 'bc68b11f1bf77be38721ca7dd2c477aeb5e6626e' 2025-06-05T23:50:17.8839262Z Submodule 'third_party/cutlass' (https://github.com/NVIDIA/cutlass) registered for path 'third-party/ao/third_party/cutlass' 2025-06-05T23:50:17.8868229Z Cloning into '/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/third-party/ao/third_party/cutlass'... 2025-06-05T23:50:19.8077783Z From https://github.com/NVIDIA/cutlass 2025-06-05T23:50:19.8078762Z * branch ad7b2f5e84fcfa124cb02b91d5bd26d238c0459e -> FETCH_HEAD 2025-06-05T23:50:20.4348400Z Submodule path 'third-party/ao/third_party/cutlass': checked out 'ad7b2f5e84fcfa124cb02b91d5bd26d238c0459e' 2025-06-05T23:50:21.1378325Z From https://github.com/google/flatbuffers 2025-06-05T23:50:21.1379469Z * branch 595bf0007ab1929570c7671f091313c8fc20644e -> FETCH_HEAD 2025-06-05T23:50:21.2543523Z Submodule path 'third-party/flatbuffers': checked out '595bf0007ab1929570c7671f091313c8fc20644e' 2025-06-05T23:50:21.8293079Z From https://github.com/dvidelabs/flatcc 2025-06-05T23:50:21.8293766Z * branch 896db54787e8b730a6be482c69324751f3f5f117 -> FETCH_HEAD 2025-06-05T23:50:21.8564677Z Submodule path 'third-party/flatcc': checked out '896db54787e8b730a6be482c69324751f3f5f117' 2025-06-05T23:50:22.4583034Z From https://github.com/gflags/gflags 2025-06-05T23:50:22.4583714Z * branch a738fdf9338412f83ab3f26f31ac11ed3f3ec4bd -> FETCH_HEAD 2025-06-05T23:50:22.4764400Z Submodule path 'third-party/gflags': checked out 'a738fdf9338412f83ab3f26f31ac11ed3f3ec4bd' 2025-06-05T23:50:23.0858891Z From https://github.com/google/googletest 2025-06-05T23:50:23.0859582Z * branch e2239ee6043f73722e7aa812a459f54a28552929 -> FETCH_HEAD 2025-06-05T23:50:23.1247508Z Submodule path 'third-party/googletest': checked out 'e2239ee6043f73722e7aa812a459f54a28552929' 2025-06-05T23:50:23.5658931Z From https://github.com/leetal/ios-cmake 2025-06-05T23:50:23.5659620Z * branch 06465b27698424cf4a04a5ca4904d50a3c966c45 -> FETCH_HEAD 2025-06-05T23:50:23.5736541Z Submodule path 'third-party/ios-cmake': checked out '06465b27698424cf4a04a5ca4904d50a3c966c45' 2025-06-05T23:50:24.1257388Z From https://github.com/nlohmann/json 2025-06-05T23:50:24.1258098Z * branch ac0133ea89a8fd730a9cc9649c5226a9995dc3e1 -> FETCH_HEAD 2025-06-05T23:50:24.2318922Z Submodule path 'third-party/json': checked out 'ac0133ea89a8fd730a9cc9649c5226a9995dc3e1' 2025-06-05T23:50:24.2476633Z Submodule path 'third-party/pocketfft': checked out '0fa0ef591e38c2758e3184c6c23e497b9f732ffa' 2025-06-05T23:50:25.0025541Z From https://github.com/facebook/buck2-prelude 2025-06-05T23:50:25.0026257Z * branch 48c249f8c7b99ff501d6e857754760315072b306 -> FETCH_HEAD 2025-06-05T23:50:25.1579574Z Submodule path 'third-party/prelude': checked out '48c249f8c7b99ff501d6e857754760315072b306' 2025-06-05T23:50:25.7540619Z From https://github.com/pybind/pybind11 2025-06-05T23:50:25.7541351Z * branch a2e59f0e7065404b44dfe92a28aca47ba1378dc4 -> FETCH_HEAD 2025-06-05T23:50:25.7853271Z Submodule path 'third-party/pybind11': checked out 'a2e59f0e7065404b44dfe92a28aca47ba1378dc4' 2025-06-05T23:50:25.7888432Z [command]/usr/bin/git submodule foreach --recursive git config --local gc.auto 0 2025-06-05T23:50:25.8172051Z Entering 'backends/arm/third-party/ethos-u-core-driver' 2025-06-05T23:50:25.8214839Z Entering 'backends/arm/third-party/serialization_lib' 2025-06-05T23:50:25.8257190Z Entering 'backends/arm/third-party/serialization_lib/third_party/flatbuffers' 2025-06-05T23:50:25.8305302Z Entering 'backends/cadence/utils/FACTO' 2025-06-05T23:50:25.8349396Z Entering 'backends/vulkan/third-party/Vulkan-Headers' 2025-06-05T23:50:25.8392079Z Entering 'backends/vulkan/third-party/VulkanMemoryAllocator' 2025-06-05T23:50:25.8434670Z Entering 'backends/vulkan/third-party/volk' 2025-06-05T23:50:25.8476677Z Entering 'backends/xnnpack/third-party/FP16' 2025-06-05T23:50:25.8519473Z Entering 'backends/xnnpack/third-party/FXdiv' 2025-06-05T23:50:25.8562080Z Entering 'backends/xnnpack/third-party/XNNPACK' 2025-06-05T23:50:25.8622339Z Entering 'backends/xnnpack/third-party/cpuinfo' 2025-06-05T23:50:25.8665476Z Entering 'backends/xnnpack/third-party/pthreadpool' 2025-06-05T23:50:25.8707575Z Entering 'extension/llm/tokenizers' 2025-06-05T23:50:25.8749035Z Entering 'extension/llm/tokenizers/third-party/abseil-cpp' 2025-06-05T23:50:25.8793443Z Entering 'extension/llm/tokenizers/third-party/json' 2025-06-05T23:50:25.8836148Z Entering 'extension/llm/tokenizers/third-party/pcre2' 2025-06-05T23:50:25.8877486Z Entering 'extension/llm/tokenizers/third-party/pcre2/deps/sljit' 2025-06-05T23:50:25.8922822Z Entering 'extension/llm/tokenizers/third-party/re2' 2025-06-05T23:50:25.8966074Z Entering 'extension/llm/tokenizers/third-party/sentencepiece' 2025-06-05T23:50:25.9009531Z Entering 'kernels/optimized/third-party/eigen' 2025-06-05T23:50:25.9055398Z Entering 'shim' 2025-06-05T23:50:25.9098170Z Entering 'third-party/ao' 2025-06-05T23:50:25.9140468Z Entering 'third-party/ao/third_party/cutlass' 2025-06-05T23:50:25.9194901Z Entering 'third-party/flatbuffers' 2025-06-05T23:50:25.9241288Z Entering 'third-party/flatcc' 2025-06-05T23:50:25.9283922Z Entering 'third-party/gflags' 2025-06-05T23:50:25.9326087Z Entering 'third-party/googletest' 2025-06-05T23:50:25.9368500Z Entering 'third-party/ios-cmake' 2025-06-05T23:50:25.9410429Z Entering 'third-party/json' 2025-06-05T23:50:25.9454628Z Entering 'third-party/pocketfft' 2025-06-05T23:50:25.9497039Z Entering 'third-party/prelude' 2025-06-05T23:50:25.9543132Z Entering 'third-party/pybind11' 2025-06-05T23:50:25.9595673Z ##[endgroup] 2025-06-05T23:50:25.9596271Z ##[group]Persisting credentials for submodules 2025-06-05T23:50:25.9603048Z [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:25.9883498Z Entering 'backends/arm/third-party/ethos-u-core-driver' 2025-06-05T23:50:25.9939821Z Entering 'backends/arm/third-party/serialization_lib' 2025-06-05T23:50:25.9994730Z Entering 'backends/arm/third-party/serialization_lib/third_party/flatbuffers' 2025-06-05T23:50:26.0055094Z Entering 'backends/cadence/utils/FACTO' 2025-06-05T23:50:26.0111094Z Entering 'backends/vulkan/third-party/Vulkan-Headers' 2025-06-05T23:50:26.0166292Z Entering 'backends/vulkan/third-party/VulkanMemoryAllocator' 2025-06-05T23:50:26.0221922Z Entering 'backends/vulkan/third-party/volk' 2025-06-05T23:50:26.0277232Z Entering 'backends/xnnpack/third-party/FP16' 2025-06-05T23:50:26.0332764Z Entering 'backends/xnnpack/third-party/FXdiv' 2025-06-05T23:50:26.0387840Z Entering 'backends/xnnpack/third-party/XNNPACK' 2025-06-05T23:50:26.0460078Z Entering 'backends/xnnpack/third-party/cpuinfo' 2025-06-05T23:50:26.0517098Z Entering 'backends/xnnpack/third-party/pthreadpool' 2025-06-05T23:50:26.0571872Z Entering 'extension/llm/tokenizers' 2025-06-05T23:50:26.0627166Z Entering 'extension/llm/tokenizers/third-party/abseil-cpp' 2025-06-05T23:50:26.0684011Z Entering 'extension/llm/tokenizers/third-party/json' 2025-06-05T23:50:26.0740600Z Entering 'extension/llm/tokenizers/third-party/pcre2' 2025-06-05T23:50:26.0797330Z Entering 'extension/llm/tokenizers/third-party/pcre2/deps/sljit' 2025-06-05T23:50:26.0855382Z Entering 'extension/llm/tokenizers/third-party/re2' 2025-06-05T23:50:26.0910573Z Entering 'extension/llm/tokenizers/third-party/sentencepiece' 2025-06-05T23:50:26.0967951Z Entering 'kernels/optimized/third-party/eigen' 2025-06-05T23:50:26.1026385Z Entering 'shim' 2025-06-05T23:50:26.1081228Z Entering 'third-party/ao' 2025-06-05T23:50:26.1136825Z Entering 'third-party/ao/third_party/cutlass' 2025-06-05T23:50:26.1204208Z Entering 'third-party/flatbuffers' 2025-06-05T23:50:26.1261618Z Entering 'third-party/flatcc' 2025-06-05T23:50:26.1317596Z Entering 'third-party/gflags' 2025-06-05T23:50:26.1372067Z Entering 'third-party/googletest' 2025-06-05T23:50:26.1427495Z Entering 'third-party/ios-cmake' 2025-06-05T23:50:26.1481188Z Entering 'third-party/json' 2025-06-05T23:50:26.1538019Z Entering 'third-party/pocketfft' 2025-06-05T23:50:26.1592937Z Entering 'third-party/prelude' 2025-06-05T23:50:26.1651051Z Entering 'third-party/pybind11' 2025-06-05T23:50:26.1721399Z [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:26.2001068Z Entering 'backends/arm/third-party/ethos-u-core-driver' 2025-06-05T23:50:26.2053261Z 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:26.2068879Z Entering 'backends/arm/third-party/serialization_lib' 2025-06-05T23:50:26.2123341Z 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:26.2138330Z Entering 'backends/arm/third-party/serialization_lib/third_party/flatbuffers' 2025-06-05T23:50:26.2192824Z 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:26.2213344Z Entering 'backends/cadence/utils/FACTO' 2025-06-05T23:50:26.2265823Z 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:26.2281875Z Entering 'backends/vulkan/third-party/Vulkan-Headers' 2025-06-05T23:50:26.2334925Z 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:26.2350548Z Entering 'backends/vulkan/third-party/VulkanMemoryAllocator' 2025-06-05T23:50:26.2404424Z 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:26.2420564Z Entering 'backends/vulkan/third-party/volk' 2025-06-05T23:50:26.2473144Z 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:26.2490046Z Entering 'backends/xnnpack/third-party/FP16' 2025-06-05T23:50:26.2543527Z 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:26.2559878Z Entering 'backends/xnnpack/third-party/FXdiv' 2025-06-05T23:50:26.2613667Z 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:26.2629899Z Entering 'backends/xnnpack/third-party/XNNPACK' 2025-06-05T23:50:26.2681858Z 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:26.2714998Z Entering 'backends/xnnpack/third-party/cpuinfo' 2025-06-05T23:50:26.2767932Z 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:26.2784607Z Entering 'backends/xnnpack/third-party/pthreadpool' 2025-06-05T23:50:26.2838945Z 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:26.2854905Z Entering 'extension/llm/tokenizers' 2025-06-05T23:50:26.2909408Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/extension/llm/tokenizers/config remote.origin.url 2025-06-05T23:50:26.2924741Z Entering 'extension/llm/tokenizers/third-party/abseil-cpp' 2025-06-05T23:50:26.2976468Z 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:26.2994656Z Entering 'extension/llm/tokenizers/third-party/json' 2025-06-05T23:50:26.3048987Z 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:26.3066699Z Entering 'extension/llm/tokenizers/third-party/pcre2' 2025-06-05T23:50:26.3120098Z 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:26.3135394Z Entering 'extension/llm/tokenizers/third-party/pcre2/deps/sljit' 2025-06-05T23:50:26.3189764Z 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:26.3208660Z Entering 'extension/llm/tokenizers/third-party/re2' 2025-06-05T23:50:26.3262954Z 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:26.3278101Z Entering 'extension/llm/tokenizers/third-party/sentencepiece' 2025-06-05T23:50:26.3332452Z 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:26.3350135Z Entering 'kernels/optimized/third-party/eigen' 2025-06-05T23:50:26.3405498Z 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:26.3424435Z Entering 'shim' 2025-06-05T23:50:26.3477957Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/shim/config remote.origin.url 2025-06-05T23:50:26.3496543Z Entering 'third-party/ao' 2025-06-05T23:50:26.3550889Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/ao/config remote.origin.url 2025-06-05T23:50:26.3566889Z Entering 'third-party/ao/third_party/cutlass' 2025-06-05T23:50:26.3623246Z 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:26.3651223Z Entering 'third-party/flatbuffers' 2025-06-05T23:50:26.3705401Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/flatbuffers/config remote.origin.url 2025-06-05T23:50:26.3724485Z Entering 'third-party/flatcc' 2025-06-05T23:50:26.3776350Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/flatcc/config remote.origin.url 2025-06-05T23:50:26.3793339Z Entering 'third-party/gflags' 2025-06-05T23:50:26.3845526Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/gflags/config remote.origin.url 2025-06-05T23:50:26.3861981Z Entering 'third-party/googletest' 2025-06-05T23:50:26.3914376Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/googletest/config remote.origin.url 2025-06-05T23:50:26.3930533Z Entering 'third-party/ios-cmake' 2025-06-05T23:50:26.3982267Z 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:26.3998796Z Entering 'third-party/json' 2025-06-05T23:50:26.4051689Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/json/config remote.origin.url 2025-06-05T23:50:26.4070386Z Entering 'third-party/pocketfft' 2025-06-05T23:50:26.4123588Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/pocketfft/config remote.origin.url 2025-06-05T23:50:26.4139136Z Entering 'third-party/prelude' 2025-06-05T23:50:26.4191434Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/prelude/config remote.origin.url 2025-06-05T23:50:26.4211207Z Entering 'third-party/pybind11' 2025-06-05T23:50:26.4264860Z file:/home/ec2-user/actions-runner/_work/executorch/executorch/pytorch/executorch/.git/modules/third-party/pybind11/config remote.origin.url 2025-06-05T23:50:26.4692378Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'git@github.com:' 2025-06-05T23:50:26.4977206Z Entering 'backends/arm/third-party/ethos-u-core-driver' 2025-06-05T23:50:26.5020536Z Entering 'backends/arm/third-party/serialization_lib' 2025-06-05T23:50:26.5062821Z Entering 'backends/arm/third-party/serialization_lib/third_party/flatbuffers' 2025-06-05T23:50:26.5111201Z Entering 'backends/cadence/utils/FACTO' 2025-06-05T23:50:26.5154680Z Entering 'backends/vulkan/third-party/Vulkan-Headers' 2025-06-05T23:50:26.5197131Z Entering 'backends/vulkan/third-party/VulkanMemoryAllocator' 2025-06-05T23:50:26.5239481Z Entering 'backends/vulkan/third-party/volk' 2025-06-05T23:50:26.5295427Z Entering 'backends/xnnpack/third-party/FP16' 2025-06-05T23:50:26.5325400Z Entering 'backends/xnnpack/third-party/FXdiv' 2025-06-05T23:50:26.5366960Z Entering 'backends/xnnpack/third-party/XNNPACK' 2025-06-05T23:50:26.5426341Z Entering 'backends/xnnpack/third-party/cpuinfo' 2025-06-05T23:50:26.5469987Z Entering 'backends/xnnpack/third-party/pthreadpool' 2025-06-05T23:50:26.5513108Z Entering 'extension/llm/tokenizers' 2025-06-05T23:50:26.5555173Z Entering 'extension/llm/tokenizers/third-party/abseil-cpp' 2025-06-05T23:50:26.5600388Z Entering 'extension/llm/tokenizers/third-party/json' 2025-06-05T23:50:26.5643613Z Entering 'extension/llm/tokenizers/third-party/pcre2' 2025-06-05T23:50:26.5685363Z Entering 'extension/llm/tokenizers/third-party/pcre2/deps/sljit' 2025-06-05T23:50:26.5729655Z Entering 'extension/llm/tokenizers/third-party/re2' 2025-06-05T23:50:26.5771376Z Entering 'extension/llm/tokenizers/third-party/sentencepiece' 2025-06-05T23:50:26.5814667Z Entering 'kernels/optimized/third-party/eigen' 2025-06-05T23:50:26.5859973Z Entering 'shim' 2025-06-05T23:50:26.5903972Z Entering 'third-party/ao' 2025-06-05T23:50:26.5947531Z Entering 'third-party/ao/third_party/cutlass' 2025-06-05T23:50:26.6003608Z Entering 'third-party/flatbuffers' 2025-06-05T23:50:26.6049629Z Entering 'third-party/flatcc' 2025-06-05T23:50:26.6094502Z Entering 'third-party/gflags' 2025-06-05T23:50:26.6135936Z Entering 'third-party/googletest' 2025-06-05T23:50:26.6177741Z Entering 'third-party/ios-cmake' 2025-06-05T23:50:26.6221382Z Entering 'third-party/json' 2025-06-05T23:50:26.6264676Z Entering 'third-party/pocketfft' 2025-06-05T23:50:26.6306449Z Entering 'third-party/prelude' 2025-06-05T23:50:26.6351586Z Entering 'third-party/pybind11' 2025-06-05T23:50:26.6408419Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'org-21003710@github.com:' 2025-06-05T23:50:26.6688014Z Entering 'backends/arm/third-party/ethos-u-core-driver' 2025-06-05T23:50:26.6729465Z Entering 'backends/arm/third-party/serialization_lib' 2025-06-05T23:50:26.6772133Z Entering 'backends/arm/third-party/serialization_lib/third_party/flatbuffers' 2025-06-05T23:50:26.6818954Z Entering 'backends/cadence/utils/FACTO' 2025-06-05T23:50:26.6862012Z Entering 'backends/vulkan/third-party/Vulkan-Headers' 2025-06-05T23:50:26.6904688Z Entering 'backends/vulkan/third-party/VulkanMemoryAllocator' 2025-06-05T23:50:26.6946549Z Entering 'backends/vulkan/third-party/volk' 2025-06-05T23:50:26.6989162Z Entering 'backends/xnnpack/third-party/FP16' 2025-06-05T23:50:26.7031061Z Entering 'backends/xnnpack/third-party/FXdiv' 2025-06-05T23:50:26.7073467Z Entering 'backends/xnnpack/third-party/XNNPACK' 2025-06-05T23:50:26.7133344Z Entering 'backends/xnnpack/third-party/cpuinfo' 2025-06-05T23:50:26.7175806Z Entering 'backends/xnnpack/third-party/pthreadpool' 2025-06-05T23:50:26.7219537Z Entering 'extension/llm/tokenizers' 2025-06-05T23:50:26.7261229Z Entering 'extension/llm/tokenizers/third-party/abseil-cpp' 2025-06-05T23:50:26.7306637Z Entering 'extension/llm/tokenizers/third-party/json' 2025-06-05T23:50:26.7350301Z Entering 'extension/llm/tokenizers/third-party/pcre2' 2025-06-05T23:50:26.7393759Z Entering 'extension/llm/tokenizers/third-party/pcre2/deps/sljit' 2025-06-05T23:50:26.7437991Z Entering 'extension/llm/tokenizers/third-party/re2' 2025-06-05T23:50:26.7480705Z Entering 'extension/llm/tokenizers/third-party/sentencepiece' 2025-06-05T23:50:26.7524430Z Entering 'kernels/optimized/third-party/eigen' 2025-06-05T23:50:26.7568853Z Entering 'shim' 2025-06-05T23:50:26.7611548Z Entering 'third-party/ao' 2025-06-05T23:50:26.7653215Z Entering 'third-party/ao/third_party/cutlass' 2025-06-05T23:50:26.7706916Z Entering 'third-party/flatbuffers' 2025-06-05T23:50:26.7751797Z Entering 'third-party/flatcc' 2025-06-05T23:50:26.7794215Z Entering 'third-party/gflags' 2025-06-05T23:50:26.7835672Z Entering 'third-party/googletest' 2025-06-05T23:50:26.7877884Z Entering 'third-party/ios-cmake' 2025-06-05T23:50:26.7920206Z Entering 'third-party/json' 2025-06-05T23:50:26.7963579Z Entering 'third-party/pocketfft' 2025-06-05T23:50:26.8006248Z Entering 'third-party/prelude' 2025-06-05T23:50:26.8051461Z Entering 'third-party/pybind11' 2025-06-05T23:50:26.8103331Z ##[endgroup] 2025-06-05T23:50:26.8137915Z [command]/usr/bin/git log -1 --format=%H 2025-06-05T23:50:26.8159400Z bd572346e4f196b36aaa03a1645d12b1618fe88b 2025-06-05T23:50:26.8399887Z Prepare all required actions 2025-06-05T23:50:26.8400578Z Getting action download info 2025-06-05T23:50:26.9423391Z Download action repository 'nick-fields/retry@v3.0.0' (SHA:7152eba30c6575329ac0576536151aca5a72780e) 2025-06-05T23:50:27.1011634Z ##[group]Run ./test-infra/.github/actions/calculate-docker-image 2025-06-05T23:50:27.1012165Z with: 2025-06-05T23:50:27.1012552Z docker-image-name: executorch-ubuntu-22.04-clang12 2025-06-05T23:50:27.1013053Z docker-build-dir: .ci/docker 2025-06-05T23:50:27.1013475Z working-directory: pytorch/executorch 2025-06-05T23:50:27.1013908Z docker-build-script: ./build.sh 2025-06-05T23:50:27.1014437Z docker-registry: 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:50:27.1014961Z force-push: false 2025-06-05T23:50:27.1015278Z env: 2025-06-05T23:50:27.1015632Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:50:27.1016119Z REPOSITORY: pytorch/executorch 2025-06-05T23:50:27.1016497Z PR_NUMBER: 2025-06-05T23:50:27.1031358Z 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 [ "google/gemma-3-1b-it" == "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="google/gemma-3-1b-it" 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:27.1046526Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:50:27.1047301Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:50:27.1048041Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:50:27.1048554Z ##[endgroup] 2025-06-05T23:50:27.1082385Z ##[group]Run set -ex 2025-06-05T23:50:27.1082809Z set -ex 2025-06-05T23:50:27.1083132Z  2025-06-05T23:50:27.1083653Z # If the docker build directory or the build script doesn't exist, the action will 2025-06-05T23:50:27.1084531Z # gracefully return the docker image name as it is. Pulling docker image in Linux 2025-06-05T23:50:27.1085535Z # job could then download the pre-built image as usual 2025-06-05T23:50:27.1086279Z if [[ ! -d "${DOCKER_BUILD_DIR}" ]] || [[ ! -f "${DOCKER_BUILD_DIR}/${DOCKER_BUILD_SCRIPT}" ]]; then 2025-06-05T23:50:27.1086975Z  echo "skip=true" >> "${GITHUB_OUTPUT}" 2025-06-05T23:50:27.1087568Z  echo "docker-image=${DOCKER_IMAGE_NAME}" >> "${GITHUB_OUTPUT}" 2025-06-05T23:50:27.1088118Z  2025-06-05T23:50:27.1088590Z  echo "There is no Docker build script in ${REPO_NAME} repo, skipping..." 2025-06-05T23:50:27.1089177Z  exit 0 2025-06-05T23:50:27.1089483Z else 2025-06-05T23:50:27.1089835Z  echo "skip=false" >> "${GITHUB_OUTPUT}" 2025-06-05T23:50:27.1090279Z fi 2025-06-05T23:50:27.1090564Z  2025-06-05T23:50:27.1091022Z if [[ "${DOCKER_IMAGE_NAME}" == *"${DOCKER_REGISTRY}/${REPO_NAME}"* ]]; then 2025-06-05T23:50:27.1091800Z  # The docker image name already includes the ECR prefix and tag, so we can just 2025-06-05T23:50:27.1092516Z  # use it as it is, but first let's extract the tag 2025-06-05T23:50:27.1093159Z  DOCKER_TAG=$(echo "${DOCKER_IMAGE_NAME}" | awk -F '[:,]' '{print $2}') 2025-06-05T23:50:27.1093840Z  echo "docker-tag=${DOCKER_TAG}" >> "${GITHUB_OUTPUT}" 2025-06-05T23:50:27.1094487Z  echo "docker-image=${DOCKER_IMAGE_NAME}" >> "${GITHUB_OUTPUT}" 2025-06-05T23:50:27.1095040Z else 2025-06-05T23:50:27.1095391Z  if [[ "${DOCKER_IMAGE_NAME}" == *:* ]]; then 2025-06-05T23:50:27.1095909Z  CUSTOM_TAG_PREFIX=${DOCKER_IMAGE_NAME#*:} 2025-06-05T23:50:27.1096427Z  DOCKER_IMAGE_NAME=${DOCKER_IMAGE_NAME%%:*} 2025-06-05T23:50:27.1096885Z  fi 2025-06-05T23:50:27.1097471Z  DOCKER_TAG=${CUSTOM_TAG_PREFIX:+${CUSTOM_TAG_PREFIX}-}$(git rev-parse HEAD:"${DOCKER_BUILD_DIR}") 2025-06-05T23:50:27.1098281Z  echo "docker-tag=${DOCKER_TAG}" >> "${GITHUB_OUTPUT}" 2025-06-05T23:50:27.1099127Z  echo "docker-image=${DOCKER_REGISTRY}/${REPO_NAME}/${DOCKER_IMAGE_NAME}:${DOCKER_TAG}" >> "${GITHUB_OUTPUT}" 2025-06-05T23:50:27.1100206Z  echo "custom-tag-prefix=${CUSTOM_TAG_PREFIX}" >> "${GITHUB_OUTPUT}" 2025-06-05T23:50:27.1100793Z fi 2025-06-05T23:50:27.1108877Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:50:27.1109385Z env: 2025-06-05T23:50:27.1109746Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:50:27.1110218Z REPOSITORY: pytorch/executorch 2025-06-05T23:50:27.1110616Z PR_NUMBER: 2025-06-05T23:50:27.1125223Z 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 [ "google/gemma-3-1b-it" == "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="google/gemma-3-1b-it" 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:27.1140218Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:50:27.1140984Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:50:27.1141716Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:50:27.1142239Z REPO_NAME: executorch 2025-06-05T23:50:27.1142664Z DOCKER_IMAGE_NAME: executorch-ubuntu-22.04-clang12 2025-06-05T23:50:27.1143223Z DOCKER_BUILD_DIR: .ci/docker 2025-06-05T23:50:27.1143620Z DOCKER_BUILD_SCRIPT: ./build.sh 2025-06-05T23:50:27.1144125Z DOCKER_REGISTRY: 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:50:27.1144653Z CUSTOM_TAG_PREFIX: 2025-06-05T23:50:27.1144979Z ##[endgroup] 2025-06-05T23:50:27.1174693Z + [[ ! -d .ci/docker ]] 2025-06-05T23:50:27.1175106Z + [[ ! -f .ci/docker/./build.sh ]] 2025-06-05T23:50:27.1175519Z + echo skip=false 2025-06-05T23:50:27.1176608Z + [[ 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:27.1177502Z + [[ executorch-ubuntu-22.04-clang12 == *:* ]] 2025-06-05T23:50:27.1179767Z ++ git rev-parse HEAD:.ci/docker 2025-06-05T23:50:27.1197006Z + DOCKER_TAG=6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:50:27.1197641Z + echo docker-tag=6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:50:27.1198853Z + echo docker-image=308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:50:27.1200201Z + echo custom-tag-prefix= 2025-06-05T23:50:27.1240821Z ##[group]Run set +e 2025-06-05T23:50:27.1241263Z set +e 2025-06-05T23:50:27.1241576Z set -x 2025-06-05T23:50:27.1241898Z  2025-06-05T23:50:27.1242185Z login() { 2025-06-05T23:50:27.1242821Z  aws ecr get-login-password --region us-east-1 | docker login -u AWS --password-stdin "$1" 2025-06-05T23:50:27.1243507Z } 2025-06-05T23:50:27.1243801Z  2025-06-05T23:50:27.1244083Z retry () { 2025-06-05T23:50:27.1244461Z  $* || (sleep 1 && $*) || (sleep 2 && $*) 2025-06-05T23:50:27.1244884Z } 2025-06-05T23:50:27.1245186Z  2025-06-05T23:50:27.1245500Z retry login "${DOCKER_REGISTRY}" 2025-06-05T23:50:27.1245925Z  2025-06-05T23:50:27.1246230Z START_TIME=$(date +%s) 2025-06-05T23:50:27.1246635Z # Wait up to 120 minutes 2025-06-05T23:50:27.1247120Z while [[ $(( $(date +%s) - 7200 )) -lt $START_TIME ]]; do 2025-06-05T23:50:27.1247776Z  # Check if image already exists, if it does then skip building it 2025-06-05T23:50:27.1248417Z  if docker manifest inspect "${DOCKER_IMAGE}"; then 2025-06-05T23:50:27.1248911Z  exit 0 2025-06-05T23:50:27.1249232Z  fi 2025-06-05T23:50:27.1249523Z  2025-06-05T23:50:27.1250040Z  # NB: This flag is used by Docker build workflow to push the image to ECR, so we can 2025-06-05T23:50:27.1250902Z  # use this to differentiate between the Docker build and regular build jobs. For the 2025-06-05T23:50:27.1251778Z  # latter, it will wait for the Docker images to become available before continuing 2025-06-05T23:50:27.1252472Z  if [ "${DOCKER_PUSH:-false}" == "true" ]; then 2025-06-05T23:50:27.1253009Z  # It's a Docker build job, let's build the image 2025-06-05T23:50:27.1253487Z  break 2025-06-05T23:50:27.1253807Z  else 2025-06-05T23:50:27.1254300Z  # It's a regular build job, wait for the image to become available 2025-06-05T23:50:27.1254855Z  sleep 300 2025-06-05T23:50:27.1255206Z  fi 2025-06-05T23:50:27.1255508Z done 2025-06-05T23:50:27.1255810Z  2025-06-05T23:50:27.1256272Z # NB: This part requires a full checkout. Otherwise, the merge base will 2025-06-05T23:50:27.1257029Z # be empty. The default action would be to continue rebuild the image 2025-06-05T23:50:27.1257707Z if [[ "$BASE_REVISION" = "$(git rev-parse HEAD)" ]]; then 2025-06-05T23:50:27.1258317Z  # if we're on the base branch then use the parent commit 2025-06-05T23:50:27.1258850Z  MERGE_BASE=$(git rev-parse HEAD~) 2025-06-05T23:50:27.1259279Z else 2025-06-05T23:50:27.1259856Z  # otherwise we're on a PR, so use the most recent base commit 2025-06-05T23:50:27.1260498Z  MERGE_BASE=$(git merge-base HEAD "$BASE_REVISION") 2025-06-05T23:50:27.1260983Z fi 2025-06-05T23:50:27.1261280Z  2025-06-05T23:50:27.1261595Z if [[ -z "${MERGE_BASE}" ]]; then 2025-06-05T23:50:27.1262089Z  echo "rebuild=true" >> "${GITHUB_OUTPUT}" 2025-06-05T23:50:27.1262530Z  2025-06-05T23:50:27.1263160Z  echo "Finding merge base only works with full checkout, please set fetch-depth to 0, continuing ..." 2025-06-05T23:50:27.1263882Z  exit 0 2025-06-05T23:50:27.1264194Z fi 2025-06-05T23:50:27.1264476Z  2025-06-05T23:50:27.1264890Z if ! git rev-parse "${MERGE_BASE}:${DOCKER_BUILD_DIR}"; then 2025-06-05T23:50:27.1265778Z  echo "Directory '${DOCKER_BUILD_DIR}' not found in commit $MERGE_BASE, you should rebase onto a more recent commit" 2025-06-05T23:50:27.1266559Z  exit 1 2025-06-05T23:50:27.1266862Z fi 2025-06-05T23:50:27.1267160Z  2025-06-05T23:50:27.1267870Z PREVIOUS_DOCKER_TAG=$(git rev-parse "${MERGE_BASE}:${DOCKER_BUILD_DIR}") 2025-06-05T23:50:27.1268765Z # If no image exists but the hash is the same as the previous hash then we should error out here 2025-06-05T23:50:27.1269539Z if [[ "${PREVIOUS_DOCKER_TAG}" == "${DOCKER_TAG}" ]]; then 2025-06-05T23:50:27.1270437Z  echo "WARNING: Something has gone wrong and the previous image isn't available for the merge-base of your branch" 2025-06-05T23:50:27.1271440Z  echo " Will re-build docker image to store in local cache, TTS may be longer" 2025-06-05T23:50:27.1272064Z fi 2025-06-05T23:50:27.1272352Z  2025-06-05T23:50:27.1272713Z echo "rebuild=true" >> "${GITHUB_OUTPUT}" 2025-06-05T23:50:27.1278996Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:50:27.1279504Z env: 2025-06-05T23:50:27.1280370Z DOCKER_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:50:27.1281362Z REPOSITORY: pytorch/executorch 2025-06-05T23:50:27.1281758Z PR_NUMBER: 2025-06-05T23:50:27.1296616Z 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 [ "google/gemma-3-1b-it" == "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="google/gemma-3-1b-it" 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:27.1311824Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:50:27.1312612Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:50:27.1313331Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:50:27.1313877Z DOCKER_BUILD_DIR: .ci/docker 2025-06-05T23:50:27.1314334Z BASE_REVISION: bd572346e4f196b36aaa03a1645d12b1618fe88b 2025-06-05T23:50:27.1314896Z DOCKER_TAG: 6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:50:27.1315483Z DOCKER_REGISTRY: 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:50:27.1316010Z DOCKER_PUSH: 2025-06-05T23:50:27.1316320Z ##[endgroup] 2025-06-05T23:50:27.1342878Z + retry login 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:50:27.1343507Z + login 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:50:27.1345692Z + aws ecr get-login-password --region us-east-1 2025-06-05T23:50:27.1347191Z + docker login -u AWS --password-stdin 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:50:27.7317632Z WARNING! Your password will be stored unencrypted in /home/ec2-user/.docker/config.json. 2025-06-05T23:50:27.7318600Z Configure a credential helper to remove this warning. See 2025-06-05T23:50:27.7319505Z https://docs.docker.com/engine/reference/commandline/login/#credentials-store 2025-06-05T23:50:27.7320070Z 2025-06-05T23:50:27.7320204Z Login Succeeded 2025-06-05T23:50:27.7331651Z ++ date +%s 2025-06-05T23:50:27.7341360Z + START_TIME=1749167427 2025-06-05T23:50:27.7345380Z ++ date +%s 2025-06-05T23:50:27.7355097Z + [[ 1749160227 -lt 1749167427 ]] 2025-06-05T23:50:27.7356965Z + docker manifest inspect 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:50:27.9383088Z { 2025-06-05T23:50:27.9383698Z "schemaVersion": 2, 2025-06-05T23:50:27.9384547Z "mediaType": "application/vnd.docker.distribution.manifest.v2+json", 2025-06-05T23:50:27.9385358Z "config": { 2025-06-05T23:50:27.9385839Z "mediaType": "application/vnd.docker.container.image.v1+json", 2025-06-05T23:50:27.9386407Z "size": 15103, 2025-06-05T23:50:27.9386994Z "digest": "sha256:fd1cd238ff938168c3b0ff27a52bce2daabd27e2c7b7761b7a136339684f075e" 2025-06-05T23:50:27.9387672Z }, 2025-06-05T23:50:27.9388014Z "layers": [ 2025-06-05T23:50:27.9388314Z { 2025-06-05T23:50:27.9388756Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:27.9389355Z "size": 30438509, 2025-06-05T23:50:27.9389933Z "digest": "sha256:f557aa5ee22480ee9e1af0a094ce5174a8c3d83e1aa20dc8482e4e387546e0c3" 2025-06-05T23:50:27.9390612Z }, 2025-06-05T23:50:27.9391193Z { 2025-06-05T23:50:27.9391649Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:27.9392229Z "size": 631, 2025-06-05T23:50:27.9392819Z "digest": "sha256:e9a71f6cf6a033cad973f94ad3269a9e3774b3a547f2d35c6337589ebab6aeac" 2025-06-05T23:50:27.9393486Z }, 2025-06-05T23:50:27.9393760Z { 2025-06-05T23:50:27.9394195Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:27.9394791Z "size": 150105004, 2025-06-05T23:50:27.9395371Z "digest": "sha256:049f3bd1fa828e09f2b95b85222e78d1369b0d9b32c63dba4a621ef4b3fdf4b0" 2025-06-05T23:50:27.9396050Z }, 2025-06-05T23:50:27.9396307Z { 2025-06-05T23:50:27.9396740Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:27.9397398Z "size": 622, 2025-06-05T23:50:27.9398354Z "digest": "sha256:8f296761951c2477ba8d9546ac834b6cf17e772fbe388f9e3b2f4e822beb7713" 2025-06-05T23:50:27.9399050Z }, 2025-06-05T23:50:27.9399549Z { 2025-06-05T23:50:27.9400350Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:27.9401216Z "size": 19308725, 2025-06-05T23:50:27.9401957Z "digest": "sha256:f9c927f03c6aba2421ca61827c3ba57321d629b5cd394bf199d0fda0f3373a5e" 2025-06-05T23:50:27.9402637Z }, 2025-06-05T23:50:27.9402909Z { 2025-06-05T23:50:27.9403345Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:27.9403941Z "size": 736, 2025-06-05T23:50:27.9404489Z "digest": "sha256:4420b1e1a07f73643ce79401c2021c6970bc6e411c501a43b58d157e19090d5a" 2025-06-05T23:50:27.9405152Z }, 2025-06-05T23:50:27.9405409Z { 2025-06-05T23:50:27.9405853Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:27.9406429Z "size": 131417895, 2025-06-05T23:50:27.9407024Z "digest": "sha256:fa5411ca12c0b4cc5391abc0d46354e4ebf811724698c909d35a8bc79acbae42" 2025-06-05T23:50:27.9407691Z }, 2025-06-05T23:50:27.9407962Z { 2025-06-05T23:50:27.9408396Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:27.9408993Z "size": 445, 2025-06-05T23:50:27.9409537Z "digest": "sha256:172401b941b1764c760147d40814402d1238a7f1c7287fd8c0c9dd4897f09610" 2025-06-05T23:50:27.9410188Z }, 2025-06-05T23:50:27.9410447Z { 2025-06-05T23:50:27.9410879Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:27.9411468Z "size": 102, 2025-06-05T23:50:27.9412023Z "digest": "sha256:08f9a627d97be81309ccf16cf39ed5beb24962447ad72a1615b0748e4173b204" 2025-06-05T23:50:27.9412693Z }, 2025-06-05T23:50:27.9430146Z { 2025-06-05T23:50:27.9430725Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:27.9431329Z "size": 636, 2025-06-05T23:50:27.9431906Z "digest": "sha256:2d7e5abdd88dbf42ba6487b146573396d6f489b24623393763a4916452feeb69" 2025-06-05T23:50:27.9432576Z }, 2025-06-05T23:50:27.9432847Z { 2025-06-05T23:50:27.9433288Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:27.9433905Z "size": 35165342, 2025-06-05T23:50:27.9434499Z "digest": "sha256:0e4e4efb264486fade95db2dcaeeed53768fdf1fd6972a24431bca5d3e4abfed" 2025-06-05T23:50:27.9435194Z }, 2025-06-05T23:50:27.9435452Z { 2025-06-05T23:50:27.9435896Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:27.9436473Z "size": 318, 2025-06-05T23:50:27.9437042Z "digest": "sha256:380307a36ed2d54c982df9262fd1ec3b7fb61743ad1a24e7d1b691bc44edba7a" 2025-06-05T23:50:27.9437716Z }, 2025-06-05T23:50:27.9437988Z { 2025-06-05T23:50:27.9438431Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:27.9439023Z "size": 252129603, 2025-06-05T23:50:27.9439600Z "digest": "sha256:c39259ba6557e88adff97daca9051eb3b7557220d56a15a595e102e0b7888888" 2025-06-05T23:50:27.9440264Z }, 2025-06-05T23:50:27.9440535Z { 2025-06-05T23:50:27.9440970Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:27.9441716Z "size": 475, 2025-06-05T23:50:27.9442280Z "digest": "sha256:3ec19c2849b3bf6807efe10c62465e3f4d91dfd9fc8c1ff5b3667814c740339d" 2025-06-05T23:50:27.9443033Z + exit 0 2025-06-05T23:50:27.9443321Z }, 2025-06-05T23:50:27.9443581Z { 2025-06-05T23:50:27.9444020Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:27.9444620Z "size": 1041, 2025-06-05T23:50:27.9445177Z "digest": "sha256:c906c3b73c9a07577673cc305885ff3cb88a96410f3536d3cc37d1ab95ea8105" 2025-06-05T23:50:27.9445854Z }, 2025-06-05T23:50:27.9446110Z { 2025-06-05T23:50:27.9446554Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:27.9447125Z "size": 613, 2025-06-05T23:50:27.9447705Z "digest": "sha256:5e70c61fded41a31ea65efce907d9dff9acbc03826fb949591a55cfdd3385730" 2025-06-05T23:50:27.9448376Z }, 2025-06-05T23:50:27.9448642Z { 2025-06-05T23:50:27.9449074Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:27.9449667Z "size": 77567180, 2025-06-05T23:50:27.9450256Z "digest": "sha256:32d238decf552efed879fd5a38ef4c28a93691784cfa4cf29f72f02ff98b663c" 2025-06-05T23:50:27.9450938Z }, 2025-06-05T23:50:27.9451281Z { 2025-06-05T23:50:27.9451728Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:27.9452305Z "size": 572, 2025-06-05T23:50:27.9452851Z "digest": "sha256:82809b17e34970c5fc644204a01b9174222a6532e2bf50080d656bf431502fcb" 2025-06-05T23:50:27.9453520Z }, 2025-06-05T23:50:27.9453775Z { 2025-06-05T23:50:27.9454221Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:27.9454796Z "size": 208, 2025-06-05T23:50:27.9455364Z "digest": "sha256:beff343a364c42297e426fde8abbfacb4531230cc6c28639cb27af09f8a6aeaa" 2025-06-05T23:50:27.9456031Z }, 2025-06-05T23:50:27.9456300Z { 2025-06-05T23:50:27.9456735Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:27.9457322Z "size": 1190, 2025-06-05T23:50:27.9457881Z "digest": "sha256:5630a9397492da6fac00fcc2b54281af300c4762827878ad79bbf050d7f1388d" 2025-06-05T23:50:27.9458554Z }, 2025-06-05T23:50:27.9458810Z { 2025-06-05T23:50:27.9459265Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:27.9459839Z "size": 679, 2025-06-05T23:50:27.9460413Z "digest": "sha256:1fc2d9899ffb3967bedc37627591b09f8e71118dfa4afe3eaa4fb76079e974bd" 2025-06-05T23:50:27.9461084Z }, 2025-06-05T23:50:27.9461338Z { 2025-06-05T23:50:27.9461786Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:27.9462360Z "size": 6857042734, 2025-06-05T23:50:27.9462947Z "digest": "sha256:91905b6f2f52504df72b723d19817eec2b201bee33ae760808b079869acb2f6b" 2025-06-05T23:50:27.9463606Z }, 2025-06-05T23:50:27.9463880Z { 2025-06-05T23:50:27.9464316Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:27.9464906Z "size": 1383, 2025-06-05T23:50:27.9465465Z "digest": "sha256:09dac94eaf912c1143008ab2c199dc2a0547cf68fe2b08e1b96af9c2895928ae" 2025-06-05T23:50:27.9466150Z }, 2025-06-05T23:50:27.9466403Z { 2025-06-05T23:50:27.9466855Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:27.9467427Z "size": 679, 2025-06-05T23:50:27.9468092Z "digest": "sha256:1fc2d9899ffb3967bedc37627591b09f8e71118dfa4afe3eaa4fb76079e974bd" 2025-06-05T23:50:27.9468768Z }, 2025-06-05T23:50:27.9469024Z { 2025-06-05T23:50:27.9469472Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:27.9470050Z "size": 232891491, 2025-06-05T23:50:27.9470638Z "digest": "sha256:6d88f3766b32d28d76e4b977173ca059882b729a62bfb97b74b2e112a7e07081" 2025-06-05T23:50:27.9471289Z }, 2025-06-05T23:50:27.9471558Z { 2025-06-05T23:50:27.9471989Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:27.9472572Z "size": 827, 2025-06-05T23:50:27.9473141Z "digest": "sha256:dec0deaa1ed566de23b66dcd78ea8449250b56b611cab27ebb83b9504d48a46b" 2025-06-05T23:50:27.9473931Z }, 2025-06-05T23:50:27.9474191Z { 2025-06-05T23:50:27.9474644Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:27.9475231Z "size": 679, 2025-06-05T23:50:27.9475809Z "digest": "sha256:1fc2d9899ffb3967bedc37627591b09f8e71118dfa4afe3eaa4fb76079e974bd" 2025-06-05T23:50:27.9476480Z }, 2025-06-05T23:50:27.9476752Z { 2025-06-05T23:50:27.9477190Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:27.9477769Z "size": 185012212, 2025-06-05T23:50:27.9478365Z "digest": "sha256:f8e551473643076aad7336eff42fb9eade23f8abdf765265391eb601688a508e" 2025-06-05T23:50:27.9479028Z }, 2025-06-05T23:50:27.9479296Z { 2025-06-05T23:50:27.9479730Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:27.9480316Z "size": 530, 2025-06-05T23:50:27.9480881Z "digest": "sha256:e8c9ad02b5187f5d1cb1d0cce8e115dd9462726f44a685de71b4cbe4f70c67e6" 2025-06-05T23:50:27.9481562Z }, 2025-06-05T23:50:27.9481821Z { 2025-06-05T23:50:27.9482265Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:27.9482844Z "size": 679, 2025-06-05T23:50:27.9483491Z "digest": "sha256:1fc2d9899ffb3967bedc37627591b09f8e71118dfa4afe3eaa4fb76079e974bd" 2025-06-05T23:50:27.9484163Z }, 2025-06-05T23:50:27.9484431Z { 2025-06-05T23:50:27.9484861Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:27.9485856Z "size": 354, 2025-06-05T23:50:27.9486411Z "digest": "sha256:ca22a013d303766ddf153f37526c40fa37dc1c0d112176fdb33378c50a81c354" 2025-06-05T23:50:27.9487076Z }, 2025-06-05T23:50:27.9487344Z { 2025-06-05T23:50:27.9487781Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:27.9488370Z "size": 32, 2025-06-05T23:50:27.9489146Z "digest": "sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1" 2025-06-05T23:50:27.9490053Z }, 2025-06-05T23:50:27.9490309Z { 2025-06-05T23:50:27.9490765Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:27.9491338Z "size": 166, 2025-06-05T23:50:27.9491918Z "digest": "sha256:646de239c5522c189eeafe3c3e40d524fdb04e611ff7ac7ed962067edc79e37c" 2025-06-05T23:50:27.9492584Z }, 2025-06-05T23:50:27.9492849Z { 2025-06-05T23:50:27.9493281Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:27.9493872Z "size": 1109, 2025-06-05T23:50:27.9494437Z "digest": "sha256:c2b62aa0dc26b7dd48338aef7893ebaf56403579f42aa88a56bd416c04f43619" 2025-06-05T23:50:27.9495121Z }, 2025-06-05T23:50:27.9495379Z { 2025-06-05T23:50:27.9495811Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:27.9496411Z "size": 32, 2025-06-05T23:50:27.9496983Z "digest": "sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1" 2025-06-05T23:50:27.9497658Z }, 2025-06-05T23:50:27.9497933Z { 2025-06-05T23:50:27.9498370Z "mediaType": "application/vnd.docker.image.rootfs.diff.tar.gzip", 2025-06-05T23:50:27.9498968Z "size": 108, 2025-06-05T23:50:27.9499531Z "digest": "sha256:f6779e1a371ff37aa81f30b1933474705799f32406c2afea442a0cada6c51e93" 2025-06-05T23:50:27.9500207Z } 2025-06-05T23:50:27.9500476Z ] 2025-06-05T23:50:27.9500733Z } 2025-06-05T23:50:27.9543264Z ##[group]Run set -eux 2025-06-05T23:50:27.9543659Z set -eux 2025-06-05T23:50:27.9544786Z 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:27.9552436Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:50:27.9552930Z env: 2025-06-05T23:50:27.9553293Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:50:27.9553777Z REPOSITORY: pytorch/executorch 2025-06-05T23:50:27.9554176Z PR_NUMBER: 2025-06-05T23:50:27.9568909Z 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 [ "google/gemma-3-1b-it" == "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="google/gemma-3-1b-it" 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:27.9584075Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:50:27.9584853Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:50:27.9585931Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:50:27.9586452Z ##[endgroup] 2025-06-05T23:50:27.9618030Z + aws secretsmanager get-secret-value --secret-id docker_hub_readonly_token 2025-06-05T23:50:27.9619164Z + jq --raw-output .SecretString 2025-06-05T23:50:27.9620667Z + jq -r .docker_hub_readonly_token 2025-06-05T23:50:27.9622245Z + docker login --username pytorchbot --password-stdin 2025-06-05T23:50:28.6017991Z WARNING! Your password will be stored unencrypted in /home/ec2-user/.docker/config.json. 2025-06-05T23:50:28.6018986Z Configure a credential helper to remove this warning. See 2025-06-05T23:50:28.6019785Z https://docs.docker.com/engine/reference/commandline/login/#credentials-store 2025-06-05T23:50:28.6020354Z 2025-06-05T23:50:28.6020502Z Login Succeeded 2025-06-05T23:50:28.6113290Z Prepare all required actions 2025-06-05T23:50:28.6160755Z ##[group]Run ./test-infra/.github/actions/pull-docker-image 2025-06-05T23:50:28.6161250Z with: 2025-06-05T23:50:28.6162120Z docker-image: 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:50:28.6163213Z docker-registry: 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:50:28.6163732Z env: 2025-06-05T23:50:28.6164067Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:50:28.6164554Z REPOSITORY: pytorch/executorch 2025-06-05T23:50:28.6164938Z PR_NUMBER: 2025-06-05T23:50:28.6179493Z 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 [ "google/gemma-3-1b-it" == "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="google/gemma-3-1b-it" 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:28.6194936Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:50:28.6195714Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:50:28.6196643Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:50:28.6197269Z ##[endgroup] 2025-06-05T23:50:28.6266969Z ##[group]Run set -x 2025-06-05T23:50:28.6267342Z set -x 2025-06-05T23:50:28.6267660Z set +e 2025-06-05T23:50:28.6268077Z  2025-06-05T23:50:28.6268370Z login() { 2025-06-05T23:50:28.6269009Z  aws ecr get-login-password --region us-east-1 | docker login -u AWS --password-stdin "$1" 2025-06-05T23:50:28.6269690Z } 2025-06-05T23:50:28.6269986Z  2025-06-05T23:50:28.6270270Z retry () { 2025-06-05T23:50:28.6270647Z  $* || (sleep 1 && $*) || (sleep 2 && $*) 2025-06-05T23:50:28.6271063Z } 2025-06-05T23:50:28.6271355Z  2025-06-05T23:50:28.6271663Z retry login "${DOCKER_REGISTRY}" 2025-06-05T23:50:28.6272082Z  2025-06-05T23:50:28.6272714Z IMAGE_SIZE=$(docker manifest inspect "${DOCKER_IMAGE}" | jq '[.layers[].size, .config.size] | add / 1024 / 1024') 2025-06-05T23:50:28.6273592Z echo "Compressed size of image in MB: ${IMAGE_SIZE}" 2025-06-05T23:50:28.6274095Z  2025-06-05T23:50:28.6274391Z set -e 2025-06-05T23:50:28.6274836Z # ignore output since only exit code is used for conditional 2025-06-05T23:50:28.6275487Z # only pull docker image if it's not available locally 2025-06-05T23:50:28.6276188Z if ! docker inspect --type=image "${DOCKER_IMAGE}" >/dev/null 2>/dev/null; then 2025-06-05T23:50:28.6276875Z  retry docker pull "${DOCKER_IMAGE}" 2025-06-05T23:50:28.6277306Z fi 2025-06-05T23:50:28.6283806Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:50:28.6284305Z env: 2025-06-05T23:50:28.6285377Z DOCKER_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:50:28.6286374Z REPOSITORY: pytorch/executorch 2025-06-05T23:50:28.6286779Z PR_NUMBER: 2025-06-05T23:50:28.6301461Z 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 [ "google/gemma-3-1b-it" == "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="google/gemma-3-1b-it" 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:28.6316664Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:50:28.6317441Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:50:28.6318174Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:50:28.6318816Z DOCKER_REGISTRY: 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:50:28.6319347Z ##[endgroup] 2025-06-05T23:50:28.6346077Z + set +e 2025-06-05T23:50:28.6346927Z + retry login 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:50:28.6347565Z + login 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:50:28.6350296Z + aws ecr get-login-password --region us-east-1 2025-06-05T23:50:28.6351561Z + docker login -u AWS --password-stdin 308535385114.dkr.ecr.us-east-1.amazonaws.com 2025-06-05T23:50:29.2202699Z WARNING! Your password will be stored unencrypted in /home/ec2-user/.docker/config.json. 2025-06-05T23:50:29.2203802Z Configure a credential helper to remove this warning. See 2025-06-05T23:50:29.2204943Z https://docs.docker.com/engine/reference/commandline/login/#credentials-store 2025-06-05T23:50:29.2205790Z 2025-06-05T23:50:29.2206041Z Login Succeeded 2025-06-05T23:50:29.2222525Z ++ docker manifest inspect 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:50:29.2223766Z ++ jq '[.layers[].size, .config.size] | add / 1024 / 1024' 2025-06-05T23:50:29.4307874Z + IMAGE_SIZE=7601.84158706665 2025-06-05T23:50:29.4308701Z + echo 'Compressed size of image in MB: 7601.84158706665' 2025-06-05T23:50:29.4309233Z + set -e 2025-06-05T23:50:29.4310247Z + docker inspect --type=image 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:50:29.4311455Z Compressed size of image in MB: 7601.84158706665 2025-06-05T23:50:29.4440331Z + retry docker pull 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:50:29.4442111Z + docker pull 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:50:29.6769078Z 6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa: Pulling from executorch/executorch-ubuntu-22.04-clang12 2025-06-05T23:50:29.6770679Z f557aa5ee224: Pulling fs layer 2025-06-05T23:50:29.6771418Z e9a71f6cf6a0: Pulling fs layer 2025-06-05T23:50:29.6772115Z 049f3bd1fa82: Pulling fs layer 2025-06-05T23:50:29.6772736Z 8f296761951c: Pulling fs layer 2025-06-05T23:50:29.6773436Z f9c927f03c6a: Pulling fs layer 2025-06-05T23:50:29.6773984Z 4420b1e1a07f: Pulling fs layer 2025-06-05T23:50:29.6774380Z fa5411ca12c0: Pulling fs layer 2025-06-05T23:50:29.6774761Z 172401b941b1: Pulling fs layer 2025-06-05T23:50:29.6775153Z 08f9a627d97b: Pulling fs layer 2025-06-05T23:50:29.6775543Z 2d7e5abdd88d: Pulling fs layer 2025-06-05T23:50:29.6776234Z 0e4e4efb2644: Pulling fs layer 2025-06-05T23:50:29.6776740Z 172401b941b1: Waiting 2025-06-05T23:50:29.6777097Z 380307a36ed2: Pulling fs layer 2025-06-05T23:50:29.6777478Z c39259ba6557: Pulling fs layer 2025-06-05T23:50:29.6777865Z 08f9a627d97b: Waiting 2025-06-05T23:50:29.6778204Z 3ec19c2849b3: Pulling fs layer 2025-06-05T23:50:29.6778587Z c906c3b73c9a: Pulling fs layer 2025-06-05T23:50:29.6778973Z 2d7e5abdd88d: Waiting 2025-06-05T23:50:29.6779299Z f9c927f03c6a: Waiting 2025-06-05T23:50:29.6779648Z 5e70c61fded4: Pulling fs layer 2025-06-05T23:50:29.6780031Z 32d238decf55: Pulling fs layer 2025-06-05T23:50:29.6780422Z 82809b17e349: Pulling fs layer 2025-06-05T23:50:29.6780800Z beff343a364c: Pulling fs layer 2025-06-05T23:50:29.6781187Z 3ec19c2849b3: Waiting 2025-06-05T23:50:29.6781511Z 8f296761951c: Waiting 2025-06-05T23:50:29.6781856Z 5630a9397492: Pulling fs layer 2025-06-05T23:50:29.6782238Z 1fc2d9899ffb: Pulling fs layer 2025-06-05T23:50:29.6782636Z 91905b6f2f52: Pulling fs layer 2025-06-05T23:50:29.6783023Z 09dac94eaf91: Pulling fs layer 2025-06-05T23:50:29.6783401Z c906c3b73c9a: Waiting 2025-06-05T23:50:29.6783739Z 380307a36ed2: Waiting 2025-06-05T23:50:29.6784173Z c39259ba6557: Waiting 2025-06-05T23:50:29.6784521Z 6d88f3766b32: Pulling fs layer 2025-06-05T23:50:29.6784924Z dec0deaa1ed5: Pulling fs layer 2025-06-05T23:50:29.6785611Z 5e70c61fded4: Waiting 2025-06-05T23:50:29.6785943Z 32d238decf55: Waiting 2025-06-05T23:50:29.6786281Z 82809b17e349: Waiting 2025-06-05T23:50:29.6786601Z fa5411ca12c0: Waiting 2025-06-05T23:50:29.6786954Z f8e551473643: Pulling fs layer 2025-06-05T23:50:29.6787319Z 5630a9397492: Waiting 2025-06-05T23:50:29.6787663Z e8c9ad02b518: Pulling fs layer 2025-06-05T23:50:29.6788116Z 1fc2d9899ffb: Waiting 2025-06-05T23:50:29.6788465Z 09dac94eaf91: Waiting 2025-06-05T23:50:29.6788803Z ca22a013d303: Pulling fs layer 2025-06-05T23:50:29.6789178Z dec0deaa1ed5: Waiting 2025-06-05T23:50:29.6789537Z 4f4fb700ef54: Pulling fs layer 2025-06-05T23:50:29.6789919Z 646de239c552: Pulling fs layer 2025-06-05T23:50:29.6790313Z f8e551473643: Waiting 2025-06-05T23:50:29.6790650Z c2b62aa0dc26: Pulling fs layer 2025-06-05T23:50:29.6791038Z e8c9ad02b518: Waiting 2025-06-05T23:50:29.6791377Z f6779e1a371f: Pulling fs layer 2025-06-05T23:50:29.6791759Z ca22a013d303: Waiting 2025-06-05T23:50:29.6792085Z c2b62aa0dc26: Waiting 2025-06-05T23:50:29.6792421Z 4f4fb700ef54: Waiting 2025-06-05T23:50:29.6792740Z 646de239c552: Waiting 2025-06-05T23:50:29.6793070Z f6779e1a371f: Waiting 2025-06-05T23:50:29.6793387Z 6d88f3766b32: Waiting 2025-06-05T23:50:29.6793705Z 91905b6f2f52: Waiting 2025-06-05T23:50:29.6794040Z beff343a364c: Waiting 2025-06-05T23:50:29.7621114Z e9a71f6cf6a0: Verifying Checksum 2025-06-05T23:50:29.7622048Z e9a71f6cf6a0: Download complete 2025-06-05T23:50:29.8407761Z 8f296761951c: Download complete 2025-06-05T23:50:30.0326875Z f557aa5ee224: Verifying Checksum 2025-06-05T23:50:30.0327669Z f557aa5ee224: Download complete 2025-06-05T23:50:30.0816797Z f9c927f03c6a: Verifying Checksum 2025-06-05T23:50:30.0817358Z f9c927f03c6a: Download complete 2025-06-05T23:50:30.1065849Z 4420b1e1a07f: Verifying Checksum 2025-06-05T23:50:30.1066686Z 4420b1e1a07f: Download complete 2025-06-05T23:50:30.1867377Z 172401b941b1: Verifying Checksum 2025-06-05T23:50:30.1868124Z 172401b941b1: Download complete 2025-06-05T23:50:30.2606575Z 08f9a627d97b: Verifying Checksum 2025-06-05T23:50:30.2607368Z 08f9a627d97b: Download complete 2025-06-05T23:50:30.3570186Z 2d7e5abdd88d: Verifying Checksum 2025-06-05T23:50:30.3570836Z 2d7e5abdd88d: Download complete 2025-06-05T23:50:30.7554197Z 0e4e4efb2644: Verifying Checksum 2025-06-05T23:50:30.7555012Z 0e4e4efb2644: Download complete 2025-06-05T23:50:30.8311774Z 380307a36ed2: Verifying Checksum 2025-06-05T23:50:30.8312452Z 380307a36ed2: Download complete 2025-06-05T23:50:31.1160784Z f557aa5ee224: Pull complete 2025-06-05T23:50:31.1378430Z e9a71f6cf6a0: Pull complete 2025-06-05T23:50:31.2289562Z 049f3bd1fa82: Verifying Checksum 2025-06-05T23:50:31.2290121Z 049f3bd1fa82: Download complete 2025-06-05T23:50:31.2927307Z 3ec19c2849b3: Download complete 2025-06-05T23:50:31.3726328Z c906c3b73c9a: Verifying Checksum 2025-06-05T23:50:31.3727205Z c906c3b73c9a: Download complete 2025-06-05T23:50:31.4348639Z 5e70c61fded4: Verifying Checksum 2025-06-05T23:50:31.4349318Z 5e70c61fded4: Download complete 2025-06-05T23:50:31.4628060Z fa5411ca12c0: Verifying Checksum 2025-06-05T23:50:31.4629879Z fa5411ca12c0: Download complete 2025-06-05T23:50:31.5451546Z 82809b17e349: Verifying Checksum 2025-06-05T23:50:31.5452301Z 82809b17e349: Download complete 2025-06-05T23:50:31.6157901Z beff343a364c: Verifying Checksum 2025-06-05T23:50:31.6158580Z beff343a364c: Download complete 2025-06-05T23:50:31.7025687Z 5630a9397492: Download complete 2025-06-05T23:50:31.7805333Z 1fc2d9899ffb: Verifying Checksum 2025-06-05T23:50:31.7805863Z 1fc2d9899ffb: Download complete 2025-06-05T23:50:32.2677839Z 32d238decf55: Verifying Checksum 2025-06-05T23:50:32.2678596Z 32d238decf55: Download complete 2025-06-05T23:50:32.3355814Z 09dac94eaf91: Verifying Checksum 2025-06-05T23:50:32.3356692Z 09dac94eaf91: Download complete 2025-06-05T23:50:33.3997726Z c39259ba6557: Verifying Checksum 2025-06-05T23:50:33.3998551Z c39259ba6557: Download complete 2025-06-05T23:50:33.4830227Z dec0deaa1ed5: Download complete 2025-06-05T23:50:34.7347142Z 6d88f3766b32: Verifying Checksum 2025-06-05T23:50:34.7348092Z 6d88f3766b32: Download complete 2025-06-05T23:50:34.8114666Z e8c9ad02b518: Download complete 2025-06-05T23:50:34.9033778Z ca22a013d303: Verifying Checksum 2025-06-05T23:50:34.9034627Z ca22a013d303: Download complete 2025-06-05T23:50:34.9109725Z 4f4fb700ef54: Download complete 2025-06-05T23:50:34.9837108Z 646de239c552: Verifying Checksum 2025-06-05T23:50:34.9837864Z 646de239c552: Download complete 2025-06-05T23:50:35.0645801Z c2b62aa0dc26: Verifying Checksum 2025-06-05T23:50:35.0646643Z c2b62aa0dc26: Download complete 2025-06-05T23:50:35.1529185Z f6779e1a371f: Download complete 2025-06-05T23:50:35.3885519Z f8e551473643: Verifying Checksum 2025-06-05T23:50:35.3886159Z f8e551473643: Download complete 2025-06-05T23:50:35.5396438Z 049f3bd1fa82: Pull complete 2025-06-05T23:50:35.5606551Z 8f296761951c: Pull complete 2025-06-05T23:50:35.8214287Z f9c927f03c6a: Pull complete 2025-06-05T23:50:35.8420500Z 4420b1e1a07f: Pull complete 2025-06-05T23:50:38.5412509Z fa5411ca12c0: Pull complete 2025-06-05T23:50:38.5619053Z 172401b941b1: Pull complete 2025-06-05T23:50:38.5821215Z 08f9a627d97b: Pull complete 2025-06-05T23:50:38.6022879Z 2d7e5abdd88d: Pull complete 2025-06-05T23:50:39.2278291Z 0e4e4efb2644: Pull complete 2025-06-05T23:50:39.2489215Z 380307a36ed2: Pull complete 2025-06-05T23:50:44.9457495Z c39259ba6557: Pull complete 2025-06-05T23:50:45.1561564Z 3ec19c2849b3: Pull complete 2025-06-05T23:50:45.3453146Z c906c3b73c9a: Pull complete 2025-06-05T23:50:45.5272681Z 5e70c61fded4: Pull complete 2025-06-05T23:50:47.6976233Z 32d238decf55: Pull complete 2025-06-05T23:50:47.9229862Z 82809b17e349: Pull complete 2025-06-05T23:50:48.1475350Z beff343a364c: Pull complete 2025-06-05T23:50:48.3732939Z 5630a9397492: Pull complete 2025-06-05T23:50:48.5851601Z 1fc2d9899ffb: Pull complete 2025-06-05T23:51:40.3971785Z 91905b6f2f52: Verifying Checksum 2025-06-05T23:51:40.3972290Z 91905b6f2f52: Download complete 2025-06-05T23:52:54.0282357Z 91905b6f2f52: Pull complete 2025-06-05T23:52:54.2539629Z 09dac94eaf91: Pull complete 2025-06-05T23:53:01.0648979Z 6d88f3766b32: Pull complete 2025-06-05T23:53:01.2802507Z dec0deaa1ed5: Pull complete 2025-06-05T23:53:08.3815705Z f8e551473643: Pull complete 2025-06-05T23:53:08.5062627Z e8c9ad02b518: Pull complete 2025-06-05T23:53:08.7769846Z ca22a013d303: Pull complete 2025-06-05T23:53:08.9112270Z 4f4fb700ef54: Pull complete 2025-06-05T23:53:09.0499109Z 646de239c552: Pull complete 2025-06-05T23:53:09.1816806Z c2b62aa0dc26: Pull complete 2025-06-05T23:53:09.4214522Z f6779e1a371f: Pull complete 2025-06-05T23:53:09.4912836Z Digest: sha256:4cd9e207005b6720f61c5035e99d041f7d33aa7b787473b2143d086595b815e8 2025-06-05T23:53:09.5182021Z Status: Downloaded newer image for 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:53:09.5337167Z 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:53:09.5383741Z ##[group]Run echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-06-05T23:53:09.5384989Z echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-06-05T23:53:09.5393565Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-05T23:53:09.5394078Z env: 2025-06-05T23:53:09.5394426Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-05T23:53:09.5394921Z REPOSITORY: pytorch/executorch 2025-06-05T23:53:09.5395310Z PR_NUMBER: 2025-06-05T23:53:09.5409958Z 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 [ "google/gemma-3-1b-it" == "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="google/gemma-3-1b-it" 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:09.5425007Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:53:09.5425932Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:53:09.5426675Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:53:09.5427325Z ##[endgroup] 2025-06-05T23:53:09.5600069Z ##[group]Run set -ex 2025-06-05T23:53:09.5600455Z set -ex 2025-06-05T23:53:09.5600779Z { 2025-06-05T23:53:09.5601093Z  echo "#!/usr/bin/env bash"; 2025-06-05T23:53:09.5601544Z  echo "set -eou pipefail"; 2025-06-05T23:53:09.5601970Z  # shellcheck disable=SC2016 2025-06-05T23:53:09.5602445Z  echo 'eval "$(conda shell.bash hook)"'; 2025-06-05T23:53:09.5602899Z  echo "set -x"; 2025-06-05T23:53:09.5603279Z  echo "${SCRIPT}"; 2025-06-05T23:53:09.5603669Z } > "${RUNNER_TEMP}/exec_script" 2025-06-05T23:53:09.5604144Z chmod +x "${RUNNER_TEMP}/exec_script" 2025-06-05T23:53:09.5605199Z 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:09.5612785Z shell: /usr/bin/bash -e {0} 2025-06-05T23:53:09.5613167Z env: 2025-06-05T23:53:09.5614069Z DOCKER_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-05T23:53:09.5615054Z REPOSITORY: pytorch/executorch 2025-06-05T23:53:09.5615463Z PR_NUMBER: 2025-06-05T23:53:09.5630918Z 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 [ "google/gemma-3-1b-it" == "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="google/gemma-3-1b-it" 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:09.5658981Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-05T23:53:09.5659921Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-05T23:53:09.5660671Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-05T23:53:10.1536399Z 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:10.1539015Z ##[endgroup] 2025-06-05T23:53:10.1572587Z + echo '#!/usr/bin/env bash' 2025-06-05T23:53:10.1574271Z + echo 'set -eou pipefail' 2025-06-05T23:53:10.1574794Z + echo 'eval "$(conda shell.bash hook)"' 2025-06-05T23:53:10.1575260Z + echo 'set -x' 2025-06-05T23:53:10.1575650Z + echo 'echo "::group::Set up ExecuTorch" 2025-06-05T23:53:10.1576553Z # The generic Linux job chooses to use base env, not the one setup by the image 2025-06-05T23:53:10.1577783Z CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]") 2025-06-05T23:53:10.1578501Z conda activate "${CONDA_ENV}" 2025-06-05T23:53:10.1579140Z PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh --build-tool cmake 2025-06-05T23:53:10.1579822Z # Build executor_runner with ETdump enabled 2025-06-05T23:53:10.1580418Z PYTHON_EXECUTABLE=python cmake -DPYTHON_EXECUTABLE=python \ 2025-06-05T23:53:10.1580996Z -DCMAKE_INSTALL_PREFIX=cmake-out \ 2025-06-05T23:53:10.1581453Z -DEXECUTORCH_ENABLE_LOGGING=1 \ 2025-06-05T23:53:10.1581872Z -DCMAKE_BUILD_TYPE=Release \ 2025-06-05T23:53:10.1582343Z -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON \ 2025-06-05T23:53:10.1582861Z -DEXECUTORCH_BUILD_EXTENSION_MODULE=ON \ 2025-06-05T23:53:10.1583334Z -DEXECUTORCH_BUILD_EXTENSION_TENSOR=ON \ 2025-06-05T23:53:10.1583806Z -DEXECUTORCH_BUILD_XNNPACK=ON \ 2025-06-05T23:53:10.1584247Z -DEXECUTORCH_BUILD_KERNELS_QUANTIZED=ON \ 2025-06-05T23:53:10.1584741Z -DEXECUTORCH_BUILD_KERNELS_OPTIMIZED=ON \ 2025-06-05T23:53:10.1585438Z -DEXECUTORCH_BUILD_KERNELS_CUSTOM=ON \ 2025-06-05T23:53:10.1585915Z -DEXECUTORCH_BUILD_DEVTOOLS=ON \ 2025-06-05T23:53:10.1586426Z -DEXECUTORCH_ENABLE_EVENT_TRACER=ON \ 2025-06-05T23:53:10.1586873Z -Bcmake-out . 2025-06-05T23:53:10.1587321Z cmake --build cmake-out -j16 --target install --config Release 2025-06-05T23:53:10.1587987Z echo "::endgroup::" 2025-06-05T23:53:10.1588185Z 2025-06-05T23:53:10.1588346Z echo "::group::Set up Hugging Face" 2025-06-05T23:53:10.1588800Z pip install -U "huggingface_hub[cli]" 2025-06-05T23:53:10.1589342Z huggingface-cli login --token $SECRET_EXECUTORCH_HF_TOKEN 2025-06-05T23:53:10.1590031Z git clone https://github.com/huggingface/optimum-executorch 2025-06-05T23:53:10.1590591Z pushd optimum-executorch 2025-06-05T23:53:10.1591181Z # There is no release yet, for CI stability, always test from the same commit on main 2025-06-05T23:53:10.1591923Z git checkout da80c9e35b3db5c7eea8731b7d660482fb4870a8 2025-06-05T23:53:10.1592444Z pip install .[tests] 2025-06-05T23:53:10.1592763Z popd 2025-06-05T23:53:10.1592924Z 2025-06-05T23:53:10.1593162Z if [ "google/gemma-3-1b-it" == "google/gemma-3-1b-it" ]; then 2025-06-05T23:53:10.1594553Z # Fixes for gemma-3 is not available in the released version 2025-06-05T23:53:10.1595218Z git clone https://github.com/huggingface/transformers.git 2025-06-05T23:53:10.1595909Z pushd transformers 2025-06-05T23:53:10.1596335Z git checkout a57274466f7f72efaa2662d1738cdaf28ae8071f 2025-06-05T23:53:10.1596859Z pip install -e . 2025-06-05T23:53:10.1597171Z popd 2025-06-05T23:53:10.1597457Z fi 2025-06-05T23:53:10.1597731Z pip list 2025-06-05T23:53:10.1598042Z echo "::endgroup::" 2025-06-05T23:53:10.1598235Z 2025-06-05T23:53:10.1598402Z echo "::group::Export to ExecuTorch" 2025-06-05T23:53:10.1598887Z # Pass matrix variable as environment variable 2025-06-05T23:53:10.1599381Z export MODEL_ID="google/gemma-3-1b-it" 2025-06-05T23:53:10.1599931Z export OUTPUT_DIR="$(pwd)/${MODEL_ID}_custom_sdpa_8da4w" 2025-06-05T23:53:10.1600500Z pushd optimum-executorch 2025-06-05T23:53:10.1600746Z 2025-06-05T23:53:10.1600907Z optimum-cli export executorch \ 2025-06-05T23:53:10.1601314Z --model ${MODEL_ID} \ 2025-06-05T23:53:10.1601680Z --task text-generation \ 2025-06-05T23:53:10.1602064Z --recipe xnnpack \ 2025-06-05T23:53:10.1602405Z --use_custom_sdpa \ 2025-06-05T23:53:10.1602771Z --output_dir ${OUTPUT_DIR} \ 2025-06-05T23:53:10.1603174Z --qlinear 2025-06-05T23:53:10.1603345Z 2025-06-05T23:53:10.1603494Z ls -FlAGhp ${OUTPUT_DIR} 2025-06-05T23:53:10.1603839Z popd 2025-06-05T23:53:10.1604136Z echo "::endgroup::" 2025-06-05T23:53:10.1604339Z 2025-06-05T23:53:10.1604503Z echo "::group::Inference using python API" 2025-06-05T23:53:10.1604981Z pushd optimum-executorch 2025-06-05T23:53:10.1605334Z python -c " 2025-06-05T23:53:10.1605631Z import os 2025-06-05T23:53:10.1606043Z from optimum.executorch import ExecuTorchModelForCausalLM 2025-06-05T23:53:10.1606626Z from transformers import AutoTokenizer 2025-06-05T23:53:10.1606936Z 2025-06-05T23:53:10.1607081Z model_id = os.getenv('\''MODEL_ID'\'') 2025-06-05T23:53:10.1607537Z pte_dir = os.getenv('\''OUTPUT_DIR'\'') 2025-06-05T23:53:10.1608064Z print(f'\''Loading model {model_id} from {pte_dir}.'\'') 2025-06-05T23:53:10.1608715Z model = ExecuTorchModelForCausalLM.from_pretrained(pte_dir) 2025-06-05T23:53:10.1609302Z generated_text = model.text_generation( 2025-06-05T23:53:10.1609832Z tokenizer=AutoTokenizer.from_pretrained(model_id), 2025-06-05T23:53:10.1610465Z prompt='\''Simply put, the theory of relativity states that'\'', 2025-06-05T23:53:10.1611024Z max_seq_len=64 2025-06-05T23:53:10.1611327Z ) 2025-06-05T23:53:10.1611622Z print(generated_text) 2025-06-05T23:53:10.1611948Z " 2025-06-05T23:53:10.1612207Z popd 2025-06-05T23:53:10.1612496Z echo "::endgroup::" 2025-06-05T23:53:10.1612698Z 2025-06-05T23:53:10.1612926Z echo "::group::Inference using executor_runner with ETDump" 2025-06-05T23:53:10.1613476Z ./cmake-out/executor_runner \ 2025-06-05T23:53:10.1613897Z --model_path ${OUTPUT_DIR}/model.pte \ 2025-06-05T23:53:10.1614382Z --etdump_path ${OUTPUT_DIR}/etdump.etdp 2025-06-05T23:53:10.1614710Z 2025-06-05T23:53:10.1614989Z export TSV_PATH=artifacts-to-be-uploaded/${MODEL_ID}_op_prof.tsv 2025-06-05T23:53:10.1615596Z mkdir -p $(dirname "$TSV_PATH") 2025-06-05T23:53:10.1616049Z python3 -m devtools.inspector.inspector_cli \ 2025-06-05T23:53:10.1616584Z --etdump_path ${OUTPUT_DIR}/etdump.etdp \ 2025-06-05T23:53:10.1617040Z --tsv_path ${TSV_PATH} 2025-06-05T23:53:10.1617274Z 2025-06-05T23:53:10.1617415Z echo "::endgroup::" 2025-06-05T23:53:10.1617721Z ' 2025-06-05T23:53:10.1618133Z + chmod +x /home/ec2-user/actions-runner/_work/_temp/exec_script 2025-06-05T23:53:10.1619305Z + 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:52.3325866Z Running command: 2025-06-05T23:53:52.3337077Z 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_ec81c4a5-e7e3-4146-ab4b-491a03aa86a6":"/home/ec2-user/actions-runner/_work/_temp/_runner_file_commands/step_summary_ec81c4a5-e7e3-4146-ab4b-491a03aa86a6" -w /pytorch/executorch "308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa" 2025-06-05T23:53:52.3345858Z 2025-06-05T23:53:52.3346324Z 4c3fe162002a20f8c68886707411b7adc61514787bcc1e9778da84641af00ce0 2025-06-05T23:53:52.3347306Z Running command: docker exec -t 4c3fe162002a20f8c68886707411b7adc61514787bcc1e9778da84641af00ce0 /exec 2025-06-05T23:53:52.3348250Z + echo '::group::Set up ExecuTorch' 2025-06-05T23:53:52.3349163Z ##[group]Set up ExecuTorch 2025-06-05T23:53:52.3349573Z ++ conda env list --json 2025-06-05T23:53:52.3349947Z ++ local cmd=env 2025-06-05T23:53:52.3350267Z ++ case "$cmd" in 2025-06-05T23:53:52.3350616Z ++ __conda_exe env list --json 2025-06-05T23:53:52.3351020Z ++ jq -r '.envs | .[-1]' 2025-06-05T23:53:52.3351420Z ++ /opt/conda/bin/conda env list --json 2025-06-05T23:53:52.3351882Z + CONDA_ENV=/opt/conda/envs/py_3.10 2025-06-05T23:53:52.3352339Z + conda activate /opt/conda/envs/py_3.10 2025-06-05T23:53:52.3352788Z + local cmd=activate 2025-06-05T23:53:52.3353134Z + case "$cmd" in 2025-06-05T23:53:52.3353519Z + __conda_activate activate /opt/conda/envs/py_3.10 2025-06-05T23:53:52.3354010Z + '[' -n '' ']' 2025-06-05T23:53:52.3354318Z + local ask_conda 2025-06-05T23:53:52.3354644Z ++ PS1='(base) ' 2025-06-05T23:53:52.3355070Z ++ __conda_exe shell.posix activate /opt/conda/envs/py_3.10 2025-06-05T23:53:52.3355752Z ++ /opt/conda/bin/conda shell.posix activate /opt/conda/envs/py_3.10 2025-06-05T23:53:52.3356488Z + ask_conda='PS1='\''(py_3.10) '\'' 2025-06-05T23:53:52.3357749Z export PATH='\''/opt/conda/envs/py_3.10/bin:/opt/conda/condabin:/opt/cache/bin:/opt/conda/envs/py_3.10/bin:/opt/conda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'\'' 2025-06-05T23:53:52.3359108Z export CONDA_PREFIX='\''/opt/conda/envs/py_3.10'\'' 2025-06-05T23:53:52.3359607Z export CONDA_SHLVL='\''2'\'' 2025-06-05T23:53:52.3360021Z export CONDA_DEFAULT_ENV='\''py_3.10'\'' 2025-06-05T23:53:52.3360508Z export CONDA_PROMPT_MODIFIER='\''(py_3.10) '\'' 2025-06-05T23:53:52.3361025Z export CONDA_PREFIX_1='\''/opt/conda'\'' 2025-06-05T23:53:52.3361502Z export CONDA_EXE='\''/opt/conda/bin/conda'\'' 2025-06-05T23:53:52.3361979Z export _CE_M='\'''\'' 2025-06-05T23:53:52.3362326Z export _CE_CONDA='\'''\'' 2025-06-05T23:53:52.3362788Z export CONDA_PYTHON_EXE='\''/opt/conda/bin/python'\''' 2025-06-05T23:53:52.3363308Z + eval 'PS1='\''(py_3.10) '\'' 2025-06-05T23:53:52.3364553Z export PATH='\''/opt/conda/envs/py_3.10/bin:/opt/conda/condabin:/opt/cache/bin:/opt/conda/envs/py_3.10/bin:/opt/conda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'\'' 2025-06-05T23:53:52.3365889Z export CONDA_PREFIX='\''/opt/conda/envs/py_3.10'\'' 2025-06-05T23:53:52.3366401Z export CONDA_SHLVL='\''2'\'' 2025-06-05T23:53:52.3366948Z export CONDA_DEFAULT_ENV='\''py_3.10'\'' 2025-06-05T23:53:52.3367449Z export CONDA_PROMPT_MODIFIER='\''(py_3.10) '\'' 2025-06-05T23:53:52.3367948Z export CONDA_PREFIX_1='\''/opt/conda'\'' 2025-06-05T23:53:52.3368524Z export CONDA_EXE='\''/opt/conda/bin/conda'\'' 2025-06-05T23:53:52.3368984Z export _CE_M='\'''\'' 2025-06-05T23:53:52.3369344Z export _CE_CONDA='\'''\'' 2025-06-05T23:53:52.3369789Z export CONDA_PYTHON_EXE='\''/opt/conda/bin/python'\''' 2025-06-05T23:53:52.3370299Z ++ PS1='(py_3.10) ' 2025-06-05T23:53:52.3371458Z ++ export PATH=/opt/conda/envs/py_3.10/bin:/opt/conda/condabin:/opt/cache/bin:/opt/conda/envs/py_3.10/bin:/opt/conda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin 2025-06-05T23:53:52.3373493Z ++ PATH=/opt/conda/envs/py_3.10/bin:/opt/conda/condabin:/opt/cache/bin:/opt/conda/envs/py_3.10/bin:/opt/conda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin 2025-06-05T23:53:52.3374742Z ++ export CONDA_PREFIX=/opt/conda/envs/py_3.10 2025-06-05T23:53:52.3375244Z ++ CONDA_PREFIX=/opt/conda/envs/py_3.10 2025-06-05T23:53:52.3375674Z ++ export CONDA_SHLVL=2 2025-06-05T23:53:52.3376013Z ++ CONDA_SHLVL=2 2025-06-05T23:53:52.3376360Z ++ export CONDA_DEFAULT_ENV=py_3.10 2025-06-05T23:53:52.3376782Z ++ CONDA_DEFAULT_ENV=py_3.10 2025-06-05T23:53:52.3377208Z ++ export 'CONDA_PROMPT_MODIFIER=(py_3.10) ' 2025-06-05T23:53:52.3377673Z ++ CONDA_PROMPT_MODIFIER='(py_3.10) ' 2025-06-05T23:53:52.3378117Z ++ export CONDA_PREFIX_1=/opt/conda 2025-06-05T23:53:52.3378544Z ++ CONDA_PREFIX_1=/opt/conda 2025-06-05T23:53:52.3378959Z ++ export CONDA_EXE=/opt/conda/bin/conda 2025-06-05T23:53:52.3379411Z ++ CONDA_EXE=/opt/conda/bin/conda 2025-06-05T23:53:52.3379816Z ++ export _CE_M= 2025-06-05T23:53:52.3380123Z ++ _CE_M= 2025-06-05T23:53:52.3380419Z ++ export _CE_CONDA= 2025-06-05T23:53:52.3380738Z ++ _CE_CONDA= 2025-06-05T23:53:52.3381088Z ++ export CONDA_PYTHON_EXE=/opt/conda/bin/python 2025-06-05T23:53:52.3381592Z ++ CONDA_PYTHON_EXE=/opt/conda/bin/python 2025-06-05T23:53:52.3382029Z + __conda_hashr 2025-06-05T23:53:52.3382345Z + '[' -n '' ']' 2025-06-05T23:53:52.3382649Z + '[' -n '' ']' 2025-06-05T23:53:52.3382958Z + hash -r 2025-06-05T23:53:52.3383262Z + PYTHON_EXECUTABLE=python 2025-06-05T23:53:52.3383726Z + bash .ci/scripts/setup-linux.sh --build-tool cmake 2025-06-05T23:53:52.3384251Z ++ dirname .ci/scripts/setup-linux.sh 2025-06-05T23:53:52.3384701Z + source .ci/scripts/utils.sh 2025-06-05T23:53:52.3385362Z + read -r BUILD_TOOL BUILD_MODE EDITABLE 2025-06-05T23:53:52.3385841Z ++ parse_args --build-tool cmake 2025-06-05T23:53:52.3386258Z ++ args=('--build-tool' 'cmake') 2025-06-05T23:53:52.3386653Z ++ local args 2025-06-05T23:53:52.3386944Z ++ local i 2025-06-05T23:53:52.3387233Z ++ local BUILD_TOOL= 2025-06-05T23:53:52.3387574Z ++ local BUILD_MODE= 2025-06-05T23:53:52.3387999Z ++ local EDITABLE= 2025-06-05T23:53:52.3388330Z ++ (( i=0 )) 2025-06-05T23:53:52.3388620Z ++ (( i<2 )) 2025-06-05T23:53:52.3388937Z ++ case "${args[$i]}" in 2025-06-05T23:53:52.3389289Z ++ BUILD_TOOL=cmake 2025-06-05T23:53:52.3389623Z ++ i=1 2025-06-05T23:53:52.3389899Z ++ (( i++ )) 2025-06-05T23:53:52.3390199Z ++ (( i<2 )) 2025-06-05T23:53:52.3390501Z ++ '[' -z cmake ']' 2025-06-05T23:53:52.3390835Z ++ [[ cmake =~ ^(cmake|buck2)$ ]] 2025-06-05T23:53:52.3391260Z ++ BUILD_MODE=Release 2025-06-05T23:53:52.3391606Z ++ [[ Release =~ ^(Debug|Release)$ ]] 2025-06-05T23:53:52.3392027Z ++ EDITABLE=false 2025-06-05T23:53:52.3392356Z ++ [[ false =~ ^(true|false)$ ]] 2025-06-05T23:53:52.3392769Z ++ echo 'cmake Release false' 2025-06-05T23:53:52.3393155Z + [[ false == \t\r\u\e ]] 2025-06-05T23:53:52.3393573Z + install_executorch --use-pt-pinned-commit 2025-06-05T23:53:52.3394018Z + which pip 2025-06-05T23:53:52.3394333Z /opt/conda/envs/py_3.10/bin/pip 2025-06-05T23:53:52.3394783Z + ./install_executorch.sh --use-pt-pinned-commit 2025-06-05T23:53:52.3395446Z 2025-06-05 23:53:51,289 [ExecuTorch] INFO: All required submodules are present. 2025-06-05T23:53:52.3396373Z Looking in indexes: https://pypi.org/simple, https://download.pytorch.org/whl/nightly/cpu 2025-06-05T23:53:52.3397760Z Requirement already satisfied: torch in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (2.8.0a0+git5616fa4) 2025-06-05T23:53:52.3399175Z Requirement already satisfied: torchvision in /var/lib/ci-user/.local/lib/python3.10/site-packages (0.22.0a0+966da7e) 2025-06-05T23:53:52.3400508Z Requirement already satisfied: torchaudio in /var/lib/ci-user/.local/lib/python3.10/site-packages (2.6.0a0+1a8f621) 2025-06-05T23:53:52.3401541Z Collecting timm==1.0.7 (from -r requirements-examples.txt (line 3)) 2025-06-05T23:53:52.3402271Z Downloading timm-1.0.7-py3-none-any.whl.metadata (47 kB) 2025-06-05T23:53:52.3403465Z Requirement already satisfied: torchsr==1.0.4 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-examples.txt (line 4)) (1.0.4) 2025-06-05T23:53:52.3404767Z Collecting torchtune>=0.6.1 (from -r requirements-examples.txt (line 5)) 2025-06-05T23:53:52.3405552Z Downloading torchtune-0.6.1-py3-none-any.whl.metadata (24 kB) 2025-06-05T23:53:52.3406857Z Requirement already satisfied: transformers==4.47.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-examples.txt (line 6)) (4.47.1) 2025-06-05T23:53:52.3408153Z Collecting cmake<4.0.0,>=3.19 (from -r requirements-dev.txt (line 1)) 2025-06-05T23:53:52.3409078Z Downloading cmake-3.31.6-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.3 kB) 2025-06-05T23:53:52.3410431Z Requirement already satisfied: pip>=23 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-dev.txt (line 2)) (25.1) 2025-06-05T23:53:52.3412070Z Requirement already satisfied: pyyaml in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-dev.txt (line 3)) (6.0.1) 2025-06-05T23:53:52.3413750Z Requirement already satisfied: setuptools>=63 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-dev.txt (line 4)) (78.1.1) 2025-06-05T23:53:52.3415436Z Requirement already satisfied: tomli in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-dev.txt (line 5)) (2.0.1) 2025-06-05T23:53:52.3417068Z Requirement already satisfied: wheel in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-dev.txt (line 6)) (0.45.1) 2025-06-05T23:53:52.3418703Z Requirement already satisfied: zstd in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from -r requirements-dev.txt (line 7)) (1.5.5.1) 2025-06-05T23:53:52.3420522Z Requirement already satisfied: huggingface_hub in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from timm==1.0.7->-r requirements-examples.txt (line 3)) (0.32.4) 2025-06-05T23:53:52.3422432Z Requirement already satisfied: safetensors in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from timm==1.0.7->-r requirements-examples.txt (line 3)) (0.5.3) 2025-06-05T23:53:52.3424380Z Requirement already satisfied: filelock in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.47.1->-r requirements-examples.txt (line 6)) (3.18.0) 2025-06-05T23:53:52.3426339Z Requirement already satisfied: numpy>=1.17 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.47.1->-r requirements-examples.txt (line 6)) (2.2.6) 2025-06-05T23:53:55.6001223Z Requirement already satisfied: packaging>=20.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.47.1->-r requirements-examples.txt (line 6)) (25.0) 2025-06-05T23:53:55.6003950Z Requirement already satisfied: regex!=2019.12.17 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.47.1->-r requirements-examples.txt (line 6)) (2024.11.6) 2025-06-05T23:53:55.6005978Z Requirement already satisfied: requests in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.47.1->-r requirements-examples.txt (line 6)) (2.32.3) 2025-06-05T23:53:55.6008014Z Requirement already satisfied: tokenizers<0.22,>=0.21 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.47.1->-r requirements-examples.txt (line 6)) (0.21.1) 2025-06-05T23:53:55.6010302Z Requirement already satisfied: tqdm>=4.27 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.47.1->-r requirements-examples.txt (line 6)) (4.67.1) 2025-06-05T23:53:55.6012454Z Requirement already satisfied: fsspec>=2023.5.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface_hub->timm==1.0.7->-r requirements-examples.txt (line 3)) (2025.5.1) 2025-06-05T23:53:55.6014635Z Requirement already satisfied: typing-extensions>=3.7.4.3 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface_hub->timm==1.0.7->-r requirements-examples.txt (line 3)) (4.14.0) 2025-06-05T23:53:55.6016796Z Requirement already satisfied: hf-xet<2.0.0,>=1.1.2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface_hub->timm==1.0.7->-r requirements-examples.txt (line 3)) (1.1.3) 2025-06-05T23:53:55.6018513Z Requirement already satisfied: sympy>=1.13.3 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torch) (1.14.0) 2025-06-05T23:53:55.6019852Z Requirement already satisfied: networkx in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torch) (3.4.2) 2025-06-05T23:53:55.6021169Z Requirement already satisfied: jinja2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torch) (3.1.6) 2025-06-05T23:53:55.6022532Z Requirement already satisfied: pillow!=8.3.*,>=5.3.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torchvision) (11.2.1) 2025-06-05T23:53:55.6023758Z Collecting torchdata==0.11.0 (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:53:55.6024637Z Downloading torchdata-0.11.0-py3-none-any.whl.metadata (6.3 kB) 2025-06-05T23:53:55.6025486Z Collecting datasets (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:53:55.6026314Z Downloading datasets-3.6.0-py3-none-any.whl.metadata (19 kB) 2025-06-05T23:53:55.6027152Z Collecting kagglehub (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:53:55.6028094Z Downloading kagglehub-0.3.12-py3-none-any.whl.metadata (38 kB) 2025-06-05T23:53:55.6028976Z Collecting sentencepiece (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:53:55.6030378Z Downloading https://download.pytorch.org/whl/nightly/sentencepiece-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB) 2025-06-05T23:53:55.6034298Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/1.3 MB ? eta -:--:-- 2025-06-05T23:53:55.6035312Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 107.0 MB/s eta 0:00:00 2025-06-05T23:53:55.6036301Z [?25hCollecting tiktoken (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:53:55.6037383Z Downloading tiktoken-0.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (6.7 kB) 2025-06-05T23:53:55.6038443Z Collecting blobfile>=2 (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:53:55.6039540Z Downloading https://download.pytorch.org/whl/nightly/blobfile-3.0.0-py3-none-any.whl (75 kB) 2025-06-05T23:53:55.6040567Z Collecting omegaconf (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:53:55.6041642Z Downloading https://download.pytorch.org/whl/nightly/omegaconf-2.3.0-py3-none-any.whl (79 kB) 2025-06-05T23:53:55.6042657Z Collecting psutil (from torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:53:55.6043903Z Downloading psutil-7.0.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (22 kB) 2025-06-05T23:53:55.6045766Z Requirement already satisfied: urllib3>=1.25 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torchdata==0.11.0->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) (2.4.0) 2025-06-05T23:53:55.6047417Z Collecting pycryptodomex>=3.8 (from blobfile>=2->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:53:55.6048772Z Downloading pycryptodomex-3.23.0-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.4 kB) 2025-06-05T23:53:55.6050528Z Requirement already satisfied: lxml>=4.9 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from blobfile>=2->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) (5.4.0) 2025-06-05T23:53:55.6052309Z Requirement already satisfied: mpmath<1.4,>=1.1.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from sympy>=1.13.3->torch) (1.3.0) 2025-06-05T23:53:55.6053611Z Collecting pyarrow>=15.0.0 (from datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:53:55.6054635Z Downloading pyarrow-20.0.0-cp310-cp310-manylinux_2_28_x86_64.whl.metadata (3.3 kB) 2025-06-05T23:53:55.6055637Z Collecting dill<0.3.9,>=0.3.0 (from datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:53:55.6056721Z Downloading https://download.pytorch.org/whl/nightly/dill-0.3.8-py3-none-any.whl (116 kB) 2025-06-05T23:53:55.6058269Z Requirement already satisfied: pandas in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) (2.2.3) 2025-06-05T23:53:55.6059795Z Collecting xxhash (from datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:53:55.6061112Z Downloading https://download.pytorch.org/whl/nightly/xxhash-3.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (194 kB) 2025-06-05T23:53:55.6062507Z Collecting multiprocess<0.70.17 (from datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:53:55.6063706Z Downloading https://download.pytorch.org/whl/nightly/multiprocess-0.70.16-py310-none-any.whl (134 kB) 2025-06-05T23:53:55.6064897Z Collecting fsspec>=2023.5.0 (from huggingface_hub->timm==1.0.7->-r requirements-examples.txt (line 3)) 2025-06-05T23:53:55.6065826Z Downloading fsspec-2025.3.0-py3-none-any.whl.metadata (11 kB) 2025-06-05T23:53:55.6066916Z Collecting aiohttp!=4.0.0a0,!=4.0.0a1 (from fsspec[http]<=2025.3.0,>=2023.1.0->datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:53:55.6068348Z Downloading aiohttp-3.12.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (7.6 kB) 2025-06-05T23:53:55.6069796Z Collecting aiohappyeyeballs>=2.5.0 (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:53:55.6071112Z Downloading aiohappyeyeballs-2.6.1-py3-none-any.whl.metadata (5.9 kB) 2025-06-05T23:53:55.6072347Z Collecting aiosignal>=1.1.2 (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:53:55.6073565Z Downloading aiosignal-1.3.2-py2.py3-none-any.whl.metadata (3.8 kB) 2025-06-05T23:53:55.6074793Z Collecting async-timeout<6.0,>=4.0 (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:53:55.6076037Z Downloading async_timeout-5.0.1-py3-none-any.whl.metadata (5.1 kB) 2025-06-05T23:53:55.6077714Z Requirement already satisfied: attrs>=17.3.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) (25.3.0) 2025-06-05T23:53:55.6079937Z Collecting frozenlist>=1.1.1 (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:53:55.6081566Z Downloading frozenlist-1.6.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (17 kB) 2025-06-05T23:53:55.6083165Z Collecting multidict<7.0,>=4.5 (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:53:55.6084574Z Downloading multidict-6.4.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.3 kB) 2025-06-05T23:53:55.6086324Z Collecting propcache>=0.2.0 (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:53:55.6087895Z Downloading propcache-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (10 kB) 2025-06-05T23:53:55.6089388Z Collecting yarl<2.0,>=1.17.0 (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:53:55.6091043Z Downloading yarl-1.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (72 kB) 2025-06-05T23:53:57.8125608Z 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:53:57.8130169Z 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:53:57.8134155Z 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:53:57.8137328Z Collecting hf-transfer>=0.1.4 (from huggingface_hub[hf_transfer]->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:53:57.8139575Z Downloading hf_transfer-0.1.9-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.7 kB) 2025-06-05T23:53:57.8141961Z 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:53:57.8144434Z Collecting antlr4-python3-runtime==4.9.* (from omegaconf->torchtune>=0.6.1->-r requirements-examples.txt (line 5)) 2025-06-05T23:53:57.8146681Z Downloading https://download.pytorch.org/whl/nightly/antlr4_python3_runtime-4.9.3.tar.gz (117 kB) 2025-06-05T23:53:57.8148739Z Preparing metadata (setup.py) ... [?25l- done 2025-06-05T23:53:57.8151702Z [?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:53:57.8155693Z 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:53:57.8159510Z 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:53:57.8163339Z 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:53:57.8165970Z Downloading timm-1.0.7-py3-none-any.whl (2.3 MB) 2025-06-05T23:53:57.8167586Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/2.3 MB ? eta -:--:-- 2025-06-05T23:53:57.8169243Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.3/2.3 MB 124.5 MB/s eta 0:00:00 2025-06-05T23:53:57.8171088Z [?25hDownloading cmake-3.31.6-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (27.8 MB) 2025-06-05T23:53:57.8172981Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/27.8 MB ? eta -:--:-- 2025-06-05T23:53:57.8174833Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 27.8/27.8 MB 159.1 MB/s eta 0:00:00 2025-06-05T23:53:57.8176321Z [?25hDownloading torchtune-0.6.1-py3-none-any.whl (910 kB) 2025-06-05T23:53:57.8177860Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/910.7 kB ? eta -:--:-- 2025-06-05T23:53:57.8179908Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 910.7/910.7 kB 116.2 MB/s eta 0:00:00 2025-06-05T23:53:57.8181605Z [?25hDownloading torchdata-0.11.0-py3-none-any.whl (61 kB) 2025-06-05T23:53:57.8183233Z Downloading pycryptodomex-3.23.0-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB) 2025-06-05T23:53:57.8185492Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/2.3 MB ? eta -:--:-- 2025-06-05T23:53:57.8187157Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.3/2.3 MB 213.2 MB/s eta 0:00:00 2025-06-05T23:53:57.8188634Z [?25hDownloading datasets-3.6.0-py3-none-any.whl (491 kB) 2025-06-05T23:53:57.8189769Z Downloading fsspec-2025.3.0-py3-none-any.whl (193 kB) 2025-06-05T23:53:57.8191242Z Downloading aiohttp-3.12.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB) 2025-06-05T23:53:57.8193203Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/1.6 MB ? eta -:--:-- 2025-06-05T23:53:57.8194857Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.6/1.6 MB 179.8 MB/s eta 0:00:00 2025-06-05T23:53:57.8196327Z [?25hDownloading async_timeout-5.0.1-py3-none-any.whl (6.2 kB) 2025-06-05T23:53:57.8197909Z Downloading multidict-6.4.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (219 kB) 2025-06-05T23:53:57.8199733Z Downloading yarl-1.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (333 kB) 2025-06-05T23:53:57.8201306Z Downloading aiohappyeyeballs-2.6.1-py3-none-any.whl (15 kB) 2025-06-05T23:53:57.8202542Z Downloading aiosignal-1.3.2-py2.py3-none-any.whl (7.6 kB) 2025-06-05T23:53:57.8204512Z 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:53:57.8206844Z Downloading propcache-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (206 kB) 2025-06-05T23:53:57.8208530Z Downloading pyarrow-20.0.0-cp310-cp310-manylinux_2_28_x86_64.whl (42.3 MB) 2025-06-05T23:53:57.8210272Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/42.3 MB ? eta -:--:-- 2025-06-05T23:53:57.8211925Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 42.3/42.3 MB 220.4 MB/s eta 0:00:00 2025-06-05T23:53:57.8213832Z [?25hDownloading hf_transfer-0.1.9-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.6 MB) 2025-06-05T23:53:57.8215765Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/3.6 MB ? eta -:--:-- 2025-06-05T23:53:57.8217387Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.6/3.6 MB 168.3 MB/s eta 0:00:00 2025-06-05T23:53:57.8219032Z [?25hDownloading kagglehub-0.3.12-py3-none-any.whl (67 kB) 2025-06-05T23:53:57.8245015Z 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:53:57.8247529Z Downloading tiktoken-0.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB) 2025-06-05T23:53:57.8249738Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/1.2 MB ? eta -:--:-- 2025-06-05T23:53:57.8251499Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 87.2 MB/s eta 0:00:00 2025-06-05T23:53:57.8252974Z [?25hBuilding wheels for collected packages: antlr4-python3-runtime 2025-06-05T23:53:57.8259103Z  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:53:57.8265083Z  Building wheel for antlr4-python3-runtime (setup.py) ... [?25l- \ done 2025-06-05T23:53:57.8268252Z [?25h Created wheel for antlr4-python3-runtime: filename=antlr4_python3_runtime-4.9.3-py3-none-any.whl size=144590 sha256=b12ab2d582f59938199c746e80978c44280fecaecbcd3a4dcc5a0129c0948d2e 2025-06-05T23:53:57.8271213Z Stored in directory: /var/lib/ci-user/.cache/pip/wheels/8e/0c/ef/6e1004d7898c3e61c08b70be9a80232ee72e7c55c9a9bffa33 2025-06-05T23:53:57.8272867Z Successfully built antlr4-python3-runtime 2025-06-05T23:53:57.8276771Z 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:53:57.8280747Z [?25l 2025-06-05T23:54:08.0718442Z  ━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  3/27 [pycryptodomex] 2025-06-05T23:54:08.0720088Z  ━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  3/27 [pycryptodomex] 2025-06-05T23:54:08.0720999Z  ━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  3/27 [pycryptodomex] 2025-06-05T23:54:08.0721863Z  ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/27 [pyarrow] 2025-06-05T23:54:08.0722693Z  ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/27 [pyarrow] 2025-06-05T23:54:08.0723562Z  ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/27 [pyarrow] 2025-06-05T23:54:08.0724387Z  ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/27 [pyarrow] 2025-06-05T23:54:08.0725226Z  ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/27 [pyarrow] 2025-06-05T23:54:08.0726097Z  ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/27 [pyarrow] 2025-06-05T23:54:08.0727687Z  ━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  4/27 [pyarrow] 2025-06-05T23:54:08.0728551Z  ━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  6/27 [propcache] 2025-06-05T23:54:08.0729240Z  Attempting uninstall: fsspec 2025-06-05T23:54:08.0729923Z ━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  6/27 [propcache] 2025-06-05T23:54:08.0730632Z  Found existing installation: fsspec 2025.5.1 2025-06-05T23:54:08.0731376Z ━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  6/27 [propcache] 2025-06-05T23:54:08.0732026Z  Uninstalling fsspec-2025.5.1: 2025-06-05T23:54:08.0732710Z ━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  6/27 [propcache] 2025-06-05T23:54:08.0733682Z  ━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━ 10/27 [fsspec] 2025-06-05T23:54:08.0734367Z  Successfully uninstalled fsspec-2025.5.1 2025-06-05T23:54:08.0735127Z ━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━ 10/27 [fsspec] 2025-06-05T23:54:08.0735934Z  ━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━ 12/27 [dill] 2025-06-05T23:54:08.0736749Z  ━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 13/27 [cmake] 2025-06-05T23:54:08.0737547Z  ━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 13/27 [cmake] 2025-06-05T23:54:08.0738449Z  ━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 13/27 [cmake] 2025-06-05T23:54:08.0739250Z  ━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 13/27 [cmake] 2025-06-05T23:54:08.0740096Z  ━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 13/27 [cmake] 2025-06-05T23:54:08.0740899Z  ━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━ 13/27 [cmake] 2025-06-05T23:54:08.0741739Z  ━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━ 17/27 [tiktoken] 2025-06-05T23:54:08.0742556Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━ 19/27 [kagglehub] 2025-06-05T23:54:08.0743365Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━ 23/27 [aiohttp] 2025-06-05T23:54:08.0743979Z  Attempting uninstall: timm 2025-06-05T23:54:08.0744832Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━ 23/27 [aiohttp] 2025-06-05T23:54:08.0745490Z  Found existing installation: timm 0.6.13 2025-06-05T23:54:08.0746208Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━ 23/27 [aiohttp] 2025-06-05T23:54:08.0746959Z  Uninstalling timm-0.6.13: 2025-06-05T23:54:08.0747617Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━ 23/27 [aiohttp] 2025-06-05T23:54:08.0748623Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 24/27 [timm] 2025-06-05T23:54:08.0749283Z  Successfully uninstalled timm-0.6.13 2025-06-05T23:54:08.0749958Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 24/27 [timm] 2025-06-05T23:54:08.0750720Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 24/27 [timm] 2025-06-05T23:54:08.0751484Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 24/27 [timm] 2025-06-05T23:54:08.0752263Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━ 24/27 [timm] 2025-06-05T23:54:08.0753037Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━ 25/27 [datasets] 2025-06-05T23:54:08.0753868Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━ 25/27 [datasets] 2025-06-05T23:54:08.0754668Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━ 26/27 [torchtune] 2025-06-05T23:54:08.0755494Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━ 26/27 [torchtune] 2025-06-05T23:54:08.0756238Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 27/27 [torchtune] 2025-06-05T23:54:08.0756784Z [?25h 2025-06-05T23:54:08.0759912Z 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:08.0762735Z Processing ./third-party/ao 2025-06-05T23:54:08.0763257Z Preparing metadata (setup.py) ... [?25l- done 2025-06-05T23:54:08.0763835Z [?25hProcessing ./extension/llm/tokenizers 2025-06-05T23:54:08.0764495Z Preparing metadata (pyproject.toml) ... [?25l- \ done 2025-06-05T23:54:08.0765765Z [?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:16.1042269Z 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:16.1044003Z 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:16.1045732Z 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:16.1047861Z 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:16.1049924Z 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:16.1052173Z 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:16.1054066Z 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:16.1056022Z 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:16.1057964Z 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:16.1059945Z 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:16.1062009Z 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:16.1064097Z 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:16.1066137Z 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:16.1068252Z 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:16.1070393Z 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:16.1072521Z 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:16.1073937Z Building wheels for collected packages: torchao, pytorch_tokenizers 2025-06-05T23:54:16.1077503Z  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:16.1080581Z  Building wheel for torchao (setup.py) ... [?25l- \ | / - done 2025-06-05T23:54:16.1082219Z [?25h Created wheel for torchao: filename=torchao-0.12.0+gitbc68b11-cp39-abi3-linux_x86_64.whl size=955946 sha256=9a8ab70866f3719433805c724ae977b20da590b5a3e9fa37a3dbda6c9bb02138 2025-06-05T23:54:16.1084000Z Stored in directory: /tmp/pip-ephem-wheel-cache-j5na7ddl/wheels/0b/23/ff/2261dc1c4a27252503fe159d9fc88676b133e0e8d621abf36f 2025-06-05T23:54:16.1085565Z Building wheel for pytorch_tokenizers (pyproject.toml) ... [?25l- \ done 2025-06-05T23:54:16.1087381Z [?25h Created wheel for pytorch_tokenizers: filename=pytorch_tokenizers-0.1.0-py3-none-any.whl size=10999 sha256=94ca7107e2f361b5b56ee5d359c3e98eca2a7db2e3738384a7977e7a6ff1c912 2025-06-05T23:54:16.1089407Z Stored in directory: /tmp/pip-ephem-wheel-cache-j5na7ddl/wheels/27/7b/a1/358699b32a468639d6f9ef263f9676280bc5ee318b0bd9a0b2 2025-06-05T23:54:16.1090431Z Successfully built torchao pytorch_tokenizers 2025-06-05T23:54:16.1091203Z Installing collected packages: torchao, pytorch_tokenizers 2025-06-05T23:54:16.1091820Z [?25l 2025-06-05T23:54:16.1092336Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0/2 [torchao] 2025-06-05T23:54:16.1093042Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0/2 [torchao] 2025-06-05T23:54:16.1093750Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0/2 [torchao] 2025-06-05T23:54:16.1094439Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0/2 [torchao] 2025-06-05T23:54:16.1095170Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2/2 [pytorch_tokenizers] 2025-06-05T23:54:16.1095711Z [?25h 2025-06-05T23:54:16.1096332Z Successfully installed pytorch_tokenizers-0.1.0 torchao-0.12.0+gitbc68b11 2025-06-05T23:54:16.1097285Z Using pip 25.1 from /opt/conda/envs/py_3.10/lib/python3.10/site-packages/pip (python 3.10) 2025-06-05T23:54:16.1098320Z Looking in indexes: https://pypi.org/simple, https://download.pytorch.org/whl/nightly/cpu 2025-06-05T23:54:16.1099070Z Processing /pytorch/executorch 2025-06-05T23:54:16.1099564Z Running command Preparing metadata (pyproject.toml) 2025-06-05T23:54:16.1100950Z /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:16.1102258Z !! 2025-06-05T23:54:16.1102406Z 2025-06-05T23:54:16.1102584Z ******************************************************************************** 2025-06-05T23:54:16.1103798Z 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:16.1104831Z 2025-06-05T23:54:16.1105138Z By 2026-Feb-18, you need to update your project and remove deprecated calls 2025-06-05T23:54:16.1105814Z or your builds will no longer be supported. 2025-06-05T23:54:16.1106159Z 2025-06-05T23:54:16.1106652Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. 2025-06-05T23:54:16.1107492Z ******************************************************************************** 2025-06-05T23:54:16.1107947Z 2025-06-05T23:54:16.1108061Z !! 2025-06-05T23:54:16.1108373Z corresp(dist, value, root_dir) 2025-06-05T23:54:16.1109596Z /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:16.1110827Z !! 2025-06-05T23:54:16.1110985Z 2025-06-05T23:54:16.1111146Z ******************************************************************************** 2025-06-05T23:54:16.1111939Z Please consider removing the following classifiers in favor of a SPDX license expression: 2025-06-05T23:54:16.1112544Z 2025-06-05T23:54:16.1112744Z License :: OSI Approved :: BSD License 2025-06-05T23:54:16.1113072Z 2025-06-05T23:54:16.1113571Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. 2025-06-05T23:54:16.1114410Z ******************************************************************************** 2025-06-05T23:54:16.1114840Z 2025-06-05T23:54:16.1114965Z !! 2025-06-05T23:54:16.1115269Z dist._finalize_license_expression() 2025-06-05T23:54:16.1116378Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/setuptools/dist.py:759: SetuptoolsDeprecationWarning: License classifiers are deprecated. 2025-06-05T23:54:16.1117466Z !! 2025-06-05T23:54:16.1117608Z 2025-06-05T23:54:16.1117781Z ******************************************************************************** 2025-06-05T23:54:16.1118704Z Please consider removing the following classifiers in favor of a SPDX license expression: 2025-06-05T23:54:16.1119299Z 2025-06-05T23:54:16.1119477Z License :: OSI Approved :: BSD License 2025-06-05T23:54:16.1119805Z 2025-06-05T23:54:16.1120378Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. 2025-06-05T23:54:16.1121197Z ******************************************************************************** 2025-06-05T23:54:16.1121545Z 2025-06-05T23:54:16.1121664Z !! 2025-06-05T23:54:16.1121969Z self._finalize_license_expression() 2025-06-05T23:54:16.1122410Z running dist_info 2025-06-05T23:54:16.1123048Z creating /tmp/pip-modern-metadata-cmnqs4tu/executorch.egg-info 2025-06-05T23:54:16.1123939Z writing /tmp/pip-modern-metadata-cmnqs4tu/executorch.egg-info/PKG-INFO 2025-06-05T23:54:16.1124959Z writing dependency_links to /tmp/pip-modern-metadata-cmnqs4tu/executorch.egg-info/dependency_links.txt 2025-06-05T23:54:16.1126133Z writing entry points to /tmp/pip-modern-metadata-cmnqs4tu/executorch.egg-info/entry_points.txt 2025-06-05T23:54:16.1127208Z writing requirements to /tmp/pip-modern-metadata-cmnqs4tu/executorch.egg-info/requires.txt 2025-06-05T23:54:16.1128295Z writing top-level names to /tmp/pip-modern-metadata-cmnqs4tu/executorch.egg-info/top_level.txt 2025-06-05T23:54:16.1129355Z writing manifest file '/tmp/pip-modern-metadata-cmnqs4tu/executorch.egg-info/SOURCES.txt' 2025-06-05T23:54:17.2204995Z reading manifest file '/tmp/pip-modern-metadata-cmnqs4tu/executorch.egg-info/SOURCES.txt' 2025-06-05T23:54:17.2205840Z adding license file 'LICENSE' 2025-06-05T23:54:17.2206538Z writing manifest file '/tmp/pip-modern-metadata-cmnqs4tu/executorch.egg-info/SOURCES.txt' 2025-06-05T23:54:17.2207564Z creating '/tmp/pip-modern-metadata-cmnqs4tu/executorch-0.7.0a0+bd57234.dist-info' 2025-06-05T23:54:17.2208668Z Preparing metadata (pyproject.toml) ... [?25l[?25hdone 2025-06-05T23:54:17.2209790Z 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:17.2210972Z Collecting flatbuffers (from executorch==0.7.0a0+bd57234) 2025-06-05T23:54:17.2212746Z 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:17.2214619Z Downloading flatbuffers-25.2.10-py2.py3-none-any.whl.metadata (875 bytes) 2025-06-05T23:54:17.2215873Z 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:17.2217489Z 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:17.2219580Z 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:17.2221210Z 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:17.2222793Z 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:17.2224413Z 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:17.2226010Z 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:17.2227139Z Collecting pytest-xdist (from executorch==0.7.0a0+bd57234) 2025-06-05T23:54:17.2229144Z 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:17.2231323Z Downloading pytest_xdist-3.7.0-py3-none-any.whl.metadata (3.0 kB) 2025-06-05T23:54:17.2232128Z Collecting pytest-rerunfailures (from executorch==0.7.0a0+bd57234) 2025-06-05T23:54:17.2234122Z 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:17.2236067Z Downloading pytest_rerunfailures-15.1-py3-none-any.whl.metadata (20 kB) 2025-06-05T23:54:17.2237291Z 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:17.2238910Z 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:17.2240492Z 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:17.2241593Z Collecting tabulate (from executorch==0.7.0a0+bd57234) 2025-06-05T23:54:17.2243225Z 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:17.2244928Z Downloading tabulate-0.9.0-py3-none-any.whl.metadata (34 kB) 2025-06-05T23:54:17.2246176Z 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:17.2247415Z Collecting coremltools==8.3 (from executorch==0.7.0a0+bd57234) 2025-06-05T23:54:17.2249228Z 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:17.2251324Z Downloading coremltools-8.3.0-cp310-none-manylinux1_x86_64.whl.metadata (2.6 kB) 2025-06-05T23:54:17.2252238Z Collecting protobuf>=3.1.0 (from coremltools==8.3->executorch==0.7.0a0+bd57234) 2025-06-05T23:54:17.2254122Z 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:17.2256050Z Downloading protobuf-6.31.1-cp39-abi3-manylinux2014_x86_64.whl.metadata (593 bytes) 2025-06-05T23:54:17.2257416Z 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:17.2259212Z 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:17.2260507Z Collecting cattrs (from coremltools==8.3->executorch==0.7.0a0+bd57234) 2025-06-05T23:54:17.2262206Z 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:17.2263857Z Downloading cattrs-25.1.1-py3-none-any.whl.metadata (8.4 kB) 2025-06-05T23:54:17.2264619Z Collecting pyaml (from coremltools==8.3->executorch==0.7.0a0+bd57234) 2025-06-05T23:54:17.2266265Z 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:17.2267967Z Downloading pyaml-25.5.0-py3-none-any.whl.metadata (12 kB) 2025-06-05T23:54:17.2269293Z 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:17.2271169Z 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:17.2273186Z 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:17.2275158Z 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:17.2277166Z 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:17.2279135Z 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:17.2280969Z 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:17.2282693Z 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:17.2284387Z 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:17.2285894Z Collecting pytest (from executorch==0.7.0a0+bd57234) 2025-06-05T23:54:17.2287503Z 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:17.2289171Z Downloading pytest-8.4.0-py3-none-any.whl.metadata (7.7 kB) 2025-06-05T23:54:17.2290388Z 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:17.2291669Z Collecting execnet>=2.1 (from pytest-xdist->executorch==0.7.0a0+bd57234) 2025-06-05T23:54:17.2293391Z 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:17.2295086Z Downloading execnet-2.1.1-py3-none-any.whl.metadata (2.9 kB) 2025-06-05T23:54:17.2296372Z 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:17.2297736Z Downloading coremltools-8.3.0-cp310-none-manylinux1_x86_64.whl (2.3 MB) 2025-06-05T23:54:17.2298852Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/2.3 MB ? eta -:--:-- 2025-06-05T23:54:17.2299774Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.3/2.3 MB 122.4 MB/s eta 0:00:00 2025-06-05T23:54:17.2300958Z [?25hDownloading protobuf-6.31.1-cp39-abi3-manylinux2014_x86_64.whl (321 kB) 2025-06-05T23:54:18.9106715Z Downloading cattrs-25.1.1-py3-none-any.whl (69 kB) 2025-06-05T23:54:18.9108435Z Downloading flatbuffers-25.2.10-py2.py3-none-any.whl (30 kB) 2025-06-05T23:54:18.9109636Z Downloading pyaml-25.5.0-py3-none-any.whl (26 kB) 2025-06-05T23:54:18.9110797Z Downloading pytest_rerunfailures-15.1-py3-none-any.whl (13 kB) 2025-06-05T23:54:18.9111973Z Downloading pytest-8.4.0-py3-none-any.whl (363 kB) 2025-06-05T23:54:18.9113053Z Downloading pytest_xdist-3.7.0-py3-none-any.whl (46 kB) 2025-06-05T23:54:18.9114138Z Downloading execnet-2.1.1-py3-none-any.whl (40 kB) 2025-06-05T23:54:18.9115161Z Downloading tabulate-0.9.0-py3-none-any.whl (35 kB) 2025-06-05T23:54:18.9116174Z Building wheels for collected packages: executorch 2025-06-05T23:54:18.9117305Z Running command Building wheel for executorch (pyproject.toml) 2025-06-05T23:54:18.9119869Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/setuptools/config/_apply_pyprojecttoml.py:82: SetuptoolsDeprecationWarning: `project.license` as a TOML table is deprecated 2025-06-05T23:54:18.9122222Z !! 2025-06-05T23:54:18.9122508Z 2025-06-05T23:54:18.9122822Z ******************************************************************************** 2025-06-05T23:54:18.9124932Z Please use a simple string containing a SPDX expression for `project.license`. You can also use `project.license-files`. (Both options available on setuptools>=77.0.0). 2025-06-05T23:54:18.9126733Z 2025-06-05T23:54:18.9127287Z By 2026-Feb-18, you need to update your project and remove deprecated calls 2025-06-05T23:54:18.9128452Z or your builds will no longer be supported. 2025-06-05T23:54:18.9129061Z 2025-06-05T23:54:18.9129940Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. 2025-06-05T23:54:18.9131403Z ******************************************************************************** 2025-06-05T23:54:18.9132025Z 2025-06-05T23:54:18.9132229Z !! 2025-06-05T23:54:18.9132752Z corresp(dist, value, root_dir) 2025-06-05T23:54:18.9134962Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/setuptools/config/_apply_pyprojecttoml.py:61: SetuptoolsDeprecationWarning: License classifiers are deprecated. 2025-06-05T23:54:18.9137159Z !! 2025-06-05T23:54:18.9137436Z 2025-06-05T23:54:18.9137733Z ******************************************************************************** 2025-06-05T23:54:18.9138647Z Please consider removing the following classifiers in favor of a SPDX license expression: 2025-06-05T23:54:18.9139263Z 2025-06-05T23:54:18.9139471Z License :: OSI Approved :: BSD License 2025-06-05T23:54:18.9139801Z 2025-06-05T23:54:18.9140292Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. 2025-06-05T23:54:18.9141132Z ******************************************************************************** 2025-06-05T23:54:18.9141494Z 2025-06-05T23:54:18.9141603Z !! 2025-06-05T23:54:18.9141919Z dist._finalize_license_expression() 2025-06-05T23:54:18.9143025Z /opt/conda/envs/py_3.10/lib/python3.10/site-packages/setuptools/dist.py:759: SetuptoolsDeprecationWarning: License classifiers are deprecated. 2025-06-05T23:54:18.9144109Z !! 2025-06-05T23:54:18.9144268Z 2025-06-05T23:54:18.9144429Z ******************************************************************************** 2025-06-05T23:54:18.9145211Z Please consider removing the following classifiers in favor of a SPDX license expression: 2025-06-05T23:54:18.9145821Z 2025-06-05T23:54:18.9145985Z License :: OSI Approved :: BSD License 2025-06-05T23:54:18.9146316Z 2025-06-05T23:54:18.9146810Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. 2025-06-05T23:54:18.9147623Z ******************************************************************************** 2025-06-05T23:54:18.9148264Z 2025-06-05T23:54:18.9148388Z !! 2025-06-05T23:54:18.9148710Z self._finalize_license_expression() 2025-06-05T23:54:18.9149164Z running bdist_wheel 2025-06-05T23:54:18.9149503Z running build 2025-06-05T23:54:18.9149931Z command options for 'CustomBuild': 2025-06-05T23:54:18.9150359Z build_base = pip-out 2025-06-05T23:54:18.9150747Z build_purelib = pip-out/lib 2025-06-05T23:54:18.9151225Z build_platlib = pip-out/lib.linux-x86_64-cpython-310 2025-06-05T23:54:18.9151809Z build_lib = pip-out/lib.linux-x86_64-cpython-310 2025-06-05T23:54:18.9152324Z build_scripts = pip-out/scripts-3.10 2025-06-05T23:54:18.9152835Z build_temp = pip-out/temp.linux-x86_64-cpython-310 2025-06-05T23:54:18.9153517Z plat_name = linux-x86_64 2025-06-05T23:54:18.9154083Z compiler = None 2025-06-05T23:54:18.9154591Z parallel = None 2025-06-05T23:54:18.9155092Z debug = None 2025-06-05T23:54:18.9155634Z force = None 2025-06-05T23:54:18.9156247Z executable = /opt/conda/envs/py_3.10/bin/python 2025-06-05T23:54:18.9157466Z creating /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out 2025-06-05T23:54:18.9159158Z clearing /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out 2025-06-05T23:54:18.9160370Z Preset CMake variables: 2025-06-05T23:54:18.9160782Z 2025-06-05T23:54:18.9161056Z CMAKE_OSX_DEPLOYMENT_TARGET="12.0" 2025-06-05T23:54:18.9162254Z EXECUTORCH_BUILD_PRESET_FILE="/pytorch/executorch/tools/cmake/preset/pybind.cmake" 2025-06-05T23:54:18.9163228Z 2025-06-05T23:54:18.9163572Z -- The C compiler identification is Clang 12.0.1 2025-06-05T23:54:18.9164551Z -- The CXX compiler identification is Clang 12.0.1 2025-06-05T23:54:18.9165415Z -- Detecting C compiler ABI info 2025-06-05T23:54:18.9166193Z -- Detecting C compiler ABI info - done 2025-06-05T23:54:18.9167170Z -- Check for working C compiler: /opt/cache/bin/cc - skipped 2025-06-05T23:54:18.9168137Z -- Detecting C compile features 2025-06-05T23:54:18.9168925Z -- Detecting C compile features - done 2025-06-05T23:54:18.9169744Z -- Detecting CXX compiler ABI info 2025-06-05T23:54:18.9170519Z -- Detecting CXX compiler ABI info - done 2025-06-05T23:54:18.9171562Z -- Check for working CXX compiler: /opt/cache/bin/c++ - skipped 2025-06-05T23:54:18.9172537Z -- Detecting CXX compile features 2025-06-05T23:54:18.9173337Z -- Detecting CXX compile features - done 2025-06-05T23:54:18.9174367Z -- Loading build preset: /pytorch/executorch/tools/cmake/preset/pybind.cmake 2025-06-05T23:54:18.9175033Z -- --- Configured Options --- 2025-06-05T23:54:18.9175306Z 2025-06-05T23:54:18.9175486Z -- CMAKE_CXX_STANDARD : 17 2025-06-05T23:54:18.9176001Z -- CMAKE_SYSTEM_PROCESSOR : x86_64 2025-06-05T23:54:18.9176538Z -- CMAKE_BUILD_TYPE : Release 2025-06-05T23:54:18.9177152Z -- PYTHON_EXECUTABLE : /opt/conda/envs/py_3.10/bin/python 2025-06-05T23:54:18.9177803Z -- CMAKE_CXX_COMPILER_ID : Clang 2025-06-05T23:54:18.9178341Z -- CMAKE_TOOLCHAIN_FILE x (unset) 2025-06-05T23:54:18.9178844Z -- BUCK2 : 2025-06-05T23:54:18.9179539Z -- EXECUTORCH_BUILD_PRESET_FILE : /pytorch/executorch/tools/cmake/preset/pybind.cmake 2025-06-05T23:54:18.9180288Z -- EXECUTORCH_ENABLE_LOGGING : ON 2025-06-05T23:54:18.9180790Z -- EXECUTORCH_BUILD_COREML : ON 2025-06-05T23:54:18.9181317Z -- EXECUTORCH_FLATBUFFERS_MAX_ALIGNMENT : 1024 2025-06-05T23:54:18.9181852Z -- EXECUTORCH_PAL_DEFAULT : posix 2025-06-05T23:54:18.9182636Z -- EXECUTORCH_PAL_DEFAULT_FILE_PATH : /pytorch/executorch/runtime/platform/default/posix.cpp 2025-06-05T23:54:18.9183412Z -- EXECUTORCH_LOG_LEVEL : Info 2025-06-05T23:54:18.9183948Z -- EXECUTORCH_ENABLE_PROGRAM_VERIFICATION : OFF 2025-06-05T23:54:18.9184472Z -- EXECUTORCH_ENABLE_EVENT_TRACER : OFF 2025-06-05T23:54:18.9185430Z -- EXECUTORCH_OPTIMIZE_SIZE : OFF 2025-06-05T23:54:18.9186044Z -- EXECUTORCH_BUILD_ARM_BAREMETAL : OFF 2025-06-05T23:54:18.9186574Z -- EXECUTORCH_BUILD_KERNELS_CUSTOM : ON 2025-06-05T23:54:18.9187235Z -- EXECUTORCH_BUILD_KERNELS_CUSTOM_AOT : ON 2025-06-05T23:54:18.9187844Z -- EXECUTORCH_BUILD_KERNELS_QUANTIZED_AOT : ON 2025-06-05T23:54:18.9188363Z -- EXECUTORCH_BUILD_EXTENSION_DATA_LOADER : OFF 2025-06-05T23:54:18.9188896Z -- EXECUTORCH_BUILD_EXTENSION_FLAT_TENSOR : ON 2025-06-05T23:54:18.9189411Z -- EXECUTORCH_BUILD_EXTENSION_LLM : OFF 2025-06-05T23:54:18.9190000Z -- EXECUTORCH_BUILD_EXTENSION_MODULE : OFF 2025-06-05T23:54:18.9190552Z -- EXECUTORCH_BUILD_EXTENSION_RUNNER_UTIL : ON 2025-06-05T23:54:18.9191268Z -- EXECUTORCH_BUILD_EXTENSION_TENSOR : ON 2025-06-05T23:54:18.9192098Z -- EXECUTORCH_BUILD_EXTENSION_TRAINING : OFF 2025-06-05T23:54:18.9193011Z -- EXECUTORCH_BUILD_EXTENSION_APPLE : OFF 2025-06-05T23:54:18.9193902Z -- EXECUTORCH_BUILD_MPS : OFF 2025-06-05T23:54:18.9194443Z -- EXECUTORCH_BUILD_NEURON : OFF 2025-06-05T23:54:18.9194968Z -- EXECUTORCH_BUILD_OPENVINO : OFF 2025-06-05T23:54:18.9195484Z -- EXECUTORCH_BUILD_PYBIND : ON 2025-06-05T23:54:18.9195997Z -- EXECUTORCH_BUILD_QNN : OFF 2025-06-05T23:54:18.9196507Z -- EXECUTORCH_BUILD_KERNELS_OPTIMIZED : OFF 2025-06-05T23:54:18.9197042Z -- EXECUTORCH_BUILD_KERNELS_QUANTIZED : ON 2025-06-05T23:54:18.9197556Z -- EXECUTORCH_BUILD_DEVTOOLS : OFF 2025-06-05T23:54:18.9198074Z -- EXECUTORCH_BUILD_TESTS : OFF 2025-06-05T23:54:18.9198573Z -- EXECUTORCH_NNLIB_OPT : OFF 2025-06-05T23:54:18.9199089Z -- EXECUTORCH_CADENCE_CPU_RUNNER : OFF 2025-06-05T23:54:18.9199602Z -- EXECUTORCH_BUILD_SIZE_TEST : OFF 2025-06-05T23:54:18.9200124Z -- EXECUTORCH_BUILD_XNNPACK : ON 2025-06-05T23:54:18.9200709Z -- EXECUTORCH_BUILD_VULKAN : OFF 2025-06-05T23:54:18.9201359Z -- EXECUTORCH_BUILD_PORTABLE_OPS : ON 2025-06-05T23:54:18.9201865Z -- EXECUTORCH_USE_DL : ON 2025-06-05T23:54:18.9202387Z -- EXECUTORCH_BUILD_CADENCE : OFF 2025-06-05T23:54:18.9202897Z -- EXECUTORCH_BUILD_CORTEX_M : OFF 2025-06-05T23:54:18.9203419Z -- EXECUTORCH_BUILD_GFLAGS : ON 2025-06-05T23:54:18.9203935Z -- EXECUTORCH_COREML_BUILD_EXECUTOR_RUNNER : OFF 2025-06-05T23:54:18.9204474Z -- EXECUTORCH_BUILD_PTHREADPOOL : ON 2025-06-05T23:54:18.9204983Z -- EXECUTORCH_BUILD_CPUINFO : ON 2025-06-05T23:54:18.9205507Z -- EXECUTORCH_BUILD_EXECUTOR_RUNNER : OFF 2025-06-05T23:54:18.9206026Z -- EXECUTORCH_XNNPACK_SHARED_WORKSPACE : ON 2025-06-05T23:54:18.9206556Z -- EXECUTORCH_XNNPACK_ENABLE_KLEIDI : OFF 2025-06-05T23:54:18.9207075Z -- EXECUTORCH_XNNPACK_ENABLE_WEIGHT_CACHE : OFF 2025-06-05T23:54:18.9207558Z -- -------------------------- 2025-06-05T23:54:18.9208178Z -- Using the multi-header code from /pytorch/executorch/third-party/json/include/ 2025-06-05T23:54:18.9209177Z CMake Deprecation Warning at third-party/pybind11/CMakeLists.txt:13 (cmake_minimum_required): 2025-06-05T23:54:18.9210132Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:54:18.9210737Z CMake. 2025-06-05T23:54:18.9210912Z 2025-06-05T23:54:18.9211236Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:54:18.9212036Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:54:18.9212740Z to work with policies introduced by or earlier. 2025-06-05T23:54:18.9213113Z 2025-06-05T23:54:18.9213118Z 2025-06-05T23:54:18.9213257Z -- pybind11 v2.13.6 2025-06-05T23:54:18.9214053Z -- 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:18.9215275Z -- Found PythonLibs: /opt/conda/envs/py_3.10/lib/libpython3.10.so 2025-06-05T23:54:18.9215866Z -- Performing Test HAS_FLTO_THIN 2025-06-05T23:54:18.9216404Z -- Performing Test HAS_FLTO_THIN - Success 2025-06-05T23:54:18.9217158Z CMake Deprecation Warning at third-party/flatcc/CMakeLists.txt:2 (cmake_minimum_required): 2025-06-05T23:54:18.9218076Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:54:18.9218690Z CMake. 2025-06-05T23:54:18.9218860Z 2025-06-05T23:54:18.9219169Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:54:27.8954991Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:54:27.8956129Z to work with policies introduced by or earlier. 2025-06-05T23:54:27.8956523Z 2025-06-05T23:54:27.8956528Z 2025-06-05T23:54:27.8956783Z -- dist install dir /pytorch/executorch/third-party/flatcc 2025-06-05T23:54:27.8957466Z -- lib install dir /pytorch/executorch/third-party/flatcc/lib 2025-06-05T23:54:27.8958081Z -- Setting Clang compiler options 2025-06-05T23:54:27.8959247Z -- Configured C_FLAGS: -DFLATCC_REFLECTION=0 -Wstrict-prototypes -Wsign-conversion -Wconversion -std=c11 -pedantic -Wall -Wextra -Werror 2025-06-05T23:54:27.8960785Z CMake Deprecation Warning at backends/xnnpack/third-party/FXdiv/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:54:27.8961841Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:54:27.8962446Z CMake. 2025-06-05T23:54:27.8962623Z 2025-06-05T23:54:27.8962950Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:54:27.8963749Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:54:27.8964453Z to work with policies introduced by or earlier. 2025-06-05T23:54:27.8964819Z 2025-06-05T23:54:27.8964824Z 2025-06-05T23:54:27.8965396Z CMake Deprecation Warning at backends/xnnpack/third-party/cpuinfo/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:54:27.8966445Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:54:27.8967052Z CMake. 2025-06-05T23:54:27.8967221Z 2025-06-05T23:54:27.8967539Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:54:27.8968334Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:54:27.8969038Z to work with policies introduced by or earlier. 2025-06-05T23:54:27.8969416Z 2025-06-05T23:54:27.8969421Z 2025-06-05T23:54:27.8969588Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD 2025-06-05T23:54:27.8970131Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success 2025-06-05T23:54:27.8970639Z -- Found Threads: TRUE 2025-06-05T23:54:27.8971471Z CMake Deprecation Warning at backends/xnnpack/third-party/pthreadpool/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:54:27.8972553Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:54:27.8973164Z CMake. 2025-06-05T23:54:27.8973333Z 2025-06-05T23:54:27.8973648Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:54:27.8974452Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:54:27.8975149Z to work with policies introduced by or earlier. 2025-06-05T23:54:27.8975522Z 2025-06-05T23:54:27.8975527Z 2025-06-05T23:54:27.8975680Z -- Resolved buck2 as buck2. 2025-06-05T23:54:27.8976072Z -- Killing buck2 daemon 2025-06-05T23:54:27.8976441Z 'buck2 killall' 2025-06-05T23:54:27.8976790Z -- executorch: Generating source lists 2025-06-05T23:54:27.8977785Z -- executorch: Generating source file list /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/executorch_srcs.cmake 2025-06-05T23:54:27.8979257Z -- executorch: Using sources file /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/executorch_srcs.cmake 2025-06-05T23:54:27.8981053Z '/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:27.8982183Z -- Generating operator lib: 2025-06-05T23:54:27.8982594Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:54:27.8983191Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/portable/functions.yaml 2025-06-05T23:54:27.8983795Z -- ROOT_OPS: 2025-06-05T23:54:27.8984137Z -- INCLUDE_ALL_OPS: 2025-06-05T23:54:27.8986305Z 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:27.8988402Z -- Generating kernel bindings: 2025-06-05T23:54:27.8988817Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:54:27.8989417Z -- FUNCTIONS_YAML: /pytorch/executorch/kernels/portable/functions.yaml 2025-06-05T23:54:27.8990033Z -- CUSTOM_OPS_YAML: 2025-06-05T23:54:27.8990421Z -- ADD_EXCEPTION_BOUNDARY: FALSE 2025-06-05T23:54:27.8993227Z 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:27.8996063Z -- Generating operator lib: 2025-06-05T23:54:27.8996475Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:54:27.8996906Z -- KERNEL_LIBS: portable_kernels 2025-06-05T23:54:27.8997332Z -- DEPS: executorch_core 2025-06-05T23:54:27.8997731Z -- Generating operator lib: 2025-06-05T23:54:27.8998130Z -- LIB_NAME: optimized_ops_lib 2025-06-05T23:54:27.8998737Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/optimized/optimized.yaml 2025-06-05T23:54:27.8999337Z -- ROOT_OPS: 2025-06-05T23:54:27.8999665Z -- INCLUDE_ALL_OPS: 2025-06-05T23:54:27.9001580Z 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:27.9003601Z -- Generating kernel bindings: 2025-06-05T23:54:27.9004014Z -- LIB_NAME: optimized_ops_lib 2025-06-05T23:54:27.9004610Z -- FUNCTIONS_YAML: /pytorch/executorch/kernels/optimized/optimized.yaml 2025-06-05T23:54:27.9005230Z -- CUSTOM_OPS_YAML: 2025-06-05T23:54:27.9005608Z -- ADD_EXCEPTION_BOUNDARY: TRUE 2025-06-05T23:54:27.9008455Z 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:27.9011334Z -- Generating operator lib: 2025-06-05T23:54:27.9011841Z -- LIB_NAME: optimized_ops_lib 2025-06-05T23:54:27.9012286Z -- KERNEL_LIBS: optimized_kernels 2025-06-05T23:54:27.9012716Z -- DEPS: executorch_core 2025-06-05T23:54:27.9013118Z -- Merging kernel yaml files: 2025-06-05T23:54:27.9013803Z -- FUNCTIONS_YAML: /pytorch/executorch/configurations/../kernels/optimized/optimized.yaml 2025-06-05T23:54:27.9014827Z -- FALLBACK_YAML: /pytorch/executorch/configurations/../kernels/portable/functions.yaml 2025-06-05T23:54:27.9015874Z -- OUTPUT_DIR: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/configurations 2025-06-05T23:54:27.9016662Z -- Generating operator lib: 2025-06-05T23:54:27.9017257Z -- LIB_NAME: optimized_native_cpu_ops_lib 2025-06-05T23:54:27.9018164Z -- OPS_SCHEMA_YAML: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/configurations/merged.yaml 2025-06-05T23:54:27.9019035Z -- ROOT_OPS: 2025-06-05T23:54:27.9019472Z -- INCLUDE_ALL_OPS: 2025-06-05T23:54:27.9021685Z 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:27.9023998Z -- Generating kernel bindings: 2025-06-05T23:54:27.9024443Z -- LIB_NAME: optimized_native_cpu_ops_lib 2025-06-05T23:54:27.9025351Z -- FUNCTIONS_YAML: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/configurations/merged.yaml 2025-06-05T23:54:27.9026220Z -- CUSTOM_OPS_YAML: 2025-06-05T23:54:27.9026602Z -- ADD_EXCEPTION_BOUNDARY: TRUE 2025-06-05T23:54:27.9029663Z 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:27.9032684Z -- Generating operator lib: 2025-06-05T23:54:27.9033131Z -- LIB_NAME: optimized_native_cpu_ops_lib 2025-06-05T23:54:27.9033697Z -- KERNEL_LIBS: optimized_kernels;optimized_portable_kernels 2025-06-05T23:54:27.9034262Z -- DEPS: executorch_core 2025-06-05T23:54:27.9034946Z CMake Deprecation Warning at third-party/gflags/CMakeLists.txt:73 (cmake_minimum_required): 2025-06-05T23:54:27.9035881Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:54:27.9036486Z CMake. 2025-06-05T23:54:27.9036658Z 2025-06-05T23:54:27.9036981Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:54:27.9037778Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:54:27.9038478Z to work with policies introduced by or earlier. 2025-06-05T23:54:27.9038840Z 2025-06-05T23:54:27.9038846Z 2025-06-05T23:54:27.9039006Z -- Looking for C++ include unistd.h 2025-06-05T23:54:27.9039476Z -- Looking for C++ include unistd.h - found 2025-06-05T23:54:27.9039940Z -- Looking for C++ include stdint.h 2025-06-05T23:54:27.9040401Z -- Looking for C++ include stdint.h - found 2025-06-05T23:54:27.9040877Z -- Looking for C++ include inttypes.h 2025-06-05T23:54:27.9041346Z -- Looking for C++ include inttypes.h - found 2025-06-05T23:54:27.9041843Z -- Looking for C++ include sys/types.h 2025-06-05T23:54:27.9042317Z -- Looking for C++ include sys/types.h - found 2025-06-05T23:54:27.9042810Z -- Looking for C++ include sys/stat.h 2025-06-05T23:54:27.9043269Z -- Looking for C++ include sys/stat.h - found 2025-06-05T23:54:27.9043751Z -- Looking for C++ include fnmatch.h 2025-06-05T23:54:27.9044212Z -- Looking for C++ include fnmatch.h - found 2025-06-05T23:54:27.9044695Z -- Looking for C++ include stddef.h 2025-06-05T23:54:27.9045146Z -- Looking for C++ include stddef.h - found 2025-06-05T23:54:27.9045613Z -- Check size of uint32_t 2025-06-05T23:54:27.9045994Z -- Check size of uint32_t - done 2025-06-05T23:54:27.9046416Z -- Looking for strtoll 2025-06-05T23:54:27.9046788Z -- Looking for strtoll - found 2025-06-05T23:54:27.9047366Z -- The ASM compiler identification is Clang with GNU-like command-line 2025-06-05T23:54:27.9047992Z -- Found assembler: /opt/cache/bin/cc 2025-06-05T23:54:27.9048497Z -- Building for XNNPACK_TARGET_PROCESSOR: x86_64 2025-06-05T23:54:27.9049369Z -- Found Python: /opt/conda/envs/py_3.10/bin/python3.10 (found version "3.10.16") found components: Interpreter 2025-06-05T23:54:27.9050361Z -- Generating microkernels.cmake 2025-06-05T23:54:27.9050901Z No microkernel found in src/reference/binary-elementwise.cc 2025-06-05T23:54:27.9051523Z No microkernel found in src/reference/packing.cc 2025-06-05T23:54:27.9052187Z No microkernel found in src/reference/unary-elementwise.cc 2025-06-05T23:54:28.7208378Z '/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:28.7210254Z -- MKL_ARCH: None, set to ` intel64` by default 2025-06-05T23:54:28.7211147Z -- MKL_ROOT /opt/conda/envs/py_3.10 2025-06-05T23:54:28.7211997Z -- MKL_LINK: None, set to ` dynamic` by default 2025-06-05T23:54:28.7213015Z -- MKL_INTERFACE_FULL: None, set to ` intel_ilp64` by default 2025-06-05T23:54:28.7214140Z -- MKL_THREADING: None, set to ` intel_thread` by default 2025-06-05T23:54:28.7215051Z -- MKL_MPI: None, set to ` intelmpi` by default 2025-06-05T23:54:28.7216797Z 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:28.7218569Z static library kineto_LIBRARY-NOTFOUND not found. 2025-06-05T23:54:28.7219522Z Call Stack (most recent call first): 2025-06-05T23:54:28.7221269Z /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:28.7223048Z tools/cmake/Utils.cmake:267 (find_package) 2025-06-05T23:54:28.7223888Z CMakeLists.txt:610 (find_package_torch) 2025-06-05T23:54:28.7224454Z 2025-06-05T23:54:28.7224464Z 2025-06-05T23:54:28.7225188Z -- Found Torch: /opt/conda/envs/py_3.10/lib/python3.10/site-packages/torch/lib/libtorch.so 2025-06-05T23:54:28.7227836Z -- 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:28.7229545Z -- Generating operator lib: 2025-06-05T23:54:28.7230175Z -- LIB_NAME: quantized_ops_lib 2025-06-05T23:54:28.7231215Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/quantized/quantized.yaml 2025-06-05T23:54:28.7232296Z -- ROOT_OPS: 2025-06-05T23:54:28.7232837Z -- INCLUDE_ALL_OPS: 2025-06-05T23:54:28.7236110Z 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:28.7239791Z -- Generating kernel bindings: 2025-06-05T23:54:28.7240530Z -- LIB_NAME: quantized_ops_lib 2025-06-05T23:54:28.7241267Z -- FUNCTIONS_YAML: 2025-06-05T23:54:28.7242204Z -- CUSTOM_OPS_YAML: /pytorch/executorch/kernels/quantized/quantized.yaml 2025-06-05T23:54:28.7243314Z -- ADD_EXCEPTION_BOUNDARY: FALSE 2025-06-05T23:54:28.7252945Z 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:28.7262730Z -- Generating operator lib: 2025-06-05T23:54:28.7263495Z -- LIB_NAME: quantized_ops_aot_lib 2025-06-05T23:54:28.7264254Z -- OPS_SCHEMA_YAML: 2025-06-05T23:54:28.7271374Z -- 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:28.7278448Z -- INCLUDE_ALL_OPS: 2025-06-05T23:54:28.7287788Z 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:28.7297039Z -- Generating kernel bindings: 2025-06-05T23:54:28.7297819Z -- LIB_NAME: quantized_ops_aot_lib 2025-06-05T23:54:28.7298586Z -- FUNCTIONS_YAML: 2025-06-05T23:54:28.7299482Z -- CUSTOM_OPS_YAML: /pytorch/executorch/kernels/quantized/quantized.yaml 2025-06-05T23:54:28.7300624Z -- ADD_EXCEPTION_BOUNDARY: FALSE 2025-06-05T23:54:28.7301423Z -- Generating custom ops aot lib: 2025-06-05T23:54:28.7302186Z -- LIB_NAME: quantized_ops_aot_lib 2025-06-05T23:54:28.7303617Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/embeddingxb.cpp 2025-06-05T23:54:28.7305649Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_add.cpp 2025-06-05T23:54:28.7307816Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_choose_qparams.cpp 2025-06-05T23:54:28.7309938Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_dequantize.cpp 2025-06-05T23:54:28.7312040Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_embedding.cpp 2025-06-05T23:54:28.7314136Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_embedding2b.cpp 2025-06-05T23:54:28.7316277Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_embedding4b.cpp 2025-06-05T23:54:28.7318397Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_mixed_linear.cpp 2025-06-05T23:54:28.7320377Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_mixed_mm.cpp 2025-06-05T23:54:28.7322208Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/quantized/cpu/op_quantize.cpp 2025-06-05T23:54:28.7324347Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../kernels/portable/cpu/util/reduce_util.cpp 2025-06-05T23:54:28.7326559Z -- KERNEL_SOURCE: /pytorch/executorch/kernels/quantized/../../runtime/core/exec_aten/util/tensor_util_aten.cpp 2025-06-05T23:54:28.7328100Z -- Generating operator lib: 2025-06-05T23:54:28.7328852Z -- LIB_NAME: quantized_ops_pybind_lib 2025-06-05T23:54:28.7329987Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/quantized/quantized.yaml 2025-06-05T23:54:28.7331053Z -- ROOT_OPS: 2025-06-05T23:54:28.7331612Z -- INCLUDE_ALL_OPS: 2025-06-05T23:54:28.7334885Z 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:28.7338818Z -- Generating kernel bindings: 2025-06-05T23:54:28.7339783Z -- LIB_NAME: quantized_ops_pybind_lib 2025-06-05T23:54:28.7340548Z -- FUNCTIONS_YAML: 2025-06-05T23:54:28.7341497Z -- CUSTOM_OPS_YAML: /pytorch/executorch/kernels/quantized/quantized.yaml 2025-06-05T23:54:28.7342592Z -- ADD_EXCEPTION_BOUNDARY: FALSE 2025-06-05T23:54:28.7343344Z -- Generating operator lib: 2025-06-05T23:54:28.7344076Z -- LIB_NAME: quantized_ops_pybind_lib 2025-06-05T23:54:28.7344908Z -- KERNEL_LIBS: quantized_pybind_kernels_lib 2025-06-05T23:54:28.7345731Z -- DEPS: portable_lib 2025-06-05T23:54:28.7346402Z -- Generating operator lib: 2025-06-05T23:54:28.7347125Z -- LIB_NAME: quantized_ops_lib 2025-06-05T23:54:28.7347956Z -- KERNEL_LIBS: quantized_kernels 2025-06-05T23:54:28.7348694Z -- DEPS: executorch_core 2025-06-05T23:54:28.7349404Z -- Configuring done (10.2s) 2025-06-05T23:54:28.7350117Z -- Generating done (0.5s) 2025-06-05T23:54:28.7351340Z -- Build files have been written to: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out 2025-06-05T23:54:28.7354516Z 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:28.7357271Z [ 0%] Creating directories for 'flatbuffers_external_project' 2025-06-05T23:54:28.7358372Z [ 0%] Creating directories for 'flatcc_external_project' 2025-06-05T23:54:28.7359813Z [ 0%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/api.c.o 2025-06-05T23:54:28.7361956Z [ 0%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/legacy-api.c.o 2025-06-05T23:54:28.7364104Z [ 0%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/cache.c.o 2025-06-05T23:54:28.7366288Z [ 0%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/portable-api.c.o 2025-06-05T23:54:28.7368541Z [ 0%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/single.cpp.o 2025-06-05T23:54:28.7370141Z [ 0%] No download step for 'flatcc_external_project' 2025-06-05T23:54:28.7371151Z [ 0%] No download step for 'flatbuffers_external_project' 2025-06-05T23:54:28.7372163Z [ 0%] No update step for 'flatcc_external_project' 2025-06-05T23:54:28.7373145Z [ 0%] No update step for 'flatbuffers_external_project' 2025-06-05T23:54:28.7374138Z [ 0%] No patch step for 'flatcc_external_project' 2025-06-05T23:54:28.7375055Z [ 0%] No patch step for 'flatbuffers_external_project' 2025-06-05T23:54:28.7376144Z [ 0%] Performing configure step for 'flatcc_external_project' 2025-06-05T23:54:29.7748806Z [ 1%] Performing configure step for 'flatbuffers_external_project' 2025-06-05T23:54:29.7749932Z CMake Warning: 2025-06-05T23:54:29.7750689Z Ignoring empty string ("") provided on the command line. 2025-06-05T23:54:29.7751393Z 2025-06-05T23:54:29.7751404Z 2025-06-05T23:54:29.7751937Z CMake Deprecation Warning at CMakeLists.txt:2 (cmake_minimum_required): 2025-06-05T23:54:29.7753131Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:54:29.7753755Z CMake. 2025-06-05T23:54:29.7753991Z 2025-06-05T23:54:29.7754500Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:54:29.7755822Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:54:29.7757012Z to work with policies introduced by or earlier. 2025-06-05T23:54:29.7757660Z 2025-06-05T23:54:29.7757669Z 2025-06-05T23:54:29.7757898Z CMake Warning: 2025-06-05T23:54:29.7758652Z Ignoring empty string ("") provided on the command line. 2025-06-05T23:54:29.7759649Z 2025-06-05T23:54:29.7759656Z 2025-06-05T23:54:29.7760003Z fatal: No names found, cannot describe anything. 2025-06-05T23:54:29.7760956Z CMake Warning at CMake/Version.cmake:32 (message): 2025-06-05T23:54:29.7761804Z git describe failed with exit code: 128 2025-06-05T23:54:29.7762357Z 2025-06-05T23:54:29.7762615Z Make sure you cloned with tags or run 'git fetch --tags'. 2025-06-05T23:54:29.7763191Z Call Stack (most recent call first): 2025-06-05T23:54:29.7763645Z CMakeLists.txt:5 (include) 2025-06-05T23:54:29.7763914Z 2025-06-05T23:54:29.7763919Z 2025-06-05T23:54:29.7764091Z -- Proceeding with version: 24.3.25.0 2025-06-05T23:54:29.7764926Z [ 1%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/double.cpp.o 2025-06-05T23:54:29.7766392Z [ 1%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/memory.c.o 2025-06-05T23:54:29.7768315Z [ 1%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/init.c.o 2025-06-05T23:54:29.7770179Z [ 2%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/pthreads.c.o 2025-06-05T23:54:29.7771549Z -- The C compiler identification is Clang 12.0.1 2025-06-05T23:54:29.7772322Z -- Detecting C compiler ABI info 2025-06-05T23:54:29.7773467Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/log.c.o 2025-06-05T23:54:29.7775357Z [ 2%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/fastpath.c.o 2025-06-05T23:54:29.7777283Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/init.c.o 2025-06-05T23:54:29.7778703Z -- The CXX compiler identification is Clang 12.0.1 2025-06-05T23:54:29.7779568Z -- Detecting CXX compiler ABI info 2025-06-05T23:54:29.7780944Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/info.c.o 2025-06-05T23:54:29.7782930Z [ 2%] Linking C static library libpthreadpool.a 2025-06-05T23:54:29.7784490Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/vendor.c.o 2025-06-05T23:54:29.7786886Z [ 2%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/complex_single.cpp.o 2025-06-05T23:54:29.7788536Z [ 2%] Built target pthreadpool 2025-06-05T23:54:29.7789894Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/uarch.c.o 2025-06-05T23:54:29.7791363Z -- Detecting C compiler ABI info - done 2025-06-05T23:54:29.7794532Z -- Check for working C compiler: /opt/cache/bin/cc - skipped 2025-06-05T23:54:29.7795459Z -- Detecting C compile features 2025-06-05T23:54:29.7796184Z -- Detecting C compile features - done 2025-06-05T23:54:29.7797492Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/name.c.o 2025-06-05T23:54:29.7799525Z [ 2%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/complex_double.cpp.o 2025-06-05T23:54:29.7801619Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/topology.c.o 2025-06-05T23:54:29.7803125Z -- dist install dir /pytorch/executorch/third-party/flatcc 2025-06-05T23:54:29.7804188Z -- lib install dir /pytorch/executorch/third-party/flatcc/lib 2025-06-05T23:54:29.7805201Z -- Setting Clang compiler options 2025-06-05T23:54:29.7806987Z -- Configured C_FLAGS: -DFLATCC_REFLECTION=0 -Wstrict-prototypes -Wsign-conversion -Wconversion -std=c11 -pedantic -Wall -Wextra -Werror 2025-06-05T23:54:29.7808853Z -- Configuring done (0.4s) 2025-06-05T23:54:29.7810171Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/isa.c.o 2025-06-05T23:54:29.7811574Z -- Generating done (0.0s) 2025-06-05T23:54:29.7813826Z -- 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:29.7816715Z [ 2%] Performing build step for 'flatcc_external_project' 2025-06-05T23:54:29.7818393Z [ 3%] Building C object src/runtime/CMakeFiles/flatccrt.dir/builder.c.o 2025-06-05T23:54:29.7820171Z [ 6%] Building C object src/runtime/CMakeFiles/flatccrt.dir/emitter.c.o 2025-06-05T23:54:29.7821844Z [ 9%] Building C object src/runtime/CMakeFiles/flatccrt.dir/refmap.c.o 2025-06-05T23:54:29.7823760Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/init.c.o 2025-06-05T23:54:29.7851799Z -- Detecting CXX compiler ABI info - done 2025-06-05T23:54:29.7852887Z -- Check for working CXX compiler: /opt/cache/bin/c++ - skipped 2025-06-05T23:54:29.7853944Z -- Detecting CXX compile features 2025-06-05T23:54:29.7854779Z -- Detecting CXX compile features - done 2025-06-05T23:54:29.7856369Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/descriptor.c.o 2025-06-05T23:54:29.7857959Z -- Looking for strtof_l 2025-06-05T23:54:29.7858953Z [ 12%] Building C object src/runtime/CMakeFiles/flatccrt.dir/verifier.c.o 2025-06-05T23:54:29.7860536Z [ 15%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/__/external/hash/str_set.c.o 2025-06-05T23:54:29.7862056Z [ 18%] Building C object src/runtime/CMakeFiles/flatccrt.dir/json_parser.c.o 2025-06-05T23:54:29.7863384Z [ 21%] Building C object src/runtime/CMakeFiles/flatccrt.dir/json_printer.c.o 2025-06-05T23:54:29.7865212Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/deterministic.c.o 2025-06-05T23:54:29.7867293Z [ 2%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/xerbla.cpp.o 2025-06-05T23:54:29.7869340Z [ 2%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/srotm.c.o 2025-06-05T23:54:29.7871117Z [ 24%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/__/external/hash/ptr_set.c.o 2025-06-05T23:54:29.7872706Z [ 27%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatccrt.a 2025-06-05T23:54:29.7874445Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/linux/init.c.o 2025-06-05T23:54:29.7876234Z [ 30%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/symbol_table.c.o 2025-06-05T23:54:29.7877376Z [ 30%] Built target flatccrt 2025-06-05T23:54:29.7878420Z [ 33%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/scope_table.c.o 2025-06-05T23:54:29.7879934Z [ 36%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/name_table.c.o 2025-06-05T23:54:29.7881691Z [ 2%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/srotmg.c.o 2025-06-05T23:54:29.7883672Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/linux/cpuinfo.c.o 2025-06-05T23:54:29.7885300Z -- Looking for strtof_l - found 2025-06-05T23:54:29.7885929Z -- Looking for strtoull_l 2025-06-05T23:54:29.7887090Z [ 3%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/drotm.c.o 2025-06-05T23:54:29.7888822Z [ 39%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/schema_table.c.o 2025-06-05T23:54:29.7890609Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/smallfile.c.o 2025-06-05T23:54:29.7893063Z [ 3%] 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:29.7896006Z [ 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:29.7899422Z [ 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:29.7902504Z [ 3%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/drotmg.c.o 2025-06-05T23:54:29.7904407Z [ 42%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/value_set.c.o 2025-06-05T23:54:29.7906538Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/multiline.c.o 2025-06-05T23:54:29.7908788Z [ 3%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/lsame.c.o 2025-06-05T23:54:29.7911404Z [ 3%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/dspmv.c.o 2025-06-05T23:54:29.7913512Z [ 3%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/ssbmv.c.o 2025-06-05T23:54:29.7915588Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/cpulist.c.o 2025-06-05T23:54:29.7917761Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/processors.c.o 2025-06-05T23:54:29.7919294Z -- Looking for strtoull_l - found 2025-06-05T23:54:29.7920082Z -- Looking for realpath 2025-06-05T23:54:29.7920937Z [ 45%] Building C object src/compiler/CMakeFiles/flatcc.dir/fileio.c.o 2025-06-05T23:54:29.7923052Z [ 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:29.7926031Z [ 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:29.7928521Z [ 3%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/chbmv.c.o 2025-06-05T23:54:29.7930483Z [ 3%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/sspmv.c.o 2025-06-05T23:54:29.7931884Z [ 3%] Linking C static library libcpuinfo.a 2025-06-05T23:54:29.7932869Z [ 48%] Building C object src/compiler/CMakeFiles/flatcc.dir/parser.c.o 2025-06-05T23:54:30.7332628Z [ 3%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-9p16c-minmax-fma3.c.o 2025-06-05T23:54:30.7334740Z [ 3%] Built target cpuinfo 2025-06-05T23:54:30.7336627Z [ 3%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-avx-int16-u16.c.o 2025-06-05T23:54:30.7339292Z [ 3%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/zhbmv.c.o 2025-06-05T23:54:30.7341417Z [ 4%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/chpmv.c.o 2025-06-05T23:54:30.7343193Z [ 51%] Building C object src/compiler/CMakeFiles/flatcc.dir/semantics.c.o 2025-06-05T23:54:30.7344536Z [ 54%] Building C object src/compiler/CMakeFiles/flatcc.dir/coerce.c.o 2025-06-05T23:54:30.7345853Z [ 57%] Building C object src/compiler/CMakeFiles/flatcc.dir/flatcc.c.o 2025-06-05T23:54:30.7347577Z [ 4%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/dsbmv.c.o 2025-06-05T23:54:30.7349463Z [ 60%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c.c.o 2025-06-05T23:54:30.7350565Z -- Looking for realpath - found 2025-06-05T23:54:30.7351761Z -- CMAKE_CXX_FLAGS: "-DFLATBUFFERS_MAX_ALIGNMENT=1024" 2025-06-05T23:54:30.7353982Z [ 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:30.7357209Z [ 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:30.7359266Z -- Configuring done (1.2s) 2025-06-05T23:54:30.7361135Z [ 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:30.7364725Z [ 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:30.7366748Z -- Generating done (0.0s) 2025-06-05T23:54:30.7369265Z -- 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:30.7371873Z [ 6%] Performing build step for 'flatbuffers_external_project' 2025-06-05T23:54:30.7373467Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/zhpmv.c.o 2025-06-05T23:54:30.7375058Z [ 63%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_reader.c.o 2025-06-05T23:54:30.7376320Z [ 2%] Building CXX object CMakeFiles/flatc.dir/src/idl_parser.cpp.o 2025-06-05T23:54:30.7378413Z [ 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:30.7380886Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/dtbmv.c.o 2025-06-05T23:54:30.7383079Z [ 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:30.7386242Z [ 66%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_sort.c.o 2025-06-05T23:54:30.7387939Z [ 69%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_builder.c.o 2025-06-05T23:54:30.7389524Z [ 72%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_verifier.c.o 2025-06-05T23:54:30.7391391Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/stbmv.c.o 2025-06-05T23:54:30.7393125Z [ 5%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_text.cpp.o 2025-06-05T23:54:30.7395589Z [ 6%] 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:30.7398170Z [ 7%] Building CXX object CMakeFiles/flatc.dir/src/reflection.cpp.o 2025-06-05T23:54:30.7399597Z [ 10%] Building CXX object CMakeFiles/flatc.dir/src/util.cpp.o 2025-06-05T23:54:30.7400948Z [ 75%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_sorter.c.o 2025-06-05T23:54:30.7402777Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/ctbmv.c.o 2025-06-05T23:54:30.7404914Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/ztbmv.c.o 2025-06-05T23:54:30.7406951Z [ 78%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_json_parser.c.o 2025-06-05T23:54:30.7408669Z [ 81%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_json_printer.c.o 2025-06-05T23:54:30.7410714Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/complexdots.c.o 2025-06-05T23:54:30.7413703Z [ 6%] 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:30.7417509Z [ 6%] 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:30.7420183Z [ 84%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/builder.c.o 2025-06-05T23:54:30.7421946Z [ 87%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/emitter.c.o 2025-06-05T23:54:30.7423503Z [ 90%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/refmap.c.o 2025-06-05T23:54:30.7424755Z [ 6%] Linking CXX static library libeigen_blas.a 2025-06-05T23:54:30.7425797Z [ 13%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_binary.cpp.o 2025-06-05T23:54:30.7427753Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/allocation-type.c.o 2025-06-05T23:54:30.7429668Z [ 6%] Built target eigen_blas 2025-06-05T23:54:30.7432082Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-igemm/gen/f16-f32acc-igemm-4x16-minmax-avx2-broadcast.c.o 2025-06-05T23:54:30.7434767Z [ 93%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatcc.a 2025-06-05T23:54:30.7436680Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/indirection.dir/src/indirection.c.o 2025-06-05T23:54:30.7439037Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microparams-init.dir/src/microparams-init.c.o 2025-06-05T23:54:30.7440571Z [ 93%] Built target flatcc 2025-06-05T23:54:30.7442586Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-rdsum/gen/f16-f32acc-rdsum-7p7x-avx512skx-c64.c.o 2025-06-05T23:54:30.7444988Z [ 96%] Building C object src/cli/CMakeFiles/flatcc_cli.dir/flatcc_cli.c.o 2025-06-05T23:54:30.7446788Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/datatype-strings.c.o 2025-06-05T23:54:30.7448391Z [ 6%] Built target indirection 2025-06-05T23:54:30.7449876Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/microkernel-type.c.o 2025-06-05T23:54:30.7451491Z [ 7%] Built target microparams-init 2025-06-05T23:54:30.7452928Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/node-type.c.o 2025-06-05T23:54:30.7454745Z [100%] Linking C executable /pytorch/executorch/third-party/flatcc/bin/flatcc 2025-06-05T23:54:30.7456620Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/normalization.dir/src/normalization.c.o 2025-06-05T23:54:30.7459416Z [ 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:30.7461706Z [ 15%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_cpp.cpp.o 2025-06-05T23:54:30.7463008Z [ 18%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_csharp.cpp.o 2025-06-05T23:54:30.7464799Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/operator-type.c.o 2025-06-05T23:54:30.7467635Z [ 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:30.7469835Z [ 7%] Built target normalization 2025-06-05T23:54:30.7470593Z [100%] Built target flatcc_cli 2025-06-05T23:54:30.7471915Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/datatype.dir/src/datatype.c.o 2025-06-05T23:54:30.7473531Z [ 7%] Performing install step for 'flatcc_external_project' 2025-06-05T23:54:30.7474441Z [ 21%] Built target flatccrt 2025-06-05T23:54:30.7475708Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/log.c.o 2025-06-05T23:54:30.7477033Z [ 93%] Built target flatcc 2025-06-05T23:54:30.7477727Z [100%] Built target flatcc_cli 2025-06-05T23:54:30.7478434Z [ 7%] Built target datatype 2025-06-05T23:54:30.7479138Z Install the project... 2025-06-05T23:54:30.7481051Z [ 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:30.7483101Z -- Install configuration: "" 2025-06-05T23:54:30.7484749Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/include/flatcc 2025-06-05T23:54:30.7491238Z -- 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:30.7494324Z -- 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:30.7498720Z -- 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:30.7501892Z -- 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:30.7505092Z -- 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:30.7508388Z -- 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:30.7511719Z -- 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:30.7514874Z -- 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:30.7518138Z -- 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:30.7521430Z -- 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:30.7524624Z -- 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:30.7527836Z -- 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:30.7531091Z -- 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:30.7534354Z -- 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:30.7537591Z -- 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:30.7540785Z -- 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:30.7543996Z -- 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:30.7547144Z -- 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:30.7550385Z -- 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:30.7553561Z -- 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:30.7556770Z -- 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:30.7559896Z -- 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:30.7563029Z -- 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:30.7566298Z -- 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:30.7569857Z -- 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:30.7573344Z -- 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:30.7576617Z -- 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:30.7579929Z -- 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:30.7583232Z -- 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:30.7586605Z -- 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:30.7590126Z -- 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:30.7593570Z -- 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:30.7596927Z -- 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:30.7600517Z -- 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:30.7604107Z -- 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:30.7607654Z -- 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:30.7611095Z -- 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:30.7614480Z -- 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:30.7617817Z -- 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:30.7621066Z -- 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:30.7624388Z -- 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:30.7627919Z -- 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:30.7631416Z -- 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:30.7634836Z -- 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:30.7638168Z -- 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:30.7641540Z -- 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:30.7645335Z -- 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:30.7648664Z -- 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:30.7652002Z -- 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:30.7655208Z -- 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:30.7658537Z -- 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:30.7661836Z -- 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:30.7665188Z -- 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:30.7668643Z -- 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:30.7671973Z -- 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:30.7675377Z -- 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:31.4766337Z -- 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:31.4769180Z -- 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:31.4772450Z -- 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:31.4775426Z -- 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:31.4777902Z -- 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:31.4780001Z -- 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:31.4782062Z -- 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:31.4784024Z -- 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:31.4786748Z -- 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:31.4789579Z -- 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:31.4792417Z -- 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:31.4795286Z -- 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:31.4798521Z -- 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:31.4801760Z -- 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:31.4804516Z -- 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:31.4807184Z -- 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:31.4809957Z -- 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:31.4813132Z -- 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:31.4816329Z -- 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:31.4819448Z -- 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:31.4822389Z -- 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:31.4825289Z [ 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:31.4828050Z -- 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:31.4830865Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatcc_external_project/bin/flatcc 2025-06-05T23:54:31.4832466Z [ 7%] Completed 'flatcc_external_project' 2025-06-05T23:54:31.4833242Z [ 7%] Built target logging 2025-06-05T23:54:31.4833852Z [ 7%] Built target flatcc_external_project 2025-06-05T23:54:31.4834934Z [ 7%] Building CXX object backends/xnnpack/third-party/XNNPACK/CMakeFiles/reference-ukernels.dir/src/reference/unary-elementwise.cc.o 2025-06-05T23:54:31.4836423Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operator-utils.dir/src/operator-utils.c.o 2025-06-05T23:54:31.4837930Z [ 7%] Building CXX object backends/xnnpack/third-party/XNNPACK/CMakeFiles/reference-ukernels.dir/src/reference/binary-elementwise.cc.o 2025-06-05T23:54:31.4839657Z [ 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:31.4840932Z [ 21%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_dart.cpp.o 2025-06-05T23:54:31.4842076Z [ 23%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_kotlin.cpp.o 2025-06-05T23:54:31.4842703Z [ 7%] Built target operator-utils 2025-06-05T23:54:31.4844501Z [ 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:31.4846771Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operator-run.dir/src/operator-run.c.o 2025-06-05T23:54:31.4848130Z [ 7%] Built target reference-ukernels 2025-06-05T23:54:31.4849540Z [ 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:31.4851021Z [ 7%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/builder.c.o 2025-06-05T23:54:31.4852385Z [ 7%] Built target operator-run 2025-06-05T23:54:31.4853518Z [ 26%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_kotlin_kmp.cpp.o 2025-06-05T23:54:31.4856122Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/hardware-config.dir/src/configs/hardware-config.c.o 2025-06-05T23:54:31.4857916Z [ 7%] Building CXX object backends/xnnpack/third-party/XNNPACK/CMakeFiles/packing.dir/src/reference/packing.cc.o 2025-06-05T23:54:31.4859524Z [ 7%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/emitter.c.o 2025-06-05T23:54:31.4860625Z [ 8%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/refmap.c.o 2025-06-05T23:54:31.4861366Z [ 8%] Built target hardware-config 2025-06-05T23:54:31.4862094Z [ 8%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/verifier.c.o 2025-06-05T23:54:31.4864040Z [ 8%] 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:31.4866450Z [ 9%] 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:31.4868439Z [ 9%] 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:31.4869484Z [ 9%] Built target packing 2025-06-05T23:54:31.4870943Z [ 9%] 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:31.4872518Z [ 9%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/json_parser.c.o 2025-06-05T23:54:31.4874099Z [ 9%] 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:31.4876867Z [ 9%] 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:31.4879125Z [ 9%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/json_printer.c.o 2025-06-05T23:54:31.4880542Z [ 28%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_go.cpp.o 2025-06-05T23:54:31.4881752Z [ 31%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_java.cpp.o 2025-06-05T23:54:31.4883319Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/allocator.dir/src/allocator.c.o 2025-06-05T23:54:31.4885997Z [ 9%] 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:31.4888455Z [ 9%] 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:31.4890875Z [ 9%] 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:31.4892942Z [ 9%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatccrt.a 2025-06-05T23:54:31.4894045Z [ 9%] Built target allocator 2025-06-05T23:54:31.4895134Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/cache.dir/src/cache.c.o 2025-06-05T23:54:31.4896198Z [ 9%] Built target flatccrt 2025-06-05T23:54:31.4897192Z [ 9%] 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:31.4899239Z [ 9%] 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:31.4900564Z [ 9%] Built target cache 2025-06-05T23:54:32.8667530Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/memory.dir/src/memory.c.o 2025-06-05T23:54:32.8670282Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernel-utils.dir/src/microkernel-utils.c.o 2025-06-05T23:54:32.8672053Z [ 34%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_ts.cpp.o 2025-06-05T23:54:32.8673627Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/mutex.dir/src/mutex.c.o 2025-06-05T23:54:32.8675112Z [ 36%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_php.cpp.o 2025-06-05T23:54:32.8677045Z [ 9%] 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:32.8679754Z [ 9%] 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:32.8681449Z [ 9%] Built target microkernel-utils 2025-06-05T23:54:32.8682181Z [ 9%] Built target memory 2025-06-05T23:54:32.8683780Z [ 9%] 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:32.8686839Z [ 9%] 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:32.8688605Z [ 9%] Built target mutex 2025-06-05T23:54:32.8689971Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operator-delete.c.o 2025-06-05T23:54:32.8692332Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/argmax-pooling-nhwc.c.o 2025-06-05T23:54:32.8694903Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/average-pooling-nhwc.c.o 2025-06-05T23:54:32.8697503Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/batch-matrix-multiply-nc.c.o 2025-06-05T23:54:32.8700107Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/binary-elementwise-nd.c.o 2025-06-05T23:54:32.8702801Z [ 9%] 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:32.8704792Z [ 39%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_python.cpp.o 2025-06-05T23:54:32.8706819Z [ 9%] 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:32.8709891Z [ 11%] 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:32.8712046Z [ 42%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_lobster.cpp.o 2025-06-05T23:54:32.8713955Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/channel-shuffle-nc.c.o 2025-06-05T23:54:32.8716443Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/constant-pad-nd.c.o 2025-06-05T23:54:32.8718562Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/convolution-nchw.c.o 2025-06-05T23:54:32.8721006Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/convolution-nhwc.c.o 2025-06-05T23:54:32.8723653Z [ 12%] 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:32.8725758Z [ 44%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_rust.cpp.o 2025-06-05T23:54:32.8727802Z [ 12%] 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:32.8729955Z [ 47%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_fbs.cpp.o 2025-06-05T23:54:32.8731964Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/deconvolution-nhwc.c.o 2025-06-05T23:54:32.8735106Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/dynamic-fully-connected-nc.c.o 2025-06-05T23:54:32.8738071Z [ 12%] 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:32.8740653Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/fully-connected-nc.c.o 2025-06-05T23:54:32.8742935Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/max-pooling-nhwc.c.o 2025-06-05T23:54:32.8744722Z [ 50%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_grpc.cpp.o 2025-06-05T23:54:32.8745958Z [ 52%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_json_schema.cpp.o 2025-06-05T23:54:32.8747784Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/pack-lh.c.o 2025-06-05T23:54:32.8749488Z [ 55%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_swift.cpp.o 2025-06-05T23:54:32.8751214Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/reduce-nd.c.o 2025-06-05T23:54:32.8753139Z [ 57%] Building CXX object CMakeFiles/flatc.dir/src/file_name_saving_file_manager.cpp.o 2025-06-05T23:54:32.8755295Z [ 12%] 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:32.8758076Z [ 12%] 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:32.8760805Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/resize-bilinear-nchw.c.o 2025-06-05T23:54:32.8763448Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/resize-bilinear-nhwc.c.o 2025-06-05T23:54:32.8765939Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/rope-nthc.c.o 2025-06-05T23:54:32.8767770Z [ 60%] Building CXX object CMakeFiles/flatc.dir/src/file_binary_writer.cpp.o 2025-06-05T23:54:32.8769988Z [ 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:32.8772175Z [ 63%] Building CXX object CMakeFiles/flatc.dir/src/file_writer.cpp.o 2025-06-05T23:54:32.8773933Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/slice-nd.c.o 2025-06-05T23:54:32.8775714Z [ 65%] Building CXX object CMakeFiles/flatc.dir/src/flatc.cpp.o 2025-06-05T23:54:32.8777968Z [ 12%] 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:32.8780717Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/softmax-nc.c.o 2025-06-05T23:54:32.8783362Z [ 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:32.8786386Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/transpose-nd.c.o 2025-06-05T23:54:32.8789195Z [ 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:32.8792143Z [ 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:32.8794967Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/unary-elementwise-nc.c.o 2025-06-05T23:54:32.8796916Z [ 68%] Building CXX object CMakeFiles/flatc.dir/src/flatc_main.cpp.o 2025-06-05T23:54:32.8798666Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/unpooling-nhwc.c.o 2025-06-05T23:54:32.8801702Z [ 13%] 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:32.8804108Z [ 71%] Building CXX object CMakeFiles/flatc.dir/src/binary_annotator.cpp.o 2025-06-05T23:54:32.8806299Z [ 13%] 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:32.8808511Z [ 73%] Building CXX object CMakeFiles/flatc.dir/src/annotated_binary_text_gen.cpp.o 2025-06-05T23:54:32.8810799Z [ 13%] 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:32.8812700Z [ 13%] Built target operators 2025-06-05T23:54:32.8814125Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/memory-planner.c.o 2025-06-05T23:54:32.8816295Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/runtime.c.o 2025-06-05T23:54:32.8819003Z [ 13%] 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:32.8821734Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph.c.o 2025-06-05T23:54:32.8824064Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/argmax-pooling-2d.c.o 2025-06-05T23:54:32.8826853Z [ 13%] 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:34.0080144Z [ 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:34.0082808Z [ 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:34.0084584Z [ 76%] Building CXX object CMakeFiles/flatc.dir/src/bfbs_gen_lua.cpp.o 2025-06-05T23:54:34.0088525Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/average-pooling-2d.c.o 2025-06-05T23:54:34.0090123Z [ 78%] Building CXX object CMakeFiles/flatc.dir/src/bfbs_gen_nim.cpp.o 2025-06-05T23:54:34.0091750Z [ 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:34.0094222Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/batch-matrix-multiply.c.o 2025-06-05T23:54:34.0097291Z [ 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:34.0100583Z [ 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:34.0103413Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/binary.c.o 2025-06-05T23:54:34.0105760Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/concatenate.c.o 2025-06-05T23:54:34.0108564Z [ 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:34.0110802Z [ 81%] Building CXX object CMakeFiles/flatc.dir/src/code_generators.cpp.o 2025-06-05T23:54:34.0113323Z [ 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:34.0116816Z [ 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:34.0120884Z [ 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:34.0123568Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/convolution-2d.c.o 2025-06-05T23:54:34.0125749Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/copy.c.o 2025-06-05T23:54:34.0127521Z [ 84%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/cpp_generator.cc.o 2025-06-05T23:54:34.0129042Z [ 86%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/go_generator.cc.o 2025-06-05T23:54:34.0131193Z [ 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:34.0133784Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/deconvolution-2d.c.o 2025-06-05T23:54:34.0135741Z [ 89%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/java_generator.cc.o 2025-06-05T23:54:34.0137904Z [ 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:34.0140015Z [ 92%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/python_generator.cc.o 2025-06-05T23:54:34.0142293Z [ 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:34.0144559Z [ 94%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/swift_generator.cc.o 2025-06-05T23:54:34.0146433Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/deprecated.c.o 2025-06-05T23:54:34.0148782Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/depth-to-space-2d.c.o 2025-06-05T23:54:34.0151298Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/depthwise-convolution-2d.c.o 2025-06-05T23:54:34.0153299Z [ 97%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/ts_generator.cc.o 2025-06-05T23:54:34.0155518Z [ 16%] 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:34.0158068Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/even-split.c.o 2025-06-05T23:54:34.0160403Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/fully-connected-sparse.c.o 2025-06-05T23:54:34.0162818Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/fully-connected.c.o 2025-06-05T23:54:34.0165131Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/max-pooling-2d.c.o 2025-06-05T23:54:34.0167386Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/pack-lh.c.o 2025-06-05T23:54:34.0170078Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9p8x-scalar-c1.c.o 2025-06-05T23:54:34.0173172Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9p8x-sse2-c4.c.o 2025-06-05T23:54:34.0175863Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/reshape-helpers.c.o 2025-06-05T23:54:34.0178633Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9x-scalar-c1.c.o 2025-06-05T23:54:34.0181623Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9x-sse2-c4.c.o 2025-06-05T23:54:34.0183688Z [100%] Linking CXX executable flatc 2025-06-05T23:54:34.0185565Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/scaled-dot-product-attention.c.o 2025-06-05T23:54:34.0188776Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9p8x-minmax-scalar-c1.c.o 2025-06-05T23:54:34.0191928Z [ 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:34.0194398Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/softmax.c.o 2025-06-05T23:54:34.0196946Z [ 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:34.0199919Z [ 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:34.0203061Z [ 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:34.0205967Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/space-to-depth-2d.c.o 2025-06-05T23:54:34.0208348Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-constant-pad.c.o 2025-06-05T23:54:34.0211188Z [ 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:34.0214371Z [ 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:34.0217491Z [ 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:34.0220551Z [ 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:34.0223556Z [ 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:34.0226226Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-reduce.c.o 2025-06-05T23:54:34.0228931Z [ 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:34.0231740Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-resize-bilinear-2d.c.o 2025-06-05T23:54:34.0234124Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-slice.c.o 2025-06-05T23:54:34.0236670Z [ 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:34.0239270Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-transpose.c.o 2025-06-05T23:54:34.0242017Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l4c1s1r-minmax-scalar-acc2.c.o 2025-06-05T23:54:35.0235315Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-avx.c.o 2025-06-05T23:54:35.0238554Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-avx512f.c.o 2025-06-05T23:54:35.0241351Z [ 18%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/unpooling-2d.c.o 2025-06-05T23:54:35.0244628Z [ 19%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-fma3.c.o 2025-06-05T23:54:35.0247653Z [ 19%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/unary.c.o 2025-06-05T23:54:35.0250543Z [ 19%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-minmax-scalar-acc2.c.o 2025-06-05T23:54:35.0253794Z [ 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:35.0256414Z [ 19%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/validation.c.o 2025-06-05T23:54:35.0258999Z [ 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:35.0261403Z [ 19%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/tensor.c.o 2025-06-05T23:54:35.0263945Z [ 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:35.0267009Z [ 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:35.0270237Z [ 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:35.0273443Z [ 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:35.0276730Z [ 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:35.0278660Z [ 19%] Built target subgraph 2025-06-05T23:54:35.0280513Z [ 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:35.0283914Z [ 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:35.0289142Z [ 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:35.0292482Z [ 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:35.0295865Z [ 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:35.0299115Z [ 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:35.0302346Z [ 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:35.0305601Z [ 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:35.0308981Z [ 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:35.0312287Z [ 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:35.0315461Z [ 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:35.0319291Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-2x1-acc2.c.o 2025-06-05T23:54:35.0323213Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-4x1.c.o 2025-06-05T23:54:35.0326983Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-sse-2x4-acc2.c.o 2025-06-05T23:54:35.0330777Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-ssse3-2x4-acc2.c.o 2025-06-05T23:54:35.0334610Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-1x1-acc2.c.o 2025-06-05T23:54:35.0338521Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-2x1-acc2.c.o 2025-06-05T23:54:35.0342385Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-sse-1x4-acc3.c.o 2025-06-05T23:54:35.0346218Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1-acc5.c.o 2025-06-05T23:54:35.0350188Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-2x1-acc2.c.o 2025-06-05T23:54:35.0353895Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-sse-4x4.c.o 2025-06-05T23:54:35.0357671Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1-acc5.c.o 2025-06-05T23:54:35.0361593Z [ 20%] 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:35.0365236Z [ 22%] 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:35.0368595Z [ 22%] 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:35.0371733Z [ 22%] 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:35.0374891Z [ 22%] 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:35.0378124Z [ 22%] 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:35.0381454Z [ 22%] 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:35.0384629Z [ 22%] 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:35.0386550Z [100%] Built target flatc 2025-06-05T23:54:35.0388457Z [ 22%] 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:35.0390660Z [ 22%] Performing install step for 'flatbuffers_external_project' 2025-06-05T23:54:35.0392983Z [ 22%] 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:35.0396578Z [ 22%] 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:35.0400160Z [ 22%] 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:35.0403650Z [ 22%] 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:35.0406979Z [ 22%] 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:35.0410101Z [ 22%] 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:35.0412071Z [100%] Built target flatc 2025-06-05T23:54:35.0412756Z Install the project... 2025-06-05T23:54:35.0413457Z -- Install configuration: "" 2025-06-05T23:54:35.3280035Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers 2025-06-05T23:54:35.3283611Z -- 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:35.3286787Z -- 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:35.3289841Z -- 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:35.3293048Z -- 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:35.3296471Z -- 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:35.3299963Z -- 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:35.3303451Z -- 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:35.3306927Z -- 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:35.3310549Z -- 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:35.3314037Z -- 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:35.3317513Z -- 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:35.3320961Z -- 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:35.3324269Z -- 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:35.3327661Z -- 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:35.3331154Z -- 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:35.3334690Z -- 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:35.3338112Z -- 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:35.3341333Z -- 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:35.3344679Z -- 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:35.3348125Z -- 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:35.3351468Z -- 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:35.3355002Z -- 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:35.3358399Z -- 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:35.3361923Z -- 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:35.3365396Z -- 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:35.3368680Z -- 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:35.3372069Z -- 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:35.3375397Z -- 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:35.3378698Z -- 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:35.3381922Z -- 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:35.3389911Z -- 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:35.3393403Z -- 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:35.3396903Z -- 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:35.3400470Z -- 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:35.3404207Z -- 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:35.3407918Z -- 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:35.3411385Z -- Installing: /pytorch/executorch/pip-out/temp.linux-x86_64-cpython-310/cmake-out/third-party/flatbuffers_external_project/bin/flatc 2025-06-05T23:54:35.3415116Z -- 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:35.3418872Z -- 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:35.3421305Z [ 22%] Completed 'flatbuffers_external_project' 2025-06-05T23:54:35.3422240Z [ 22%] Built target flatbuffers_external_project 2025-06-05T23:54:35.3423130Z [ 22%] Generating common_schema headers 2025-06-05T23:54:35.3423934Z [ 22%] Built target common_schema 2025-06-05T23:54:35.3425666Z [ 22%] 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:35.3427537Z [ 23%] Generating xnnpack_schema headers 2025-06-05T23:54:35.3429649Z [ 23%] 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:35.3431660Z [ 23%] Built target xnnpack_schema 2025-06-05T23:54:35.3432477Z [ 23%] Generating program_schema headers 2025-06-05T23:54:35.3433295Z [ 23%] Built target program_schema 2025-06-05T23:54:35.3435237Z [ 24%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-2x4-minmax-scalar.c.o 2025-06-05T23:54:35.3438326Z [ 24%] 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:35.3441275Z [ 24%] 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:35.3444448Z [ 24%] 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:35.3447059Z [ 24%] Building CXX object CMakeFiles/executorch_core.dir/runtime/backend/interface.cpp.o 2025-06-05T23:54:35.3449170Z [ 24%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/evalue.cpp.o 2025-06-05T23:54:35.3451368Z [ 24%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/exec_aten/util/tensor_shape_to_c_string.cpp.o 2025-06-05T23:54:35.3453667Z [ 24%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/exec_aten/util/tensor_util_portable.cpp.o 2025-06-05T23:54:35.3455752Z [ 24%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/portable_type/tensor_impl.cpp.o 2025-06-05T23:54:36.7663151Z [ 24%] 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:36.7665619Z [ 24%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/tag.cpp.o 2025-06-05T23:54:36.7667337Z [ 24%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/tensor_layout.cpp.o 2025-06-05T23:54:36.7669139Z [ 24%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/method.cpp.o 2025-06-05T23:54:36.7671470Z [ 24%] 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:36.7674488Z [ 24%] 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:36.7676938Z [ 24%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/method_meta.cpp.o 2025-06-05T23:54:36.7678691Z [ 24%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/program.cpp.o 2025-06-05T23:54:36.7680493Z [ 24%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/pte_data_map.cpp.o 2025-06-05T23:54:36.7682455Z [ 24%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/tensor_parser_exec_aten.cpp.o 2025-06-05T23:54:36.7685601Z [ 24%] 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:36.7688445Z [ 24%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/tensor_parser_portable.cpp.o 2025-06-05T23:54:36.7691027Z [ 24%] 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:36.7694069Z [ 24%] 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:36.7696487Z [ 25%] Building CXX object CMakeFiles/executorch_core.dir/runtime/kernel/operator_registry.cpp.o 2025-06-05T23:54:36.7699011Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-sse-load1.c.o 2025-06-05T23:54:36.7702270Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-5x16-minmax-avx-broadcast.c.o 2025-06-05T23:54:36.7704770Z [ 25%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/abort.cpp.o 2025-06-05T23:54:36.7706452Z [ 25%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/log.cpp.o 2025-06-05T23:54:36.7709032Z [ 25%] 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:36.7711612Z [ 25%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/platform.cpp.o 2025-06-05T23:54:36.7713348Z [ 25%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/profiler.cpp.o 2025-06-05T23:54:36.7717456Z [ 25%] 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:36.7721893Z [ 25%] 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:36.7725444Z [ 25%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/runtime.cpp.o 2025-06-05T23:54:36.7727477Z [ 25%] Building CXX object CMakeFiles/executorch_core.dir/schema/extended_header.cpp.o 2025-06-05T23:54:36.7729730Z [ 25%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/default/posix.cpp.o 2025-06-05T23:54:36.7732941Z [ 25%] 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:36.7737143Z [ 27%] 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:36.7741080Z [ 27%] 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:36.7745144Z [ 27%] 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:36.7748973Z [ 27%] 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:36.7751403Z [ 27%] Linking CXX static library libexecutorch_core.a 2025-06-05T23:54:36.7753812Z [ 27%] 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:36.7757281Z [ 27%] 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:36.7759455Z [ 27%] Built target executorch_core 2025-06-05T23:54:36.7761639Z [ 27%] 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:36.7764428Z [ 27%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/et_copy_index.cpp.o 2025-06-05T23:54:36.7766969Z [ 27%] 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:36.7769331Z [ 28%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/et_view.cpp.o 2025-06-05T23:54:36.7771052Z [ 28%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/register_prim_ops.cpp.o 2025-06-05T23:54:36.7772884Z [ 28%] Building CXX object extension/tensor/CMakeFiles/extension_tensor.dir/tensor_ptr.cpp.o 2025-06-05T23:54:36.7775094Z [ 28%] Building CXX object extension/tensor/CMakeFiles/extension_tensor.dir/tensor_ptr_maker.cpp.o 2025-06-05T23:54:36.7777549Z [ 28%] 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:36.7780233Z [ 28%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/activation_ops_util.cpp.o 2025-06-05T23:54:36.7783032Z [ 28%] 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:36.7786013Z [ 28%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/advanced_index_util.cpp.o 2025-06-05T23:54:36.7788462Z [ 28%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/broadcast_util.cpp.o 2025-06-05T23:54:36.7791211Z [ 28%] 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:36.7794339Z [ 28%] 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:36.7796386Z [ 28%] Linking CXX static library libexecutorch.a 2025-06-05T23:54:36.7798352Z [ 28%] 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:36.7800605Z [ 28%] Built target executorch 2025-06-05T23:54:36.7801971Z [ 28%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/threadpool.cpp.o 2025-06-05T23:54:36.7804112Z [ 28%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/threadpool_guard.cpp.o 2025-06-05T23:54:36.7805733Z [ 28%] Linking CXX static library libextension_tensor.a 2025-06-05T23:54:36.7807341Z [ 28%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/thread_parallel.cpp.o 2025-06-05T23:54:36.7808852Z [ 28%] Built target extension_tensor 2025-06-05T23:54:36.7810284Z [ 28%] Building CXX object extension/data_loader/CMakeFiles/extension_data_loader.dir/file_data_loader.cpp.o 2025-06-05T23:54:36.7813108Z [ 28%] 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:36.7815950Z [ 28%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/copy_ops_util.cpp.o 2025-06-05T23:54:36.7818159Z [ 28%] Building CXX object extension/data_loader/CMakeFiles/extension_data_loader.dir/mmap_data_loader.cpp.o 2025-06-05T23:54:36.7820427Z [ 29%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/delinearize_index.cpp.o 2025-06-05T23:54:36.7822671Z [ 29%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/cpuinfo_utils.cpp.o 2025-06-05T23:54:36.7824882Z [ 29%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/distance_util.cpp.o 2025-06-05T23:54:36.7827106Z [ 29%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/dtype_util.cpp.o 2025-06-05T23:54:36.7828864Z [ 29%] Linking CXX static library libextension_data_loader.a 2025-06-05T23:54:36.7830111Z [ 29%] Built target extension_data_loader 2025-06-05T23:54:36.7832294Z [ 29%] 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:36.7834985Z [ 29%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/index_util.cpp.o 2025-06-05T23:54:36.7837575Z [ 29%] 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:36.7839617Z [ 29%] Linking CXX static library libextension_threadpool.a 2025-06-05T23:54:36.7840610Z [ 29%] Built target extension_threadpool 2025-06-05T23:54:38.7301146Z [ 30%] 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:38.7303494Z [ 30%] Generating etdump headers 2025-06-05T23:54:38.7305261Z [ 30%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/kernel_ops_util.cpp.o 2025-06-05T23:54:38.7307416Z [ 30%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/etdump_flatcc.cpp.o 2025-06-05T23:54:38.7309304Z [ 30%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/emitter.cpp.o 2025-06-05T23:54:38.7311227Z [ 30%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/data_sinks/buffer_data_sink.cpp.o 2025-06-05T23:54:38.7313383Z [ 30%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/data_sinks/file_data_sink.cpp.o 2025-06-05T23:54:38.7315672Z [ 30%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/matmul_ops_util.cpp.o 2025-06-05T23:54:38.7318628Z [ 30%] 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:38.7321677Z [ 30%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/normalization_ops_util.cpp.o 2025-06-05T23:54:38.7324761Z [ 30%] 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:38.7328045Z [ 30%] 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:38.7331367Z [ 30%] 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:38.7334878Z [ 30%] 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:38.7340191Z [ 30%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/padding_util.cpp.o 2025-06-05T23:54:38.7342425Z [ 30%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/reduce_util.cpp.o 2025-06-05T23:54:38.7344027Z [ 30%] Linking CXX static library libetdump.a 2025-06-05T23:54:38.7345570Z [ 30%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/repeat_util.cpp.o 2025-06-05T23:54:38.7347083Z [ 30%] Built target etdump 2025-06-05T23:54:38.7348621Z [ 30%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/select_copy_util.cpp.o 2025-06-05T23:54:38.7351586Z [ 30%] 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:38.7354486Z [ 30%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/slice_util.cpp.o 2025-06-05T23:54:38.7357269Z [ 30%] 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:38.7360112Z [ 30%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/upsample_util.cpp.o 2025-06-05T23:54:38.7363186Z [ 30%] 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:38.7365375Z [ 30%] Generating bundled_program headers 2025-06-05T23:54:38.7366852Z [ 30%] Building CXX object devtools/bundled_program/CMakeFiles/bundled_program.dir/bundled_program.cpp.o 2025-06-05T23:54:38.7368721Z [ 30%] Building CXX object CMakeFiles/util.dir/extension/evalue_util/print_evalue.cpp.o 2025-06-05T23:54:38.7370338Z [ 30%] Building CXX object CMakeFiles/util.dir/extension/aten_util/aten_bridge.cpp.o 2025-06-05T23:54:38.7372746Z [ 30%] 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:38.7376035Z [ 30%] 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:38.7379383Z [ 30%] 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:38.7404969Z [ 30%] 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:38.7407684Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op__empty_dim_order.cpp.o 2025-06-05T23:54:38.7409436Z [ 30%] Linking CXX static library libkernels_util_all_deps.a 2025-06-05T23:54:38.7411116Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op__to_dim_order_copy.cpp.o 2025-06-05T23:54:38.7412767Z [ 32%] Linking CXX static library libbundled_program.a 2025-06-05T23:54:38.7414801Z [ 32%] 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:38.7416803Z [ 32%] Built target kernels_util_all_deps 2025-06-05T23:54:38.7418217Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_abs.cpp.o 2025-06-05T23:54:38.7419563Z [ 32%] Built target bundled_program 2025-06-05T23:54:38.7420728Z [ 32%] Building CXX object kernels/optimized/CMakeFiles/cpublas.dir/blas/BlasKernel.cpp.o 2025-06-05T23:54:38.7422445Z [ 32%] Building CXX object kernels/optimized/CMakeFiles/cpublas.dir/blas/CPUBlas.cpp.o 2025-06-05T23:54:38.7424987Z [ 32%] 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:38.7427825Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_acos.cpp.o 2025-06-05T23:54:38.7429794Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_acosh.cpp.o 2025-06-05T23:54:38.7431778Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_add.cpp.o 2025-06-05T23:54:38.7434486Z [ 33%] 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:38.7437311Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_addmm.cpp.o 2025-06-05T23:54:38.7439501Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_alias_copy.cpp.o 2025-06-05T23:54:38.7441064Z [ 34%] Linking CXX static library libcpublas.a 2025-06-05T23:54:38.7441860Z [ 34%] Built target cpublas 2025-06-05T23:54:38.7443227Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_allclose.cpp.o 2025-06-05T23:54:38.7446077Z [ 34%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x16-minmax-fma3-broadcast.c.o 2025-06-05T23:54:38.7449122Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_amax.cpp.o 2025-06-05T23:54:38.7450092Z [ 34%] Linking CXX static library libutil.a 2025-06-05T23:54:38.7450551Z [ 34%] Built target util 2025-06-05T23:54:38.7451456Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_amin.cpp.o 2025-06-05T23:54:38.7452591Z [ 34%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/binary_ops.cpp.o 2025-06-05T23:54:38.7453742Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_any.cpp.o 2025-06-05T23:54:38.7455257Z [ 34%] 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:38.7456802Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_arange.cpp.o 2025-06-05T23:54:38.7458003Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_argmax.cpp.o 2025-06-05T23:54:38.7459578Z [ 34%] 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:38.7461137Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_argmin.cpp.o 2025-06-05T23:54:38.7462379Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_as_strided_copy.cpp.o 2025-06-05T23:54:38.7463626Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_asin.cpp.o 2025-06-05T23:54:38.7465190Z [ 34%] 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:38.7466713Z [ 34%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_add.cpp.o 2025-06-05T23:54:38.7467894Z [ 34%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_bmm.cpp.o 2025-06-05T23:54:38.7468951Z [ 34%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_div.cpp.o 2025-06-05T23:54:38.7470069Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_asinh.cpp.o 2025-06-05T23:54:38.7471261Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_atan.cpp.o 2025-06-05T23:54:38.7473320Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-3x16-minmax-avx2-broadcast.c.o 2025-06-05T23:54:38.7475610Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_atan2.cpp.o 2025-06-05T23:54:41.7018364Z [ 35%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_elu.cpp.o 2025-06-05T23:54:41.7020235Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_atanh.cpp.o 2025-06-05T23:54:41.7022190Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_avg_pool2d.cpp.o 2025-06-05T23:54:41.7024830Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-3x16-minmax-fma3-broadcast.c.o 2025-06-05T23:54:41.7027533Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_and.cpp.o 2025-06-05T23:54:41.7030279Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x4-minmax-scalar.c.o 2025-06-05T23:54:41.7033450Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x8-minmax-sse41-dup.c.o 2025-06-05T23:54:41.7036735Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc4w-gemm-1x32-minmax-avx512skx-broadcast.c.o 2025-06-05T23:54:41.7039930Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_not.cpp.o 2025-06-05T23:54:41.7042202Z [ 35%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_exp.cpp.o 2025-06-05T23:54:41.7044950Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc4w-gemm-7x32-minmax-avx512skx-broadcast.c.o 2025-06-05T23:54:41.7047851Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_or.cpp.o 2025-06-05T23:54:41.7050681Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x16-minmax-avx-broadcast.c.o 2025-06-05T23:54:41.7054209Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x16-minmax-avx2-broadcast.c.o 2025-06-05T23:54:41.7057016Z [ 35%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_fft_c2r.cpp.o 2025-06-05T23:54:41.7059155Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_xor.cpp.o 2025-06-05T23:54:41.7062084Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x16-minmax-fma3-broadcast.c.o 2025-06-05T23:54:41.7065588Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bmm.cpp.o 2025-06-05T23:54:41.7068535Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x32-minmax-avx512skx-broadcast.c.o 2025-06-05T23:54:41.7071408Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cat.cpp.o 2025-06-05T23:54:41.7073421Z [ 35%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_fft_r2c.cpp.o 2025-06-05T23:54:41.7075342Z [ 35%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_gelu.cpp.o 2025-06-05T23:54:41.7077429Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cdist_forward.cpp.o 2025-06-05T23:54:41.7080684Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x4-minmax-scalar.c.o 2025-06-05T23:54:41.7084001Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-sse41-dup.c.o 2025-06-05T23:54:41.7086959Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ceil.cpp.o 2025-06-05T23:54:41.7089687Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x4-minmax-scalar.c.o 2025-06-05T23:54:41.7094317Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x8-minmax-sse41-dup.c.o 2025-06-05T23:54:41.7097808Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-5x16-minmax-avx-broadcast.c.o 2025-06-05T23:54:41.7100652Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_clamp.cpp.o 2025-06-05T23:54:41.7103486Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-5x16-minmax-avx2-broadcast.c.o 2025-06-05T23:54:41.7107040Z [ 37%] 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:41.7109889Z [ 37%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_le.cpp.o 2025-06-05T23:54:41.7112113Z [ 37%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_linear.cpp.o 2025-06-05T23:54:41.7114313Z [ 37%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_log_softmax.cpp.o 2025-06-05T23:54:41.7116425Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_clone.cpp.o 2025-06-05T23:54:41.7119348Z [ 37%] 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:41.7122709Z [ 37%] 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:41.7125781Z [ 37%] 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:41.7128492Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_constant_pad_nd.cpp.o 2025-06-05T23:54:41.7130609Z [ 37%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_mm.cpp.o 2025-06-05T23:54:41.7132493Z [ 37%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_mul.cpp.o 2025-06-05T23:54:41.7135032Z [ 37%] 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:41.7137802Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_convolution.cpp.o 2025-06-05T23:54:41.7140206Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_convolution_backward.cpp.o 2025-06-05T23:54:41.7143107Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u1.c.o 2025-06-05T23:54:41.7146398Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u4.c.o 2025-06-05T23:54:41.7149794Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-u4.c.o 2025-06-05T23:54:41.7152989Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-sse2-u32.c.o 2025-06-05T23:54:41.7155600Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_copy.cpp.o 2025-06-05T23:54:41.7158224Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-sse41-u32.c.o 2025-06-05T23:54:41.7161302Z [ 38%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx-u32.c.o 2025-06-05T23:54:41.7164368Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx2-u64.c.o 2025-06-05T23:54:41.7166947Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cos.cpp.o 2025-06-05T23:54:41.7169611Z [ 39%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx512skx-u128.c.o 2025-06-05T23:54:41.7172363Z [ 40%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_native_layer_norm.cpp.o 2025-06-05T23:54:41.7175134Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u1.c.o 2025-06-05T23:54:41.7177767Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cosh.cpp.o 2025-06-05T23:54:41.7180512Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u4.c.o 2025-06-05T23:54:41.7184001Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-u4.c.o 2025-06-05T23:54:41.7186823Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cumsum.cpp.o 2025-06-05T23:54:41.7189323Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-sse2-u32.c.o 2025-06-05T23:54:46.6883404Z [ 40%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_neg.cpp.o 2025-06-05T23:54:46.6889715Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx2-rr2-p5-u32-acc2.c.o 2025-06-05T23:54:46.6893021Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_detach_copy.cpp.o 2025-06-05T23:54:46.6896264Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx512f-rr2-p5-u64-acc2.c.o 2025-06-05T23:54:46.6899466Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_diagonal_copy.cpp.o 2025-06-05T23:54:46.6901664Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_div.cpp.o 2025-06-05T23:54:46.6904720Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-u4-acc2.c.o 2025-06-05T23:54:46.6908936Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-sse2-rr2-p5-u16-acc2.c.o 2025-06-05T23:54:46.6911949Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_elu.cpp.o 2025-06-05T23:54:46.6914588Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-avx-c32.c.o 2025-06-05T23:54:46.6917284Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_embedding.cpp.o 2025-06-05T23:54:46.6920207Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-avx512f-c64.c.o 2025-06-05T23:54:46.6922884Z [ 40%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_sigmoid.cpp.o 2025-06-05T23:54:46.6924925Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_empty.cpp.o 2025-06-05T23:54:46.6927573Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-scalar.c.o 2025-06-05T23:54:46.6930690Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-sse-c16.c.o 2025-06-05T23:54:46.6933256Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_eq.cpp.o 2025-06-05T23:54:46.6935820Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rmax-avx-u32-acc4.c.o 2025-06-05T23:54:46.6938814Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rmax-avx512f-u64-acc4.c.o 2025-06-05T23:54:46.6941382Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_erf.cpp.o 2025-06-05T23:54:46.6943458Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_exp.cpp.o 2025-06-05T23:54:46.6946021Z [ 41%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rmax-scalar-u4-acc4.c.o 2025-06-05T23:54:46.6949536Z [ 41%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rmax-sse-u16-acc4.c.o 2025-06-05T23:54:46.6952803Z [ 41%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rminmax-avx-u32-acc4.c.o 2025-06-05T23:54:46.6955986Z [ 41%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rminmax-avx512f-u64-acc4.c.o 2025-06-05T23:54:46.6958640Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_expand_copy.cpp.o 2025-06-05T23:54:46.6960692Z [ 41%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_sub.cpp.o 2025-06-05T23:54:46.6963133Z [ 41%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u4-acc4.c.o 2025-06-05T23:54:46.6966319Z [ 41%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rminmax-sse-u16-acc4.c.o 2025-06-05T23:54:46.6968875Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_expm1.cpp.o 2025-06-05T23:54:46.6971356Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rsum/gen/f32-rsum-avx-u32-acc4.c.o 2025-06-05T23:54:46.6974390Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rsum/gen/f32-rsum-avx512f-u64-acc4.c.o 2025-06-05T23:54:46.6976893Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_fill.cpp.o 2025-06-05T23:54:46.6979496Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rsum/gen/f32-rsum-scalar-u4-acc4.c.o 2025-06-05T23:54:46.6982476Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rsum/gen/f32-rsum-sse-u16-acc4.c.o 2025-06-05T23:54:46.6987406Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-sse.c.o 2025-06-05T23:54:46.6990078Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_flip.cpp.o 2025-06-05T23:54:46.6992607Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-scalar.c.o 2025-06-05T23:54:46.6995211Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_floor.cpp.o 2025-06-05T23:54:46.6997739Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-8x2-minmax-scalar.c.o 2025-06-05T23:54:46.7000767Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-8x4-minmax-scalar.c.o 2025-06-05T23:54:46.7003773Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vadd-avx-u16.c.o 2025-06-05T23:54:46.7006321Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_floor_divide.cpp.o 2025-06-05T23:54:46.7009014Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vadd-avx512f-u32.c.o 2025-06-05T23:54:46.7011513Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_fmod.cpp.o 2025-06-05T23:54:46.7013949Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vadd-scalar-u8.c.o 2025-06-05T23:54:46.7016826Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vadd-sse-u8.c.o 2025-06-05T23:54:46.7019581Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_full.cpp.o 2025-06-05T23:54:46.7022020Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vaddc-avx-u16.c.o 2025-06-05T23:54:46.7025069Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vaddc-avx512f-u32.c.o 2025-06-05T23:54:46.7027789Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_full_like.cpp.o 2025-06-05T23:54:46.7030321Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vaddc-scalar-u8.c.o 2025-06-05T23:54:46.7033217Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vaddc-sse-u8.c.o 2025-06-05T23:54:46.7036527Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdiv-avx-u16.c.o 2025-06-05T23:54:46.7039249Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_gather.cpp.o 2025-06-05T23:54:46.7041796Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdiv-avx512f-u32.c.o 2025-06-05T23:54:46.7044281Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ge.cpp.o 2025-06-05T23:54:46.7047519Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdiv-scalar-u2.c.o 2025-06-05T23:54:46.7050486Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdiv-sse-u8.c.o 2025-06-05T23:54:46.7053000Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_gelu.cpp.o 2025-06-05T23:54:46.7055499Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdivc-avx-u16.c.o 2025-06-05T23:54:46.7058461Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdivc-avx512f-u32.c.o 2025-06-05T23:54:49.6104669Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_glu.cpp.o 2025-06-05T23:54:49.6106938Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdivc-scalar-u2.c.o 2025-06-05T23:54:49.6109790Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdivc-sse-u8.c.o 2025-06-05T23:54:49.6112043Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_gt.cpp.o 2025-06-05T23:54:49.6114332Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmax-avx-u16.c.o 2025-06-05T23:54:49.6116673Z [ 44%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_where.cpp.o 2025-06-05T23:54:49.6119092Z [ 44%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmax-avx512f-u32.c.o 2025-06-05T23:54:49.6121681Z [ 44%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_hardtanh.cpp.o 2025-06-05T23:54:49.6124309Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmax-scalar-u8.c.o 2025-06-05T23:54:49.6127161Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmax-sse-u8.c.o 2025-06-05T23:54:49.6130040Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmaxc-avx-u16.c.o 2025-06-05T23:54:49.6132958Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmaxc-avx512f-u32.c.o 2025-06-05T23:54:49.6135785Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_index.cpp.o 2025-06-05T23:54:49.6138338Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-u8.c.o 2025-06-05T23:54:49.6141099Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmaxc-sse-u8.c.o 2025-06-05T23:54:49.6143503Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_index_put.cpp.o 2025-06-05T23:54:49.6145836Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-avx-u16.c.o 2025-06-05T23:54:49.6148778Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-avx512f-u32.c.o 2025-06-05T23:54:49.6151786Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-scalar-u8.c.o 2025-06-05T23:54:49.6154673Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-sse-u8.c.o 2025-06-05T23:54:49.6157239Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_index_select.cpp.o 2025-06-05T23:54:49.6159438Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_isinf.cpp.o 2025-06-05T23:54:49.6161925Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vminc-avx-u16.c.o 2025-06-05T23:54:49.6164890Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vminc-avx512f-u32.c.o 2025-06-05T23:54:49.6167422Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_isnan.cpp.o 2025-06-05T23:54:49.6169502Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_le.cpp.o 2025-06-05T23:54:49.6171664Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_leaky_relu.cpp.o 2025-06-05T23:54:49.6174243Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vminc-scalar-u8.c.o 2025-06-05T23:54:49.6177186Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vminc-sse-u8.c.o 2025-06-05T23:54:49.6179793Z [ 46%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_lift_fresh_copy.cpp.o 2025-06-05T23:54:49.6182415Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmul-avx-u16.c.o 2025-06-05T23:54:49.6185511Z [ 46%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmul-avx512f-u32.c.o 2025-06-05T23:54:49.6188365Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmul-scalar-u8.c.o 2025-06-05T23:54:49.6191251Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmul-sse-u8.c.o 2025-06-05T23:54:49.6194119Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmulc-avx-u16.c.o 2025-06-05T23:54:49.6196807Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_linear_scratch_example.cpp.o 2025-06-05T23:54:49.6199575Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmulc-avx512f-u32.c.o 2025-06-05T23:54:49.6202959Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmulc-scalar-u8.c.o 2025-06-05T23:54:49.6205667Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log.cpp.o 2025-06-05T23:54:49.6208084Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmulc-sse-u8.c.o 2025-06-05T23:54:49.6210863Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vprelu-avx-u16.c.o 2025-06-05T23:54:49.6213615Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vprelu-avx512f-u32.c.o 2025-06-05T23:54:49.6216410Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vprelu-scalar-u8.c.o 2025-06-05T23:54:49.6219136Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vprelu-sse2-u8.c.o 2025-06-05T23:54:49.6221476Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log10.cpp.o 2025-06-05T23:54:49.6223449Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log1p.cpp.o 2025-06-05T23:54:49.6225360Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log2.cpp.o 2025-06-05T23:54:49.6227804Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vpreluc-avx-u16.c.o 2025-06-05T23:54:49.6230188Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log_softmax.cpp.o 2025-06-05T23:54:49.6232644Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vpreluc-avx512f-u32.c.o 2025-06-05T23:54:49.6235103Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_and.cpp.o 2025-06-05T23:54:49.6237505Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vpreluc-scalar-u8.c.o 2025-06-05T23:54:49.6239997Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_not.cpp.o 2025-06-05T23:54:49.6242552Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vpreluc-sse2-u8.c.o 2025-06-05T23:54:49.6245468Z [ 48%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrdivc-avx-u16.c.o 2025-06-05T23:54:49.6248444Z [ 49%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrdivc-avx512f-u32.c.o 2025-06-05T23:54:49.6251448Z [ 49%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-u2.c.o 2025-06-05T23:54:49.6254032Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_or.cpp.o 2025-06-05T23:54:49.6256260Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_xor.cpp.o 2025-06-05T23:54:49.6258813Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrdivc-sse-u8.c.o 2025-06-05T23:54:49.6261687Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrpreluc-avx-u16.c.o 2025-06-05T23:54:49.6264159Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logit.cpp.o 2025-06-05T23:54:49.6266643Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrpreluc-avx512f-u32.c.o 2025-06-05T23:54:51.6648642Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_lt.cpp.o 2025-06-05T23:54:51.6651229Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_masked_fill.cpp.o 2025-06-05T23:54:51.6653668Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_masked_scatter.cpp.o 2025-06-05T23:54:51.6656439Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrpreluc-scalar-u8.c.o 2025-06-05T23:54:51.6659548Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrpreluc-sse2-u8.c.o 2025-06-05T23:54:51.6662227Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_masked_select.cpp.o 2025-06-05T23:54:51.6664477Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_max.cpp.o 2025-06-05T23:54:51.6667086Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrsubc-avx-u16.c.o 2025-06-05T23:54:51.6670274Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrsubc-avx512f-u32.c.o 2025-06-05T23:54:51.6673393Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-u8.c.o 2025-06-05T23:54:51.6676201Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_max_pool2d_with_indices.cpp.o 2025-06-05T23:54:51.6678815Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_max_pool2d_with_indices_backward.cpp.o 2025-06-05T23:54:51.6681317Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_maximum.cpp.o 2025-06-05T23:54:51.6683737Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_mean.cpp.o 2025-06-05T23:54:51.6688590Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrsubc-sse-u8.c.o 2025-06-05T23:54:51.6691629Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiff-avx-u16.c.o 2025-06-05T23:54:51.6694230Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_min.cpp.o 2025-06-05T23:54:51.6696391Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_minimum.cpp.o 2025-06-05T23:54:51.6698550Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_mm.cpp.o 2025-06-05T23:54:51.6700647Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_mul.cpp.o 2025-06-05T23:54:51.6703300Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiff-avx512f-u32.c.o 2025-06-05T23:54:51.6706092Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_narrow_copy.cpp.o 2025-06-05T23:54:51.6708947Z [ 50%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-u8.c.o 2025-06-05T23:54:51.6711698Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_batch_norm.cpp.o 2025-06-05T23:54:51.6714430Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiff-sse-u8.c.o 2025-06-05T23:54:51.6717096Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_dropout.cpp.o 2025-06-05T23:54:51.6719844Z [ 51%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiffc-avx-u16.c.o 2025-06-05T23:54:51.6723340Z [ 53%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiffc-avx512f-u32.c.o 2025-06-05T23:54:51.6726335Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_group_norm.cpp.o 2025-06-05T23:54:51.6728792Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_layer_norm.cpp.o 2025-06-05T23:54:51.6730974Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ne.cpp.o 2025-06-05T23:54:51.6733127Z [ 53%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-u8.c.o 2025-06-05T23:54:51.6735068Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_neg.cpp.o 2025-06-05T23:54:51.6736777Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_nonzero.cpp.o 2025-06-05T23:54:51.6738233Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ones.cpp.o 2025-06-05T23:54:51.6739685Z [ 53%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiffc-sse-u8.c.o 2025-06-05T23:54:51.6741171Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pdist_forward.cpp.o 2025-06-05T23:54:51.6742637Z [ 53%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsub-avx-u16.c.o 2025-06-05T23:54:51.6744080Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_permute_copy.cpp.o 2025-06-05T23:54:51.6745362Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pixel_shuffle.cpp.o 2025-06-05T23:54:51.6746832Z [ 53%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsub-avx512f-u32.c.o 2025-06-05T23:54:51.6748428Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pixel_unshuffle.cpp.o 2025-06-05T23:54:51.6749920Z [ 53%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsub-scalar-u8.c.o 2025-06-05T23:54:51.6751537Z [ 53%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsub-sse-u8.c.o 2025-06-05T23:54:51.6753081Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pow.cpp.o 2025-06-05T23:54:51.6754237Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_prod.cpp.o 2025-06-05T23:54:51.6755641Z [ 53%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsubc-avx-u16.c.o 2025-06-05T23:54:51.6757035Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_rand.cpp.o 2025-06-05T23:54:51.6758337Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_randn.cpp.o 2025-06-05T23:54:51.6759548Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reciprocal.cpp.o 2025-06-05T23:54:51.6760545Z [ 54%] Linking CXX static library liboptimized_kernels.a 2025-06-05T23:54:51.6761491Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reflection_pad1d.cpp.o 2025-06-05T23:54:51.6763009Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsubc-avx512f-u32.c.o 2025-06-05T23:54:51.6764095Z [ 54%] Built target optimized_kernels 2025-06-05T23:54:51.6765146Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsubc-scalar-u8.c.o 2025-06-05T23:54:51.6766923Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsubc-sse-u8.c.o 2025-06-05T23:54:51.6768674Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vclamp/gen/f32-vclamp-avx-u16.c.o 2025-06-05T23:54:51.6770339Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vclamp/gen/f32-vclamp-avx512f-u16.c.o 2025-06-05T23:54:51.6772026Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vclamp/gen/f32-vclamp-scalar-u4.c.o 2025-06-05T23:54:51.6773682Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vclamp/gen/f32-vclamp-sse-u8.c.o 2025-06-05T23:54:51.6775323Z [ 54%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcmul/gen/f32-vcmul-avx512f-u32.c.o 2025-06-05T23:54:51.6777769Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcmul/gen/f32-vcmul-fma3-u16.c.o 2025-06-05T23:54:51.6780155Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reflection_pad2d.cpp.o 2025-06-05T23:54:51.6782170Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reflection_pad3d.cpp.o 2025-06-05T23:54:51.6784341Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcmul/gen/f32-vcmul-scalar-u4.c.o 2025-06-05T23:54:51.6786932Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcmul/gen/f32-vcmul-sse-u8.c.o 2025-06-05T23:54:53.4631683Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-avx.c.o 2025-06-05T23:54:53.4634376Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_relu.cpp.o 2025-06-05T23:54:53.4636595Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_remainder.cpp.o 2025-06-05T23:54:53.4638795Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_repeat.cpp.o 2025-06-05T23:54:53.4641465Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-avx512f.c.o 2025-06-05T23:54:53.4644249Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_repeat_interleave.cpp.o 2025-06-05T23:54:53.4647047Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-scalar.c.o 2025-06-05T23:54:53.4649816Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_replication_pad1d.cpp.o 2025-06-05T23:54:53.4652250Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_replication_pad2d.cpp.o 2025-06-05T23:54:53.4654928Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-sse2.c.o 2025-06-05T23:54:53.4657584Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_replication_pad3d.cpp.o 2025-06-05T23:54:53.4659792Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_roll.cpp.o 2025-06-05T23:54:53.4661931Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_round.cpp.o 2025-06-05T23:54:53.4664532Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-avx.c.o 2025-06-05T23:54:53.4667168Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_rsqrt.cpp.o 2025-06-05T23:54:53.4669762Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_rsub.cpp.o 2025-06-05T23:54:53.4672146Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_scalar_tensor.cpp.o 2025-06-05T23:54:53.4674923Z [ 55%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-avx512f.c.o 2025-06-05T23:54:53.4677550Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_scatter.cpp.o 2025-06-05T23:54:53.4679749Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_scatter_add.cpp.o 2025-06-05T23:54:53.4682011Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_select_copy.cpp.o 2025-06-05T23:54:53.4684343Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_select_scatter.cpp.o 2025-06-05T23:54:53.4687252Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-scalar.c.o 2025-06-05T23:54:53.4690348Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-sse2.c.o 2025-06-05T23:54:53.4693353Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-avx.c.o 2025-06-05T23:54:53.4695971Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sigmoid.cpp.o 2025-06-05T23:54:53.4698091Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sign.cpp.o 2025-06-05T23:54:53.4700181Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sin.cpp.o 2025-06-05T23:54:53.4702784Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-avx512f.c.o 2025-06-05T23:54:53.4706034Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-scalar.c.o 2025-06-05T23:54:53.4709267Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-sse2.c.o 2025-06-05T23:54:53.4712535Z [ 56%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-avx-rr2-lut4-p4-perm-u32.c.o 2025-06-05T23:54:53.4715328Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sinh.cpp.o 2025-06-05T23:54:53.4717498Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_slice_copy.cpp.o 2025-06-05T23:54:53.4719720Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_slice_scatter.cpp.o 2025-06-05T23:54:53.4722534Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut4-p4-perm-u56.c.o 2025-06-05T23:54:53.4725326Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_softmax.cpp.o 2025-06-05T23:54:53.4727555Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_split_copy.cpp.o 2025-06-05T23:54:53.4730290Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-p6-u128.c.o 2025-06-05T23:54:53.4733512Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u2.c.o 2025-06-05T23:54:53.4736405Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_split_with_sizes_copy.cpp.o 2025-06-05T23:54:53.4739127Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_squeeze_copy.cpp.o 2025-06-05T23:54:53.4741477Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sqrt.cpp.o 2025-06-05T23:54:53.4743615Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_stack.cpp.o 2025-06-05T23:54:53.4746310Z [ 58%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u4.c.o 2025-06-05T23:54:53.4749013Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sub.cpp.o 2025-06-05T23:54:53.4751068Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sum.cpp.o 2025-06-05T23:54:53.4753625Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-sse2-rr2-lut16-p3-u12.c.o 2025-06-05T23:54:53.4756603Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vexp/gen/f32-vexp-scalar-exp.c.o 2025-06-05T23:54:53.4759124Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_t_copy.cpp.o 2025-06-05T23:54:53.4761229Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_tan.cpp.o 2025-06-05T23:54:53.4763300Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_tanh.cpp.o 2025-06-05T23:54:53.4765441Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_to_copy.cpp.o 2025-06-05T23:54:53.4768161Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-avx-rational-12-10-div.c.o 2025-06-05T23:54:53.4771458Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-avx512f-rational-12-10-nr.c.o 2025-06-05T23:54:53.4774186Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_topk.cpp.o 2025-06-05T23:54:53.4776902Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-fma3-rational-12-10-div.c.o 2025-06-05T23:54:53.4780201Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-scalar-rational-12-10-div.c.o 2025-06-05T23:54:53.4783026Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_transpose_copy.cpp.o 2025-06-05T23:54:53.4786032Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-sse2-rational-12-10-div.c.o 2025-06-05T23:54:53.4789242Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-avx-u16.c.o 2025-06-05T23:54:53.4791817Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_tril.cpp.o 2025-06-05T23:54:53.4794450Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-avx512f-u16.c.o 2025-06-05T23:54:53.4797488Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-fma3-u16.c.o 2025-06-05T23:54:53.4800538Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-scalar-u4.c.o 2025-06-05T23:54:55.0447567Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_trunc.cpp.o 2025-06-05T23:54:55.0449728Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_unbind_copy.cpp.o 2025-06-05T23:54:55.0451581Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_unfold_copy.cpp.o 2025-06-05T23:54:55.0453835Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_unsqueeze_copy.cpp.o 2025-06-05T23:54:55.0456426Z [ 59%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-sse-u8.c.o 2025-06-05T23:54:55.0458805Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_upsample_bilinear2d.cpp.o 2025-06-05T23:54:55.0461620Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-avx2-rational-3-3-div.c.o 2025-06-05T23:54:55.0464438Z [ 60%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_upsample_nearest2d.cpp.o 2025-06-05T23:54:55.0467130Z [ 60%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-avx512f-rational-3-3-div.c.o 2025-06-05T23:54:55.0469979Z [ 61%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_var.cpp.o 2025-06-05T23:54:55.0472326Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-fma3-rational-3-3-div.c.o 2025-06-05T23:54:55.0475499Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-scalar-rational-3-3-div.c.o 2025-06-05T23:54:55.0478052Z [ 61%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_view_as_real_copy.cpp.o 2025-06-05T23:54:55.0480183Z [ 61%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_view_copy.cpp.o 2025-06-05T23:54:55.0482174Z [ 61%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_where.cpp.o 2025-06-05T23:54:55.0484431Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-sse2-rational-3-3-div.c.o 2025-06-05T23:54:55.0486555Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-avx-u16.c.o 2025-06-05T23:54:55.0488250Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-avx512f-u16.c.o 2025-06-05T23:54:55.0489694Z [ 61%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_zeros.cpp.o 2025-06-05T23:54:55.0491068Z [ 61%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/pattern/unary_ufunc_realhb_to_bool.cpp.o 2025-06-05T23:54:55.0493038Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-scalar-u4.c.o 2025-06-05T23:54:55.0495520Z [ 61%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/pattern/unary_ufunc_realhbbf16_to_floathbf16.cpp.o 2025-06-05T23:54:55.0497374Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-sse-u8.c.o 2025-06-05T23:54:55.0499026Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-sse41-u8.c.o 2025-06-05T23:54:55.0500823Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c1-minmax-scalar-2x.c.o 2025-06-05T23:54:55.0502833Z [ 61%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/pattern/unary_ufunc_realhbf16.cpp.o 2025-06-05T23:54:55.0504291Z [ 61%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/activation_ops_util.cpp.o 2025-06-05T23:54:55.0505687Z [ 61%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/advanced_index_util.cpp.o 2025-06-05T23:54:55.0507268Z [ 61%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/broadcast_util.cpp.o 2025-06-05T23:54:55.0508809Z [ 61%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/copy_ops_util.cpp.o 2025-06-05T23:54:55.0510424Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c4-minmax-sse-2x.c.o 2025-06-05T23:54:55.0512187Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrelu/gen/f32-vrelu-scalar-u8.c.o 2025-06-05T23:54:55.0513835Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-avx-u16.c.o 2025-06-05T23:54:55.0515334Z [ 61%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/delinearize_index.cpp.o 2025-06-05T23:54:55.0516953Z [ 61%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/distance_util.cpp.o 2025-06-05T23:54:55.0518465Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-avx512f-u16.c.o 2025-06-05T23:54:55.0520141Z [ 61%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-scalar-libm-u1.c.o 2025-06-05T23:54:55.0521855Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-scalar-libm-u4.c.o 2025-06-05T23:54:55.0523507Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-sse2-u8.c.o 2025-06-05T23:54:55.0524949Z [ 62%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/dtype_util.cpp.o 2025-06-05T23:54:55.0526388Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-sse41-u8.c.o 2025-06-05T23:54:55.0528011Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-avx-u16.c.o 2025-06-05T23:54:55.0529652Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-avx512f-u16.c.o 2025-06-05T23:54:55.0531358Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-u1.c.o 2025-06-05T23:54:55.0533078Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-u4.c.o 2025-06-05T23:54:55.0534752Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-sse2-u8.c.o 2025-06-05T23:54:55.0536386Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-sse41-u8.c.o 2025-06-05T23:54:55.0538128Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-avx-u16.c.o 2025-06-05T23:54:55.0539771Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-avx512f-u16.c.o 2025-06-05T23:54:55.0541239Z [ 62%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/index_util.cpp.o 2025-06-05T23:54:55.0542741Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-u1.c.o 2025-06-05T23:54:55.0544442Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-u4.c.o 2025-06-05T23:54:55.0546105Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-sse2-u8.c.o 2025-06-05T23:54:55.0547877Z [ 62%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-sse41-u8.c.o 2025-06-05T23:54:55.0549451Z [ 64%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/kernel_ops_util.cpp.o 2025-06-05T23:54:55.0550930Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-avx-u16.c.o 2025-06-05T23:54:55.0552413Z [ 65%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/matmul_ops_util.cpp.o 2025-06-05T23:54:55.0553808Z [ 65%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/normalization_ops_util.cpp.o 2025-06-05T23:54:55.0555376Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-avx512f-u16.c.o 2025-06-05T23:54:55.0556861Z [ 65%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/padding_util.cpp.o 2025-06-05T23:54:55.0558166Z [ 65%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/reduce_util.cpp.o 2025-06-05T23:54:55.0559672Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-scalar-libm-u1.c.o 2025-06-05T23:54:56.2936641Z [ 65%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/repeat_util.cpp.o 2025-06-05T23:54:56.2938277Z [ 65%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/select_copy_util.cpp.o 2025-06-05T23:54:56.2939807Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-scalar-libm-u4.c.o 2025-06-05T23:54:56.2941305Z [ 65%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/slice_util.cpp.o 2025-06-05T23:54:56.2942759Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-sse2-u8.c.o 2025-06-05T23:54:56.2944375Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-sse41-u8.c.o 2025-06-05T23:54:56.2945825Z [ 65%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/upsample_util.cpp.o 2025-06-05T23:54:56.2947350Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-avx-rsqrt-u16.c.o 2025-06-05T23:54:56.2949195Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-avx512f-rsqrt-u32.c.o 2025-06-05T23:54:56.2950972Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-fma3-rsqrt-u16.c.o 2025-06-05T23:54:56.2952733Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-scalar-rsqrt-u1.c.o 2025-06-05T23:54:56.2954489Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-scalar-rsqrt-u4.c.o 2025-06-05T23:54:56.2956232Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-sse-rsqrt-u8.c.o 2025-06-05T23:54:56.2958013Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-nr2-u40.c.o 2025-06-05T23:54:56.2959893Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-div-u40.c.o 2025-06-05T23:54:56.2961783Z [ 65%] Linking CXX static library liboptimized_portable_kernels.a 2025-06-05T23:54:56.2963650Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div-u64.c.o 2025-06-05T23:54:56.2966267Z [ 65%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut64-p2-div-u2.c.o 2025-06-05T23:54:56.2968237Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse2-rr2-lut64-p2-div-u8.c.o 2025-06-05T23:54:56.2970204Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse41-rr2-lut64-p2-div-u8.c.o 2025-06-05T23:54:56.2972029Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsqrt/gen/f32-vsqrt-avx-rsqrt-u16.c.o 2025-06-05T23:54:56.2973757Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsqrt/gen/f32-vsqrt-avx512f-rsqrt-u16.c.o 2025-06-05T23:54:56.2975483Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsqrt/gen/f32-vsqrt-fma3-rsqrt-u16.c.o 2025-06-05T23:54:56.2977203Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsqrt/gen/f32-vsqrt-scalar-sqrt-u1.c.o 2025-06-05T23:54:56.2978898Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsqrt/gen/f32-vsqrt-sse-rsqrt-u12.c.o 2025-06-05T23:54:56.2980645Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-avx-rational-9-8-div.c.o 2025-06-05T23:54:56.2982472Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-avx512f-rational-9-8-nr.c.o 2025-06-05T23:54:56.2983651Z [ 66%] Built target optimized_portable_kernels 2025-06-05T23:54:56.2984818Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-fma3-rational-9-8-div.c.o 2025-06-05T23:54:56.2987511Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-scalar-rational-9-8-div.c.o 2025-06-05T23:54:56.2988760Z [ 66%] Merging kernel yaml files 2025-06-05T23:54:56.2989858Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-sse2-rational-9-8-div.c.o 2025-06-05T23:54:56.2991551Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vabs-avx.c.o 2025-06-05T23:54:56.2993126Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vabs-avx512f.c.o 2025-06-05T23:54:56.2994731Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vabs-scalar.c.o 2025-06-05T23:54:56.2996320Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vabs-sse2.c.o 2025-06-05T23:54:56.2997890Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vneg-avx.c.o 2025-06-05T23:54:56.2999457Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vneg-avx512f.c.o 2025-06-05T23:54:56.3001056Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vneg-scalar.c.o 2025-06-05T23:54:56.3002373Z [ 67%] Generating selected_operators.yaml for optimized_native_cpu_ops_lib 2025-06-05T23:54:56.3003716Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vneg-sse2.c.o 2025-06-05T23:54:56.3005993Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vsqr-avx.c.o 2025-06-05T23:54:56.3008174Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vsqr-avx512f.c.o 2025-06-05T23:54:56.3010975Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vsqr-scalar.c.o 2025-06-05T23:54:56.3013474Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vsqr-sse2.c.o 2025-06-05T23:54:56.3015939Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-1x8c8-minmax-avx2.c.o 2025-06-05T23:54:56.3018526Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-3x8c8-minmax-avx2.c.o 2025-06-05T23:54:56.3021219Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-1x8c8-minmax-avx2-madd-prfm.c.o 2025-06-05T23:54:56.3024127Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-4x8c8-minmax-avx2-madd-prfm.c.o 2025-06-05T23:54:56.3026855Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-1x8c8-minmax-avx2.c.o 2025-06-05T23:54:56.3029608Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-3x8c8-minmax-avx2.c.o 2025-06-05T23:54:56.3032250Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-1x8c8-minmax-avx2.c.o 2025-06-05T23:54:56.3034978Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-3x8c8-minmax-avx2.c.o 2025-06-05T23:54:56.3037860Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:54:56.3039953Z [ 69%] Generating code for kernel registration 2025-06-05T23:54:56.3041640Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x4-minmax-scalar.c.o 2025-06-05T23:54:56.3043668Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x4c8-minmax-avx-ld128.c.o 2025-06-05T23:54:56.3045724Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x4c8-minmax-sse2-ld128.c.o 2025-06-05T23:54:57.5596501Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x4c8-minmax-sse41-ld128.c.o 2025-06-05T23:54:57.5600230Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x8c8-minmax-avx2.c.o 2025-06-05T23:54:57.5603719Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-3x4c8-minmax-sse41-ld128.c.o 2025-06-05T23:54:57.5606419Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-3x8c8-minmax-avx2.c.o 2025-06-05T23:54:57.5608999Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-4x4-minmax-scalar.c.o 2025-06-05T23:54:57.5611679Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-4x4c8-minmax-avx-ld128.c.o 2025-06-05T23:54:57.5614952Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-4x4c8-minmax-sse2-ld128.c.o 2025-06-05T23:54:57.5617712Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-8x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:54:57.5620631Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x16c8-minmax-avx512skx-madd-prfm.c.o 2025-06-05T23:54:57.5623641Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:54:57.5626630Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x4-minmax-scalar.c.o 2025-06-05T23:54:57.5630113Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x4c8-minmax-sse2-ld128.c.o 2025-06-05T23:54:57.5633563Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x4c8-minmax-ssse3-madd.c.o 2025-06-05T23:54:57.5637229Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x8c8-minmax-avx2-madd-prfm.c.o 2025-06-05T23:54:57.5640764Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-4x4-minmax-scalar.c.o 2025-06-05T23:54:57.5644292Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-4x4c8-minmax-sse2-ld128.c.o 2025-06-05T23:54:57.5647973Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-4x4c8-minmax-ssse3-madd.c.o 2025-06-05T23:54:57.5651660Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-4x8c8-minmax-avx2-madd-prfm.c.o 2025-06-05T23:54:57.5655356Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-8x16c8-minmax-avx512skx-madd-prfm.c.o 2025-06-05T23:54:57.5658900Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-8x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:54:57.5662736Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-10x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:54:57.5666450Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x16c8-minmax-avx512skx-prfm.c.o 2025-06-05T23:54:57.5670428Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:54:57.5674011Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x2-minmax-scalar.c.o 2025-06-05T23:54:57.5677321Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x4-minmax-scalar.c.o 2025-06-05T23:54:57.5680738Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x4c8-minmax-sse2-ld64.c.o 2025-06-05T23:54:57.5684695Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x4c8-minmax-sse41-ld64.c.o 2025-06-05T23:54:57.5690569Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x8c8-minmax-avx2.c.o 2025-06-05T23:54:57.5694003Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-2x2-minmax-scalar.c.o 2025-06-05T23:54:57.5697257Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x4-minmax-scalar.c.o 2025-06-05T23:54:57.5700615Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x4c8-minmax-sse2-ld64.c.o 2025-06-05T23:54:57.5704022Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x4c8-minmax-sse41-ld64.c.o 2025-06-05T23:54:57.5707206Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x8c8-minmax-avx2.c.o 2025-06-05T23:54:57.5710933Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-8x16c8-minmax-avx512skx-prfm.c.o 2025-06-05T23:54:57.5713514Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-10x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:54:57.5715894Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x16c8-minmax-avx512skx-prfm.c.o 2025-06-05T23:54:57.5718600Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:54:57.5720724Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x2-minmax-scalar.c.o 2025-06-05T23:54:57.5722725Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x4-minmax-scalar.c.o 2025-06-05T23:54:57.5724786Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x4c8-minmax-sse2-ld64.c.o 2025-06-05T23:54:57.5726876Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x4c8-minmax-sse41-ld64.c.o 2025-06-05T23:54:57.5728936Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x8c8-minmax-avx2.c.o 2025-06-05T23:54:57.5730948Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-2x2-minmax-scalar.c.o 2025-06-05T23:54:57.5732965Z [ 71%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x4-minmax-scalar.c.o 2025-06-05T23:54:57.5736181Z [ 72%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x4c8-minmax-sse2-ld64.c.o 2025-06-05T23:54:57.5739378Z [ 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:54:57.5742421Z [ 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:54:57.5745918Z [ 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:54:58.6370194Z [ 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:54:58.6373652Z [ 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:54:58.6377016Z [ 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:54:58.6380366Z [ 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:54:58.6383792Z [ 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:54:58.6388081Z [ 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:54:58.6391490Z [ 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:54:58.6394888Z [ 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:54:58.6398294Z [ 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:54:58.6401603Z [ 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:54:58.6405284Z [ 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:54:58.6409062Z [ 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:54:58.6412404Z [ 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:54:58.6415743Z [ 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:54:58.6419075Z [ 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:54:58.6422513Z [ 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:54:58.6425665Z [ 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:54:58.6428790Z [ 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:54:58.6431900Z [ 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:54:58.6435066Z [ 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:54:58.6438392Z [ 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:54:58.6442293Z [ 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:54:58.6445497Z [ 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:54:58.6448641Z [ 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:54:58.6451949Z [ 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:54:58.6455370Z [ 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:54:58.6459135Z [ 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:54:58.6463182Z [ 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:54:58.6467251Z [ 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:54:58.6471377Z [ 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:54:58.6475252Z [ 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:54:58.6479412Z [ 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:54:58.6483410Z [ 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:54:58.6487957Z [ 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:54:58.6491939Z [ 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:54:58.6495983Z [ 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:54:58.6500026Z [ 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:54:58.6504397Z [ 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:54:58.6509052Z [ 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:54:58.6513111Z [ 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:54:58.6517105Z [ 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:54:58.6521063Z [ 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:54:58.6525568Z [ 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:54:58.6529415Z [ 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:54:58.6533416Z [ 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:54:58.6537506Z [ 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:54:58.6541491Z [ 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:54:58.6545639Z [ 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:54:58.6549778Z [ 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:54:59.6919142Z [ 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:54:59.6921317Z [ 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:54:59.6923481Z [ 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:54:59.6925608Z [ 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:54:59.6927667Z [ 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:54:59.6929701Z [ 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:54:59.6931734Z [ 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:54:59.6933703Z [ 76%] Building CXX object configurations/CMakeFiles/optimized_native_cpu_ops_lib.dir/optimized_native_cpu_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp.o 2025-06-05T23:54:59.6935698Z [ 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:54:59.6937685Z [ 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:54:59.6939683Z [ 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:54:59.6941720Z [ 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:54:59.6943749Z [ 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:54:59.6946075Z [ 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:54:59.6948332Z [ 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:54:59.6950338Z [ 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:54:59.6952360Z [ 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:54:59.6953787Z [ 77%] Linking CXX static library liboptimized_native_cpu_ops_lib.a 2025-06-05T23:54:59.6955194Z [ 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:54:59.6957306Z [ 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:54:59.6958626Z [ 77%] Built target optimized_native_cpu_ops_lib 2025-06-05T23:54:59.6997530Z [ 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:54:59.7000522Z [ 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:54:59.7003769Z [ 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:54:59.7007321Z [ 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:54:59.7010055Z [ 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:54:59.7012140Z [ 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:54:59.7014173Z [ 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:54:59.7016203Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:54:59.7018290Z [ 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:54:59.7020360Z [ 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:54:59.7022452Z [ 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:54:59.7024501Z [ 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:54:59.7026525Z [ 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:54:59.7028712Z [ 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:54:59.7031140Z [ 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:54:59.7033289Z [ 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:54:59.7035191Z [ 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:54:59.7037120Z [ 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:54:59.7039034Z [ 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:54:59.7040938Z [ 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:54:59.7043087Z [ 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:54:59.7044807Z [ 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:54:59.7046643Z [ 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:54:59.7048327Z [ 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:54:59.7050109Z [ 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:54:59.7051860Z [ 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:54:59.7053743Z [ 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:54:59.7055652Z [ 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:54:59.7057481Z [ 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:54:59.7059203Z [ 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:00.5683555Z [ 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:00.5687309Z [ 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:00.5690690Z [ 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:00.5694079Z [ 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:00.5697564Z [ 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:00.5700946Z [ 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:00.5704088Z [ 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:00.5707762Z [ 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:00.5711379Z [ 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:00.5714464Z [ 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:00.5717294Z [ 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:00.5720192Z [ 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:00.5723114Z [ 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:00.5726042Z [ 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:00.5728932Z [ 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:00.5731807Z [ 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:00.5734727Z [ 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:00.5737743Z [ 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:00.5740821Z [ 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:00.5744067Z [ 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:00.5747190Z [ 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:00.5750300Z [ 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:00.5753321Z [ 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:00.5756590Z [ 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:00.5760474Z [ 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:00.5763866Z [ 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:00.5767412Z [ 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:00.5770947Z [ 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:00.5774172Z [ 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:00.5777550Z [ 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:00.5781718Z [ 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:00.5787933Z [ 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:00.5791512Z [ 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:00.5794975Z [ 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:00.5798373Z [ 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:00.5801814Z [ 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:00.5805436Z [ 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:00.5809066Z [ 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:00.5812731Z [ 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:00.5816153Z [ 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:00.5819636Z [ 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:00.5823208Z [ 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:00.5826434Z [ 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:00.5829775Z [ 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:00.5833190Z [ 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:00.5837192Z [ 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:00.5840618Z [ 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:00.5844524Z [ 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:00.5848221Z [ 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:00.5851732Z [ 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:00.5855263Z [ 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:00.5858615Z [ 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:00.5862034Z [ 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:01.5845882Z [ 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:01.5849187Z [ 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:01.5852357Z [ 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:01.5856117Z [ 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:01.5859245Z [ 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:01.5862635Z [ 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:01.5866077Z [ 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:01.5868158Z [ 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:01.5870056Z [ 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:01.5871941Z [ 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:01.5873849Z [ 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:01.5876373Z [ 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:01.5879305Z [ 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:01.5882699Z [ 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:01.5887022Z [ 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:01.5890563Z [ 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:01.5894875Z [ 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:01.5897949Z [ 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:01.5900178Z [ 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:01.5902632Z [ 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:01.5905361Z [ 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:01.5908940Z [ 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:01.5912113Z [ 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:01.5915056Z [ 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:01.5918099Z [ 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:01.5921472Z [ 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:01.5924898Z [ 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:01.5928236Z [ 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:01.5931607Z [ 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:01.5934709Z [ 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:01.5937982Z [ 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:01.5941492Z [ 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:01.5944511Z [ 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:01.5947200Z [ 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:01.5949663Z [ 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:01.5951827Z [ 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:01.5954615Z [ 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:01.5957399Z [ 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:01.5960342Z [ 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:01.5963748Z [ 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:01.5967399Z [ 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:01.5969904Z [ 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:01.5971870Z [ 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:01.5973928Z [ 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:01.5976225Z [ 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:01.5978180Z [ 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:01.5980062Z [ 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:01.5982176Z [ 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:01.5985311Z [ 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:01.5988130Z [ 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:01.5990882Z [ 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:01.5993567Z [ 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:01.5995584Z [ 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:02.4356440Z [ 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:02.4358139Z [ 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:02.4359756Z [ 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:02.4361477Z [ 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:02.4363077Z [ 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:02.4364702Z [ 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:02.4366378Z [ 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:02.4368171Z [ 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:02.4369900Z [ 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:02.4371684Z [ 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:02.4373404Z [ 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:02.4375046Z [ 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:02.4376711Z [ 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:02.4378500Z [ 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:02.4380353Z [ 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:02.4382537Z [ 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:02.4384488Z [ 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:02.4386770Z [ 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:02.4388730Z [ 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:02.4390637Z [ 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:02.4392602Z [ 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:02.4394425Z [ 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:02.4396078Z [ 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:02.4397762Z [ 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:02.4399454Z [ 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:02.4401176Z [ 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:02.4402933Z [ 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:02.4404693Z [ 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:02.4406495Z [ 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:02.4408274Z [ 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:02.4410036Z [ 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:02.4411659Z [ 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:02.4413296Z [ 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:02.4414896Z [ 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:02.4416470Z [ 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:02.4418244Z [ 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:02.4420135Z [ 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:02.4422220Z [ 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:02.4424325Z [ 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:02.4426162Z [ 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:02.4427825Z [ 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:02.4429600Z [ 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:02.4431239Z [ 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:02.4432810Z [ 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:02.4434455Z [ 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:02.4436079Z [ 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:02.4437669Z [ 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:02.4439391Z [ 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:02.4441302Z [ 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:02.4443239Z [ 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:02.4445175Z [ 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:02.4447071Z [ 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:02.4448947Z [ 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:02.4450703Z [ 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:02.4452469Z [ 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:02.4454273Z [ 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:03.7929879Z [ 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:03.7933352Z [ 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:03.7936765Z [ 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:03.7940013Z [ 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:03.7943224Z [ 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:03.7946921Z [ 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:03.7950486Z [ 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:03.7953721Z [ 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:03.7956519Z [ 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:03.7959308Z [ 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:03.7961967Z [ 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:03.7964607Z [ 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:03.7967296Z [ 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:03.7969978Z [ 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:03.7972594Z [ 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:03.7975269Z [ 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:03.7977973Z [ 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:03.7980677Z [ 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:03.7983743Z [ 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:03.7987491Z [ 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:03.7991047Z [ 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:03.7994247Z [ 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:03.7997091Z [ 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:03.8000037Z [ 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:03.8003001Z [ 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:03.8005835Z [ 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:03.8008675Z [ 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:03.8011795Z [ 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:03.8014965Z [ 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:03.8018384Z [ 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:03.8021637Z [ 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:03.8024777Z [ 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:03.8028085Z [ 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:03.8031279Z [ 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:03.8034131Z [ 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:03.8036646Z [ 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:03.8038164Z [ 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:03.8039674Z [ 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:03.8041191Z [ 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:03.8042848Z [ 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:03.8044332Z [ 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:03.8045830Z [ 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:03.8047386Z [ 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:03.8048964Z [ 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:03.8050516Z [ 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:03.8052211Z [ 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:03.8054611Z [ 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:03.8056648Z [ 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:03.8058326Z [ 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:03.8059823Z [ 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:03.8061352Z [ 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:03.8062880Z [ 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:03.8064425Z [ 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:03.8065970Z [ 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:03.8067662Z [ 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:03.8069406Z [ 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:03.8070870Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/vlog.c.o 2025-06-05T23:55:03.8071844Z [ 97%] Linking C static library libmicrokernels-prod.a 2025-06-05T23:55:03.8072368Z [ 97%] Built target microkernels-prod 2025-06-05T23:55:03.8072836Z [ 97%] Generating build_identifier.c 2025-06-05T23:55:03.8073736Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/argmaxpool-config.c.o 2025-06-05T23:55:13.6253525Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/avgpool-config.c.o 2025-06-05T23:55:13.6255909Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/binary-elementwise-config.c.o 2025-06-05T23:55:13.6258099Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/cmul-config.c.o 2025-06-05T23:55:13.6260183Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/dwconv-config.c.o 2025-06-05T23:55:13.6262323Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/conv-hwc2chw-config.c.o 2025-06-05T23:55:13.6264735Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/dwconv2d-chw-config.c.o 2025-06-05T23:55:13.6267103Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/experiments-config.c.o 2025-06-05T23:55:13.6269589Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/gemm-config.c.o 2025-06-05T23:55:13.6272104Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/ibilinear-chw-config.c.o 2025-06-05T23:55:13.6274672Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/ibilinear-config.c.o 2025-06-05T23:55:13.6277091Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/lut32norm-config.c.o 2025-06-05T23:55:13.6279470Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/maxpool-config.c.o 2025-06-05T23:55:13.6281754Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/pavgpool-config.c.o 2025-06-05T23:55:13.6283912Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/pack-lh-config.c.o 2025-06-05T23:55:13.6286464Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/raddstoreexpminusmax-config.c.o 2025-06-05T23:55:13.6288874Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/reduce-config.c.o 2025-06-05T23:55:13.6291069Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/rmax-config.c.o 2025-06-05T23:55:13.6293184Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/spmm-config.c.o 2025-06-05T23:55:13.6295574Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/transpose-config.c.o 2025-06-05T23:55:13.6298120Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/unary-elementwise-config.c.o 2025-06-05T23:55:13.6300672Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/unpool-config.c.o 2025-06-05T23:55:13.6303055Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/vmulcaddc-config.c.o 2025-06-05T23:55:13.6305884Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/xx-fill-config.c.o 2025-06-05T23:55:13.6308596Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/xx-pad-config.c.o 2025-06-05T23:55:13.6310947Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/x8-lut-config.c.o 2025-06-05T23:55:13.6313258Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/zip-config.c.o 2025-06-05T23:55:13.6315339Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/init.c.o 2025-06-05T23:55:13.6317288Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/params.c.o 2025-06-05T23:55:13.6319319Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/build_identifier.c.o 2025-06-05T23:55:13.6320876Z [100%] Linking CXX static library libXNNPACK.a 2025-06-05T23:55:13.6321730Z [100%] Built target XNNPACK 2025-06-05T23:55:13.6323089Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNExecutor.cpp.o 2025-06-05T23:55:13.6325147Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNCompiler.cpp.o 2025-06-05T23:55:13.6327191Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNHeader.cpp.o 2025-06-05T23:55:13.6329268Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNPACKBackend.cpp.o 2025-06-05T23:55:13.6331495Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/profiling/XNNProfiler.cpp.o 2025-06-05T23:55:13.6333711Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNWeightsCache.cpp.o 2025-06-05T23:55:13.6335301Z [100%] Linking CXX static library libxnnpack_backend.a 2025-06-05T23:55:13.6336237Z [100%] Built target xnnpack_backend 2025-06-05T23:55:13.6337565Z [100%] Building CXX object CMakeFiles/portable_lib.dir/extension/pybindings/pybindings.cpp.o 2025-06-05T23:55:13.6339243Z [100%] Linking CXX shared library _portable_lib.cpython-310-x86_64-linux-gnu.so 2025-06-05T23:55:13.6340418Z [100%] Built target portable_lib 2025-06-05T23:55:13.6341804Z Building CXX object backends/apple/coreml/CMakeFiles/coreml_util.dir/runtime/util/json_util.cpp.o 2025-06-05T23:55:13.6344077Z Building CXX object backends/apple/coreml/CMakeFiles/coreml_inmemoryfs.dir/runtime/inmemoryfs/memory_stream.cpp.o 2025-06-05T23:55:13.6346617Z Building CXX object backends/apple/coreml/CMakeFiles/coreml_inmemoryfs.dir/runtime/inmemoryfs/inmemory_filesystem.cpp.o 2025-06-05T23:55:13.6349374Z Building CXX object backends/apple/coreml/CMakeFiles/coreml_inmemoryfs.dir/runtime/inmemoryfs/reversed_memory_stream.cpp.o 2025-06-05T23:55:13.6351801Z Building CXX object backends/apple/coreml/CMakeFiles/coreml_inmemoryfs.dir/runtime/inmemoryfs/memory_buffer.cpp.o 2025-06-05T23:55:13.6353419Z Linking CXX static library libcoreml_util.a 2025-06-05T23:55:13.6354186Z Built target coreml_util 2025-06-05T23:55:13.6354908Z Linking CXX static library libcoreml_inmemoryfs.a 2025-06-05T23:55:13.6355703Z Built target coreml_inmemoryfs 2025-06-05T23:55:13.6357263Z Building CXX object backends/apple/coreml/CMakeFiles/executorchcoreml.dir/runtime/inmemoryfs/inmemory_filesystem_py.cpp.o 2025-06-05T23:55:13.6359844Z Building CXX object backends/apple/coreml/CMakeFiles/executorchcoreml.dir/runtime/inmemoryfs/inmemory_filesystem_utils.cpp.o 2025-06-05T23:55:13.6361845Z Linking CXX shared library executorchcoreml.cpython-310-x86_64-linux-gnu.so 2025-06-05T23:55:13.6362923Z Built target executorchcoreml 2025-06-05T23:55:13.6363648Z [ 1%] Built target flatbuffers_external_project 2025-06-05T23:55:13.6364452Z [ 1%] Built target flatcc_external_project 2025-06-05T23:55:13.6365216Z [ 2%] Built target pthreadpool 2025-06-05T23:55:13.6366033Z [ 2%] Built target common_schema 2025-06-05T23:55:13.6366719Z [ 3%] Built target xnnpack_schema 2025-06-05T23:55:13.6367385Z [ 4%] Built target cpuinfo 2025-06-05T23:55:13.6368000Z [ 6%] Built target logging 2025-06-05T23:55:13.6368713Z [ 7%] Built target eigen_blas 2025-06-05T23:55:13.6369370Z [ 8%] Built target flatccrt 2025-06-05T23:55:13.6369989Z [ 8%] Built target indirection 2025-06-05T23:55:13.6370644Z [ 8%] Built target microparams-init 2025-06-05T23:55:13.6371347Z [ 8%] Built target normalization 2025-06-05T23:55:13.6372005Z [ 8%] Built target datatype 2025-06-05T23:55:13.6372651Z [ 8%] Built target microkernel-utils 2025-06-05T23:55:13.6373331Z [ 8%] Built target memory 2025-06-05T23:55:13.6373932Z [ 8%] Built target mutex 2025-06-05T23:55:13.6374549Z [ 8%] Built target reference-ukernels 2025-06-05T23:55:13.6375282Z [ 8%] Built target operator-utils 2025-06-05T23:55:13.6375963Z [ 8%] Built target program_schema 2025-06-05T23:55:13.6376655Z [ 8%] Built target operator-run 2025-06-05T23:55:13.6377330Z [ 8%] Built target hardware-config 2025-06-05T23:55:13.6378022Z [ 8%] Built target packing 2025-06-05T23:55:13.6378635Z [ 8%] Built target allocator 2025-06-05T23:55:13.6379272Z [ 8%] Built target cache 2025-06-05T23:55:13.6379866Z [ 11%] Built target operators 2025-06-05T23:55:13.6380497Z [ 12%] Built target executorch_core 2025-06-05T23:55:13.6381223Z [ 12%] Built target extension_data_loader 2025-06-05T23:55:13.6381935Z [ 14%] Built target subgraph 2025-06-05T23:55:13.6382589Z [ 14%] Built target extension_threadpool 2025-06-05T23:55:13.6383385Z [ 14%] Built target extension_tensor 2025-06-05T23:55:13.6384166Z [ 16%] Built target executorch 2025-06-05T23:55:13.6384896Z [ 16%] Built target bundled_program 2025-06-05T23:55:13.6385910Z [ 17%] Built target cpublas 2025-06-05T23:55:13.6386556Z [ 17%] Built target etdump 2025-06-05T23:55:13.6387299Z [ 18%] Built target kernels_util_all_deps 2025-06-05T23:55:13.6388221Z [ 18%] Built target util 2025-06-05T23:55:13.6388930Z [ 19%] Built target optimized_kernels 2025-06-05T23:55:13.6389762Z [ 34%] Built target optimized_portable_kernels 2025-06-05T23:55:13.6390716Z [ 34%] Built target optimized_native_cpu_ops_lib 2025-06-05T23:55:13.6391600Z [ 97%] Built target microkernels-prod 2025-06-05T23:55:13.6392405Z [100%] Built target XNNPACK 2025-06-05T23:55:13.6393132Z [100%] Built target xnnpack_backend 2025-06-05T23:55:13.6393913Z [100%] Built target portable_lib 2025-06-05T23:55:13.6395307Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_fallback.cpp.o 2025-06-05T23:55:13.6397512Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_fast_hadamard_transform.cpp.o 2025-06-05T23:55:13.6399714Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_sdpa.cpp.o 2025-06-05T23:55:13.6401768Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_update_cache.cpp.o 2025-06-05T23:55:13.6404098Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/spinquant/fast_hadamard_transform.cpp.o 2025-06-05T23:55:13.6406599Z [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:13.6408793Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_sdpa_aot.cpp.o 2025-06-05T23:55:13.6410927Z [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:13.6413044Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_tile_crop.cpp.o 2025-06-05T23:55:21.2990769Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops_aot_lib.dir/op_tile_crop_aot.cpp.o 2025-06-05T23:55:21.2992793Z [100%] Linking CXX shared library libcustom_ops_aot_lib.so 2025-06-05T23:55:21.2994057Z [100%] Built target custom_ops_aot_lib 2025-06-05T23:55:21.2994592Z [ 0%] Built target flatcc_external_project 2025-06-05T23:55:21.2995084Z [ 1%] Built target flatbuffers_external_project 2025-06-05T23:55:21.2995810Z [ 2%] Built target pthreadpool 2025-06-05T23:55:21.2996281Z [ 3%] Built target cpuinfo 2025-06-05T23:55:21.2996680Z [ 3%] Built target common_schema 2025-06-05T23:55:21.2997123Z [ 4%] Built target xnnpack_schema 2025-06-05T23:55:21.2997594Z [ 6%] Built target eigen_blas 2025-06-05T23:55:21.2998059Z [ 7%] Built target flatccrt 2025-06-05T23:55:21.2998442Z [ 8%] Built target logging 2025-06-05T23:55:21.2998836Z [ 8%] Built target indirection 2025-06-05T23:55:21.2999253Z [ 8%] Built target microparams-init 2025-06-05T23:55:21.2999727Z [ 8%] Built target normalization 2025-06-05T23:55:21.3000275Z [ 8%] Built target datatype 2025-06-05T23:55:21.3000686Z [ 8%] Built target reference-ukernels 2025-06-05T23:55:21.3001137Z [ 8%] Built target program_schema 2025-06-05T23:55:21.3001572Z [ 8%] Built target hardware-config 2025-06-05T23:55:21.3001993Z [ 8%] Built target packing 2025-06-05T23:55:21.3002486Z [ 8%] Built target allocator 2025-06-05T23:55:21.3002883Z [ 8%] Built target cache 2025-06-05T23:55:21.3003255Z [ 8%] Built target memory 2025-06-05T23:55:21.3003662Z [ 8%] Built target microkernel-utils 2025-06-05T23:55:21.3004175Z [ 8%] Built target mutex 2025-06-05T23:55:21.3004600Z [ 8%] Built target operator-utils 2025-06-05T23:55:21.3005017Z [ 8%] Built target operator-run 2025-06-05T23:55:21.3005445Z [ 9%] Built target executorch_core 2025-06-05T23:55:21.3005868Z [ 12%] Built target operators 2025-06-05T23:55:21.3006319Z [ 12%] Built target extension_tensor 2025-06-05T23:55:21.3006815Z [ 12%] Built target extension_data_loader 2025-06-05T23:55:21.3007291Z [ 12%] Built target extension_threadpool 2025-06-05T23:55:21.3007745Z [ 13%] Built target executorch 2025-06-05T23:55:21.3008188Z [ 14%] Built target kernels_util_all_deps 2025-06-05T23:55:21.3008643Z [ 16%] Built target subgraph 2025-06-05T23:55:21.3009047Z [ 16%] Built target bundled_program 2025-06-05T23:55:21.3009465Z [ 18%] Built target cpublas 2025-06-05T23:55:21.3009869Z [ 18%] Built target etdump 2025-06-05T23:55:21.3010259Z [ 19%] Built target optimized_kernels 2025-06-05T23:55:21.3010885Z [ 19%] Built target util 2025-06-05T23:55:21.3011302Z [ 33%] Built target optimized_portable_kernels 2025-06-05T23:55:21.3011808Z [ 33%] Built target optimized_native_cpu_ops_lib 2025-06-05T23:55:21.3012415Z [ 95%] Built target microkernels-prod 2025-06-05T23:55:21.3012984Z [ 97%] Built target XNNPACK 2025-06-05T23:55:21.3013398Z [ 97%] Built target xnnpack_backend 2025-06-05T23:55:21.3013849Z [ 97%] Built target portable_lib 2025-06-05T23:55:21.3014948Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/embeddingxb.cpp.o 2025-06-05T23:55:21.3016523Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_add.cpp.o 2025-06-05T23:55:21.3017995Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_choose_qparams.cpp.o 2025-06-05T23:55:21.3019392Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_dequantize.cpp.o 2025-06-05T23:55:21.3020852Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_embedding.cpp.o 2025-06-05T23:55:21.3022281Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_embedding2b.cpp.o 2025-06-05T23:55:21.3023594Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_embedding4b.cpp.o 2025-06-05T23:55:21.3025221Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_mixed_linear.cpp.o 2025-06-05T23:55:21.3026779Z [ 97%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_mixed_mm.cpp.o 2025-06-05T23:55:21.3028489Z [ 98%] Building CXX object kernels/quantized/CMakeFiles/quantized_pybind_kernels_lib.dir/cpu/op_quantize.cpp.o 2025-06-05T23:55:21.3029571Z [ 98%] Linking CXX static library libquantized_pybind_kernels_lib.a 2025-06-05T23:55:21.3030323Z [ 98%] Built target quantized_pybind_kernels_lib 2025-06-05T23:55:21.3031014Z [ 98%] Generating selected_operators.yaml for quantized_ops_pybind_lib 2025-06-05T23:55:21.3031653Z [ 98%] Generating code for kernel registration 2025-06-05T23:55:21.3032996Z [ 98%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_pybind_lib.dir/quantized_ops_pybind_lib/RegisterCodegenUnboxedKernelsEverything.cpp.o 2025-06-05T23:55:21.3034321Z [ 98%] Linking CXX static library libquantized_ops_pybind_lib.a 2025-06-05T23:55:21.3034892Z [ 98%] Built target quantized_ops_pybind_lib 2025-06-05T23:55:21.3035495Z [ 98%] Generating selected_operators.yaml for quantized_ops_aot_lib 2025-06-05T23:55:21.3039833Z 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:21.3044227Z [ 98%] Generating code for kernel registration 2025-06-05T23:55:21.3045416Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/quantized_ops_aot_lib/RegisterCPUCustomOps.cpp.o 2025-06-05T23:55:21.3047012Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/quantized_ops_aot_lib/RegisterSchema.cpp.o 2025-06-05T23:55:21.3048474Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/embeddingxb.cpp.o 2025-06-05T23:55:21.3049857Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_add.cpp.o 2025-06-05T23:55:21.3051079Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_choose_qparams.cpp.o 2025-06-05T23:55:21.3052474Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_dequantize.cpp.o 2025-06-05T23:55:21.3053827Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_embedding.cpp.o 2025-06-05T23:55:21.3055031Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_embedding2b.cpp.o 2025-06-05T23:55:21.3056251Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_embedding4b.cpp.o 2025-06-05T23:55:21.3057465Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_mixed_linear.cpp.o 2025-06-05T23:55:21.3058984Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_mixed_mm.cpp.o 2025-06-05T23:55:21.3060307Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/cpu/op_quantize.cpp.o 2025-06-05T23:55:21.3061634Z [100%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_aot_lib.dir/__/portable/cpu/util/reduce_util.cpp.o 2025-06-05T23:55:21.3063096Z [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:21.3064344Z [100%] Linking CXX shared library libquantized_ops_aot_lib.so 2025-06-05T23:55:21.3064911Z [100%] Built target quantized_ops_aot_lib 2025-06-05T23:55:21.3065366Z running build_py 2025-06-05T23:55:21.3065886Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/codegen 2025-06-05T23:55:21.3066945Z copying src/executorch/codegen/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen 2025-06-05T23:55:21.3068158Z copying src/executorch/codegen/gen.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen 2025-06-05T23:55:21.3069454Z copying src/executorch/codegen/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen 2025-06-05T23:55:21.3070636Z copying src/executorch/codegen/parse.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen 2025-06-05T23:55:21.3071625Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools 2025-06-05T23:55:21.3072561Z copying src/executorch/devtools/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools 2025-06-05T23:55:21.3073637Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:21.3074495Z copying src/executorch/exir/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:21.3075605Z copying src/executorch/exir/_warnings.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:21.3076674Z copying src/executorch/exir/common.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:21.3077828Z copying src/executorch/exir/control_flow.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:21.3079165Z copying src/executorch/exir/delegate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:21.3080502Z copying src/executorch/exir/dim_order_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:21.3081775Z copying src/executorch/exir/dynamic_shape.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:21.3083005Z copying src/executorch/exir/error.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:21.3084218Z copying src/executorch/exir/graph.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:21.3085556Z copying src/executorch/exir/graph_module.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:21.3087022Z copying src/executorch/exir/lowered_backend_module.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:21.3088194Z copying src/executorch/exir/memory.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:21.3089327Z copying src/executorch/exir/memory_planning.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:21.3090698Z copying src/executorch/exir/pass_base.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:21.3091981Z copying src/executorch/exir/pass_manager.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:21.3152769Z copying src/executorch/exir/print_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:21.3154360Z copying src/executorch/exir/scalar_type.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:21.3155578Z copying src/executorch/exir/schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:21.3156679Z copying src/executorch/exir/sym_util.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:21.3157773Z copying src/executorch/exir/tensor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:21.3159090Z copying src/executorch/exir/tracer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:21.3160317Z copying src/executorch/exir/types.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:21.3161496Z copying src/executorch/exir/version.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:21.3162689Z copying src/executorch/exir/wrap.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:21.3163577Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/runtime 2025-06-05T23:55:21.3164561Z copying src/executorch/runtime/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/runtime 2025-06-05T23:55:21.3165813Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/util 2025-06-05T23:55:21.3167010Z copying src/executorch/util/activation_memory_profiler.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/util 2025-06-05T23:55:21.3168599Z copying src/executorch/util/collect_env.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/util 2025-06-05T23:55:21.3170038Z copying src/executorch/util/python_profiler.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/util 2025-06-05T23:55:21.3171109Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:55:21.3172226Z copying src/executorch/backends/arm/arm_backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:55:21.3173866Z copying src/executorch/backends/arm/arm_vela.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:55:21.3175446Z copying src/executorch/backends/arm/ethosu_backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:55:21.3177146Z copying src/executorch/backends/arm/ethosu_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:55:21.3178581Z copying src/executorch/backends/arm/process_node.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:55:21.3180257Z copying src/executorch/backends/arm/tosa_backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:55:21.3181882Z copying src/executorch/backends/arm/tosa_mapping.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:55:21.3183518Z copying src/executorch/backends/arm/tosa_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:55:21.3185009Z copying src/executorch/backends/arm/tosa_quant_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:55:21.3186685Z copying src/executorch/backends/arm/tosa_specification.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:55:21.3188161Z copying src/executorch/backends/arm/tosa_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:55:21.3189787Z copying src/executorch/backends/arm/vgf_backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:55:21.3191493Z copying src/executorch/backends/arm/vgf_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm 2025-06-05T23:55:21.3192823Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example 2025-06-05T23:55:21.3194039Z copying src/executorch/backends/example/example_backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example 2025-06-05T23:55:21.3195839Z copying src/executorch/backends/example/example_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example 2025-06-05T23:55:21.3197576Z copying src/executorch/backends/example/example_quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example 2025-06-05T23:55:21.3199517Z copying src/executorch/backends/example/test_example_delegate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example 2025-06-05T23:55:21.3201113Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek 2025-06-05T23:55:21.3202432Z copying src/executorch/backends/mediatek/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek 2025-06-05T23:55:21.3204009Z copying src/executorch/backends/mediatek/partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek 2025-06-05T23:55:21.3205678Z copying src/executorch/backends/mediatek/preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek 2025-06-05T23:55:21.3207015Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp 2025-06-05T23:55:21.3208488Z copying src/executorch/backends/nxp/neutron_node_extraction.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp 2025-06-05T23:55:21.3210570Z copying src/executorch/backends/nxp/neutron_partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp 2025-06-05T23:55:21.3212570Z copying src/executorch/backends/nxp/neutron_pass_manager.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp 2025-06-05T23:55:21.3214434Z copying src/executorch/backends/nxp/nxp_backend.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp 2025-06-05T23:55:21.3215690Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino 2025-06-05T23:55:21.3217057Z copying src/executorch/backends/openvino/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino 2025-06-05T23:55:21.3218935Z copying src/executorch/backends/openvino/partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino 2025-06-05T23:55:21.3220677Z copying src/executorch/backends/openvino/preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino 2025-06-05T23:55:21.3222125Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm 2025-06-05T23:55:21.3223685Z copying src/executorch/backends/qualcomm/qnn_preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm 2025-06-05T23:55:21.3225193Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:55:21.3226566Z copying src/executorch/backends/transforms/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:55:21.3228577Z 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:21.3230449Z copying src/executorch/backends/transforms/convert_dtype_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:55:21.3232343Z copying src/executorch/backends/transforms/decompose_sdpa.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:55:21.3234261Z 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:21.3236138Z 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:21.3238199Z 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:21.3240060Z copying src/executorch/backends/transforms/fuse_view_copy.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:55:21.3241892Z 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:21.3243725Z 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:21.3245451Z copying src/executorch/backends/transforms/remove_clone_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:55:21.3247353Z copying src/executorch/backends/transforms/remove_getitem_op.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:55:21.3249411Z 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:21.3251427Z copying src/executorch/backends/transforms/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms 2025-06-05T23:55:21.3253367Z 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:21.3254971Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan 2025-06-05T23:55:21.3256377Z copying src/executorch/backends/vulkan/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan 2025-06-05T23:55:21.3258429Z copying src/executorch/backends/vulkan/custom_ops_lib.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan 2025-06-05T23:55:21.3260372Z copying src/executorch/backends/vulkan/op_registry.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan 2025-06-05T23:55:21.3261991Z copying src/executorch/backends/vulkan/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan 2025-06-05T23:55:21.3263851Z copying src/executorch/backends/vulkan/vulkan_preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan 2025-06-05T23:55:21.3305714Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack 2025-06-05T23:55:21.3307635Z copying src/executorch/backends/xnnpack/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack 2025-06-05T23:55:21.3309784Z copying src/executorch/backends/xnnpack/xnnpack_preprocess.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack 2025-06-05T23:55:21.3311307Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps 2025-06-05T23:55:21.3312972Z copying src/executorch/backends/apple/mps/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps 2025-06-05T23:55:21.3314963Z 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:21.3316729Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/compiler 2025-06-05T23:55:21.3318551Z 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:21.3320858Z 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:21.3322754Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/partition 2025-06-05T23:55:21.3324401Z 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:21.3326713Z 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:21.3328427Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/quantizer 2025-06-05T23:55:21.3330180Z 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:21.3332413Z 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:21.3334268Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/test 2025-06-05T23:55:21.3335985Z 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:21.3338227Z 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:21.3340015Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml/runtime/test 2025-06-05T23:55:21.3341985Z 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:21.3343922Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/operators 2025-06-05T23:55:21.3345650Z 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:21.3348097Z 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:21.3350310Z 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:21.3352460Z 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:21.3354450Z 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:21.3356619Z 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:21.3358889Z 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:21.3361140Z 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:21.3363432Z 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:21.3365590Z 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:21.3367996Z 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:21.3370081Z 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:21.3372227Z 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:21.3374400Z 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:21.3376546Z 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:21.3378937Z 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:21.3381298Z 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:21.3383657Z 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:21.3386236Z 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:21.3388652Z 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:21.3390401Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/partition 2025-06-05T23:55:21.3392207Z 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:21.3394445Z 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:21.3396309Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/serialization 2025-06-05T23:55:21.3398292Z 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:21.3400954Z 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:21.3402826Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/test 2025-06-05T23:55:21.3404352Z 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:21.3406569Z 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:21.3408596Z 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:21.3410853Z 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:21.3412886Z 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:21.3415001Z 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:21.3417215Z 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:21.3418819Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/mps/utils 2025-06-05T23:55:21.3420544Z 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:21.3422532Z 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:21.3424117Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:55:21.3425380Z copying src/executorch/backends/arm/_passes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/_passes 2025-06-05T23:55:21.3437157Z 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:21.3439264Z 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:21.3441443Z 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:21.3443347Z 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:21.3445128Z 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:21.3446959Z 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:21.3448780Z 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:21.3450683Z 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:21.3452439Z 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:21.3454333Z 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:21.3456216Z 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:21.3458290Z 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:21.3460299Z 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:21.3462338Z 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:21.3464246Z 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:21.3466122Z 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:21.3468164Z 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:21.3470086Z 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:21.3486594Z 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:21.3489595Z 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:21.3492537Z 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:21.3495503Z 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:21.3498529Z 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:21.3501540Z 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:21.3504646Z 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:21.3507679Z 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:21.3510700Z 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:21.3513610Z 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:21.3516459Z 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:21.3519319Z 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:21.3522245Z 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:21.3525274Z 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:21.3528251Z 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:21.3531122Z 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:21.3534218Z 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:21.3537495Z 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:21.3540558Z 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:21.3543488Z 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:21.3546467Z 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:21.3549627Z 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:21.3552163Z 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:21.3555056Z 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:21.3557866Z 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:21.3560826Z 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:21.3563708Z 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:21.3566474Z 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:21.3569317Z 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:21.3572216Z 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:21.3575270Z 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:21.3578216Z 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:21.3581151Z 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:21.3583699Z 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:21.3585298Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operator_support 2025-06-05T23:55:21.3586926Z 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:21.3589051Z 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:21.3591245Z 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:21.3593279Z 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:21.3595379Z 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:21.3597724Z 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:21.3599619Z 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:21.3601721Z 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:21.3603776Z 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:21.3605730Z 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:21.3608070Z 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:21.3609705Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:21.3610983Z copying src/executorch/backends/arm/operators/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/operators 2025-06-05T23:55:21.3612863Z 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:21.3614671Z 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:21.3616231Z 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:21.3617844Z 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:21.3619727Z 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:21.3621430Z 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:21.3623097Z 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:21.3624852Z 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:21.3626505Z 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:21.3628475Z 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:21.3630445Z 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:21.3632426Z 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:21.3634234Z 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:21.3635936Z 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:21.3637693Z 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:21.3639545Z 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:21.3641593Z 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:21.3644271Z 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:21.3646939Z 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:21.3649608Z 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:21.3651884Z 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:21.3654703Z 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:21.3657589Z 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:21.3660485Z 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:21.3663329Z 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:21.3666090Z 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:21.3668982Z 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:21.3671629Z 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:21.3674480Z 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:21.3677376Z 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:21.3679555Z 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:21.3681202Z 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:21.3682835Z 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:21.3684415Z 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:21.3686191Z 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:21.3688312Z 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:21.3691091Z 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:21.3693848Z 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:21.3696607Z 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:21.3699423Z 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:21.3702251Z 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:21.3705400Z 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:21.3708645Z 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:21.3711703Z 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:21.3714807Z 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:21.3717785Z 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:21.3720581Z 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:21.3723626Z 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:21.3726736Z 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:21.3735282Z 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:21.3738012Z 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:21.3740192Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/quantizer 2025-06-05T23:55:21.3742334Z copying src/executorch/backends/arm/quantizer/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/quantizer 2025-06-05T23:55:21.3745225Z 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:21.3748311Z 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:21.3751486Z 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:21.3754704Z 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:21.3757061Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/scripts 2025-06-05T23:55:21.3759278Z 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:21.3761476Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test 2025-06-05T23:55:21.3763510Z copying src/executorch/backends/arm/test/common.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test 2025-06-05T23:55:21.3766111Z copying src/executorch/backends/arm/test/conftest.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test 2025-06-05T23:55:21.3768755Z 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:21.3771428Z 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:21.3773468Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/util 2025-06-05T23:55:21.3775613Z 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:21.3777795Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/misc 2025-06-05T23:55:21.3780144Z 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:21.3783582Z 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:21.3786870Z 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:21.3790000Z 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:21.3793052Z 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:21.3796141Z 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:21.3799297Z 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:21.3802448Z 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:21.3805649Z 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:21.3809015Z 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:21.3812259Z 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:21.3814543Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/models 2025-06-05T23:55:21.3816887Z 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:21.3819984Z 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:21.3823066Z 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:21.3826035Z 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:21.3829122Z 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:21.3832226Z 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:21.3835423Z 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:21.3838605Z 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:21.3841698Z 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:21.3844836Z 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:21.3847943Z 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:21.3850216Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/ops 2025-06-05T23:55:21.3852377Z 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:21.3855488Z 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:21.3858329Z 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:21.3861155Z 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:21.3863938Z 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:21.3866721Z 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:21.3869573Z 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:21.3872362Z 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:21.3875183Z 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:21.3878101Z 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:21.3880955Z 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:21.3883772Z 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:21.3886702Z 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:21.3889500Z 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:21.3891199Z 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:21.3893043Z 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:21.3895920Z 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:21.3898748Z 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:21.3901570Z 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:21.3904476Z 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:21.3907327Z 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:21.3910334Z 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:21.3913218Z 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:21.3916111Z 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:21.3918854Z 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:21.3921815Z 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:21.3924721Z 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:21.3927517Z 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:21.3930328Z 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:21.3932937Z 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:21.3935675Z 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:21.3938420Z 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:21.3941275Z 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:21.3944136Z 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:21.3946594Z 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:21.3949630Z 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:21.3952532Z 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:21.3955440Z 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:21.3958296Z 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:21.3961086Z 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:21.3964064Z 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:21.3966446Z 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:21.3968819Z 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:21.3971593Z 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:21.3973428Z 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:21.3975051Z 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:21.3976616Z 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:21.3978632Z 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:21.3981028Z 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:21.3982650Z 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:21.3984370Z 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:21.3986399Z 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:21.3988043Z 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:21.3989592Z 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:21.3991118Z 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:21.3992659Z 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:21.3994199Z 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:21.3995790Z 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:21.3997369Z 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:21.3998962Z 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:21.4000566Z 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:21.4002127Z 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:21.4003727Z 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:21.4005307Z 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:21.4006940Z 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:21.4008570Z 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:21.4010157Z 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:21.4011719Z 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:21.4013315Z 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:21.4014951Z 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:21.4016633Z 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:21.4018252Z 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:21.4019796Z 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:21.4021362Z 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:21.4022949Z 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:21.4024651Z 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:21.4026292Z 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:21.4027946Z 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:21.4029522Z 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:21.4056815Z 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:21.4059483Z 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:21.4062215Z 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:21.4065072Z 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:21.4068012Z 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:21.4071062Z 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:21.4074161Z 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:21.4077094Z 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:21.4079761Z 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:21.4082576Z 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:21.4085573Z 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:21.4087770Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/passes 2025-06-05T23:55:21.4090222Z 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:21.4093403Z 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:21.4096652Z 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:21.4100021Z 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:21.4103343Z 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:21.4106613Z 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:21.4110066Z 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:21.4113477Z 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:21.4116813Z 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:21.4120531Z 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:21.4123581Z 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:21.4126877Z 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:21.4129514Z 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:21.4132689Z 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:21.4135829Z 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:21.4138454Z 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:21.4140399Z 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:21.4143069Z 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:21.4146252Z 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:21.4148284Z 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:21.4151047Z 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:21.4154316Z 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:21.4156529Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/quantizer 2025-06-05T23:55:21.4157965Z 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:21.4159373Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/tester 2025-06-05T23:55:21.4160628Z 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:21.4162443Z 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:21.4165469Z 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:21.4168478Z 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:21.4170326Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/test/tosautil 2025-06-05T23:55:21.4172286Z 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:21.4174795Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib 2025-06-05T23:55:21.4177646Z 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:21.4180895Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/serializer 2025-06-05T23:55:21.4184481Z 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:21.4189540Z 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:21.4191921Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:55:21.4194169Z 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:21.4198963Z 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:21.4203116Z 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:21.4206091Z 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:21.4208680Z 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:21.4211308Z 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:21.4213884Z 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:21.4216391Z 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:21.4218875Z 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:21.4221520Z 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:21.4224168Z 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:21.4226942Z 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:21.4231563Z 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:21.4234110Z 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:21.4236843Z 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:21.4239499Z 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:21.4244032Z 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:21.4248656Z 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:21.4253381Z 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:21.4258054Z 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:21.4262592Z 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:21.4267157Z 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:21.4271841Z 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:21.4276365Z 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:21.4280971Z 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:21.4285330Z 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:21.4289337Z 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:21.4293874Z 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:21.4298370Z 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:21.4301650Z 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:21.4304566Z 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:21.4307569Z 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:21.4310912Z 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:21.4315256Z 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:21.4317606Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/test/scripts 2025-06-05T23:55:21.4320495Z 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:21.4323757Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/test/scripts/xunit 2025-06-05T23:55:21.4325817Z 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:21.4327882Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers 2025-06-05T23:55:21.4330834Z 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:21.4334700Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conan 2025-06-05T23:55:21.4337849Z 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:21.4341905Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens 2025-06-05T23:55:21.4346104Z 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:21.4350744Z 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:21.4353101Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python 2025-06-05T23:55:21.4355404Z 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:21.4358352Z 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:21.4360630Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/samples 2025-06-05T23:55:21.4362956Z 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:21.4365428Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts 2025-06-05T23:55:21.4367916Z 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:21.4371991Z 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:21.4375712Z 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:21.4379074Z 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:21.4382312Z 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:21.4384642Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:55:21.4387212Z 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:21.4390674Z 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:21.4394014Z 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:21.4396652Z 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:21.4399526Z 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:21.4402303Z 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:21.4404959Z 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:21.4407647Z 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:21.4410476Z 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:21.4413279Z 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:21.4415974Z 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:21.4418907Z 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:21.4421536Z 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:21.4423954Z 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:21.4426651Z 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:21.4429268Z 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:21.4431741Z 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:21.4434411Z 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:21.4437203Z 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:21.4439870Z 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:21.4442493Z 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:21.4444944Z 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:21.4447620Z 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:21.4450307Z 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:21.4452937Z 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:21.4455414Z 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:21.4457982Z 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:21.4461284Z 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:21.4464710Z 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:21.4468214Z 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:21.4470763Z 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:21.4473276Z 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:21.4475989Z 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:21.4478660Z 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:21.4481316Z 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:21.4483812Z 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:21.4486543Z 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:21.4489295Z 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:21.4491860Z 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:21.4496219Z 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:21.4500182Z 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:21.4503320Z 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:21.4506396Z 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:21.4510671Z 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:21.4514761Z 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:21.4519251Z 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:21.4522420Z 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:21.4525322Z 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:21.4529232Z 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:21.4532978Z 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:21.4536449Z 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:21.4539583Z 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:21.4543452Z 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:21.4548772Z 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:21.4555372Z 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:21.4560304Z 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:21.4564577Z 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:21.4568252Z 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:21.4571033Z 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:21.4573967Z 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:21.4578003Z 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:21.4581805Z 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:21.4584678Z 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:21.4587860Z 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:21.4591627Z 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:21.4595487Z 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:21.4599458Z 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:21.4603366Z 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:21.4609997Z 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:21.4616821Z 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:21.4623654Z 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:21.4630193Z 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:21.4637067Z 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:21.4644304Z 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:21.4651144Z 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:21.4656096Z 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:21.4660252Z 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:21.4664424Z 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:21.4668533Z 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:21.4672314Z 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:21.4676254Z 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:21.4680209Z 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:21.4684172Z 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:21.4688269Z 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:21.4692297Z 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:21.4695411Z 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:21.4698680Z 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:21.4702629Z 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:21.4705605Z 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:21.4709182Z 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:21.4713593Z 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:21.4718384Z 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:21.4722929Z 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:21.4727399Z 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:21.4731696Z 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:21.4735821Z 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:21.4739228Z 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:21.4742500Z 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:21.4746877Z 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:21.4751961Z 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:21.4756286Z 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:21.4760511Z 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:21.4763765Z 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:21.4766396Z 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:21.4769684Z 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:21.4772993Z 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:21.4776493Z 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:21.4780034Z 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:21.4783710Z 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:21.4787696Z 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:21.4791455Z 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:21.4794924Z 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:21.4798524Z 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:21.4801901Z 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:21.4805284Z 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:21.4809748Z 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:21.4813790Z 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:21.4817985Z 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:21.4822264Z 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:21.4826288Z 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:21.4830529Z 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:21.4834663Z 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:21.4838956Z 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:21.4843271Z 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:21.4847354Z 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:21.4851614Z 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:21.4855812Z 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:21.4858473Z 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:21.4861218Z 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:21.4864686Z 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:21.4868180Z 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:21.4870839Z 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:21.4873858Z 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:21.4876760Z 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:21.4879350Z 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:21.4882807Z 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:21.4886396Z 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:21.4889592Z 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:21.4892778Z 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:21.4895895Z 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:21.4898249Z 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:21.4900604Z 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:21.4903580Z 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:21.4908519Z 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:21.4914762Z 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:21.4920900Z 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:21.4924189Z 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:21.4928176Z 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:21.4932601Z 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:21.4937247Z 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:21.4941324Z 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:21.4944809Z 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:21.4948462Z 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:21.4951971Z 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:21.4955437Z 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:21.4958850Z 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:21.4962233Z 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:21.4965636Z 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:21.4969721Z 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:21.4975794Z 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:21.4981881Z 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:21.4988294Z 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:21.4994487Z 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:21.5001012Z 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:21.5007088Z 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:21.5012443Z 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:21.5016615Z 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:21.5023029Z 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:21.5029262Z 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:21.5035282Z 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:21.5041463Z 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:21.5046363Z 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:21.5051208Z 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:21.5057329Z 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:21.5062093Z 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:21.5067162Z 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:21.5071590Z 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:21.5075395Z 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:21.5081200Z 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:21.5088315Z 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:21.5095279Z 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:21.5101748Z 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:21.5106026Z 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:21.5111214Z 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:21.5117658Z 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:21.5122903Z 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:21.5127321Z 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:21.5130433Z 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:21.5133242Z 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:21.5137384Z 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:21.5140882Z 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:21.5144163Z 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:21.5148858Z 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:21.5153495Z 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:21.5157825Z 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:21.5162494Z 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:21.5165118Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:55:21.5166398Z copying src/executorch/backends/cadence/aot/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:55:21.5168107Z copying src/executorch/backends/cadence/aot/compiler.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:55:21.5169913Z 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:21.5171532Z 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:21.5173291Z 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:21.5175196Z 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:21.5177049Z 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:21.5178881Z 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:21.5180616Z 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:21.5182362Z 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:21.5184130Z 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:21.5186079Z copying src/executorch/backends/cadence/aot/passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:55:21.5187969Z 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:21.5189610Z 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:21.5191181Z 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:21.5192951Z 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:21.5194759Z 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:21.5196675Z copying src/executorch/backends/cadence/aot/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:55:21.5198511Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/runtime 2025-06-05T23:55:21.5200653Z copying src/executorch/backends/cadence/runtime/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/runtime 2025-06-05T23:55:21.5203559Z copying src/executorch/backends/cadence/runtime/executor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/runtime 2025-06-05T23:55:21.5206506Z copying src/executorch/backends/cadence/runtime/runtime.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/runtime 2025-06-05T23:55:21.5209439Z copying src/executorch/backends/cadence/runtime/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/runtime 2025-06-05T23:55:21.5211676Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils 2025-06-05T23:55:21.5213897Z 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:21.5216801Z 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:21.5219732Z 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:21.5222139Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/quantizer 2025-06-05T23:55:21.5224672Z 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:21.5228109Z 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:21.5231558Z 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:21.5234964Z 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:21.5237395Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot/tests 2025-06-05T23:55:21.5239942Z 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:21.5243140Z 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:21.5246427Z 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:21.5249698Z 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:21.5251993Z 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:21.5255270Z 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:21.5258604Z 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:21.5261988Z 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:21.5265337Z 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:21.5267980Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO 2025-06-05T23:55:21.5270385Z 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:21.5272909Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/calibrator 2025-06-05T23:55:21.5275710Z 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:21.5279208Z 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:21.5282082Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/examples 2025-06-05T23:55:21.5284750Z 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:21.5288714Z 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:21.5292499Z 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:21.5295025Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto 2025-06-05T23:55:21.5296523Z 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:21.5298369Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen 2025-06-05T23:55:21.5301353Z 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:21.5304666Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/specdb 2025-06-05T23:55:21.5307563Z 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:21.5311434Z 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:21.5315343Z 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:21.5319251Z 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:21.5322409Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple 2025-06-05T23:55:21.5325806Z 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:21.5329372Z 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:21.5332075Z 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:21.5334094Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/argument 2025-06-05T23:55:21.5336001Z 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:21.5338620Z 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:21.5341310Z 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:21.5343918Z 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:21.5346063Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute 2025-06-05T23:55:21.5348350Z 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:21.5351111Z 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:21.5353658Z 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:21.5356272Z 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:21.5358400Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/specs 2025-06-05T23:55:21.5360580Z 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:21.5363206Z 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:21.5365113Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/utils 2025-06-05T23:55:21.5366934Z 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:21.5369848Z 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:21.5371988Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable 2025-06-05T23:55:21.5374176Z 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:21.5377133Z 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:21.5379878Z 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:21.5382645Z 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:21.5385570Z 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:21.5388473Z 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:21.5391264Z 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:21.5393381Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:55:21.5395372Z 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:21.5397738Z 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:21.5400469Z 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:21.5403038Z 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:21.5405556Z 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:21.5408075Z 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:21.5410834Z 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:21.5413277Z 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:21.5415768Z 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:21.5418155Z 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:21.5420609Z 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:21.5423334Z 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:21.5425961Z 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:21.5428834Z 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:21.5444403Z 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:21.5446308Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/ops 2025-06-05T23:55:21.5447573Z 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:21.5449048Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/passes 2025-06-05T23:55:21.5450416Z 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:21.5451771Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cortex_m/test 2025-06-05T23:55:21.5453182Z 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:21.5454776Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_backend_delegate_passes 2025-06-05T23:55:21.5456808Z 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:21.5459390Z 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:21.5461388Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/example/example_operators 2025-06-05T23:55:21.5462949Z 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:21.5465019Z 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:21.5466882Z 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:21.5469435Z 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:21.5471540Z 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:21.5473720Z 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:21.5475900Z 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:21.5477911Z 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:21.5479845Z 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:21.5481896Z 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:21.5483315Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/_passes 2025-06-05T23:55:21.5484785Z copying src/executorch/backends/mediatek/_passes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/_passes 2025-06-05T23:55:21.5486789Z 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:21.5488462Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/quantizer 2025-06-05T23:55:21.5489792Z copying src/executorch/backends/mediatek/quantizer/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/quantizer 2025-06-05T23:55:21.5491909Z copying src/executorch/backends/mediatek/quantizer/annotator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/quantizer 2025-06-05T23:55:21.5494629Z copying src/executorch/backends/mediatek/quantizer/qconfig.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/quantizer 2025-06-05T23:55:21.5497315Z copying src/executorch/backends/mediatek/quantizer/quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/mediatek/quantizer 2025-06-05T23:55:21.5498695Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/aten_passes 2025-06-05T23:55:21.5500182Z 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:21.5502086Z 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:21.5504164Z 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:21.5505496Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend 2025-06-05T23:55:21.5506968Z 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:21.5508688Z 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:21.5510571Z 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:21.5512420Z 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:21.5513807Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/quantizer 2025-06-05T23:55:21.5515308Z 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:21.5517317Z copying src/executorch/backends/nxp/quantizer/patterns.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/quantizer 2025-06-05T23:55:21.5518914Z copying src/executorch/backends/nxp/quantizer/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/quantizer 2025-06-05T23:55:21.5520307Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-06-05T23:55:21.5521689Z 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:21.5523630Z copying src/executorch/backends/nxp/tests/executors.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-06-05T23:55:21.5525275Z 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:21.5527140Z copying src/executorch/backends/nxp/tests/models.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests 2025-06-05T23:55:21.5528746Z 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:21.5530497Z 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:21.5532278Z 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:21.5534009Z 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:21.5535674Z 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:21.5537345Z 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:21.5538942Z 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:21.5540177Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir 2025-06-05T23:55:21.5541511Z 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:21.5543287Z 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:21.5544967Z 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:21.5546651Z 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:21.5548116Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter 2025-06-05T23:55:21.5549581Z 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:21.5551614Z 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:21.5553822Z 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:21.5556021Z 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:21.5557835Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib 2025-06-05T23:55:21.5559249Z 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:21.5560930Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator 2025-06-05T23:55:21.5562523Z 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:21.5564761Z 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:21.5566687Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer 2025-06-05T23:55:21.5568280Z 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:21.5570637Z 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:21.5572874Z 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:21.5575040Z 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:21.5577231Z 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:21.5579644Z 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:21.5581289Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/builder 2025-06-05T23:55:21.5583228Z 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:21.5586037Z 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:21.5588697Z 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:21.5591268Z 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:21.5593363Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/conversion 2025-06-05T23:55:21.5595425Z 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:21.5597884Z 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:21.5600446Z 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:21.5603030Z 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:21.5605353Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters 2025-06-05T23:55:21.5607470Z 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:21.5609532Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:55:21.5612037Z 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:21.5615183Z 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:21.5618248Z 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:21.5621309Z 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:21.5650498Z 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:21.5653924Z 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:21.5657387Z 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:21.5660562Z 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:21.5663971Z 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:21.5667179Z 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:21.5670458Z 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:21.5673672Z 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:21.5676930Z 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:21.5679290Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/converter/node_converters/shared 2025-06-05T23:55:21.5681611Z 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:21.5684590Z 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:21.5687642Z 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:21.5690520Z 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:21.5692770Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:55:21.5694641Z 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:21.5697025Z 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:21.5699516Z 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:21.5702090Z 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:21.5704486Z 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:21.5706749Z 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:21.5709521Z 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:21.5712069Z 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:21.5714658Z 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:21.5717176Z 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:21.5719705Z 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:21.5722546Z 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:21.5725368Z 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:21.5727877Z 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:21.5730311Z 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:21.5732759Z 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:21.5735343Z 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:21.5737694Z 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:21.5740104Z 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:21.5742529Z 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:21.5744929Z 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:21.5747325Z 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:21.5749729Z 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:21.5752089Z 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:21.5754624Z 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:21.5757133Z 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:21.5759567Z 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:21.5761935Z 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:21.5764606Z 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:21.5766741Z 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:21.5769050Z 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:21.5771322Z 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:21.5773615Z 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:21.5775964Z 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:21.5778251Z 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:21.5780665Z 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:21.5782868Z 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:21.5785541Z 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:21.5786549Z 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:21.5787470Z 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:21.5788861Z 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:21.5790114Z 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:21.5791292Z 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:21.5792258Z 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:21.5793475Z 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:21.5794504Z 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:21.5795543Z 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:21.5796525Z 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:21.5797589Z 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:21.5798736Z 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:21.5800065Z 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:21.5801081Z 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:21.5802161Z 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:21.5803120Z 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:21.5804303Z 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:21.5805269Z 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:21.5806375Z 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:21.5807468Z 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:21.5808937Z 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:21.5809998Z 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:21.5811283Z 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:21.5812210Z 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:21.5813390Z 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:21.5814381Z 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:21.5815681Z 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:21.5816758Z 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:21.5817801Z 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:21.5818848Z 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:21.5819907Z 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:21.5821068Z 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:21.5822044Z 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:21.5823385Z 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:21.5824510Z 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:21.5825942Z 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:21.5827029Z 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:21.5828228Z 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:21.5829300Z 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:21.5830495Z 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:21.5831573Z 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:21.5877243Z 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:21.5878314Z 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:21.5879287Z 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:21.5880291Z 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:21.5881387Z 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:21.5882648Z 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:21.5883877Z 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:21.5885334Z 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:21.5886458Z 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:21.5887473Z 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:21.5888386Z 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:21.5889487Z 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:21.5890424Z 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:21.5891506Z 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:21.5892455Z 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:21.5893455Z 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:21.5894471Z 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:21.5895530Z 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:21.5896556Z 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:21.5897652Z 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:21.5898765Z 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:21.5899920Z 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:21.5901072Z 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:21.5902206Z 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:21.5903221Z 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:21.5904439Z 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:21.5905568Z 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:21.5906621Z 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:21.5907626Z 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:21.5908720Z 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:21.5909741Z 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:21.5911320Z 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:21.5913083Z 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:21.5914773Z 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:21.5916484Z 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:21.5918277Z 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:21.5919971Z 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:21.5921660Z 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:21.5923426Z 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:21.5925230Z 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:21.5926928Z 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:21.5928677Z 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:21.5930712Z 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:21.5932541Z 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:21.5934240Z 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:21.5935926Z 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:21.5937679Z 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:21.5939395Z 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:21.5941155Z 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:21.5990117Z 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:21.5991955Z 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:21.5993774Z 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:21.5995593Z 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:21.5997442Z 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:21.5999149Z 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:21.6000888Z 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:21.6002607Z 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:21.6004145Z 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:21.6005137Z 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:21.6006263Z 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:21.6007311Z 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:21.6008403Z 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:21.6009447Z 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:21.6010760Z 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:21.6011847Z 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:21.6013597Z 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:21.6015497Z 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:21.6017485Z 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:21.6019380Z 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:21.6021242Z 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:21.6023066Z 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:21.6024984Z 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:21.6026860Z 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:21.6028946Z 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:21.6030985Z 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:21.6032886Z 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:21.6034763Z 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:21.6036610Z 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:21.6038568Z 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:21.6040401Z 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:21.6042236Z 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:21.6043878Z 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:21.6045556Z 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:21.6047312Z 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:21.6049052Z 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:21.6050734Z 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:21.6052425Z 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:21.6054130Z 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:21.6055977Z 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:21.6057747Z 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:21.6059428Z 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:21.6061076Z 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:21.6063104Z 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:21.6064822Z 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:21.6066564Z 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:21.6068422Z 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:21.6070357Z 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:21.6091283Z 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:21.6093198Z 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:21.6094984Z 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:21.6096766Z 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:21.6098474Z 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:21.6100164Z 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:21.6101892Z 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:21.6103651Z 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:21.6104900Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:55:21.6106961Z 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:21.6109179Z 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:21.6111339Z 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:21.6113501Z 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:21.6115590Z 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:21.6117771Z 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:21.6120042Z 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:21.6122244Z 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:21.6124688Z 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:21.6127017Z 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:21.6129244Z 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:21.6131489Z 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:21.6133669Z 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:21.6135928Z 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:21.6138098Z 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:21.6140274Z 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:21.6142656Z 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:21.6144897Z 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:21.6147188Z 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:21.6149474Z 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:21.6151604Z 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:21.6153755Z 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:21.6155837Z 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:21.6158028Z 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:21.6160333Z 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:21.6162455Z 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:21.6164581Z 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:21.6166738Z 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:21.6168740Z 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:21.6170954Z 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:21.6173180Z 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:21.6181980Z 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:21.6184237Z 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:21.6186920Z 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:21.6189238Z 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:21.6191449Z 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:21.6193686Z 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:21.6195934Z 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:21.6198047Z 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:21.6200175Z 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:21.6201858Z 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:21.6204054Z 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:21.6206217Z 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:21.6208420Z 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:21.6209797Z 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:21.6211471Z 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:21.6213731Z 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:21.6215514Z 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:21.6217381Z 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:21.6219561Z 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:21.6222050Z 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:21.6224210Z 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:21.6225838Z 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:21.6227082Z 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:21.6229284Z 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:21.6231504Z 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:21.6233715Z 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:21.6235922Z 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:21.6238125Z 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:21.6240425Z 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:21.6242810Z 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:21.6245082Z 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:21.6247218Z 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:21.6249334Z 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:21.6251448Z 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:21.6253576Z 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:21.6255722Z 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:21.6258159Z 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:21.6260410Z 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:21.6286267Z 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:21.6288400Z 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:21.6290575Z 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:21.6292910Z 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:21.6295109Z 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:21.6297128Z 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:21.6299278Z 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:21.6301440Z 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:21.6303443Z 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:21.6305166Z 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:21.6307394Z 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:21.6309944Z 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:21.6312403Z 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:21.6313412Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/custom_options 2025-06-05T23:55:21.6314960Z 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:21.6316110Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_generator/meta 2025-06-05T23:55:21.6318656Z 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:21.6320494Z 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:21.6322311Z 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:21.6323380Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:55:21.6325446Z 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:21.6327688Z 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:21.6330117Z 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:21.6332391Z 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:21.6334671Z 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:21.6337107Z 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:21.6339462Z 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:21.6341548Z 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:21.6342817Z 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:21.6344227Z 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:21.6345722Z 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:21.6348051Z 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:21.6350326Z 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:21.6352636Z 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:21.6355289Z 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:21.6357862Z 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:21.6358812Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:55:21.6360863Z 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:21.6363006Z 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:21.6365027Z 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:21.6410560Z 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:21.6412590Z 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:21.6414673Z 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:21.6416701Z 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:21.6418738Z 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:21.6420789Z 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:21.6421478Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/quantizer 2025-06-05T23:55:21.6422859Z copying src/executorch/backends/openvino/quantizer/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/quantizer 2025-06-05T23:55:21.6424314Z copying src/executorch/backends/openvino/quantizer/quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/quantizer 2025-06-05T23:55:21.6424976Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests 2025-06-05T23:55:21.6426155Z 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:21.6426574Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/models 2025-06-05T23:55:21.6427482Z 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:21.6427942Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/openvino/tests/ops 2025-06-05T23:55:21.6428969Z 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:21.6429839Z 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:21.6430634Z 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:21.6431433Z 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:21.6432243Z 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:21.6433084Z 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:21.6433873Z 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:21.6435042Z 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:21.6436466Z 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:21.6437870Z 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:21.6439255Z 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:21.6439933Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:55:21.6441238Z copying src/executorch/backends/qualcomm/_passes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:55:21.6442778Z 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:21.6444208Z 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:21.6445593Z 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:21.6446968Z 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:21.6448329Z 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:21.6449795Z 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:21.6451261Z 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:21.6452693Z 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:21.6454085Z 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:21.6455473Z 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:21.6456899Z 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:21.6458495Z 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:21.6460118Z 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:21.6461528Z 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:21.6462923Z 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:21.6464456Z 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:21.6465918Z 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:21.6467238Z 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:21.6468776Z 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:21.6470320Z 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:21.6471620Z 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:21.6472976Z 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:21.6474419Z 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:21.6475831Z 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:21.6477381Z 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:21.6478792Z 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:21.6480301Z 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:21.6542212Z 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:21.6543150Z 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:21.6544159Z 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:21.6545090Z 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:21.6546109Z 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:21.6547035Z 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:21.6548207Z 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:21.6549241Z 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:21.6550263Z copying src/executorch/backends/qualcomm/_passes/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/_passes 2025-06-05T23:55:21.6550719Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:21.6551473Z copying src/executorch/backends/qualcomm/builders/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:21.6552538Z 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:21.6553361Z 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:21.6554361Z 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:21.6555291Z 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:21.6556062Z 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:21.6557037Z 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:21.6557873Z 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:21.6558718Z 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:21.6559742Z 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:21.6560630Z 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:21.6561609Z 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:21.6562358Z 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:21.6563299Z 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:21.6564182Z 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:21.6565017Z 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:21.6566005Z 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:21.6566782Z 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:21.6567755Z 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:21.6568699Z 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:21.6569518Z 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:21.6570611Z 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:21.6571462Z 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:21.6572464Z 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:21.6573276Z 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:21.6574186Z 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:21.6575136Z 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:21.6575917Z 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:21.6576936Z 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:21.6577745Z 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:21.6578590Z 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:21.6579617Z 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:21.6580344Z 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:21.6581419Z 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:21.6582283Z 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:21.6583219Z 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:21.6584155Z 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:21.6584956Z 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:21.6586170Z 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:21.6587007Z 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:21.6587962Z 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:21.6588936Z 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:21.6589675Z 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:21.6590729Z 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:21.6591724Z 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:21.6592808Z 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:21.6593653Z 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:21.6673045Z 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:21.6674083Z 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:21.6674868Z 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:21.6675684Z 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:21.6676637Z 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:21.6677426Z 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:21.6678174Z 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:21.6679068Z 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:21.6679888Z 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:21.6680938Z 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:21.6681699Z 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:21.6682670Z 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:21.6683620Z 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:21.6684414Z 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:21.6685375Z 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:21.6686158Z 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:21.6686924Z 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:21.6687690Z 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:21.6688504Z 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:21.6689390Z 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:21.6690315Z 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:21.6691474Z 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:21.6692341Z 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:21.6693385Z 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:21.6694165Z 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:21.6695014Z 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:21.6695833Z 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:21.6696596Z 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:21.6697372Z 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:21.6698130Z 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:21.6698875Z 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:21.6699654Z 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:21.6700403Z 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:21.6701341Z 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:21.6702204Z 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:21.6703209Z 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:21.6704072Z 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:21.6705136Z 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:21.6706036Z 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:21.6706978Z 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:21.6707924Z 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:21.6708765Z 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:21.6709524Z copying src/executorch/backends/qualcomm/builders/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/builders 2025-06-05T23:55:21.6709920Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/debugger 2025-06-05T23:55:21.6710767Z copying src/executorch/backends/qualcomm/debugger/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/debugger 2025-06-05T23:55:21.6711373Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/partition 2025-06-05T23:55:21.6712364Z 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:21.6713283Z 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:21.6714230Z copying src/executorch/backends/qualcomm/partition/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/partition 2025-06-05T23:55:21.6714814Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer 2025-06-05T23:55:21.6715707Z copying src/executorch/backends/qualcomm/quantizer/annotators.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer 2025-06-05T23:55:21.6716541Z 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:21.6717536Z copying src/executorch/backends/qualcomm/quantizer/qconfig.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer 2025-06-05T23:55:21.6718434Z copying src/executorch/backends/qualcomm/quantizer/quantizer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer 2025-06-05T23:55:21.6718878Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/serialization 2025-06-05T23:55:21.6719899Z 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:21.6720834Z 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:21.6721256Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/tests 2025-06-05T23:55:21.6830759Z copying src/executorch/backends/qualcomm/tests/models.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/tests 2025-06-05T23:55:21.6831596Z 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:21.6832530Z copying src/executorch/backends/qualcomm/tests/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/tests 2025-06-05T23:55:21.6832950Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/utils 2025-06-05T23:55:21.6833703Z copying src/executorch/backends/qualcomm/utils/constants.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/utils 2025-06-05T23:55:21.6834412Z copying src/executorch/backends/qualcomm/utils/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/utils 2025-06-05T23:55:21.6834876Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/quantizer/observers 2025-06-05T23:55:21.6835922Z 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:21.6837157Z 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:21.6837691Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/transforms/test 2025-06-05T23:55:21.6838717Z 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:21.6839712Z 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:21.6840676Z 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:21.6841038Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes 2025-06-05T23:55:21.6841811Z copying src/executorch/backends/vulkan/_passes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/_passes 2025-06-05T23:55:21.6842578Z 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:21.6843358Z 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:21.6844176Z 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:21.6844946Z 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:21.6845766Z 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:21.6846546Z 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:21.6847356Z 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:21.6848515Z 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:21.6849031Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/partitioner 2025-06-05T23:55:21.6850191Z 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:21.6850589Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/quantizer 2025-06-05T23:55:21.6851460Z 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:21.6851955Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime 2025-06-05T23:55:21.6852711Z 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:21.6853100Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/serialization 2025-06-05T23:55:21.6853994Z 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:21.6854881Z 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:21.6855790Z 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:21.6856139Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test 2025-06-05T23:55:21.6856878Z 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:21.6857633Z 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:21.6858423Z 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:21.6859159Z 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:21.6859658Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests 2025-06-05T23:55:21.6860694Z 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:21.6861705Z 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:21.6862807Z 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:21.6863298Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/op_tests/utils 2025-06-05T23:55:21.6864415Z 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:21.6865473Z 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:21.6866644Z 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:21.6867715Z 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:21.6868973Z 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:21.6869863Z 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:21.6870462Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/volk 2025-06-05T23:55:21.6871523Z 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:21.6872088Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-06-05T23:55:21.6873460Z 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:21.6874655Z 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:21.6876033Z 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:21.6877298Z 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:21.6878502Z 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:21.6980570Z 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:21.6982014Z 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:21.6982886Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/spec_tools 2025-06-05T23:55:21.6984414Z 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:21.6985258Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/third-party/VulkanMemoryAllocator/tools/GpuMemDumpVis 2025-06-05T23:55:21.6987048Z 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:21.6987436Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-06-05T23:55:21.6988488Z copying src/executorch/backends/xnnpack/_passes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/_passes 2025-06-05T23:55:21.6989545Z 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:21.6990655Z 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:21.6991620Z 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:21.6992608Z 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:21.6993659Z 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:21.6994598Z 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:21.6995574Z 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:21.6996619Z 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:21.6997539Z 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:21.6998415Z 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:21.6999313Z 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:21.6999871Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:55:21.7000754Z copying src/executorch/backends/xnnpack/operators/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/operators 2025-06-05T23:55:21.7001644Z 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:21.7002640Z 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:21.7003400Z 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:21.7004446Z 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:21.7005266Z 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:21.7006516Z 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:21.7007385Z 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:21.7008170Z 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:21.7008926Z 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:21.7009888Z 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:21.7010721Z 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:21.7011892Z 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:21.7012832Z 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:21.7013810Z 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:21.7014556Z 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:21.7015472Z 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:21.7016336Z 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:21.7017231Z 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:21.7018248Z 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:21.7019166Z 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:21.7019994Z 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:21.7020750Z 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:21.7021861Z 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:21.7022808Z 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:21.7023699Z 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:21.7024582Z 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:21.7025561Z 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:21.7026383Z 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:21.7027389Z 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:21.7028299Z 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:21.7029082Z 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:21.7029882Z 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:21.7030934Z 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:21.7031774Z 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:21.7115605Z 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:21.7116432Z 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:21.7117359Z 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:21.7118270Z 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:21.7119278Z 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:21.7120185Z 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:21.7121121Z 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:21.7122020Z 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:21.7122944Z 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:21.7123903Z 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:21.7124942Z 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:21.7125755Z 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:21.7126556Z 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:21.7127549Z 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:21.7127950Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition 2025-06-05T23:55:21.7128794Z copying src/executorch/backends/xnnpack/partition/configs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition 2025-06-05T23:55:21.7129812Z 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:21.7130219Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/quantizer 2025-06-05T23:55:21.7131293Z 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:21.7132451Z 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:21.7132899Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/serialization 2025-06-05T23:55:21.7133822Z 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:21.7134939Z 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:21.7135301Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test 2025-06-05T23:55:21.7136124Z 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:21.7137071Z 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:21.7137507Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party 2025-06-05T23:55:21.7138483Z 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:21.7138846Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/utils 2025-06-05T23:55:21.7139765Z copying src/executorch/backends/xnnpack/utils/configs.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/utils 2025-06-05T23:55:21.7140521Z 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:21.7141217Z copying src/executorch/backends/xnnpack/utils/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/utils 2025-06-05T23:55:21.7142212Z 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:21.7142655Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/config 2025-06-05T23:55:21.7143516Z 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:21.7144601Z 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:21.7145558Z 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:21.7146564Z 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:21.7147566Z 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:21.7148593Z 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:21.7149189Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/partition/graphs 2025-06-05T23:55:21.7150131Z 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:21.7151081Z 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:21.7151752Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/models 2025-06-05T23:55:21.7152697Z 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:21.7153677Z 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:21.7154598Z 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:21.7155443Z 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:21.7156462Z 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:21.7157372Z 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:21.7158401Z 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:21.7159274Z 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:21.7160100Z 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:21.7161086Z 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:21.7161991Z 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:21.7162911Z 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:21.7163711Z 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:21.7164152Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/ops 2025-06-05T23:55:21.7247822Z 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:21.7249569Z 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:21.7251555Z 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:21.7253658Z 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:21.7255812Z 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:21.7257836Z 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:21.7259968Z 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:21.7261879Z 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:21.7263996Z 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:21.7266098Z 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:21.7267988Z 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:21.7269916Z 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:21.7271813Z 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:21.7273487Z 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:21.7275484Z 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:21.7277351Z 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:21.7279081Z 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:21.7280815Z 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:21.7282732Z 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:21.7285002Z 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:21.7287239Z 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:21.7289186Z 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:21.7290991Z 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:21.7293225Z 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:21.7295147Z 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:21.7296898Z 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:21.7298629Z 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:21.7300369Z 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:21.7302092Z 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:21.7303815Z 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:21.7305501Z 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:21.7307649Z 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:21.7309847Z 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:21.7312292Z 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:21.7314305Z 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:21.7316246Z 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:21.7317947Z 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:21.7319701Z 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:21.7321452Z 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:21.7323163Z 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:21.7324871Z 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:21.7326917Z 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:21.7329095Z 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:21.7330744Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/passes 2025-06-05T23:55:21.7332371Z 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:21.7334584Z 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:21.7336874Z 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:21.7339172Z 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:21.7341477Z 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:21.7343863Z 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:21.7346176Z 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:21.7347984Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/quantizer 2025-06-05T23:55:21.7349849Z 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:21.7352295Z 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:21.7354746Z 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:21.7356651Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/serialization 2025-06-05T23:55:21.7388335Z 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:21.7390945Z 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:21.7392611Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/test/tester 2025-06-05T23:55:21.7393946Z 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:21.7395706Z 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:21.7397097Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FP16 2025-06-05T23:55:21.7398602Z 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:21.7400084Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FXdiv 2025-06-05T23:55:21.7401607Z 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:21.7403122Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo 2025-06-05T23:55:21.7404658Z 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:21.7406234Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/pthreadpool 2025-06-05T23:55:21.7407865Z 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:21.7409550Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FP16/include/fp16 2025-06-05T23:55:21.7411276Z 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:21.7413479Z 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:21.7415672Z 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:21.7417398Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/FP16/test/peachpy 2025-06-05T23:55:21.7419130Z 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:21.7420852Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/scripts 2025-06-05T23:55:21.7422589Z 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:21.7424879Z 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:21.7427283Z 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:21.7429749Z 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:21.7431702Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:55:21.7433489Z 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:21.7435898Z 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:21.7438282Z 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:21.7440745Z 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:21.7443227Z 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:21.7445673Z 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:21.7448029Z 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:21.7450407Z 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:21.7452832Z 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:21.7455205Z 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:21.7457535Z 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:21.7459911Z 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:21.7462360Z 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:21.7464859Z 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:21.7467343Z 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:21.7469809Z 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:21.7472133Z 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:21.7474469Z 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:21.7476924Z 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:21.7479294Z 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:21.7481740Z 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:21.7484205Z 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:21.7486781Z 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:21.7489017Z 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:21.7820038Z 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:21.7822478Z 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:21.7825074Z 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:21.7826964Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo/scripts 2025-06-05T23:55:21.7829105Z 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:21.7832092Z 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:21.7834816Z 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:21.7836881Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo/deps/clog 2025-06-05T23:55:21.7838822Z 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:21.7840584Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api 2025-06-05T23:55:21.7841773Z copying src/executorch/codegen/api/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api 2025-06-05T23:55:21.7843330Z copying src/executorch/codegen/api/custom_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api 2025-06-05T23:55:21.7844860Z copying src/executorch/codegen/api/et_cpp.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api 2025-06-05T23:55:21.7846155Z copying src/executorch/codegen/api/unboxing.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api 2025-06-05T23:55:21.7847403Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test 2025-06-05T23:55:21.7848644Z 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:21.7850489Z copying src/executorch/codegen/test/test_executorch_gen.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test 2025-06-05T23:55:21.7852402Z copying src/executorch/codegen/test/test_executorch_signatures.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test 2025-06-05T23:55:21.7854138Z copying src/executorch/codegen/test/test_executorch_types.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test 2025-06-05T23:55:21.7855741Z copying src/executorch/codegen/test/test_executorch_unboxing.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test 2025-06-05T23:55:21.7857400Z copying src/executorch/codegen/test/test_selective_build.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/test 2025-06-05T23:55:21.7858682Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-06-05T23:55:21.7859734Z copying src/executorch/codegen/tools/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-06-05T23:55:21.7861284Z copying src/executorch/codegen/tools/gen_all_oplist.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-06-05T23:55:21.7862833Z copying src/executorch/codegen/tools/gen_oplist.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-06-05T23:55:21.7864279Z copying src/executorch/codegen/tools/gen_ops_def.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-06-05T23:55:21.7865738Z 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:21.7867426Z copying src/executorch/codegen/tools/merge_yaml.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-06-05T23:55:21.7869135Z copying src/executorch/codegen/tools/yaml_util.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools 2025-06-05T23:55:21.7870239Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api/types 2025-06-05T23:55:21.7871623Z copying src/executorch/codegen/api/types/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api/types 2025-06-05T23:55:21.7873336Z copying src/executorch/codegen/api/types/signatures.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api/types 2025-06-05T23:55:21.7875034Z copying src/executorch/codegen/api/types/types.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/api/types 2025-06-05T23:55:21.7876224Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/codegen/tools/test 2025-06-05T23:55:21.7877438Z 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:21.7879270Z 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:21.7881154Z 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:21.7883233Z 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:21.7884543Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/backend_debug 2025-06-05T23:55:21.7886025Z copying src/executorch/devtools/backend_debug/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/backend_debug 2025-06-05T23:55:21.7887822Z 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:21.7889374Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program 2025-06-05T23:55:21.7890679Z copying src/executorch/devtools/bundled_program/config.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program 2025-06-05T23:55:21.7892548Z copying src/executorch/devtools/bundled_program/core.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program 2025-06-05T23:55:21.7894711Z copying src/executorch/devtools/bundled_program/version.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program 2025-06-05T23:55:21.7896416Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/debug_format 2025-06-05T23:55:21.7897921Z 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:21.7899542Z 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:21.7901014Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump 2025-06-05T23:55:21.7902502Z copying src/executorch/devtools/etdump/schema_flatcc.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump 2025-06-05T23:55:21.7904296Z copying src/executorch/devtools/etdump/serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump 2025-06-05T23:55:21.7905958Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etrecord 2025-06-05T23:55:21.7907339Z copying src/executorch/devtools/etrecord/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etrecord 2025-06-05T23:55:21.7909349Z copying src/executorch/devtools/etrecord/_etrecord.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etrecord 2025-06-05T23:55:21.7910715Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector 2025-06-05T23:55:21.7912121Z copying src/executorch/devtools/inspector/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector 2025-06-05T23:55:21.7913782Z copying src/executorch/devtools/inspector/_inspector.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector 2025-06-05T23:55:21.7915762Z copying src/executorch/devtools/inspector/_inspector_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector 2025-06-05T23:55:21.7931854Z copying src/executorch/devtools/inspector/_intermediate_output_capturer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector 2025-06-05T23:55:21.7933857Z copying src/executorch/devtools/inspector/inspector_cli.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector 2025-06-05T23:55:21.7935291Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/size_analysis_tool 2025-06-05T23:55:21.7936892Z 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:21.7938883Z 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:21.7940264Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/visualization 2025-06-05T23:55:21.7941492Z copying src/executorch/devtools/visualization/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/visualization 2025-06-05T23:55:21.7970286Z copying src/executorch/devtools/visualization/visualization_utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/visualization 2025-06-05T23:55:21.7972105Z copying src/executorch/devtools/visualization/visualization_utils_test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/visualization 2025-06-05T23:55:21.7973768Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/backend_debug/tests 2025-06-05T23:55:21.7975339Z 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:21.7977126Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/schema 2025-06-05T23:55:21.7978647Z 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:21.7980916Z 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:21.7982691Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/serialize 2025-06-05T23:55:21.7984253Z 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:21.7986272Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/test 2025-06-05T23:55:21.7988062Z 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:21.7990180Z 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:21.7991969Z 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:21.7993487Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/util 2025-06-05T23:55:21.7994997Z 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:21.7996546Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/schema/test 2025-06-05T23:55:21.7998314Z 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:21.8000036Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/bundled_program/serialize/test 2025-06-05T23:55:21.8001877Z 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:21.8003509Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump/tests 2025-06-05T23:55:21.8004849Z 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:21.8006351Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etrecord/tests 2025-06-05T23:55:21.8007686Z 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:21.8009179Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/inspector/tests 2025-06-05T23:55:21.8010799Z 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:21.8012811Z 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:21.8014838Z 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:21.8016790Z 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:21.8018761Z 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:21.8020389Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/llm_pte_finetuning 2025-06-05T23:55:21.8021807Z 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:21.8023726Z 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:21.8025867Z 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:21.8027583Z 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:21.8029335Z 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:21.8030852Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models 2025-06-05T23:55:21.8032086Z copying src/executorch/examples/models/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models 2025-06-05T23:55:21.8033487Z copying src/executorch/examples/models/checkpoint.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models 2025-06-05T23:55:21.8035148Z copying src/executorch/examples/models/model_base.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models 2025-06-05T23:55:21.8036888Z copying src/executorch/examples/models/model_factory.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models 2025-06-05T23:55:21.8038298Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/llama 2025-06-05T23:55:21.8039730Z 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:21.8041653Z 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:21.8043635Z 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:21.8045471Z 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:21.8047416Z 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:21.8048766Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/coreml/scripts 2025-06-05T23:55:21.8050323Z 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:21.8052390Z 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:21.8054400Z 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:21.8056560Z 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:21.8058610Z 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:21.8060243Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/apple/mps/scripts 2025-06-05T23:55:21.8061605Z 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:21.8063486Z 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:21.8065098Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/deeplab_v3 2025-06-05T23:55:21.8066524Z 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:21.8068352Z 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:21.8069771Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/edsr 2025-06-05T23:55:21.8071104Z copying src/executorch/examples/models/edsr/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/edsr 2025-06-05T23:55:21.8072719Z copying src/executorch/examples/models/edsr/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/edsr 2025-06-05T23:55:21.8073957Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam 2025-06-05T23:55:21.8075538Z 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:21.8118159Z 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:21.8120069Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/emformer_rnnt 2025-06-05T23:55:21.8121737Z 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:21.8123960Z 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:21.8125490Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/inception_v3 2025-06-05T23:55:21.8126943Z 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:21.8129191Z 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:21.8130699Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/inception_v4 2025-06-05T23:55:21.8132463Z 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:21.8134475Z 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:21.8135954Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:55:21.8137205Z copying src/executorch/examples/models/llama/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:55:21.8139039Z copying src/executorch/examples/models/llama/attention.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:55:21.8141088Z 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:21.8142980Z 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:21.8144921Z 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:21.8146852Z 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:21.8149058Z copying src/executorch/examples/models/llama/fairseq2.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:55:21.8150833Z 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:21.8152820Z 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:21.8155002Z 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:21.8156869Z copying src/executorch/examples/models/llama/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:55:21.8158644Z 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:21.8160442Z copying src/executorch/examples/models/llama/norm.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:55:21.8162051Z copying src/executorch/examples/models/llama/rope.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama 2025-06-05T23:55:21.8163871Z 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:21.8165447Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision 2025-06-05T23:55:21.8166957Z 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:21.8168550Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava 2025-06-05T23:55:21.8169812Z copying src/executorch/examples/models/llava/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava 2025-06-05T23:55:21.8171690Z 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:21.8173456Z copying src/executorch/examples/models/llava/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava 2025-06-05T23:55:21.8174762Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/lstm 2025-06-05T23:55:21.8176121Z copying src/executorch/examples/models/lstm/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/lstm 2025-06-05T23:55:21.8177738Z copying src/executorch/examples/models/lstm/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/lstm 2025-06-05T23:55:21.8179207Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilebert 2025-06-05T23:55:21.8180727Z copying src/executorch/examples/models/mobilebert/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilebert 2025-06-05T23:55:21.8182699Z copying src/executorch/examples/models/mobilebert/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilebert 2025-06-05T23:55:21.8184303Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilenet_v2 2025-06-05T23:55:21.8185944Z 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:21.8187896Z 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:21.8189580Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/mobilenet_v3 2025-06-05T23:55:21.8191075Z 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:21.8192752Z 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:21.8194155Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi-3-mini-lora 2025-06-05T23:55:21.8195943Z 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:21.8197604Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi-3-mini 2025-06-05T23:55:21.8199260Z 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:21.8201243Z 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:21.8203167Z 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:21.8205048Z 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:21.8206916Z 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:21.8208489Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi_4_mini 2025-06-05T23:55:21.8209993Z 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:21.8211789Z 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:21.8213378Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/qwen2_5 2025-06-05T23:55:21.8214613Z 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:21.8216478Z 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:21.8217913Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/qwen3 2025-06-05T23:55:21.8219222Z copying src/executorch/examples/models/qwen3/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/qwen3 2025-06-05T23:55:21.8221067Z 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:21.8222566Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/resnet 2025-06-05T23:55:21.8223840Z copying src/executorch/examples/models/resnet/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/resnet 2025-06-05T23:55:21.8225680Z copying src/executorch/examples/models/resnet/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/resnet 2025-06-05T23:55:21.8227116Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/smollm2 2025-06-05T23:55:21.8242934Z copying src/executorch/examples/models/smollm2/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/smollm2 2025-06-05T23:55:21.8244922Z 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:21.8246455Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/test 2025-06-05T23:55:21.8247719Z copying src/executorch/examples/models/test/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/test 2025-06-05T23:55:21.8249425Z 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:21.8250898Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/torchvision_vit 2025-06-05T23:55:21.8252599Z 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:21.8254842Z 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:21.8256433Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/toy_model 2025-06-05T23:55:21.8258079Z 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:21.8260010Z 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:21.8261674Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/wav2letter 2025-06-05T23:55:21.8262990Z copying src/executorch/examples/models/wav2letter/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/wav2letter 2025-06-05T23:55:21.8264883Z copying src/executorch/examples/models/wav2letter/model.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/wav2letter 2025-06-05T23:55:21.8266660Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/efficient_sam/efficient_sam_core 2025-06-05T23:55:21.8268879Z 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:21.8271550Z 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:21.8274509Z 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:21.8277277Z 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:21.8280108Z 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:21.8282778Z 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:21.8284708Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/evaluate 2025-06-05T23:55:21.8286469Z 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:21.8288575Z 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:21.8290206Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/experimental 2025-06-05T23:55:21.8291851Z 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:21.8293902Z 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:21.8296056Z 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:21.8298365Z 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:21.8299865Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/runner 2025-06-05T23:55:21.8301217Z 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:21.8303279Z 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:21.8305553Z 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:21.8307113Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/source_transformation 2025-06-05T23:55:21.8309054Z 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:21.8311540Z 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:21.8314003Z 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:21.8316357Z 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:21.8318857Z 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:21.8321244Z 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:21.8323725Z 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:21.8326063Z 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:21.8328383Z 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:21.8330918Z 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:21.8333245Z 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:21.8335564Z 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:21.8337920Z 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:21.8340346Z 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:21.8342871Z 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:21.8345426Z 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:21.8348146Z 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:21.8350458Z 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:21.8352290Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/tests 2025-06-05T23:55:21.8391322Z 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:21.8393686Z 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:21.8395653Z 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:21.8397694Z 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:21.8399726Z 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:21.8402448Z 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:21.8405164Z 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:21.8406890Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama/tokenizer 2025-06-05T23:55:21.8409376Z 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:21.8412090Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/preprocess 2025-06-05T23:55:21.8414970Z 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:21.8418831Z 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:21.8422705Z 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:21.8426568Z 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:21.8429569Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/runner 2025-06-05T23:55:21.8432286Z 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:21.8435827Z 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:21.8439415Z 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:21.8442982Z 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:21.8445794Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/text_decoder 2025-06-05T23:55:21.8448734Z 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:21.8451658Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/vision_encoder 2025-06-05T23:55:21.8454672Z 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:21.8458823Z 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:21.8461895Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/text_decoder/test 2025-06-05T23:55:21.8464990Z 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:21.8469166Z 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:21.8472444Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llama3_2_vision/vision_encoder/test 2025-06-05T23:55:21.8475617Z 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:21.8479852Z 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:21.8482851Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/llava/test 2025-06-05T23:55:21.8485469Z 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:21.8488530Z 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:21.8490885Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/moshi/mimi 2025-06-05T23:55:21.8492634Z 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:21.8493909Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:55:21.8495696Z copying src/executorch/exir/_serialize/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:55:21.8497958Z copying src/executorch/exir/_serialize/_cord.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:55:21.8500297Z copying src/executorch/exir/_serialize/_dataclass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:55:21.8502718Z copying src/executorch/exir/_serialize/_flatbuffer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:55:21.8504879Z copying src/executorch/exir/_serialize/_named_data_store.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:55:21.8507327Z copying src/executorch/exir/_serialize/_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:55:21.8509663Z copying src/executorch/exir/_serialize/_serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:55:21.8511827Z copying src/executorch/exir/_serialize/data_serializer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:55:21.8513251Z copying src/executorch/exir/_serialize/padding.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:55:21.8514317Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-06-05T23:55:21.8515606Z copying src/executorch/exir/backend/backend_api.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-06-05T23:55:21.8518005Z copying src/executorch/exir/backend/backend_details.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-06-05T23:55:21.8520777Z copying src/executorch/exir/backend/compile_spec_schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-06-05T23:55:21.8523540Z copying src/executorch/exir/backend/operator_support.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-06-05T23:55:21.8526072Z copying src/executorch/exir/backend/partitioner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-06-05T23:55:21.8528422Z copying src/executorch/exir/backend/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend 2025-06-05T23:55:21.8530254Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/capture 2025-06-05T23:55:21.8532061Z copying src/executorch/exir/capture/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/capture 2025-06-05T23:55:21.8534303Z copying src/executorch/exir/capture/_capture.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/capture 2025-06-05T23:55:21.8536595Z copying src/executorch/exir/capture/_config.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/capture 2025-06-05T23:55:21.8538858Z copying src/executorch/exir/capture/_unlift.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/capture 2025-06-05T23:55:21.8540680Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects 2025-06-05T23:55:21.8542515Z copying src/executorch/exir/dialects/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects 2025-06-05T23:55:21.8544769Z copying src/executorch/exir/dialects/_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects 2025-06-05T23:55:21.8546539Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit 2025-06-05T23:55:21.8560907Z copying src/executorch/exir/emit/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit 2025-06-05T23:55:21.8562447Z copying src/executorch/exir/emit/_emit_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit 2025-06-05T23:55:21.8563968Z copying src/executorch/exir/emit/_emitter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit 2025-06-05T23:55:21.8565017Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator 2025-06-05T23:55:21.8566186Z copying src/executorch/exir/operator/convert.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator 2025-06-05T23:55:21.8567513Z copying src/executorch/exir/operator/manip.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator 2025-06-05T23:55:21.8569032Z copying src/executorch/exir/operator/util.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator 2025-06-05T23:55:21.8570145Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:21.8571241Z copying src/executorch/exir/passes/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:21.8572887Z 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:21.8574463Z copying src/executorch/exir/passes/const_prop_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:21.8575982Z copying src/executorch/exir/passes/constant_prop_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:21.8577611Z 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:21.8579233Z 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:21.8580701Z 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:21.8582371Z 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:21.8584257Z copying src/executorch/exir/passes/external_constants_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:21.8586247Z copying src/executorch/exir/passes/init_mutable_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:21.8587754Z 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:21.8589486Z 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:21.8591147Z copying src/executorch/exir/passes/memory_planning_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:21.8592653Z copying src/executorch/exir/passes/normalize_transpose_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:21.8594357Z 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:21.8595992Z copying src/executorch/exir/passes/pass_registry.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:21.8597446Z 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:21.8599006Z copying src/executorch/exir/passes/quant_fusion_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:21.8600483Z copying src/executorch/exir/passes/quantize_io_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:21.8601952Z 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:21.8603862Z 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:21.8605437Z copying src/executorch/exir/passes/remove_noop_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:21.8607184Z 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:21.8608726Z 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:21.8610770Z 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:21.8612599Z 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:21.8614237Z 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:21.8616009Z 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:21.8617856Z 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:21.8619339Z copying src/executorch/exir/passes/spec_prop_pass.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/passes 2025-06-05T23:55:21.8621022Z 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:21.8622431Z 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:21.8624072Z 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:21.8625441Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program 2025-06-05T23:55:21.8626471Z copying src/executorch/exir/program/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program 2025-06-05T23:55:21.8628458Z copying src/executorch/exir/program/_fake_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program 2025-06-05T23:55:21.8630124Z copying src/executorch/exir/program/_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program 2025-06-05T23:55:21.8631222Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-06-05T23:55:21.8632314Z copying src/executorch/exir/serde/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-06-05T23:55:21.8633613Z copying src/executorch/exir/serde/export_serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-06-05T23:55:21.8635151Z copying src/executorch/exir/serde/schema.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-06-05T23:55:21.8636584Z copying src/executorch/exir/serde/schema_check.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-06-05T23:55:21.8637888Z copying src/executorch/exir/serde/serialize.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-06-05T23:55:21.8639134Z copying src/executorch/exir/serde/union.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/serde 2025-06-05T23:55:21.8640395Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:21.8641771Z copying src/executorch/exir/tests/asr_joiner.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:21.8643169Z copying src/executorch/exir/tests/common.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:21.8644659Z copying src/executorch/exir/tests/control_flow_models.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:21.8646410Z copying src/executorch/exir/tests/dynamic_shape_models.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:21.8648043Z copying src/executorch/exir/tests/models.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:21.8649631Z copying src/executorch/exir/tests/test_arg_validator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:21.8651301Z copying src/executorch/exir/tests/test_capture.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:21.8652825Z copying src/executorch/exir/tests/test_common.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:21.8654355Z copying src/executorch/exir/tests/test_delegate.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:21.8656142Z 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:21.8658164Z 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:21.8660496Z copying src/executorch/exir/tests/test_error.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:21.8662822Z copying src/executorch/exir/tests/test_joint_graph.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:21.8665305Z 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:21.8668072Z 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:21.8670795Z 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:21.8713616Z copying src/executorch/exir/tests/test_memory_planning.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:21.8715319Z copying src/executorch/exir/tests/test_op_convert.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:21.8716824Z copying src/executorch/exir/tests/test_pass_infra.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:21.8718537Z copying src/executorch/exir/tests/test_passes.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:21.8720252Z copying src/executorch/exir/tests/test_print_program.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:21.8721793Z 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:21.8723480Z 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:21.8725140Z copying src/executorch/exir/tests/test_quantization.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:21.8726632Z 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:21.8728334Z 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:21.8730145Z 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:21.8731795Z copying src/executorch/exir/tests/test_serde.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:21.8733129Z copying src/executorch/exir/tests/test_tensor.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:21.8734705Z copying src/executorch/exir/tests/test_tracer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:21.8736282Z copying src/executorch/exir/tests/test_verification.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:21.8737864Z copying src/executorch/exir/tests/test_warnings.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:21.8739447Z copying src/executorch/exir/tests/transformer.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/tests 2025-06-05T23:55:21.8740657Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification 2025-06-05T23:55:21.8741836Z copying src/executorch/exir/verification/arg_validator.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification 2025-06-05T23:55:21.8743528Z copying src/executorch/exir/verification/dev_html.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification 2025-06-05T23:55:21.8745225Z copying src/executorch/exir/verification/interpreter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification 2025-06-05T23:55:21.8745947Z copying src/executorch/exir/verification/verifier.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification 2025-06-05T23:55:21.8746407Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/test 2025-06-05T23:55:21.8747101Z copying src/executorch/exir/_serialize/test/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize/test 2025-06-05T23:55:21.8747875Z 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:21.8748604Z 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:21.8749337Z 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:21.8750026Z 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:21.8750701Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/canonical_partitioners 2025-06-05T23:55:21.8751730Z 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:21.8752991Z 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:21.8754307Z 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:21.8755377Z 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:21.8756372Z 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:21.8756718Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test 2025-06-05T23:55:21.8757581Z 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:21.8758452Z 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:21.8759398Z 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:21.8760280Z 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:21.8761108Z 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:21.8761856Z 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:21.8762610Z 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:21.8763402Z 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:21.8764082Z 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:21.8765018Z 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:21.8765782Z 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:21.8766651Z 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:21.8767429Z 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:21.8768201Z 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:21.8769104Z 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:21.8769952Z 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:21.8770741Z 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:21.8771496Z 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:21.8772313Z 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:21.8773056Z 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:21.8773500Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/demos 2025-06-05T23:55:21.8774492Z 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:21.8775392Z 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:21.8775865Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/backend/test/demos/rpc 2025-06-05T23:55:21.8776863Z 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:21.8777858Z 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:21.8778699Z 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:21.8779227Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/backend 2025-06-05T23:55:21.8922711Z copying src/executorch/exir/dialects/backend/_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/backend 2025-06-05T23:55:21.8923074Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge 2025-06-05T23:55:21.8923865Z copying src/executorch/exir/dialects/edge/_ops.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge 2025-06-05T23:55:21.8924217Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/test 2025-06-05T23:55:21.8925044Z 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:21.8925589Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/backend/test 2025-06-05T23:55:21.8926563Z 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:21.8926969Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/arg 2025-06-05T23:55:21.8927813Z 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:21.8928565Z 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:21.8929003Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/dtype 2025-06-05T23:55:21.8929749Z 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:21.8930740Z 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:21.8931530Z 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:21.8931890Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/op 2025-06-05T23:55:21.8932620Z 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:21.8933475Z 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:21.8933841Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/spec 2025-06-05T23:55:21.8934594Z 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:21.8935725Z 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:21.8936136Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/test 2025-06-05T23:55:21.8937064Z 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:21.8937868Z 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:21.8938374Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge/op/test 2025-06-05T23:55:21.8939210Z 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:21.8939548Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/emit/test 2025-06-05T23:55:21.8940244Z 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:21.8940599Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/operator/test 2025-06-05T23:55:21.8941299Z 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:21.8941637Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program/test 2025-06-05T23:55:21.8942267Z copying src/executorch/exir/program/test/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/program/test 2025-06-05T23:55:21.8943058Z 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:21.8943733Z 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:21.8944109Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/exir/verification/test 2025-06-05T23:55:21.8944868Z 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:21.8945229Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/export_util 2025-06-05T23:55:21.8945943Z copying src/executorch/extension/export_util/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/export_util 2025-06-05T23:55:21.8946711Z copying src/executorch/extension/export_util/utils.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/export_util 2025-06-05T23:55:21.8947075Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor 2025-06-05T23:55:21.8947740Z copying src/executorch/extension/flat_tensor/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor 2025-06-05T23:55:21.8948169Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/gguf_util 2025-06-05T23:55:21.8948858Z 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:21.8949524Z copying src/executorch/extension/gguf_util/converter.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/gguf_util 2025-06-05T23:55:21.8950180Z 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:21.8950545Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings 2025-06-05T23:55:21.8951374Z copying src/executorch/extension/pybindings/portable_lib.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings 2025-06-05T23:55:21.8951716Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pytree 2025-06-05T23:55:21.8952334Z copying src/executorch/extension/pytree/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pytree 2025-06-05T23:55:21.8952963Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training 2025-06-05T23:55:21.8953710Z copying src/executorch/extension/training/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training 2025-06-05T23:55:21.8954121Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor/serialize 2025-06-05T23:55:21.8954923Z 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:21.8955906Z 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:21.8956745Z 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:21.8957143Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/flat_tensor/test 2025-06-05T23:55:21.8958035Z 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:21.8958450Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/gguf_util/converters 2025-06-05T23:55:21.8959370Z 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:21.8959746Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops 2025-06-05T23:55:21.8960442Z 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:21.8961184Z 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:21.8961958Z 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:21.8962842Z 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:21.8963650Z 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:21.8964571Z 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:21.8965449Z 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:21.8966286Z 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:21.8967160Z 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:21.8967529Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export 2025-06-05T23:55:21.9197092Z copying src/executorch/extension/llm/export/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export 2025-06-05T23:55:21.9197860Z copying src/executorch/extension/llm/export/builder.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export 2025-06-05T23:55:21.9198646Z 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:21.9199563Z 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:21.9200642Z 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:21.9201551Z 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:21.9201907Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules 2025-06-05T23:55:21.9202650Z copying src/executorch/extension/llm/modules/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules 2025-06-05T23:55:21.9203630Z 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:21.9204399Z copying src/executorch/extension/llm/modules/attention.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules 2025-06-05T23:55:21.9205344Z 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:21.9205726Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers 2025-06-05T23:55:21.9206538Z copying src/executorch/extension/llm/tokenizers/setup.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers 2025-06-05T23:55:21.9206988Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops/spinquant 2025-06-05T23:55:21.9207962Z 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:21.9208518Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/custom_ops/spinquant/third-party/FFHT 2025-06-05T23:55:21.9209632Z 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:21.9210704Z 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:21.9211094Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/export/test 2025-06-05T23:55:21.9211827Z 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:21.9212702Z 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:21.9213236Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/modules/test 2025-06-05T23:55:21.9214086Z 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:21.9215047Z 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:21.9215999Z 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:21.9217003Z 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:21.9217572Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers 2025-06-05T23:55:21.9218621Z 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:21.9219802Z 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:21.9220987Z 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:21.9222227Z 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:21.9223273Z 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:21.9223750Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/test 2025-06-05T23:55:21.9224761Z 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:21.9225332Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers/tools 2025-06-05T23:55:21.9226559Z 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:21.9227211Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/llama2c 2025-06-05T23:55:21.9228531Z 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:21.9229894Z 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:21.9230504Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/abseil-cpp 2025-06-05T23:55:21.9231690Z 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:21.9232879Z 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:21.9233452Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl 2025-06-05T23:55:21.9234678Z 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:21.9235313Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/copts 2025-06-05T23:55:21.9236533Z 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:21.9237815Z 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:21.9238448Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/docs/mkdocs/scripts 2025-06-05T23:55:21.9239785Z 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:21.9240449Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tests/thirdparty/imapdl 2025-06-05T23:55:21.9241805Z 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:21.9242602Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tools/amalgamate 2025-06-05T23:55:21.9243854Z 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:21.9244537Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tools/gdb_pretty_printer 2025-06-05T23:55:21.9347687Z 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:21.9348475Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tools/generate_natvis 2025-06-05T23:55:21.9349881Z 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:21.9350510Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tools/serve_header 2025-06-05T23:55:21.9352009Z 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:21.9352564Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/pcre2/maint 2025-06-05T23:55:21.9353946Z 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:21.9355106Z 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:21.9356438Z 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:21.9357673Z 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:21.9358946Z 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:21.9360303Z 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:21.9361446Z 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:21.9362803Z 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:21.9363359Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/benchlog 2025-06-05T23:55:21.9364470Z 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:21.9365013Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/python 2025-06-05T23:55:21.9366607Z 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:21.9368032Z 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:21.9369187Z 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:21.9369712Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/re2 2025-06-05T23:55:21.9370815Z 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:21.9371957Z 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:21.9372990Z 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:21.9373610Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/re2/python/toolchains 2025-06-05T23:55:21.9375070Z 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:21.9375774Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python 2025-06-05T23:55:21.9377245Z 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:21.9377922Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/test 2025-06-05T23:55:21.9379199Z 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:21.9380783Z 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:21.9381522Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece 2025-06-05T23:55:21.9383387Z 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:21.9385337Z 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:21.9386952Z 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:21.9388703Z 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:21.9389500Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers 2025-06-05T23:55:21.9391159Z 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:21.9392338Z 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:21.9393696Z 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:21.9394946Z 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:21.9396442Z 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:21.9397410Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools 2025-06-05T23:55:21.9398969Z 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:21.9399741Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/llama2c 2025-06-05T23:55:23.3906487Z 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:23.3909894Z 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:23.3912060Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/module/test/resources 2025-06-05T23:55:23.3913737Z 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:23.3915356Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings/test 2025-06-05T23:55:23.3916797Z 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:23.3918751Z 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:23.3920770Z 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:23.3922174Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pytree/test 2025-06-05T23:55:23.3923522Z copying src/executorch/extension/pytree/test/test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pytree/test 2025-06-05T23:55:23.3924830Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/pybindings 2025-06-05T23:55:23.3926461Z 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:23.3928008Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/examples/XOR 2025-06-05T23:55:23.3929581Z 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:23.3931973Z 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:23.3933712Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/examples/XOR/test 2025-06-05T23:55:23.3935448Z 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:23.3937099Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/extension/training/pybindings/test 2025-06-05T23:55:23.3938742Z 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:23.3940185Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized 2025-06-05T23:55:23.3941488Z copying src/executorch/kernels/quantized/__init__.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized 2025-06-05T23:55:23.3942680Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized/test 2025-06-05T23:55:23.3944184Z 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:23.3946067Z 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:23.3947425Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/runtime/test 2025-06-05T23:55:23.3948650Z copying src/executorch/runtime/test/test_runtime.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/runtime/test 2025-06-05T23:55:23.3949683Z running egg_info 2025-06-05T23:55:23.3950095Z creating executorch.egg-info 2025-06-05T23:55:23.3950513Z writing executorch.egg-info/PKG-INFO 2025-06-05T23:55:23.3951256Z writing dependency_links to executorch.egg-info/dependency_links.txt 2025-06-05T23:55:23.3952071Z writing entry points to executorch.egg-info/entry_points.txt 2025-06-05T23:55:23.3952775Z writing requirements to executorch.egg-info/requires.txt 2025-06-05T23:55:23.3953448Z writing top-level names to executorch.egg-info/top_level.txt 2025-06-05T23:55:23.3954177Z writing manifest file 'executorch.egg-info/SOURCES.txt' 2025-06-05T23:55:23.3954899Z reading manifest file 'executorch.egg-info/SOURCES.txt' 2025-06-05T23:55:23.3955485Z adding license file 'LICENSE' 2025-06-05T23:55:23.3955989Z writing manifest file 'executorch.egg-info/SOURCES.txt' 2025-06-05T23:55:23.3957061Z copying src/executorch/exir/delegate.pyi -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir 2025-06-05T23:55:23.3958583Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/schema 2025-06-05T23:55:23.3960151Z copying src/executorch/schema/program.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/schema 2025-06-05T23:55:23.3962272Z copying src/executorch/schema/scalar_type.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/schema 2025-06-05T23:55:23.3964913Z copying src/executorch/backends/apple/coreml/executorchcoreml.pyi -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/apple/coreml 2025-06-05T23:55:23.3968188Z 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:23.3971048Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/schema 2025-06-05T23:55:23.3974213Z 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:23.3978838Z 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:23.3982990Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart 2025-06-05T23:55:23.3987584Z 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:23.3993035Z 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:23.3998309Z 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:23.4002467Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/reflection 2025-06-05T23:55:23.4006787Z 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:23.4012354Z 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:23.4016579Z copying src/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/check-grpc-generated-code.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts 2025-06-05T23:55:23.4019318Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/snap 2025-06-05T23:55:23.4021996Z 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:23.4025341Z 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:23.4029121Z 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:23.4032749Z 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:23.4036437Z 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:23.4039951Z 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:23.4043176Z 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:23.4046725Z 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:23.4052307Z 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:23.4057691Z 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:23.4063072Z 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:23.4068552Z 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:23.4074051Z 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:23.4079564Z 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:23.4084982Z 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:23.4090596Z 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:23.4096336Z 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:23.4102041Z 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:23.4107469Z 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:23.4113036Z 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:23.4118498Z 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:23.4124277Z 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:23.4129907Z 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:23.4135767Z 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:23.4140055Z 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:23.4144796Z 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:23.4149633Z 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:23.4154491Z 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:23.4159159Z 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:23.4163409Z 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:23.4169016Z 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:23.4174553Z 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:23.4178924Z 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:23.4183321Z 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:23.4189200Z 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:23.4193585Z 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:23.4197958Z 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:23.4203649Z 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:23.4208080Z 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:23.4213110Z 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:23.4217955Z 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:23.4223019Z 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:23.4227934Z 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:23.4232267Z 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:23.4238269Z 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:23.4244627Z 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:23.4249431Z 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:23.4254077Z 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:23.4260188Z 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:23.4266202Z 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:23.4271790Z 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:23.4277415Z 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:23.4281806Z 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:23.4286548Z 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:23.4292479Z 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:23.4297482Z 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:23.4301948Z 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:23.4306495Z 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:23.4311286Z 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:23.4316015Z 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:23.4320886Z 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:23.4327074Z 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:23.4333166Z 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:23.4339224Z 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:23.4345280Z 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:23.4351501Z 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:23.4356324Z 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:23.4361197Z 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:23.4367815Z 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:23.4374433Z 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:23.4379460Z 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:23.4384084Z 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:23.4390165Z 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:23.4396103Z 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:23.4402230Z 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:23.4408276Z 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:23.4414384Z 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:23.4420454Z 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:23.4426529Z 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:23.4432780Z 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:23.4439032Z 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:23.4445259Z 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:23.4451465Z 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:23.4457470Z 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:23.4462184Z 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:23.4466957Z 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:23.4471827Z 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:23.4476667Z 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:23.4483072Z 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:23.4488030Z 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:23.4505340Z 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:23.4510968Z 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:23.4516752Z 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:23.4521464Z 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:23.4526160Z 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:23.4532250Z 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:23.4536994Z 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:23.4541842Z 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:23.4548155Z 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:23.4553091Z 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:23.4558442Z 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:23.4565996Z 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:23.4571387Z 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:23.4576877Z 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:23.4582206Z 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:23.4587360Z 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:23.4592488Z 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:23.4597415Z 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:23.4603970Z 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:23.4610130Z 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:23.4614847Z 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:23.4619239Z 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:23.4624926Z 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:23.4628181Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/arm/tosa/schemas 2025-06-05T23:55:23.4630117Z 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:23.4631957Z 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:23.4633850Z copying src/executorch/backends/cadence/aot/functions.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/cadence/aot 2025-06-05T23:55:23.4635988Z 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:23.4638142Z 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:23.4640053Z 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:23.4641902Z 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:23.4643662Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/qualcomm/aot/ir 2025-06-05T23:55:23.4644925Z 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:23.4646743Z copying src/executorch/backends/vulkan/serialization/schema.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/serialization 2025-06-05T23:55:23.4648352Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:55:23.4650224Z 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:23.4652668Z 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:23.4655052Z 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:23.4657340Z 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:23.4659766Z 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:23.4662067Z 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:23.4664460Z 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:23.4666907Z 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:23.4669541Z 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:23.4672070Z 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:23.4674394Z 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:23.4676982Z 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:23.4679527Z 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:23.4681850Z 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:23.4684494Z 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:23.4687348Z 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:23.4690068Z 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:23.4692878Z 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:23.4695404Z 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:23.4697948Z 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:23.4700649Z 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:23.4703378Z 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:23.4706236Z 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:23.4709137Z 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:23.4711437Z 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:23.4713632Z 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:23.4715812Z 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:23.4717952Z 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:23.4720052Z 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:23.4722207Z 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:23.4724421Z 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:23.4726723Z 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:23.4728920Z 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:23.4731149Z 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:23.4733471Z 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:23.4735904Z 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:23.4738147Z 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:23.4740354Z 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:23.4742679Z 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:23.4744848Z 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:23.4747300Z 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:23.4749903Z 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:23.4752053Z 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:23.4754238Z 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:23.4756542Z 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:23.4759098Z 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:23.4761353Z 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:23.4763494Z 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:23.4765587Z 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:23.4767670Z 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:23.4769901Z 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:23.4772186Z 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:23.4774482Z 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:23.4776755Z 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:23.4779096Z 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:23.4781302Z 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:23.4783708Z 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:23.4786188Z 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:23.4788584Z 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:23.4790724Z 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:23.4792989Z 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:23.4795255Z 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:23.4797428Z 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:23.4799492Z 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:23.4801006Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/test/glsl 2025-06-05T23:55:23.4802345Z 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:23.4804257Z 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:23.4806279Z 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:23.4807764Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/vulkan/tools/gpuinfo/glsl 2025-06-05T23:55:23.4809310Z 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:23.4811455Z 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:23.4813597Z 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:23.4815616Z 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:23.4817713Z 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:23.4819775Z 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:23.4821738Z 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:23.4823753Z copying src/executorch/backends/xnnpack/serialization/schema.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/serialization 2025-06-05T23:55:23.4825782Z copying src/executorch/backends/xnnpack/third-party/generate-cpuinfo-wrappers.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party 2025-06-05T23:55:23.4827741Z 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:23.4829729Z 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:23.4831676Z 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:23.4833723Z 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:23.4836028Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/scripts/generate-build-identifier.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/scripts 2025-06-05T23:55:23.4838420Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/scripts/sort-filenames.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/scripts 2025-06-05T23:55:23.4840162Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:55:23.4841870Z 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:23.4844276Z 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:23.4846535Z 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:23.4848855Z 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:23.4851221Z 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:23.4853522Z 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:23.4855779Z 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:23.4858019Z 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:23.4860282Z 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:23.4862523Z 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:23.4864771Z 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:23.4867193Z 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:23.4869610Z 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:23.4871775Z 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:23.4873949Z 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:23.4876143Z 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:23.4878341Z 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:23.4880646Z 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:23.4882952Z 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:23.4885347Z 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:23.4887600Z 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:23.4889864Z 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:23.4892163Z 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:23.4894440Z 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:23.4896686Z 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:23.4898875Z 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:23.4901106Z 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:23.4903401Z 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:23.4905650Z 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:23.4907973Z 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:23.4910216Z 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:23.4912656Z 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:23.4914867Z 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:23.4917147Z 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:23.4919469Z 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:23.4921765Z 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:23.4924027Z 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:23.4926287Z 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:23.4928577Z 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:23.4930968Z 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:23.4933244Z 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:23.4935412Z 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:23.4937557Z 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:23.4939740Z 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:23.4941920Z 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:23.4944113Z 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:23.4946413Z 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:23.4948823Z 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:23.4951146Z 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:23.4953479Z 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:23.4955911Z 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:23.4958333Z 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:23.4960708Z 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:23.4963095Z 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:23.4965453Z 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:23.4967834Z 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:23.4970217Z 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:23.4972580Z 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:23.4974946Z 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:23.4977316Z 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:23.4979724Z 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:23.4982103Z 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:23.4984340Z 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:23.4986752Z 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:23.4989158Z 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:23.4991508Z 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:23.4993841Z 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:23.4996102Z 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:23.4998269Z 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:23.5000567Z 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:23.5002867Z 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:23.5005062Z 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:23.5007224Z 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:23.5009337Z 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:23.5011614Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-argmaxpool-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:55:23.5014001Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-conv-hwc-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:55:23.5016384Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-conv-hwc2chw-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:55:23.5018852Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-dwconv-multipass-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:55:23.5021324Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-dwconv-unipass-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:55:23.5023778Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-dwconv2d-chw-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:55:23.5026129Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-gemm-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:55:23.5028562Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-ibilinear-chw-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:55:23.5030977Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-ibilinear-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:55:23.5747229Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-lut-norm-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:55:23.5749943Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-lut-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:55:23.5752907Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-raddexpminusmax-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:55:23.5755743Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-raddextexp-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:55:23.5758818Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-raddstoreexpminusmax-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:55:23.5761863Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-rdsum-benchmark.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:55:23.5764874Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-rdsum-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:55:23.5767509Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-reduce-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:55:23.5770142Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-spmm-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:55:23.5772773Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vbinary-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:55:23.5775346Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vmulcaddc-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:55:23.5778160Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vscaleexpminusmax-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:55:23.5780793Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vscaleextexp-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:55:23.5783446Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vunary-test.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:55:23.5786122Z copying src/executorch/backends/xnnpack/third-party/XNNPACK/tools/update-microkernels.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:55:23.5788794Z copying src/executorch/backends/xnnpack/third-party/cpuinfo/scripts/android-device-dump.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo/scripts 2025-06-05T23:55:23.5791665Z copying src/executorch/backends/xnnpack/third-party/cpuinfo/scripts/arm-linux-filesystem-dump.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo/scripts 2025-06-05T23:55:23.5794233Z copying src/executorch/backends/xnnpack/third-party/cpuinfo/scripts/parse-x86-cpuid-dump.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/backends/xnnpack/third-party/cpuinfo/scripts 2025-06-05T23:55:23.5796828Z 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:23.5798863Z copying src/executorch/devtools/etdump/etdump_schema_flatcc.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump 2025-06-05T23:55:23.5800523Z copying src/executorch/devtools/etdump/scalar_type.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/devtools/etdump 2025-06-05T23:55:23.5802359Z 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:23.5804706Z 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:23.5806853Z 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:23.5808943Z 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:23.5811237Z 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:23.5813397Z 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:23.5815344Z copying src/executorch/examples/models/phi-3-mini/export_phi-3-mini.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/examples/models/phi-3-mini 2025-06-05T23:55:23.5817076Z copying src/executorch/exir/dialects/edge/edge.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/dialects/edge 2025-06-05T23:55:23.5818841Z copying src/executorch/extension/pybindings/pybindings.pyi -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/pybindings 2025-06-05T23:55:23.5820675Z 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:23.5822694Z 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:23.5825093Z copying src/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/abseil.podspec.gen.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl 2025-06-05T23:55:23.5828066Z copying src/executorch/extension/llm/tokenizers/third-party/json/tools/gdb_pretty_printer/nlohmann-json.py -> pip-out/lib.linux-x86_64-cpython-310/executorch/extension/llm/tokenizers/third-party/json/tools/gdb_pretty_printer 2025-06-05T23:55:23.5830833Z 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:23.5832637Z copying src/executorch/kernels/quantized/quantized.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/kernels/quantized 2025-06-05T23:55:23.5834366Z 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:23.5835758Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/runtime/kernel/test 2025-06-05T23:55:23.5837090Z copying src/executorch/runtime/kernel/test/functions.yaml -> pip-out/lib.linux-x86_64-cpython-310/executorch/runtime/kernel/test 2025-06-05T23:55:23.5838448Z copying schema/scalar_type.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:55:23.5839619Z copying schema/program.fbs -> pip-out/lib.linux-x86_64-cpython-310/executorch/exir/_serialize 2025-06-05T23:55:23.5841231Z 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:23.5843213Z 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:23.5844667Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/share/cmake 2025-06-05T23:55:23.5846155Z 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:23.5847586Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:23.5848955Z copying runtime/core/array_ref.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:23.5850635Z copying runtime/core/data_loader.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:23.5852048Z copying runtime/core/defines.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:23.5853331Z copying runtime/core/error.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:23.5854907Z copying runtime/core/evalue.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:23.5856501Z copying runtime/core/event_tracer.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:23.5861646Z copying runtime/core/event_tracer_hooks.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:23.5864043Z 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:23.5866555Z copying runtime/core/freeable_buffer.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:23.5869065Z copying runtime/core/function_ref.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:23.5871605Z copying runtime/core/hierarchical_allocator.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:23.5874196Z copying runtime/core/memory_allocator.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:23.5876659Z copying runtime/core/named_data_map.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:23.5878972Z copying runtime/core/result.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:23.5881210Z copying runtime/core/span.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:23.5883399Z copying runtime/core/tag.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:23.5885918Z copying runtime/core/tensor_layout.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:23.5888410Z copying runtime/core/tensor_shape_dynamism.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core 2025-06-05T23:55:23.5890744Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten 2025-06-05T23:55:23.5893158Z 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:23.5895754Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten/testing_util 2025-06-05T23:55:23.5898730Z 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:23.5902229Z 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:23.5905090Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/exec_aten/util 2025-06-05T23:55:23.5907739Z 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:23.5910976Z 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:23.5914242Z 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:23.5917603Z 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:23.5920813Z 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:23.5923448Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:55:23.5926243Z 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:23.5929504Z 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:23.5932604Z 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:23.5934888Z 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:23.5936598Z 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:23.5938253Z 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:23.5939979Z 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:23.5941689Z 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:23.5943394Z 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:23.5945092Z 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:23.5946826Z 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:23.5949750Z 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:23.5952740Z 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:23.5954579Z 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:23.5956175Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/macros 2025-06-05T23:55:23.5957949Z 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:23.5960048Z 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:23.5961809Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:55:23.5963567Z 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:23.5965701Z 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:23.5967808Z 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:23.5969861Z 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:23.5971905Z 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:23.5974243Z 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:23.5976378Z 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:23.5978431Z 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:23.5980520Z 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:23.5982641Z 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:23.5984802Z 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:23.5987161Z 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:23.5988793Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel 2025-06-05T23:55:23.5990064Z copying runtime/kernel/kernel_includes.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel 2025-06-05T23:55:23.6614166Z copying runtime/kernel/kernel_runtime_context.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel 2025-06-05T23:55:23.6617041Z copying runtime/kernel/operator_registry.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel 2025-06-05T23:55:23.6619867Z copying runtime/kernel/thread_parallel_interface.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel 2025-06-05T23:55:23.6622289Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/kernel/test 2025-06-05T23:55:23.6624625Z 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:23.6626924Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:55:23.6629210Z copying runtime/platform/abort.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:55:23.6631708Z copying runtime/platform/assert.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:55:23.6634243Z copying runtime/platform/clock.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:55:23.6636813Z copying runtime/platform/compat_unistd.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:55:23.6639431Z copying runtime/platform/compiler.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:55:23.6641923Z copying runtime/platform/log.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:55:23.6644455Z copying runtime/platform/platform.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:55:23.6647028Z copying runtime/platform/profiler.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:55:23.6649593Z copying runtime/platform/runtime.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:55:23.6652444Z copying runtime/platform/system.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:55:23.6655155Z copying runtime/platform/types.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform 2025-06-05T23:55:23.6657429Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/runtime/platform/test 2025-06-05T23:55:23.6659809Z 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:23.6662636Z 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:23.6665087Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/kernel_util 2025-06-05T23:55:23.6667718Z 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:23.6670869Z 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:23.6673732Z 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:23.6676041Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/tensor 2025-06-05T23:55:23.6678248Z copying extension/tensor/tensor.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/tensor 2025-06-05T23:55:23.6680861Z copying extension/tensor/tensor_accessor.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/tensor 2025-06-05T23:55:23.6683524Z copying extension/tensor/tensor_ptr.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/tensor 2025-06-05T23:55:23.6686404Z copying extension/tensor/tensor_ptr_maker.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/tensor 2025-06-05T23:55:23.6688742Z creating pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/threadpool 2025-06-05T23:55:23.6691195Z copying extension/threadpool/cpuinfo_utils.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/threadpool 2025-06-05T23:55:23.6694033Z copying extension/threadpool/threadpool.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/threadpool 2025-06-05T23:55:23.6696961Z copying extension/threadpool/threadpool_guard.h -> pip-out/lib.linux-x86_64-cpython-310/executorch/include/executorch/extension/threadpool 2025-06-05T23:55:23.6698825Z running build_ext 2025-06-05T23:55:23.6699907Z creating /pytorch/executorch/pip-out/lib.linux-x86_64-cpython-310/executorch/data/bin 2025-06-05T23:55:23.6703081Z 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:23.6706740Z 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:23.6710179Z 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:23.6714636Z 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:23.6719498Z 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:23.6724444Z 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:23.6727451Z installing to pip-out/bdist.linux-x86_64/wheel 2025-06-05T23:55:23.6728303Z running install 2025-06-05T23:55:23.6728907Z running install_lib 2025-06-05T23:55:23.6729556Z creating pip-out/bdist.linux-x86_64/wheel 2025-06-05T23:55:23.6730513Z creating pip-out/bdist.linux-x86_64/wheel/executorch 2025-06-05T23:55:23.6731616Z creating pip-out/bdist.linux-x86_64/wheel/executorch/codegen 2025-06-05T23:55:23.6733568Z 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:23.6736178Z 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:23.6738819Z 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:23.6741520Z 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:23.6743530Z creating pip-out/bdist.linux-x86_64/wheel/executorch/codegen/api 2025-06-05T23:55:23.6745580Z 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:23.6748594Z 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:23.6751478Z 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:23.6754398Z 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:23.6756625Z creating pip-out/bdist.linux-x86_64/wheel/executorch/codegen/api/types 2025-06-05T23:55:23.6758939Z 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:23.6762203Z 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:23.6765494Z 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:23.6767769Z creating pip-out/bdist.linux-x86_64/wheel/executorch/codegen/test 2025-06-05T23:55:23.6770113Z 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:23.6773412Z 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:23.6776766Z 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:23.6780111Z 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:23.6783507Z 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:23.6787014Z 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:23.6789407Z creating pip-out/bdist.linux-x86_64/wheel/executorch/codegen/tools 2025-06-05T23:55:23.6791779Z 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:23.6795012Z 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:23.6798124Z 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:23.6801194Z 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:23.6804419Z 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:23.6807669Z 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:23.6810770Z 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:23.6813041Z creating pip-out/bdist.linux-x86_64/wheel/executorch/codegen/tools/test 2025-06-05T23:55:23.6815526Z 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:23.6819009Z 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:23.6822573Z 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:23.6826285Z 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:23.6828883Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools 2025-06-05T23:55:23.6830862Z 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:23.6832992Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/backend_debug 2025-06-05T23:55:23.6835429Z 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:23.6838952Z 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:23.6841581Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/backend_debug/tests 2025-06-05T23:55:23.6844425Z 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:23.6847213Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program 2025-06-05T23:55:23.6849745Z 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:23.6853197Z 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:23.6856663Z 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:23.6859286Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program/schema 2025-06-05T23:55:23.6862200Z 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:23.6866326Z 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:23.6869411Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program/schema/test 2025-06-05T23:55:23.6872437Z 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:23.6876625Z 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:23.6880698Z 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:23.6883640Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program/serialize 2025-06-05T23:55:23.6886659Z 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:23.6889609Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program/serialize/test 2025-06-05T23:55:23.6892757Z 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:23.6897137Z 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:23.6901403Z 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:23.6904322Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program/test 2025-06-05T23:55:23.6907125Z 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:23.6911075Z 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:23.6914938Z 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:23.6917741Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/bundled_program/util 2025-06-05T23:55:23.6920490Z 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:23.6923118Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/debug_format 2025-06-05T23:55:23.6925580Z 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:23.6928992Z 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:23.6931377Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/etdump 2025-06-05T23:55:23.6933698Z 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:23.6937371Z 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:23.6939772Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/etdump/tests 2025-06-05T23:55:23.6942334Z 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:23.6945893Z 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:23.6949311Z 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:23.6951686Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/etrecord 2025-06-05T23:55:23.6954048Z 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:23.6957305Z 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:23.6959693Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/etrecord/tests 2025-06-05T23:55:23.6962308Z 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:23.6964906Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/inspector 2025-06-05T23:55:23.6967251Z 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:23.6970556Z 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:23.6973962Z 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:23.6977566Z 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:23.6981181Z 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:23.6983692Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/inspector/tests 2025-06-05T23:55:23.6986577Z 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:23.6990462Z 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:23.6994336Z 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:23.6998226Z 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:23.7002305Z 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:23.7005230Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/size_analysis_tool 2025-06-05T23:55:23.7008179Z 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:23.7012205Z 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:23.7014937Z creating pip-out/bdist.linux-x86_64/wheel/executorch/devtools/visualization 2025-06-05T23:55:23.7017423Z 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:23.7021106Z 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:23.7025029Z 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:23.7027594Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir 2025-06-05T23:55:23.7029545Z 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:23.7032070Z 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:23.7034642Z 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:23.7037273Z 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:23.7039942Z 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:23.7042597Z 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:23.7045338Z 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:23.7047947Z 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:23.7050467Z 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:23.7053050Z 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:23.7055867Z 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:23.7058601Z 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:23.7061247Z 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:23.7063931Z 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:23.7066543Z 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:23.7069323Z 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:23.7071972Z 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:23.7074564Z 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:23.7077280Z 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:23.7079943Z 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:23.7082466Z 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:23.7085003Z 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:23.7087697Z 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:23.7090223Z 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:23.7092185Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/_serialize 2025-06-05T23:55:23.7094374Z 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:23.7097396Z 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:23.7100415Z 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:23.7103560Z 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:23.7106710Z 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:23.7109956Z 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:23.7113033Z 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:23.7116219Z 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:23.7119374Z 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:23.7121733Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/_serialize/test 2025-06-05T23:55:23.7124087Z 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:23.7127346Z 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:23.7130742Z 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:23.7134254Z 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:23.7137734Z 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:23.7141029Z 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:23.7144168Z 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:23.7146596Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/backend 2025-06-05T23:55:23.7149061Z 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:23.7152213Z 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:23.7155425Z 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:23.7158681Z 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:23.7161845Z 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:23.7164915Z 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:23.7167311Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/backend/canonical_partitioners 2025-06-05T23:55:23.7170403Z 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:23.7174777Z 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:23.7179203Z 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:23.7183744Z 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:23.7188569Z 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:23.7191533Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/backend/test 2025-06-05T23:55:23.7194082Z 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:23.7197844Z 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:23.7201613Z 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:23.7205331Z 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:23.7209021Z 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:23.7212570Z 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:23.7216031Z 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:23.7219602Z 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:23.7223537Z 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:23.7227006Z 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:23.7230594Z 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:23.7234149Z 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:23.7237678Z 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:23.7241277Z 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:23.7244877Z 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:23.7248493Z 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:23.7252058Z 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:23.7255441Z 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:23.7258963Z 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:23.7262442Z 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:23.7264865Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/backend/test/demos 2025-06-05T23:55:23.7267544Z 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:23.7271476Z 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:23.7274201Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/backend/test/demos/rpc 2025-06-05T23:55:23.7277167Z 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:23.7281437Z 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:23.7285692Z 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:23.7288264Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/capture 2025-06-05T23:55:23.7290367Z 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:23.7293292Z 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:23.7296624Z 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:23.7299550Z 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:23.7301669Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects 2025-06-05T23:55:23.7304031Z 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:23.7306978Z 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:23.7309274Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/backend 2025-06-05T23:55:23.7311690Z 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:23.7314186Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/backend/test 2025-06-05T23:55:23.7316906Z 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:23.7319571Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge 2025-06-05T23:55:23.7321867Z 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:23.7324219Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge/arg 2025-06-05T23:55:23.7326720Z 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:23.7330157Z 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:23.7332669Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge/dtype 2025-06-05T23:55:23.7335231Z 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:23.7338914Z 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:23.7342641Z 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:23.7345161Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge/op 2025-06-05T23:55:23.7347576Z 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:23.7351120Z 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:23.7353698Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge/op/test 2025-06-05T23:55:23.7356375Z 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:23.7359006Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge/spec 2025-06-05T23:55:23.7361494Z 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:23.7365160Z 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:23.7367865Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/edge/test 2025-06-05T23:55:23.7370473Z 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:23.7374113Z 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:23.7377624Z 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:23.7379988Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/dialects/test 2025-06-05T23:55:23.7382525Z 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:23.7384943Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/emit 2025-06-05T23:55:23.7387141Z 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:23.7390017Z 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:23.7392884Z 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:23.7394982Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/emit/test 2025-06-05T23:55:23.7397205Z 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:23.7399448Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/operator 2025-06-05T23:55:23.7401646Z 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:23.7404678Z 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:23.7407626Z 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:23.7409848Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/operator/test 2025-06-05T23:55:23.7412272Z 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:23.7414663Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/passes 2025-06-05T23:55:23.7416747Z 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:23.7419891Z 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:23.7423172Z 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:23.7426328Z 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:23.7429723Z 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:23.7432999Z 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:23.7436701Z 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:23.7440059Z 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:23.7443460Z 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:23.7446686Z 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:23.7450003Z 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:23.7453378Z 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:23.7456612Z 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:23.7459933Z 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:23.7463416Z 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:23.7466678Z 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:23.7469957Z 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:23.7473200Z 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:23.7476342Z 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:23.7479589Z 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:23.7482975Z 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:23.7486468Z 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:23.7489784Z 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:23.7510664Z 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:23.7514180Z 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:23.7517740Z 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:23.7521102Z 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:23.7524486Z 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:23.7528237Z 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:23.7531382Z 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:23.7534496Z 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:23.7537638Z 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:23.7540837Z 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:23.7543193Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/program 2025-06-05T23:55:23.7545283Z 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:23.7548358Z 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:23.7551347Z 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:23.7553565Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/program/test 2025-06-05T23:55:23.7555858Z 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:23.7559210Z 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:23.7562628Z 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:23.7564977Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/serde 2025-06-05T23:55:23.7566991Z 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:23.7569946Z 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:23.7572920Z 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:23.7575833Z 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:23.7578801Z 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:23.7581687Z 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:23.7583766Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/tests 2025-06-05T23:55:23.7586012Z 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:23.7588984Z 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:23.7591949Z 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:23.7595340Z 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:23.7598502Z 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:23.7601500Z 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:23.7604535Z 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:23.7607472Z 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:23.7610455Z 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:23.7613488Z 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:23.7616790Z 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:23.7619921Z 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:23.7622913Z 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:23.7626041Z 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:23.7629453Z 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:23.7632882Z 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:23.7636151Z 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:23.7639237Z 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:23.7642244Z 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:23.7645246Z 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:23.7648250Z 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:23.7651502Z 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:23.7654723Z 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:23.7657889Z 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:23.7661013Z 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:23.7664322Z 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:23.7667804Z 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:23.7671057Z 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:23.7673989Z 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:23.7676939Z 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:23.7679952Z 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:23.7683005Z 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:23.7686199Z 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:23.7688409Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/verification 2025-06-05T23:55:23.7690812Z 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:23.7694152Z 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:23.7697479Z 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:23.7700863Z 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:23.7703289Z creating pip-out/bdist.linux-x86_64/wheel/executorch/exir/verification/test 2025-06-05T23:55:23.7705878Z 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:23.7709094Z 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:23.7711027Z creating pip-out/bdist.linux-x86_64/wheel/executorch/runtime 2025-06-05T23:55:23.7712948Z 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:23.7714964Z creating pip-out/bdist.linux-x86_64/wheel/executorch/runtime/test 2025-06-05T23:55:23.7717139Z 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:23.7719386Z creating pip-out/bdist.linux-x86_64/wheel/executorch/runtime/kernel 2025-06-05T23:55:23.7720784Z creating pip-out/bdist.linux-x86_64/wheel/executorch/runtime/kernel/test 2025-06-05T23:55:23.7723246Z 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:23.7725572Z creating pip-out/bdist.linux-x86_64/wheel/executorch/util 2025-06-05T23:55:23.7727659Z 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:23.7730525Z 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:23.7733225Z 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:23.7735449Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends 2025-06-05T23:55:23.7736703Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm 2025-06-05T23:55:23.7739036Z 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:23.7742059Z 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:23.7745098Z 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:23.7748380Z 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:23.7751561Z 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:23.7754653Z 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:23.7757766Z 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:23.7760908Z 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:23.7764092Z 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:23.7767312Z 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:23.7770455Z 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:23.7773520Z 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:23.7776636Z 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:23.7778959Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/_passes 2025-06-05T23:55:23.7781325Z 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:23.7784684Z 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:23.7788675Z 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:23.7792534Z 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:23.7796107Z 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:23.7799486Z 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:23.7802954Z 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:23.7806454Z 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:23.7810317Z 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:23.7813784Z 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:23.7817380Z 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:23.7821092Z 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:23.7824867Z 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:23.7828731Z 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:23.7832383Z 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:23.7835948Z 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:23.7839500Z 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:23.7843149Z 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:23.7846740Z 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:23.7850388Z 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:23.7854112Z 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:23.7857675Z 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:23.7861308Z 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:23.7865011Z 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:23.7868786Z 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:23.7872559Z 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:23.7876286Z 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:23.7880069Z 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:23.7883764Z 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:23.7887487Z 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:23.7891027Z 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:23.7894647Z 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:23.7898418Z 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:23.7902150Z 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:23.7905700Z 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:23.7909319Z 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:23.7913039Z 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:23.7916795Z 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:23.7920414Z 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:23.7924111Z 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:23.7927924Z 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:23.7931624Z 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:23.7935152Z 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:23.7938706Z 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:23.7942341Z 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:23.7945952Z 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:23.7949474Z 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:23.7953055Z 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:23.7957220Z 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:23.7960951Z 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:23.7964582Z 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:23.7968277Z 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:23.7972132Z 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:23.7974941Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/operator_support 2025-06-05T23:55:23.7977654Z 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:23.7981572Z 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:23.7985870Z 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:23.7989916Z 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:23.7993861Z 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:23.7997810Z 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:23.8001835Z 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:23.8005822Z 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:23.8009794Z 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:23.8013776Z 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:23.8017819Z 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:23.8020675Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/operators 2025-06-05T23:55:23.8023164Z 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:23.8026702Z 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:23.8030746Z 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:23.8034217Z 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:23.8037669Z 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:23.8041116Z 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:23.8044581Z 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:23.8048094Z 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:23.8051664Z 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:23.8055096Z 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:23.8058575Z 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:23.8062161Z 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:23.8065752Z 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:23.8069353Z 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:23.8072759Z 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:23.8076204Z 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:23.8079671Z 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:23.8083092Z 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:23.8086873Z 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:23.8090254Z 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:23.8093719Z 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:23.8097101Z 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:23.8100619Z 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:23.8104460Z 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:23.8108297Z 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:23.8111808Z 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:23.8115235Z 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:23.8118735Z 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:23.8122245Z 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:23.8125798Z 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:23.8129386Z 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:23.8132917Z 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:23.8136541Z 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:23.8140135Z 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:23.8143673Z 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:23.8147183Z 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:23.8150713Z 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:23.8154174Z 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:23.8157608Z 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:23.8161098Z 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:23.8164602Z 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:23.8168094Z 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:23.8171702Z 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:23.8175353Z 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:23.8179351Z 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:23.8183183Z 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:23.8186987Z 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:23.8190542Z 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:23.8194278Z 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:23.8198030Z 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:23.8201645Z 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:23.8205214Z 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:23.8207754Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/quantizer 2025-06-05T23:55:23.8210212Z 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:23.8213753Z 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:23.8217458Z 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:23.8221318Z 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:23.8225215Z 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:23.8227959Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/scripts 2025-06-05T23:55:23.8230512Z 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:23.8233027Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test 2025-06-05T23:55:23.8235373Z 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:23.8238646Z 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:23.8241999Z 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:23.8245297Z 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:23.8247728Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/misc 2025-06-05T23:55:23.8250327Z 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:23.8254612Z 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:23.8258388Z 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:23.8262101Z 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:23.8265867Z 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:23.8269708Z 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:23.8273550Z 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:23.8277379Z 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:23.8281282Z 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:23.8285562Z 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:23.8289466Z 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:23.8292080Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/models 2025-06-05T23:55:23.8294739Z 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:23.8298526Z 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:23.8302246Z 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:23.8305948Z 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:23.8309713Z 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:23.8313473Z 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:23.8317325Z 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:23.8321138Z 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:23.8324927Z 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:23.8329171Z 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:23.8332994Z 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:23.8335575Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/ops 2025-06-05T23:55:23.8338038Z 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:23.8341495Z 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:23.8344990Z 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:23.8348626Z 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:23.8352066Z 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:23.8355522Z 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:23.8358956Z 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:23.8362420Z 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:23.8365946Z 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:23.8369528Z 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:23.8373116Z 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:23.8376578Z 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:23.8380016Z 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:23.8383492Z 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:23.8387234Z 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:23.8390947Z 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:23.8394529Z 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:23.8398074Z 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:23.8401817Z 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:23.8405579Z 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:23.8409308Z 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:23.8412905Z 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:23.8416490Z 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:23.8420058Z 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:23.8423471Z 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:23.8426902Z 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:23.8430412Z 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:23.8433894Z 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:23.8437349Z 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:23.8440824Z 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:23.8444249Z 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:23.8447676Z 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:23.8451194Z 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:23.8454667Z 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:23.8458232Z 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:23.8461843Z 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:23.8465431Z 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:23.8469098Z 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:23.8472590Z 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:23.8476243Z 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:23.8480066Z 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:23.8483696Z 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:23.8487389Z 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:23.8490865Z 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:23.8494467Z 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:23.8498068Z 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:23.8501501Z 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:23.8504981Z 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:23.8508560Z 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:23.8512128Z 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:23.8515674Z 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:23.8519222Z 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:23.8522694Z 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:23.8526102Z 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:23.8529550Z 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:23.8532968Z 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:23.8536437Z 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:23.8539935Z 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:23.8543440Z 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:23.8546973Z 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:23.8550870Z 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:23.8554561Z 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:23.8558073Z 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:23.8561577Z 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:23.8565158Z 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:23.8568769Z 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:23.8572252Z 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:23.8575772Z 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:23.8579265Z 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:23.8582867Z 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:23.8586680Z 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:23.8590279Z 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:23.8593734Z 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:23.8597168Z 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:23.8600690Z 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:23.8604148Z 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:23.8607641Z 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:23.8611170Z 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:23.8614636Z 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:23.8618080Z 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:23.8621496Z 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:23.8625188Z 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:23.8628951Z 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:23.8632487Z 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:23.8636215Z 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:23.8640026Z 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:23.8643676Z 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:23.8647115Z 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:23.8650597Z 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:23.8654060Z 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:23.8656598Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/passes 2025-06-05T23:55:23.8659348Z 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:23.8663268Z 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:23.8667263Z 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:23.8671362Z 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:23.8675338Z 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:23.8679272Z 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:23.8683353Z 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:23.8687623Z 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:23.8691604Z 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:23.8695757Z 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:23.8700091Z 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:23.8704299Z 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:23.8708362Z 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:23.8712228Z 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:23.8716096Z 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:23.8720089Z 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:23.8724217Z 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:23.8728297Z 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:23.8732253Z 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:23.8736170Z 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:23.8740054Z 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:23.8744046Z 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:23.8746910Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/quantizer 2025-06-05T23:55:23.8749844Z 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:23.8752660Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/tester 2025-06-05T23:55:23.8755230Z 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:23.8758919Z 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:23.8762684Z 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:23.8766386Z 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:23.8769030Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/test/tosautil 2025-06-05T23:55:23.8771647Z 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:23.8774324Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/util 2025-06-05T23:55:23.8776939Z 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:23.8779482Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party 2025-06-05T23:55:23.8781277Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib 2025-06-05T23:55:23.8784440Z 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:23.8787964Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/python 2025-06-05T23:55:23.8790293Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/python/serializer 2025-06-05T23:55:23.8794188Z 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:23.8799624Z 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:23.8803561Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/python/tosa 2025-06-05T23:55:23.8807599Z 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:23.8813016Z 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:23.8818213Z 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:23.8823427Z 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:23.8828787Z 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:23.8834059Z 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:23.8839307Z 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:23.8844417Z 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:23.8849489Z 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:23.8855399Z 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:23.8860837Z 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:23.8866055Z 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:23.8871415Z 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:23.8876516Z 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:23.8881572Z 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:23.8886943Z 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:23.8892203Z 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:23.8897492Z 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:23.8902842Z 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:23.8908215Z 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:23.8913470Z 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:23.8918706Z 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:23.8923959Z 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:23.8929215Z 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:23.8934449Z 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:23.8940009Z 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:23.8945208Z 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:23.8950423Z 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:23.8955558Z 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:23.8960854Z 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:23.8966278Z 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:23.8971563Z 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:23.8976751Z 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:23.8981958Z 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:23.8985841Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/test 2025-06-05T23:55:23.8988187Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/test/scripts 2025-06-05T23:55:23.8991969Z 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:23.8995866Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/test/scripts/xunit 2025-06-05T23:55:23.8999802Z 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:23.9003606Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party 2025-06-05T23:55:23.9006076Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers 2025-06-05T23:55:23.9010176Z 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:23.9014616Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conan 2025-06-05T23:55:23.9019081Z 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:23.9023550Z 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:23.9028468Z 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:23.9033157Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens 2025-06-05T23:55:23.9037711Z 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:23.9043890Z 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:23.9048389Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/cpp 2025-06-05T23:55:23.9053003Z 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:23.9057667Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/csharp 2025-06-05T23:55:23.9062423Z 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:23.9067152Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/dart 2025-06-05T23:55:23.9071865Z 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:23.9076510Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/go 2025-06-05T23:55:23.9081048Z 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:23.9085839Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/java 2025-06-05T23:55:23.9090497Z 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:23.9095160Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/kotlin 2025-06-05T23:55:23.9100333Z 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:23.9105044Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lobster 2025-06-05T23:55:23.9109841Z 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:23.9114581Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lua 2025-06-05T23:55:23.9119179Z 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:23.9123820Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/nim 2025-06-05T23:55:23.9128434Z 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:23.9133056Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/php 2025-06-05T23:55:23.9137684Z 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:23.9142253Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py 2025-06-05T23:55:23.9146799Z 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:23.9153051Z 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:23.9159236Z 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:23.9165405Z 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:23.9169998Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/rust 2025-06-05T23:55:23.9174646Z 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:23.9179476Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/swift 2025-06-05T23:55:23.9184314Z 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:23.9189214Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/ts 2025-06-05T23:55:23.9193760Z 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:23.9198369Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/schema 2025-06-05T23:55:23.9203054Z 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:23.9207659Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python 2025-06-05T23:55:23.9212022Z 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:23.9217903Z 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:23.9222447Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers 2025-06-05T23:55:23.9227271Z 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:23.9233885Z 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:23.9240515Z 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:23.9247122Z 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:23.9253711Z 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:23.9260372Z 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:23.9267448Z 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:23.9274177Z 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:23.9280747Z 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:23.9287429Z 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:23.9292391Z 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:23.9297824Z 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:23.9305207Z 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:23.9312475Z 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:23.9319631Z 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:23.9326803Z 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:23.9334005Z 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:23.9341233Z 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:23.9348856Z 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:23.9356056Z 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:23.9363288Z 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:23.9370571Z 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:23.9377717Z 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:23.9384820Z 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:23.9391580Z 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:23.9395967Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/samples 2025-06-05T23:55:23.9400451Z 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:23.9406523Z 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:23.9410973Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts 2025-06-05T23:55:23.9415513Z 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:23.9421695Z 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:23.9428006Z 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:23.9434523Z 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:23.9440716Z 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:23.9445339Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests 2025-06-05T23:55:23.9449855Z 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:23.9456032Z 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:23.9462003Z 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:23.9466448Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame 2025-06-05T23:55:23.9471325Z 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:23.9477866Z 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:23.9484201Z 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:23.9489018Z 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:23.9493993Z 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:23.9500679Z 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:23.9507498Z 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:23.9514650Z 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:23.9521952Z 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:23.9528799Z 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:23.9535563Z 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:23.9542304Z 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:23.9549104Z 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:23.9555951Z 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:23.9562746Z 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:23.9569451Z 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:23.9576194Z 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:23.9583036Z 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:23.9590640Z 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:23.9597623Z 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:23.9604696Z 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:23.9611708Z 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:23.9618745Z 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:23.9625500Z 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:23.9632188Z 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:23.9638971Z 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:23.9644194Z 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:23.9649531Z 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:23.9656864Z 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:23.9664343Z 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:23.9671930Z 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:23.9679521Z 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:23.9687289Z 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:23.9694963Z 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:23.9700206Z 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:23.9705205Z 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:23.9712019Z 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:23.9716960Z 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:23.9722089Z 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:23.9729099Z 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:23.9736104Z 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:23.9741109Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc 2025-06-05T23:55:23.9745758Z 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:23.9752232Z 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:23.9758653Z 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:23.9765028Z 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:23.9771312Z 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:23.9777852Z 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:23.9784171Z 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:23.9790693Z 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:23.9796933Z 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:23.9801570Z 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:23.9806250Z 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:23.9812668Z 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:23.9819161Z 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:23.9823941Z 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:23.9828836Z 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:23.9835445Z 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:23.9840259Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nim 2025-06-05T23:55:23.9844753Z 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:23.9849404Z 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:23.9854448Z 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:23.9861724Z 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:23.9868564Z 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:23.9873348Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts 2025-06-05T23:55:23.9877957Z 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:23.9884308Z 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:23.9889347Z 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:23.9894578Z 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:23.9899983Z 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:23.9905269Z 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:23.9912611Z 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:23.9919891Z 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:23.9925025Z 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:23.9929945Z 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:23.9936800Z 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:23.9942233Z 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:23.9945522Z 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:23.9950998Z 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:23.9958308Z 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:23.9965675Z 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:23.9972904Z 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:23.9978340Z 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:23.9984232Z 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:23.9992499Z 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:24.0000539Z 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:24.0008636Z 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:24.0016535Z 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:24.0022085Z 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:24.0027760Z 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:24.0035009Z 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:24.0041982Z 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:24.0048843Z 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:24.0055298Z 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:24.0061380Z 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:24.0067438Z 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:24.0073568Z 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:24.0079711Z 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:24.0085935Z 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:24.0091977Z 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:24.0098036Z 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:24.0104086Z 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:24.0110545Z 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:24.0116585Z 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:24.0122703Z 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:24.0128912Z 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:24.0158794Z 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:24.0164905Z 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:24.0171127Z 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:24.0177379Z 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:24.0183472Z 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:24.0189722Z 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:24.0195774Z 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:24.0201986Z 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:24.0208245Z 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:24.0214380Z 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:24.0219256Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit 2025-06-05T23:55:24.0223874Z 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:24.0228686Z 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:24.0233595Z 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:24.0240246Z 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:24.0245116Z 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:24.0250082Z 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:24.0256881Z 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:24.0261844Z 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:24.0266734Z 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:24.0273409Z 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:24.0278318Z 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:24.0283358Z 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:24.0290447Z 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:24.0295399Z 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:24.0300515Z 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:24.0305371Z 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:24.0310344Z 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:24.0315254Z 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:24.0320272Z 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:24.0327057Z 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:24.0333810Z 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:24.0340562Z 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:24.0345529Z 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:24.0350885Z 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:24.0358146Z 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:24.0365435Z 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:24.0370574Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest 2025-06-05T23:55:24.0375360Z 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:24.0382180Z 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:24.0389091Z 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:24.0395825Z 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:24.0402519Z 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:24.0409209Z 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:24.0415922Z 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:24.0422594Z 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:24.0429467Z 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:24.0436326Z 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:24.0443138Z 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:24.0450012Z 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:24.0454986Z 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:24.0459847Z 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:24.0464874Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift 2025-06-05T23:55:24.0468104Z 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:24.0471441Z 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:24.0477070Z 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:24.0484867Z 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:24.0490593Z 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:24.0494058Z 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:24.0499906Z 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:24.0505265Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc 2025-06-05T23:55:24.0508171Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/tests 2025-06-05T23:55:24.0512694Z 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:24.0517308Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples 2025-06-05T23:55:24.0520405Z 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:24.0523634Z 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:24.0528893Z 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:24.0536001Z 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:24.0541328Z 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:24.0546900Z 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:24.0555028Z 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:24.0562644Z 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:24.0570205Z 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:24.0577247Z 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:24.0581921Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/samples 2025-06-05T23:55:24.0584979Z 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:24.0590170Z 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:24.0594945Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java 2025-06-05T23:55:24.0597726Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src 2025-06-05T23:55:24.0600646Z 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:24.0603661Z 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:24.0606828Z 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:24.0612117Z 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:24.0619367Z 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:24.0626375Z 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:24.0631813Z 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:24.0637443Z 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:24.0644813Z 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:24.0652392Z 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:24.0660203Z 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:24.0667959Z 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:24.0675508Z 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:24.0682972Z 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:24.0690558Z 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:24.0698013Z 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:24.0705511Z 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:24.0713029Z 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:24.0720869Z 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:24.0728280Z 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:24.0735805Z 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:24.0743700Z 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:24.0751424Z 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:24.0758851Z 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:24.0766613Z 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:24.0774402Z 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:24.0781830Z 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:24.0789452Z 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:24.0796962Z 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:24.0802687Z 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:24.0808946Z 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:24.0817003Z 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:24.0825239Z 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:24.0833584Z 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:24.0841977Z 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:24.0850383Z 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:24.0858445Z 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:24.0864207Z 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:24.0869783Z 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:24.0877224Z 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:24.0882601Z 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:24.0888134Z 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:24.0895520Z 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:24.0903245Z 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:24.0910597Z 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:24.0915967Z 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:24.0921875Z 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:24.0929980Z 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:24.0938132Z 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:24.0946299Z 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:24.0954309Z 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:24.0959857Z 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:24.0965191Z 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:24.0972328Z 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:24.0977660Z 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:24.0983367Z 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:24.0991246Z 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:24.0998680Z 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:24.1004101Z 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:24.1009441Z 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:24.1015952Z 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:24.1020174Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart 2025-06-05T23:55:24.1024601Z 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:24.1030735Z 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:24.1035131Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test 2025-06-05T23:55:24.1039683Z 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:24.1045901Z 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:24.1052108Z 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:24.1056716Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/reflection 2025-06-05T23:55:24.1061326Z 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:24.1066061Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/snap 2025-06-05T23:55:24.1070826Z 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:24.1075243Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/android 2025-06-05T23:55:24.1078138Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/android/app 2025-06-05T23:55:24.1081079Z 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:24.1084160Z 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:24.1087906Z 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:24.1092985Z 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:24.1097936Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/benchmarks 2025-06-05T23:55:24.1099278Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/benchmarks/cpp 2025-06-05T23:55:24.1100786Z 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:24.1104156Z 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:24.1105445Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/examples 2025-06-05T23:55:24.1106841Z 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:24.1109923Z 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:24.1112976Z 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:24.1113935Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/third-party/serialization_lib/schema 2025-06-05T23:55:24.1116152Z 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:24.1116746Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/tosa 2025-06-05T23:55:24.1117392Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/arm/tosa/schemas 2025-06-05T23:55:24.1119057Z 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:24.1121126Z 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:24.1121715Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/example 2025-06-05T23:55:24.1123261Z 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:24.1124876Z 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:24.1126457Z 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:24.1128102Z 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:24.1129041Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/example/example_backend_delegate_passes 2025-06-05T23:55:24.1131301Z 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:24.1133710Z 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:24.1134477Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/example/example_operators 2025-06-05T23:55:24.1136482Z 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:24.1138329Z 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:24.1140198Z 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:24.1142079Z 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:24.1143953Z 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:24.1145861Z 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:24.1147756Z 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:24.1149696Z 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:24.1151519Z 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:24.1153373Z 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:24.1154082Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/mediatek 2025-06-05T23:55:24.1155636Z 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:24.1157185Z 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:24.1158728Z 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:24.1159379Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/mediatek/_passes 2025-06-05T23:55:24.1160968Z 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:24.1162944Z 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:24.1163636Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/mediatek/quantizer 2025-06-05T23:55:24.1165332Z 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:24.1167111Z 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:24.1168849Z 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:24.1170625Z 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:24.1171162Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp 2025-06-05T23:55:24.1172714Z 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:24.1174203Z 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:24.1175687Z 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:24.1177065Z 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:24.1177694Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/aten_passes 2025-06-05T23:55:24.1179546Z 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:24.1181386Z 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:24.1183163Z 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:24.1183762Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend 2025-06-05T23:55:24.1185519Z 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:24.1187390Z 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:24.1189441Z 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:24.1191159Z 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:24.1191766Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir 2025-06-05T23:55:24.1193527Z 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:24.1195313Z 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:24.1196944Z 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:24.1198681Z 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:24.1199407Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/converter 2025-06-05T23:55:24.1201258Z 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:24.1203228Z 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:24.1205285Z 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:24.1207251Z 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:24.1208081Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/converter/builder 2025-06-05T23:55:24.1210143Z 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:24.1212466Z 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:24.1214673Z 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:24.1217036Z 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:24.1217943Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/converter/conversion 2025-06-05T23:55:24.1220075Z 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:24.1222364Z 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:24.1224801Z 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:24.1227067Z 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:24.1228117Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/converter/node_converters 2025-06-05T23:55:24.1230349Z 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:24.1231486Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters 2025-06-05T23:55:24.1234100Z 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:24.1236846Z 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:24.1239610Z 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:24.1242437Z 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:24.1245289Z 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:24.1248027Z 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:24.1250718Z 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:24.1253555Z 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:24.1256385Z 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:24.1259202Z 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:24.1261952Z 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:24.1264957Z 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:24.1267729Z 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:24.1268870Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/converter/node_converters/shared 2025-06-05T23:55:24.1271298Z 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:24.1273902Z 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:24.1276444Z 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:24.1279104Z 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:24.1279771Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/lib 2025-06-05T23:55:24.1281491Z 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:24.1282244Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/lib/tflite 2025-06-05T23:55:24.1284275Z 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:24.1286419Z 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:24.1288614Z 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:24.1290642Z 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:24.1292635Z 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:24.1294691Z 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:24.1296735Z 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:24.1298932Z 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:24.1301398Z 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:24.1303597Z 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:24.1305994Z 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:24.1308441Z 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:24.1310527Z 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:24.1312654Z 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:24.1314772Z 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:24.1316878Z 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:24.1318815Z 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:24.1320928Z 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:24.1322997Z 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:24.1325084Z 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:24.1327147Z 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:24.1329167Z 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:24.1331182Z 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:24.1333198Z 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:24.1335426Z 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:24.1337596Z 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:24.1339995Z 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:24.1342036Z 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:24.1344020Z 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:24.1346053Z 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:24.1348298Z 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:24.1350435Z 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:24.1352484Z 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:24.1354641Z 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:24.1356841Z 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:24.1358981Z 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:24.1361025Z 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:24.1363121Z 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:24.1365162Z 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:24.1367171Z 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:24.1369433Z 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:24.1371748Z 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:24.1373765Z 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:24.1375745Z 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:24.1378109Z 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:24.1380206Z 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:24.1382212Z 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:24.1384301Z 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:24.1386588Z 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:24.1388870Z 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:24.1391280Z 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:24.1393369Z 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:24.1395422Z 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:24.1397458Z 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:24.1399618Z 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:24.1401661Z 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:24.1403750Z 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:24.1405906Z 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:24.1408125Z 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:24.1410210Z 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:24.1412377Z 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:24.1414336Z 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:24.1416679Z 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:24.1418723Z 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:24.1420891Z 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:24.1422997Z 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:24.1425071Z 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:24.1427069Z 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:24.1429235Z 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:24.1431337Z 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:24.1433344Z 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:24.1435781Z 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:24.1437882Z 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:24.1439981Z 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:24.1442091Z 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:24.1444202Z 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:24.1446331Z 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:24.1448511Z 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:24.1450685Z 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:24.1452636Z 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:24.1454925Z 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:24.1457019Z 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:24.1458918Z 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:24.1460921Z 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:24.1462908Z 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:24.1465200Z 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:24.1467487Z 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:24.1469641Z 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:24.1471677Z 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:24.1473639Z 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:24.1475658Z 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:24.1477663Z 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:24.1479658Z 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:24.1481671Z 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:24.1483619Z 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:24.1485809Z 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:24.1487778Z 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:24.1489918Z 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:24.1492356Z 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:24.1494585Z 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:24.1496581Z 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:24.1498604Z 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:24.1500632Z 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:24.1502656Z 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:24.1504771Z 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:24.1506936Z 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:24.1509155Z 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:24.1511215Z 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:24.1513283Z 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:24.1515478Z 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:24.1517790Z 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:24.1519996Z 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:24.1522103Z 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:24.1524124Z 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:24.1526237Z 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:24.1528252Z 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:24.1530397Z 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:24.1532596Z 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:24.1534709Z 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:24.1536739Z 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:24.1538814Z 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:24.1540974Z 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:24.1543005Z 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:24.1545024Z 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:24.1547057Z 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:24.1549216Z 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:24.1551284Z 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:24.1553343Z 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:24.1555538Z 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:24.1557699Z 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:24.1559831Z 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:24.1562009Z 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:24.1564138Z 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:24.1566177Z 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:24.1568222Z 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:24.1570511Z 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:24.1572738Z 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:24.1574803Z 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:24.1577163Z 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:24.1579411Z 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:24.1581732Z 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:24.1583953Z 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:24.1586396Z 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:24.1588795Z 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:24.1591088Z 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:24.1593372Z 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:24.1595693Z 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:24.1597898Z 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:24.1600072Z 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:24.1602226Z 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:24.1604468Z 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:24.1606671Z 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:24.1609172Z 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:24.1611705Z 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:24.1613917Z 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:24.1616104Z 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:24.1618279Z 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:24.1620560Z 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:24.1622754Z 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:24.1624902Z 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:24.1626844Z 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:24.1628923Z 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:24.1630849Z 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:24.1632822Z 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:24.1634816Z 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:24.1636816Z 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:24.1638863Z 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:24.1641035Z 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:24.1643137Z 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:24.1645149Z 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:24.1647291Z 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:24.1649791Z 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:24.1651825Z 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:24.1653868Z 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:24.1656127Z 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:24.1658412Z 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:24.1660697Z 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:24.1662962Z 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:24.1665053Z 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:24.1667125Z 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:24.1669222Z 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:24.1671254Z 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:24.1673370Z 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:24.1675235Z 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:24.1676080Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/tflite_generator 2025-06-05T23:55:24.1678076Z 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:24.1680152Z 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:24.1681219Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/tflite_generator/builtin_options 2025-06-05T23:55:24.1683589Z 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:24.1686474Z 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:24.1688947Z 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:24.1691404Z 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:24.1693906Z 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:24.1696417Z 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:24.1698976Z 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:24.1701501Z 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:24.1704240Z 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:24.1706990Z 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:24.1709605Z 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:24.1712127Z 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:24.1714624Z 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:24.1717223Z 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:24.1719706Z 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:24.1722188Z 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:24.1725001Z 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:24.1727571Z 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:24.1730179Z 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:24.1732746Z 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:24.1735222Z 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:24.1737680Z 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:24.1740125Z 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:24.1742640Z 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:24.1745277Z 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:24.1747791Z 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:24.1750337Z 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:24.1752803Z 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:24.1755386Z 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:24.1757902Z 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:24.1760441Z 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:24.1763207Z 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:24.1765739Z 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:24.1768205Z 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:24.1770738Z 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:24.1773295Z 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:24.1775817Z 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:24.1778338Z 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:24.1780788Z 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:24.1783275Z 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:24.1785962Z 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:24.1788516Z 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:24.1790966Z 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:24.1793488Z 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:24.1796000Z 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:24.1798454Z 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:24.1801354Z 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:24.1803797Z 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:24.1806314Z 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:24.1808808Z 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:24.1811299Z 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:24.1813779Z 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:24.1816213Z 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:24.1818735Z 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:24.1821221Z 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:24.1823740Z 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:24.1826263Z 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:24.1828868Z 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:24.1831403Z 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:24.1833998Z 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:24.1836684Z 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:24.1839406Z 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:24.1842034Z 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:24.1844569Z 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:24.1847050Z 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:24.1849535Z 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:24.1852004Z 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:24.1854500Z 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:24.1857109Z 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:24.1859620Z 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:24.1862126Z 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:24.1864642Z 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:24.1867308Z 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:24.1869909Z 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:24.1872474Z 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:24.1874937Z 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:24.1877391Z 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:24.1880129Z 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:24.1882710Z 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:24.1885413Z 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:24.1888195Z 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:24.1890949Z 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:24.1891987Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/tflite_generator/custom_options 2025-06-05T23:55:24.1894534Z 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:24.1895462Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/tflite_generator/meta 2025-06-05T23:55:24.1897593Z 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:24.1899686Z 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:24.1901797Z 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:24.1902634Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/tflite_optimizer 2025-06-05T23:55:24.1904635Z 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:24.1906718Z 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:24.1908894Z 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:24.1910943Z 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:24.1913054Z 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:24.1915474Z 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:24.1916521Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations 2025-06-05T23:55:24.1918870Z 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:24.1921372Z 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:24.1924088Z 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:24.1926687Z 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:24.1929276Z 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:24.1931997Z 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:24.1934660Z 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:24.1937205Z 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:24.1939753Z 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:24.1942549Z 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:24.1945134Z 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:24.1947710Z 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:24.1950353Z 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:24.1952947Z 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:24.1955870Z 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:24.1958720Z 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:24.1959338Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/quantizer 2025-06-05T23:55:24.1961080Z 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:24.1962742Z 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:24.1964336Z 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:24.1964922Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/tests 2025-06-05T23:55:24.1966577Z 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:24.1968112Z 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:24.1969850Z 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:24.1971373Z 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:24.1973025Z 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:24.1974646Z 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:24.1976398Z 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:24.1978108Z 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:24.1979804Z 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:24.1981493Z 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:24.1983062Z 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:24.1983672Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/tests/ir 2025-06-05T23:55:24.1984373Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/tests/ir/converter 2025-06-05T23:55:24.1985529Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/nxp/tests/ir/converter/node_converter 2025-06-05T23:55:24.1988583Z 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:24.1991170Z 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:24.1993501Z 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:24.1995847Z 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:24.1998245Z 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:24.2000650Z 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:24.2002955Z 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:24.2005303Z 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:24.2007674Z 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:24.2008272Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/openvino 2025-06-05T23:55:24.2009730Z 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:24.2011304Z 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:24.2012841Z 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:24.2013498Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/openvino/quantizer 2025-06-05T23:55:24.2015208Z 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:24.2017001Z 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:24.2017635Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/openvino/tests 2025-06-05T23:55:24.2019301Z 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:24.2019979Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/openvino/tests/models 2025-06-05T23:55:24.2021949Z 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:24.2022766Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/openvino/tests/ops 2025-06-05T23:55:24.2024735Z 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:24.2026481Z 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:24.2028318Z 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:24.2030076Z 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:24.2031892Z 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:24.2033740Z 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:24.2035489Z 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:24.2037281Z 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:24.2039060Z 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:24.2040864Z 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:24.2042630Z 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:24.2043221Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm 2025-06-05T23:55:24.2044774Z 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:24.2045414Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/_passes 2025-06-05T23:55:24.2047004Z 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:24.2048867Z 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:24.2050647Z 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:24.2052353Z 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:24.2054082Z 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:24.2055770Z 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:24.2057691Z 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:24.2059595Z 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:24.2061363Z 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:24.2063065Z 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:24.2064792Z 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:24.2066526Z 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:24.2068339Z 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:24.2070199Z 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:24.2071919Z 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:24.2073628Z 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:24.2075539Z 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:24.2077311Z 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:24.2078941Z 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:24.2080725Z 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:24.2082589Z 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:24.2084238Z 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:24.2086102Z 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:24.2087851Z 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:24.2089579Z 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:24.2091456Z 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:24.2093491Z 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:24.2095354Z 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:24.2097125Z 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:24.2098906Z 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:24.2100622Z 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:24.2102392Z 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:24.2104159Z 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:24.2105962Z 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:24.2107728Z 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:24.2109470Z 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:24.2111086Z 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:24.2111748Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/builders 2025-06-05T23:55:24.2113417Z 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:24.2115173Z 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:24.2116847Z 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:24.2118720Z 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:24.2120403Z 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:24.2122079Z 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:24.2123721Z 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:24.2125437Z 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:24.2127386Z 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:24.2129142Z 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:24.2130864Z 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:24.2132531Z 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:24.2134200Z 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:24.2135909Z 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:24.2137620Z 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:24.2139324Z 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:24.2140975Z 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:24.2142691Z 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:24.2144484Z 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:24.2146265Z 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:24.2148029Z 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:24.2149686Z 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:24.2151423Z 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:24.2153110Z 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:24.2154792Z 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:24.2156514Z 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:24.2158199Z 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:24.2159898Z 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:24.2161754Z 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:24.2163539Z 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:24.2165244Z 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:24.2166973Z 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:24.2168597Z 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:24.2170379Z 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:24.2172144Z 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:24.2173895Z 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:24.2175578Z 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:24.2177282Z 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:24.2179078Z 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:24.2180841Z 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:24.2182515Z 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:24.2184232Z 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:24.2186051Z 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:24.2187800Z 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:24.2189659Z 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:24.2191328Z 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:24.2193031Z 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:24.2194696Z 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:24.2196634Z 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:24.2198520Z 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:24.2200205Z 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:24.2201861Z 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:24.2203507Z 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:24.2205195Z 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:24.2206866Z 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:24.2208536Z 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:24.2210196Z 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:24.2211902Z 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:24.2213640Z 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:24.2215340Z 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:24.2219046Z 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:24.2222772Z 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:24.2226512Z 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:24.2230396Z 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:24.2234108Z 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:24.2237863Z 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:24.2241707Z 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:24.2245462Z 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:24.2249303Z 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:24.2253083Z 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:24.2256850Z 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:24.2260622Z 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:24.2264416Z 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:24.2268387Z 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:24.2272163Z 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:24.2275881Z 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:24.2279590Z 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:24.2283256Z 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:24.2287334Z 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:24.2291083Z 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:24.2294736Z 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:24.2298360Z 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:24.2302081Z 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:24.2305844Z 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:24.2309714Z 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:24.2313624Z 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:24.2317615Z 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:24.2321456Z 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:24.2325401Z 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:24.2329314Z 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:24.2331957Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/debugger 2025-06-05T23:55:24.2334586Z 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:24.2337232Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/partition 2025-06-05T23:55:24.2339996Z 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:24.2343916Z 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:24.2347767Z 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:24.2350549Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/quantizer 2025-06-05T23:55:24.2353297Z 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:24.2357238Z 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:24.2361111Z 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:24.2364963Z 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:24.2367845Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/quantizer/observers 2025-06-05T23:55:24.2371104Z 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:24.2375777Z 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:24.2378983Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/serialization 2025-06-05T23:55:24.2381841Z 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:24.2386128Z 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:24.2390402Z 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:24.2393259Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/tests 2025-06-05T23:55:24.2395812Z 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:24.2399465Z 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:24.2403530Z 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:24.2406075Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/utils 2025-06-05T23:55:24.2408664Z 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:24.2412236Z 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:24.2414743Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/aot 2025-06-05T23:55:24.2416276Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/qualcomm/aot/ir 2025-06-05T23:55:24.2418842Z 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:24.2421383Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/transforms 2025-06-05T23:55:24.2423762Z 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:24.2427197Z 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:24.2430886Z 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:24.2434441Z 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:24.2438166Z 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:24.2441953Z 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:24.2445632Z 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:24.2449153Z 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:24.2452642Z 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:24.2456138Z 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:24.2459624Z 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:24.2463182Z 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:24.2466846Z 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:24.2470455Z 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:24.2474155Z 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:24.2476968Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/transforms/test 2025-06-05T23:55:24.2479900Z 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:24.2484145Z 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:24.2488309Z 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:24.2490932Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan 2025-06-05T23:55:24.2493165Z 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:24.2496341Z 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:24.2499624Z 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:24.2502763Z 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:24.2506047Z 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:24.2508592Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/_passes 2025-06-05T23:55:24.2511075Z 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:24.2514634Z 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:24.2518320Z 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:24.2522082Z 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:24.2525817Z 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:24.2529601Z 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:24.2533417Z 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:24.2537204Z 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:24.2540973Z 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:24.2543660Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/partitioner 2025-06-05T23:55:24.2546707Z 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:24.2549788Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/quantizer 2025-06-05T23:55:24.2552528Z 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:24.2555221Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/runtime 2025-06-05T23:55:24.2557839Z 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:24.2560494Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/runtime/graph 2025-06-05T23:55:24.2562222Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/runtime/graph/ops 2025-06-05T23:55:24.2564060Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/runtime/graph/ops/glsl 2025-06-05T23:55:24.2567313Z 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:24.2571978Z 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:24.2576626Z 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:24.2581098Z 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:24.2585738Z 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:24.2590306Z 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:24.2594757Z 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:24.2599451Z 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:24.2604244Z 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:24.2608776Z 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:24.2613189Z 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:24.2617574Z 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:24.2621951Z 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:24.2626707Z 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:24.2631335Z 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:24.2636056Z 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:24.2640829Z 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:24.2645587Z 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:24.2650158Z 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:24.2654637Z 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:24.2659173Z 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:24.2663971Z 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:24.2668854Z 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:24.2673437Z 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:24.2678014Z 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:24.2682612Z 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:24.2687244Z 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:24.2691586Z 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:24.2695970Z 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:24.2700451Z 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:24.2705319Z 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:24.2709973Z 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:24.2714565Z 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:24.2719079Z 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:24.2723628Z 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:24.2728248Z 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:24.2732854Z 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:24.2737865Z 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:24.2742574Z 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:24.2747383Z 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:24.2752413Z 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:24.2757322Z 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:24.2762185Z 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:24.2766775Z 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:24.2771867Z 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:24.2776893Z 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:24.2781741Z 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:24.2786780Z 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:24.2791706Z 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:24.2796348Z 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:24.2800921Z 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:24.2805930Z 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:24.2810752Z 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:24.2815767Z 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:24.2845960Z 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:24.2850325Z 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:24.2854810Z 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:24.2859412Z 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:24.2863941Z 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:24.2868473Z 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:24.2872918Z 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:24.2877364Z 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:24.2881742Z 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:24.2886250Z 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:24.2889279Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/serialization 2025-06-05T23:55:24.2892172Z 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:24.2896682Z 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:24.2900828Z 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:24.2904884Z 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:24.2907561Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/test 2025-06-05T23:55:24.2910201Z 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:24.2913884Z 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:24.2917614Z 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:24.2921341Z 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:24.2923936Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/test/op_tests 2025-06-05T23:55:24.2926609Z 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:24.2929272Z 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:24.2932304Z 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:24.2934325Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/test/op_tests/utils 2025-06-05T23:55:24.2936957Z 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:24.2940276Z 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:24.2943635Z 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:24.2947372Z 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:24.2951335Z 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:24.2955296Z 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:24.2958028Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/test/glsl 2025-06-05T23:55:24.2960746Z 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:24.2964094Z 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:24.2967423Z 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:24.2969921Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party 2025-06-05T23:55:24.2971577Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/volk 2025-06-05T23:55:24.2974318Z 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:24.2976711Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/Vulkan-Headers 2025-06-05T23:55:24.2978750Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/Vulkan-Headers/registry 2025-06-05T23:55:24.2982295Z 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:24.2986873Z 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:24.2991281Z 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:24.2995987Z 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:24.2999850Z 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:24.3004019Z 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:24.3008335Z 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:24.3010680Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/Vulkan-Headers/registry/spec_tools 2025-06-05T23:55:24.3013082Z 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:24.3015380Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/VulkanMemoryAllocator 2025-06-05T23:55:24.3016701Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/VulkanMemoryAllocator/tools 2025-06-05T23:55:24.3018292Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/third-party/VulkanMemoryAllocator/tools/GpuMemDumpVis 2025-06-05T23:55:24.3020921Z 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:24.3023479Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/tools 2025-06-05T23:55:24.3024453Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/tools/gpuinfo 2025-06-05T23:55:24.3025633Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/vulkan/tools/gpuinfo/glsl 2025-06-05T23:55:24.3027408Z 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:24.3030167Z 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:24.3032758Z 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:24.3035386Z 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:24.3038032Z 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:24.3040696Z 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:24.3042281Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack 2025-06-05T23:55:24.3043695Z 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:24.3045808Z 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:24.3047285Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/_passes 2025-06-05T23:55:24.3048694Z 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:24.3050980Z 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:24.3053219Z 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:24.3055489Z 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:24.3057676Z 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:24.3059960Z 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:24.3062256Z 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:24.3064475Z 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:24.3066882Z 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:24.3069281Z 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:24.3071542Z 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:24.3073787Z 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:24.3075375Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/operators 2025-06-05T23:55:24.3076980Z 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:24.3079243Z 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:24.3081447Z 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:24.3083625Z 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:24.3085959Z 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:24.3088181Z 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:24.3090430Z 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:24.3092599Z 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:24.3094819Z 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:24.3097027Z 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:24.3099209Z 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:24.3101455Z 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:24.3103780Z 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:24.3106171Z 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:24.3108531Z 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:24.3110816Z 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:24.3113295Z 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:24.3115519Z 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:24.3117755Z 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:24.3120149Z 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:24.3122366Z 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:24.3124643Z 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:24.3126836Z 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:24.3129247Z 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:24.3131594Z 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:24.3133856Z 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:24.3136222Z 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:24.3138557Z 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:24.3140943Z 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:24.3143180Z 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:24.3145332Z 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:24.3147542Z 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:24.3149822Z 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:24.3152072Z 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:24.3154327Z 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:24.3156516Z 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:24.3158903Z 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:24.3160999Z 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:24.3163232Z 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:24.3165463Z 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:24.3167704Z 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:24.3169942Z 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:24.3172174Z 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:24.3174295Z 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:24.3176612Z 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:24.3178997Z 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:24.3181314Z 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:24.3183364Z 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:24.3185791Z 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:24.3187307Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/partition 2025-06-05T23:55:24.3189078Z 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:24.3191395Z 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:24.3193020Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/partition/config 2025-06-05T23:55:24.3194778Z 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:24.3197191Z 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:24.3199591Z 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:24.3202305Z 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:24.3204917Z 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:24.3207524Z 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:24.3209231Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/partition/graphs 2025-06-05T23:55:24.3211061Z 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:24.3213494Z 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:24.3215090Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/quantizer 2025-06-05T23:55:24.3216783Z 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:24.3219164Z 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:24.3220773Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/serialization 2025-06-05T23:55:24.3222574Z 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:24.3225178Z 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:24.3227781Z 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:24.3230268Z 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:24.3232049Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test 2025-06-05T23:55:24.3233612Z 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:24.3236148Z 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:24.3237703Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test/models 2025-06-05T23:55:24.3239515Z 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:24.3241711Z 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:24.3243963Z 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:24.3246337Z 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:24.3248911Z 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:24.3251335Z 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:24.3253683Z 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:24.3256085Z 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:24.3258549Z 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:24.3261022Z 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:24.3263431Z 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:24.3265934Z 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:24.3268377Z 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:24.3270163Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test/ops 2025-06-05T23:55:24.3271814Z 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:24.3274109Z 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:24.3276433Z 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:24.3278691Z 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:24.3280984Z 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:24.3283203Z 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:24.3285644Z 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:24.3287954Z 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:24.3290410Z 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:24.3292713Z 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:24.3295225Z 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:24.3297555Z 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:24.3299936Z 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:24.3302185Z 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:24.3304620Z 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:24.3306755Z 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:24.3309214Z 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:24.3311617Z 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:24.3314006Z 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:24.3316370Z 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:24.3318442Z 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:24.3320756Z 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:24.3322825Z 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:24.3324901Z 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:24.3327012Z 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:24.3329262Z 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:24.3331505Z 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:24.3333708Z 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:24.3335808Z 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:24.3338191Z 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:24.3340665Z 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:24.3343025Z 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:24.3345543Z 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:24.3347687Z 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:24.3349830Z 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:24.3351884Z 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:24.3353966Z 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:24.3356353Z 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:24.3358700Z 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:24.3361073Z 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:24.3363396Z 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:24.3365697Z 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:24.3368128Z 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:24.3369809Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test/passes 2025-06-05T23:55:24.3371712Z 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:24.3374288Z 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:24.3376937Z 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:24.3379568Z 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:24.3382226Z 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:24.3384954Z 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:24.3387793Z 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:24.3389808Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test/quantizer 2025-06-05T23:55:24.3391653Z 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:24.3394312Z 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:24.3396991Z 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:24.3398961Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test/serialization 2025-06-05T23:55:24.3401002Z 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:24.3403743Z 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:24.3405615Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/test/tester 2025-06-05T23:55:24.3407394Z 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:24.3409719Z 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:24.3411354Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party 2025-06-05T23:55:24.3412542Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/FP16 2025-06-05T23:55:24.3414237Z 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:24.3416220Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/FP16/include 2025-06-05T23:55:24.3417398Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/FP16/include/fp16 2025-06-05T23:55:24.3419530Z 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:24.3422367Z 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:24.3425279Z 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:24.3427204Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/FP16/test 2025-06-05T23:55:24.3428636Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/FP16/test/peachpy 2025-06-05T23:55:24.3430609Z 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:24.3433513Z 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:24.3435507Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/FXdiv 2025-06-05T23:55:24.3437467Z 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:24.3440031Z 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:24.3441946Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/cpuinfo 2025-06-05T23:55:24.3443661Z 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:24.3445698Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/cpuinfo/scripts 2025-06-05T23:55:24.3447660Z 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:24.3450704Z 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:24.3453750Z 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:24.3455961Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/cpuinfo/deps 2025-06-05T23:55:24.3457119Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/cpuinfo/deps/clog 2025-06-05T23:55:24.3459055Z 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:24.3461680Z 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:24.3464157Z 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:24.3466157Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/pthreadpool 2025-06-05T23:55:24.3468027Z 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:24.3470773Z 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:24.3472728Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/XNNPACK 2025-06-05T23:55:24.3473882Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/XNNPACK/scripts 2025-06-05T23:55:24.3476023Z 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:24.3479093Z 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:24.3482405Z 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:24.3485793Z 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:24.3487724Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/XNNPACK/tools 2025-06-05T23:55:24.3489776Z 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:24.3492726Z 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:24.3495554Z 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:24.3499005Z 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:24.3502237Z 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:24.3505208Z 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:24.3508303Z 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:24.3511454Z 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:24.3514658Z 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:24.3517622Z 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:24.3520610Z 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:24.3523629Z 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:24.3526676Z 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:24.3529712Z 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:24.3533113Z 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:24.3536343Z 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:24.3539426Z 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:24.3542675Z 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:24.3545633Z 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:24.3548544Z 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:24.3551445Z 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:24.3554352Z 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:24.3557391Z 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:24.3560564Z 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:24.3563524Z 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:24.3566422Z 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:24.3569342Z 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:24.3571413Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/third-party/XNNPACK/test 2025-06-05T23:55:24.3573507Z 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:24.3576293Z 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:24.3579245Z 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:24.3582338Z 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:24.3585481Z 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:24.3588557Z 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:24.3591354Z 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:24.3594397Z 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:24.3597018Z 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:24.3599614Z 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:24.3602220Z 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:24.3604916Z 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:24.3607532Z 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:24.3610268Z 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:24.3612788Z 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:24.3615554Z 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:24.3618369Z 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:24.3621236Z 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:24.3624106Z 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:24.3626964Z 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:24.3630227Z 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:24.3633077Z 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:24.3635931Z 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:24.3638728Z 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:24.3641410Z 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:24.3644135Z 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:24.3646815Z 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:24.3649727Z 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:24.3652688Z 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:24.3655501Z 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:24.3658197Z 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:24.3660955Z 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:24.3663554Z 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:24.3666449Z 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:24.3669324Z 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:24.3672114Z 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:24.3674851Z 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:24.3678245Z 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:24.3681110Z 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:24.3684280Z 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:24.3689150Z 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:24.3691824Z 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:24.3694458Z 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:24.3697111Z 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:24.3699812Z 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:24.3702589Z 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:24.3705249Z 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:24.3708262Z 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:24.3711166Z 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:24.3714225Z 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:24.3717330Z 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:24.3720300Z 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:24.3721616Z 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:24.3723000Z 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:24.3724508Z 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:24.3725784Z 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:24.3727069Z 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:24.3728345Z 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:24.3729631Z 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:24.3731160Z 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:24.3732459Z 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:24.3733755Z 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:24.3735048Z 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:24.3736406Z 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:24.3737824Z 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:24.3739077Z 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:24.3740359Z 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:24.3741536Z 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:24.3742704Z 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:24.3743902Z 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:24.3745184Z 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:24.3746429Z 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:24.3747593Z 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:24.3748827Z 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:24.3749950Z 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:24.3750316Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/xnnpack/utils 2025-06-05T23:55:24.3751215Z 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:24.3752176Z 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:24.3753169Z 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:24.3754148Z 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:24.3754465Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple 2025-06-05T23:55:24.3754787Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/mps 2025-06-05T23:55:24.3755663Z 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:24.3756685Z 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:24.3757097Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/mps/operators 2025-06-05T23:55:24.3758105Z 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:24.3759339Z 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:24.3760357Z 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:24.3761389Z 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:24.3762559Z 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:24.3763613Z 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:24.3764767Z 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:24.3766013Z 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:24.3767164Z 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:24.3768379Z 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:24.3769550Z 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:24.3770549Z 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:24.3771591Z 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:24.3772744Z 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:24.3773725Z 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:24.3774773Z 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:24.3775923Z 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:24.3776936Z 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:24.3777915Z 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:24.3779089Z 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:24.3779482Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/mps/partition 2025-06-05T23:55:24.3780444Z 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:24.3781677Z 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:24.3782071Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/mps/serialization 2025-06-05T23:55:24.3783162Z 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:24.3784348Z 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:24.3785702Z 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:24.3786188Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/mps/test 2025-06-05T23:55:24.3787226Z 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:24.3788446Z 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:24.3789434Z 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:24.3790392Z 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:24.3791427Z 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:24.3792526Z 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:24.3793470Z 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:24.3793896Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/mps/utils 2025-06-05T23:55:24.3794940Z 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:24.3795893Z 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:24.3796244Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml 2025-06-05T23:55:24.3796665Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml/compiler 2025-06-05T23:55:24.3797810Z 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:24.3798899Z 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:24.3799298Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml/partition 2025-06-05T23:55:24.3800485Z 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:24.3801719Z 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:24.3802153Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml/quantizer 2025-06-05T23:55:24.3803163Z 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:24.3804248Z 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:24.3804656Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml/test 2025-06-05T23:55:24.3805852Z 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:24.3807037Z 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:24.3807508Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml/runtime 2025-06-05T23:55:24.3808032Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/apple/coreml/runtime/test 2025-06-05T23:55:24.3809204Z 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:24.3810174Z 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:24.3811515Z 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:24.3811849Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence 2025-06-05T23:55:24.3812190Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/aot 2025-06-05T23:55:24.3813048Z 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:24.3813994Z 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:24.3815033Z 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:24.3815943Z 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:24.3817049Z 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:24.3817917Z 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:24.3818817Z 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:24.3819750Z 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:24.3820677Z 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:24.3821727Z 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:24.3822686Z 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:24.3823550Z 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:24.3824563Z 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:24.3825556Z 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:24.3826526Z 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:24.3827654Z 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:24.3828644Z 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:24.3829484Z 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:24.3829960Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/aot/quantizer 2025-06-05T23:55:24.3831116Z 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:24.3832179Z 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:24.3833374Z 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:24.3834397Z 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:24.3834884Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/aot/tests 2025-06-05T23:55:24.3835976Z 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:24.3837187Z 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:24.3838213Z 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:24.3839429Z 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:24.3840569Z 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:24.3841815Z 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:24.3842879Z 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:24.3844062Z 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:24.3845302Z 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:24.3846377Z 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:24.3847530Z 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:24.3848787Z 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:24.3849152Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/runtime 2025-06-05T23:55:24.3850120Z 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:24.3851246Z 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:24.3852166Z 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:24.3853089Z 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:24.3853443Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils 2025-06-05T23:55:24.3854353Z 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:24.3855256Z 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:24.3856201Z 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:24.3856583Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO 2025-06-05T23:55:24.3857554Z 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:24.3858022Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/calibrator 2025-06-05T23:55:24.3859146Z 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:24.3860274Z 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:24.3860717Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/examples 2025-06-05T23:55:24.3861836Z 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:24.3863008Z 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:24.3864148Z 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:24.3864555Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto 2025-06-05T23:55:24.3865603Z 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:24.3866095Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen 2025-06-05T23:55:24.3867358Z 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:24.3868049Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple 2025-06-05T23:55:24.3869371Z 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:24.3870812Z 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:24.3872335Z 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:24.3872912Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen/argument 2025-06-05T23:55:24.3874231Z 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:24.3875678Z 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:24.3877226Z 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:24.3878771Z 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:24.3879438Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute 2025-06-05T23:55:24.3881036Z 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:24.3882558Z 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:24.3884215Z 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:24.3885771Z 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:24.3886413Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen/specs 2025-06-05T23:55:24.3887975Z 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:24.3889417Z 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:24.3889955Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen/utils 2025-06-05T23:55:24.3891458Z 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:24.3892790Z 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:24.3893357Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/inputgen/variable 2025-06-05T23:55:24.3894681Z 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:24.3896053Z 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:24.3897382Z 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:24.3898722Z 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:24.3900081Z 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:24.3901768Z 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:24.3903695Z 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:24.3904180Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/facto/specdb 2025-06-05T23:55:24.3905317Z 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:24.3906485Z 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:24.3907656Z 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:24.3908922Z 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:24.3909341Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/test 2025-06-05T23:55:24.3909825Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cadence/utils/FACTO/test/inputgen 2025-06-05T23:55:24.3911099Z 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:24.3912373Z 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:24.3913851Z 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:24.3915134Z 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:24.3916392Z 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:24.3917659Z 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:24.3918932Z 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:24.3920156Z 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:24.3921403Z 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:24.3922603Z 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:24.3923889Z 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:24.3925171Z 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:24.3926441Z 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:24.3927928Z 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:24.3929266Z 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:24.3929596Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cortex_m 2025-06-05T23:55:24.3929939Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cortex_m/ops 2025-06-05T23:55:24.3930834Z 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:24.3931844Z 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:24.3932213Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cortex_m/passes 2025-06-05T23:55:24.3933410Z 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:24.3934008Z creating pip-out/bdist.linux-x86_64/wheel/executorch/backends/cortex_m/test 2025-06-05T23:55:24.3935120Z 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:24.3935386Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples 2025-06-05T23:55:24.3935840Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/llm_pte_finetuning 2025-06-05T23:55:24.3936949Z 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:24.3938039Z 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:24.3939179Z 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:24.3940310Z 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:24.3941292Z 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:24.3942528Z 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:24.3943750Z 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:24.3944868Z 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:24.3945861Z 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:24.3946210Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models 2025-06-05T23:55:24.3947200Z 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:24.3948118Z 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:24.3949074Z 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:24.3950071Z 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:24.3950522Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/deeplab_v3 2025-06-05T23:55:24.3951619Z 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:24.3952552Z 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:24.3952893Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/edsr 2025-06-05T23:55:24.3953943Z 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:24.3955030Z 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:24.3955425Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/efficient_sam 2025-06-05T23:55:24.3956390Z 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:24.3957479Z 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:24.3958152Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/efficient_sam/efficient_sam_core 2025-06-05T23:55:24.3959595Z 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:24.3961020Z 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:24.3962445Z 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:24.3963929Z 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:24.3965347Z 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:24.3966802Z 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:24.3967266Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/emformer_rnnt 2025-06-05T23:55:24.3968263Z 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:24.3969457Z 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:24.3969842Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/inception_v3 2025-06-05T23:55:24.3970803Z 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:24.3971864Z 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:24.3972380Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/inception_v4 2025-06-05T23:55:24.3973337Z 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:24.3974374Z 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:24.3974905Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama 2025-06-05T23:55:24.3975905Z 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:24.3977014Z 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:24.3978015Z 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:24.3979171Z 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:24.3980088Z 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:24.3981020Z 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:24.3981922Z 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:24.3982824Z 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:24.3983836Z 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:24.3984787Z 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:24.3985823Z 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:24.3986713Z 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:24.3987573Z 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:24.3988493Z 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:24.3989443Z 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:24.3989837Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama/evaluate 2025-06-05T23:55:24.3990818Z 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:24.3991852Z 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:24.3992280Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama/experimental 2025-06-05T23:55:24.3993376Z 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:24.3994606Z 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:24.3995999Z 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:24.3997206Z 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:24.3997599Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama/runner 2025-06-05T23:55:24.3998570Z 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:24.3999712Z 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:24.4000837Z 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:24.4001466Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama/source_transformation 2025-06-05T23:55:24.4002769Z 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:24.4004114Z 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:24.4005457Z 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:24.4006687Z 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:24.4008132Z 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:24.4009355Z 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:24.4010772Z 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:24.4012060Z 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:24.4013404Z 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:24.4014689Z 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:24.4016013Z 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:24.4017425Z 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:24.4018823Z 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:24.4020298Z 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:24.4021563Z 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:24.4022894Z 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:24.4024364Z 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:24.4025597Z 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:24.4026069Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama/tests 2025-06-05T23:55:24.4027285Z 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:24.4028712Z 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:24.4029781Z 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:24.4030846Z 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:24.4032099Z 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:24.4033131Z 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:24.4034302Z 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:24.4034787Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama/tokenizer 2025-06-05T23:55:24.4035989Z 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:24.4036466Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision 2025-06-05T23:55:24.4037512Z 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:24.4037999Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision/preprocess 2025-06-05T23:55:24.4039239Z 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:24.4040750Z 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:24.4042022Z 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:24.4043340Z 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:24.4043795Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision/runner 2025-06-05T23:55:24.4045191Z 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:24.4046311Z 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:24.4047446Z 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:24.4048791Z 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:24.4049411Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision/text_decoder 2025-06-05T23:55:24.4050736Z 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:24.4051274Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision/text_decoder/test 2025-06-05T23:55:24.4052542Z 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:24.4054051Z 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:24.4054646Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision/vision_encoder 2025-06-05T23:55:24.4055904Z 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:24.4057207Z 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:24.4057809Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llama3_2_vision/vision_encoder/test 2025-06-05T23:55:24.4059149Z 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:24.4060536Z 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:24.4061012Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llava 2025-06-05T23:55:24.4062081Z 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:24.4063011Z 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:24.4063990Z 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:24.4064382Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/llava/test 2025-06-05T23:55:24.4065430Z 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:24.4066521Z 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:24.4066888Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/lstm 2025-06-05T23:55:24.4067765Z 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:24.4068970Z 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:24.4069345Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/mobilebert 2025-06-05T23:55:24.4070292Z 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:24.4071452Z 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:24.4071880Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/mobilenet_v2 2025-06-05T23:55:24.4072848Z 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:24.4073935Z 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:24.4074363Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/mobilenet_v3 2025-06-05T23:55:24.4075374Z 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:24.4076451Z 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:24.4076909Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/phi-3-mini-lora 2025-06-05T23:55:24.4077941Z 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:24.4078310Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/phi-3-mini 2025-06-05T23:55:24.4079357Z 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:24.4080326Z 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:24.4081354Z 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:24.4082498Z 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:24.4083556Z 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:24.4083965Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/phi_4_mini 2025-06-05T23:55:24.4084979Z 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:24.4086189Z 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:24.4086644Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/qwen2_5 2025-06-05T23:55:24.4087586Z 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:24.4088544Z 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:24.4088920Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/qwen3 2025-06-05T23:55:24.4089889Z 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:24.4090873Z 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:24.4091310Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/resnet 2025-06-05T23:55:24.4092306Z 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:24.4093319Z 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:24.4093660Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/smollm2 2025-06-05T23:55:24.4094623Z 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:24.4095698Z 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:24.4096104Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/test 2025-06-05T23:55:24.4097006Z 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:24.4098027Z 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:24.4098435Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/torchvision_vit 2025-06-05T23:55:24.4099552Z 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:24.4100625Z 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:24.4101216Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/toy_model 2025-06-05T23:55:24.4102282Z 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:24.4103434Z 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:24.4103866Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/wav2letter 2025-06-05T23:55:24.4105255Z 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:24.4106429Z 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:24.4106769Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/moshi 2025-06-05T23:55:24.4107250Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/models/moshi/mimi 2025-06-05T23:55:24.4108416Z 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:24.4108730Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/apple 2025-06-05T23:55:24.4109060Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/apple/coreml 2025-06-05T23:55:24.4109521Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/apple/coreml/llama 2025-06-05T23:55:24.4110642Z 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:24.4111870Z 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:24.4112875Z 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:24.4113988Z 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:24.4115022Z 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:24.4115585Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/apple/coreml/scripts 2025-06-05T23:55:24.4116680Z 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:24.4117938Z 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:24.4119206Z 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:24.4120338Z 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:24.4121607Z 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:24.4121941Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/apple/mps 2025-06-05T23:55:24.4122575Z creating pip-out/bdist.linux-x86_64/wheel/executorch/examples/apple/mps/scripts 2025-06-05T23:55:24.4123692Z 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:24.4124847Z 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:24.4125186Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension 2025-06-05T23:55:24.4125529Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/export_util 2025-06-05T23:55:24.4126462Z 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:24.4127452Z 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:24.4127802Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/flat_tensor 2025-06-05T23:55:24.4128661Z 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:24.4129117Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/flat_tensor/serialize 2025-06-05T23:55:24.4130625Z 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:24.4131781Z 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:24.4132897Z 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:24.4134032Z 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:24.4135061Z 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:24.4135458Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/flat_tensor/test 2025-06-05T23:55:24.4136655Z 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:24.4136983Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/gguf_util 2025-06-05T23:55:24.4137865Z 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:24.4138781Z 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:24.4139815Z 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:24.4140209Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/gguf_util/converters 2025-06-05T23:55:24.4141425Z 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:24.4141779Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/pybindings 2025-06-05T23:55:24.4142933Z 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:24.4143355Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/pybindings/test 2025-06-05T23:55:24.4144382Z 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:24.4145409Z 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:24.4146680Z 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:24.4147678Z 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:24.4149074Z 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:24.4149419Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/pytree 2025-06-05T23:55:24.4150220Z 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:24.4150713Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/pytree/test 2025-06-05T23:55:24.4151638Z 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:24.4151974Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/training 2025-06-05T23:55:24.4152976Z 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:24.4153392Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/training/pybindings 2025-06-05T23:55:24.4154588Z 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:24.4155070Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/training/pybindings/test 2025-06-05T23:55:24.4156126Z 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:24.4157347Z 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:24.4157725Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/training/examples 2025-06-05T23:55:24.4158128Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/training/examples/XOR 2025-06-05T23:55:24.4159336Z 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:24.4160424Z 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:24.4160877Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/training/examples/XOR/test 2025-06-05T23:55:24.4161994Z 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:24.4162297Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm 2025-06-05T23:55:24.4162739Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/custom_ops 2025-06-05T23:55:24.4163694Z 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:24.4164723Z 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:24.4165769Z 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:24.4166719Z 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:24.4167933Z 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:24.4168976Z 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:24.4170098Z 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:24.4171137Z 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:24.4172110Z 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:24.4172685Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/custom_ops/spinquant 2025-06-05T23:55:24.4173914Z 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:24.4174433Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/custom_ops/spinquant/third-party 2025-06-05T23:55:24.4175123Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/custom_ops/spinquant/third-party/FFHT 2025-06-05T23:55:24.4176482Z 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:24.4177928Z 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:24.4178921Z 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:24.4179261Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/export 2025-06-05T23:55:24.4180115Z 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:24.4181124Z 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:24.4182095Z 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:24.4183028Z 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:24.4184306Z 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:24.4185431Z 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:24.4185939Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/export/test 2025-06-05T23:55:24.4186991Z 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:24.4188035Z 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:24.4188475Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/modules 2025-06-05T23:55:24.4189570Z 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:24.4190547Z 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:24.4191712Z 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:24.4192588Z 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:24.4192990Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/modules/test 2025-06-05T23:55:24.4194180Z 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:24.4195173Z 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:24.4196378Z 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:24.4197508Z 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:24.4197901Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers 2025-06-05T23:55:24.4199071Z 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:24.4199560Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/pytorch_tokenizers 2025-06-05T23:55:24.4200805Z 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:24.4202219Z 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:24.4203698Z 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:24.4204875Z 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:24.4206570Z 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:24.4207100Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/pytorch_tokenizers/tools 2025-06-05T23:55:24.4208339Z 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:24.4209074Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/llama2c 2025-06-05T23:55:24.4210577Z 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:24.4212268Z 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:24.4212651Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/test 2025-06-05T23:55:24.4213767Z 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:24.4214364Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party 2025-06-05T23:55:24.4214944Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/abseil-cpp 2025-06-05T23:55:24.4216429Z 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:24.4217773Z 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:24.4218533Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl 2025-06-05T23:55:24.4219194Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/copts 2025-06-05T23:55:24.4220853Z 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:24.4222447Z 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:24.4224033Z 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:24.4224663Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json 2025-06-05T23:55:24.4225229Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/docs 2025-06-05T23:55:24.4225792Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/docs/mkdocs 2025-06-05T23:55:24.4226474Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/docs/mkdocs/scripts 2025-06-05T23:55:24.4228428Z 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:24.4228941Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tests 2025-06-05T23:55:24.4229538Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tests/thirdparty 2025-06-05T23:55:24.4230187Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tests/thirdparty/imapdl 2025-06-05T23:55:24.4232021Z 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:24.4232545Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tools 2025-06-05T23:55:24.4233127Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tools/amalgamate 2025-06-05T23:55:24.4234685Z 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:24.4235506Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tools/gdb_pretty_printer 2025-06-05T23:55:24.4237045Z 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:24.4237758Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tools/generate_natvis 2025-06-05T23:55:24.4239562Z 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:24.4240171Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/json/tools/serve_header 2025-06-05T23:55:24.4241752Z 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:24.4242356Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/pcre2 2025-06-05T23:55:24.4242919Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/pcre2/maint 2025-06-05T23:55:24.4244254Z 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:24.4245548Z 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:24.4247048Z 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:24.4248586Z 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:24.4250115Z 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:24.4251418Z 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:24.4252878Z 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:24.4254254Z 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:24.4254734Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/re2 2025-06-05T23:55:24.4255346Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/re2/benchlog 2025-06-05T23:55:24.4256810Z 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:24.4257328Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/re2/python 2025-06-05T23:55:24.4258646Z 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:24.4259930Z 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:24.4261160Z 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:24.4261891Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/re2/python/toolchains 2025-06-05T23:55:24.4263472Z 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:24.4263971Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/re2/re2 2025-06-05T23:55:24.4265445Z 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:24.4266787Z 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:24.4268179Z 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:24.4268777Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/sentencepiece 2025-06-05T23:55:24.4269375Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/sentencepiece/python 2025-06-05T23:55:24.4270760Z 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:24.4271486Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/test 2025-06-05T23:55:24.4272992Z 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:24.4274545Z 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:24.4275174Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src 2025-06-05T23:55:24.4275900Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece 2025-06-05T23:55:24.4277539Z 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:24.4279193Z 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:24.4281006Z 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:24.4283076Z 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:24.4297499Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/build 2025-06-05T23:55:24.4298087Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/build/lib 2025-06-05T23:55:24.4298645Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers 2025-06-05T23:55:24.4299976Z 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:24.4301395Z 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:24.4302925Z 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:24.4304266Z 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:24.4305602Z 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:24.4306212Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools 2025-06-05T23:55:24.4307951Z 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:24.4308698Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/llama2c 2025-06-05T23:55:24.4310219Z 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:24.4311839Z 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:24.4312158Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/module 2025-06-05T23:55:24.4312503Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/module/test 2025-06-05T23:55:24.4312903Z creating pip-out/bdist.linux-x86_64/wheel/executorch/extension/module/test/resources 2025-06-05T23:55:24.4314003Z 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:24.4314273Z creating pip-out/bdist.linux-x86_64/wheel/executorch/kernels 2025-06-05T23:55:24.4314588Z creating pip-out/bdist.linux-x86_64/wheel/executorch/kernels/quantized 2025-06-05T23:55:24.4315479Z 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:24.4315885Z creating pip-out/bdist.linux-x86_64/wheel/executorch/kernels/quantized/test 2025-06-05T23:55:24.4316856Z 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:24.4317913Z 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:24.4318959Z 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:24.4319824Z 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:24.4320830Z 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:24.4321140Z creating pip-out/bdist.linux-x86_64/wheel/executorch/schema 2025-06-05T23:55:24.4321999Z 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:24.4323062Z 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:24.4323654Z copying pip-out/lib.linux-x86_64-cpython-310/executorch/version.py -> pip-out/bdist.linux-x86_64/wheel/./executorch 2025-06-05T23:55:24.4323916Z creating pip-out/bdist.linux-x86_64/wheel/executorch/share 2025-06-05T23:55:24.4324204Z creating pip-out/bdist.linux-x86_64/wheel/executorch/share/cmake 2025-06-05T23:55:24.4325044Z 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:24.4325312Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include 2025-06-05T23:55:24.4325719Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch 2025-06-05T23:55:24.4326088Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime 2025-06-05T23:55:24.4326541Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core 2025-06-05T23:55:24.4327562Z 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:24.4328611Z 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:24.4329619Z 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:24.4330703Z 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:24.4331789Z 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:24.4332836Z 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:24.4333915Z 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:24.4335036Z 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:24.4336110Z 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:24.4337163Z 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:24.4338285Z 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:24.4339442Z 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:24.4340495Z 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:24.4341506Z 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:24.4342586Z 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:24.4343573Z 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:24.4344630Z 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:24.4345734Z 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:24.4346283Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/exec_aten 2025-06-05T23:55:24.4347483Z 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:24.4348128Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/exec_aten/testing_util 2025-06-05T23:55:24.4349678Z 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:24.4351107Z 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:24.4351628Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/exec_aten/util 2025-06-05T23:55:24.4352865Z 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:24.4354125Z 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:24.4355422Z 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:24.4356723Z 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:24.4357960Z 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:24.4358467Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/portable_type 2025-06-05T23:55:24.4359676Z 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:24.4360917Z 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:24.4362140Z 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:24.4363344Z 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:24.4364537Z 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:24.4365723Z 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:24.4367003Z 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:24.4368279Z 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:24.4369586Z 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:24.4370864Z 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:24.4372092Z 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:24.4373300Z 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:24.4374560Z 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:24.4375837Z 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:24.4376369Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/portable_type/c10 2025-06-05T23:55:24.4376941Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/portable_type/c10/c10 2025-06-05T23:55:24.4377562Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/portable_type/c10/c10/macros 2025-06-05T23:55:24.4378971Z 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:24.4380516Z 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:24.4381114Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:55:24.4382536Z 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:24.4383974Z 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:24.4385785Z 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:24.4387227Z 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:24.4388824Z 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:24.4390384Z 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:24.4391917Z 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:24.4393312Z 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:24.4394813Z 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:24.4396241Z 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:24.4397696Z 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:24.4399115Z 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:24.4399584Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/kernel 2025-06-05T23:55:24.4400753Z 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:24.4401901Z 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:24.4403098Z 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:24.4404252Z 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:24.4404713Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/kernel/test 2025-06-05T23:55:24.4405841Z 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:24.4406274Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/platform 2025-06-05T23:55:24.4407342Z 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:24.4408407Z 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:24.4409472Z 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:24.4410854Z 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:24.4411955Z 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:24.4413007Z 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:24.4414179Z 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:24.4415265Z 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:24.4416350Z 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:24.4417426Z 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:24.4418494Z 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:24.4418963Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/runtime/platform/test 2025-06-05T23:55:24.4420093Z 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:24.4421282Z 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:24.4421701Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/extension 2025-06-05T23:55:24.4422213Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/extension/kernel_util 2025-06-05T23:55:24.4423540Z 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:24.4424712Z 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:24.4425919Z 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:24.4426366Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/extension/tensor 2025-06-05T23:55:24.4427439Z 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:24.4428646Z 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:24.4429742Z 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:24.4430993Z 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:24.4431456Z creating pip-out/bdist.linux-x86_64/wheel/executorch/include/executorch/extension/threadpool 2025-06-05T23:55:24.4432706Z 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:24.4433929Z 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:24.4435122Z 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:24.4435367Z creating pip-out/bdist.linux-x86_64/wheel/executorch/data 2025-06-05T23:55:24.4435644Z creating pip-out/bdist.linux-x86_64/wheel/executorch/data/bin 2025-06-05T23:55:24.4436308Z 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:24.4436987Z 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:24.4437137Z running install_egg_info 2025-06-05T23:55:24.4437666Z 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:24.4437841Z running install_scripts 2025-06-05T23:55:24.4438293Z creating pip-out/bdist.linux-x86_64/wheel/executorch-0.7.0a0+bd57234.dist-info/WHEEL 2025-06-05T23:55:24.4439121Z creating '/tmp/pip-wheel-_d55e_j9/.tmp-nv7obzf_/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:24.4439273Z adding 'executorch/version.py' 2025-06-05T23:55:24.4439755Z adding 'executorch/backends/apple/coreml/executorchcoreml.cpython-310-x86_64-linux-gnu.so' 2025-06-05T23:55:24.4440045Z adding 'executorch/backends/apple/coreml/executorchcoreml.pyi' 2025-06-05T23:55:24.4440324Z adding 'executorch/backends/apple/coreml/compiler/__init__.py' 2025-06-05T23:55:24.4440655Z adding 'executorch/backends/apple/coreml/compiler/coreml_preprocess.py' 2025-06-05T23:55:24.4440945Z adding 'executorch/backends/apple/coreml/partition/__init__.py' 2025-06-05T23:55:24.4441307Z adding 'executorch/backends/apple/coreml/partition/coreml_partitioner.py' 2025-06-05T23:55:24.4441590Z adding 'executorch/backends/apple/coreml/quantizer/__init__.py' 2025-06-05T23:55:24.4441932Z adding 'executorch/backends/apple/coreml/quantizer/coreml_quantizer.py' 2025-06-05T23:55:24.4442308Z adding 'executorch/backends/apple/coreml/runtime/test/export_stateful_model.py' 2025-06-05T23:55:24.4442663Z adding 'executorch/backends/apple/coreml/test/test_coreml_partitioner.py' 2025-06-05T23:55:24.4442994Z adding 'executorch/backends/apple/coreml/test/test_coreml_quantizer.py' 2025-06-05T23:55:24.4443202Z adding 'executorch/backends/apple/mps/__init__.py' 2025-06-05T23:55:24.4443438Z adding 'executorch/backends/apple/mps/mps_preprocess.py' 2025-06-05T23:55:24.4443705Z adding 'executorch/backends/apple/mps/operators/__init__.py' 2025-06-05T23:55:24.4444010Z adding 'executorch/backends/apple/mps/operators/activation_ops.py' 2025-06-05T23:55:24.4444282Z adding 'executorch/backends/apple/mps/operators/binary_ops.py' 2025-06-05T23:55:24.4444539Z adding 'executorch/backends/apple/mps/operators/clamp_ops.py' 2025-06-05T23:55:24.4444839Z adding 'executorch/backends/apple/mps/operators/constant_ops.py' 2025-06-05T23:55:24.4445217Z adding 'executorch/backends/apple/mps/operators/convolution_ops.py' 2025-06-05T23:55:24.4445509Z adding 'executorch/backends/apple/mps/operators/indexing_ops.py' 2025-06-05T23:55:24.4445877Z adding 'executorch/backends/apple/mps/operators/linear_algebra_ops.py' 2025-06-05T23:55:24.4446170Z adding 'executorch/backends/apple/mps/operators/node_visitor.py' 2025-06-05T23:55:24.4446495Z adding 'executorch/backends/apple/mps/operators/normalization_ops.py' 2025-06-05T23:55:24.4446763Z adding 'executorch/backends/apple/mps/operators/op_clone.py' 2025-06-05T23:55:24.4447043Z adding 'executorch/backends/apple/mps/operators/op_getitem.py' 2025-06-05T23:55:24.4447342Z adding 'executorch/backends/apple/mps/operators/op_quant_dequant.py' 2025-06-05T23:55:24.4447640Z adding 'executorch/backends/apple/mps/operators/op_skip_ops.py' 2025-06-05T23:55:24.4447900Z adding 'executorch/backends/apple/mps/operators/pad_ops.py' 2025-06-05T23:55:24.4448187Z adding 'executorch/backends/apple/mps/operators/pooling_ops.py' 2025-06-05T23:55:24.4448452Z adding 'executorch/backends/apple/mps/operators/range_ops.py' 2025-06-05T23:55:24.4448724Z adding 'executorch/backends/apple/mps/operators/reduce_ops.py' 2025-06-05T23:55:24.4448997Z adding 'executorch/backends/apple/mps/operators/shape_ops.py' 2025-06-05T23:55:24.4449266Z adding 'executorch/backends/apple/mps/operators/unary_ops.py' 2025-06-05T23:55:24.4449516Z adding 'executorch/backends/apple/mps/partition/__init__.py' 2025-06-05T23:55:24.4449829Z adding 'executorch/backends/apple/mps/partition/mps_partitioner.py' 2025-06-05T23:55:24.4450176Z adding 'executorch/backends/apple/mps/serialization/mps_graph_schema.py' 2025-06-05T23:55:24.4450542Z adding 'executorch/backends/apple/mps/serialization/mps_graph_serialize.py' 2025-06-05T23:55:24.4450827Z adding 'executorch/backends/apple/mps/serialization/schema.fbs' 2025-06-05T23:55:24.4451049Z adding 'executorch/backends/apple/mps/test/test_mps.py' 2025-06-05T23:55:24.4451438Z adding 'executorch/backends/apple/mps/test/test_mps_binary_ops.py' 2025-06-05T23:55:24.4451794Z adding 'executorch/backends/apple/mps/test/test_mps_indexing_ops.py' 2025-06-05T23:55:24.4452065Z adding 'executorch/backends/apple/mps/test/test_mps_linear.py' 2025-06-05T23:55:24.4452359Z adding 'executorch/backends/apple/mps/test/test_mps_models.py' 2025-06-05T23:55:24.4452704Z adding 'executorch/backends/apple/mps/test/test_mps_unary_ops.py' 2025-06-05T23:55:24.4452975Z adding 'executorch/backends/apple/mps/test/test_mps_utils.py' 2025-06-05T23:55:24.4453280Z adding 'executorch/backends/apple/mps/utils/mps_utils.py' 2025-06-05T23:55:24.4453521Z adding 'executorch/backends/apple/mps/utils/quant_utils.py' 2025-06-05T23:55:24.4453713Z adding 'executorch/backends/arm/arm_backend.py' 2025-06-05T23:55:24.4453894Z adding 'executorch/backends/arm/arm_vela.py' 2025-06-05T23:55:24.4454105Z adding 'executorch/backends/arm/ethosu_backend.py' 2025-06-05T23:55:24.4454328Z adding 'executorch/backends/arm/ethosu_partitioner.py' 2025-06-05T23:55:24.4454536Z adding 'executorch/backends/arm/process_node.py' 2025-06-05T23:55:24.4454735Z adding 'executorch/backends/arm/tosa_backend.py' 2025-06-05T23:55:24.4454932Z adding 'executorch/backends/arm/tosa_mapping.py' 2025-06-05T23:55:24.4455143Z adding 'executorch/backends/arm/tosa_partitioner.py' 2025-06-05T23:55:24.4455363Z adding 'executorch/backends/arm/tosa_quant_utils.py' 2025-06-05T23:55:24.4455595Z adding 'executorch/backends/arm/tosa_specification.py' 2025-06-05T23:55:24.4455788Z adding 'executorch/backends/arm/tosa_utils.py' 2025-06-05T23:55:24.4455970Z adding 'executorch/backends/arm/vgf_backend.py' 2025-06-05T23:55:24.4456181Z adding 'executorch/backends/arm/vgf_partitioner.py' 2025-06-05T23:55:24.4456392Z adding 'executorch/backends/arm/_passes/__init__.py' 2025-06-05T23:55:24.4456635Z adding 'executorch/backends/arm/_passes/_debug_passes.py' 2025-06-05T23:55:24.4457108Z adding 'executorch/backends/arm/_passes/annotate_channels_last_dim_order_pass.py' 2025-06-05T23:55:24.4457504Z adding 'executorch/backends/arm/_passes/annotate_decomposed_matmul.py' 2025-06-05T23:55:24.4457718Z adding 'executorch/backends/arm/_passes/arm_pass.py' 2025-06-05T23:55:24.4458037Z adding 'executorch/backends/arm/_passes/arm_pass_manager.py' 2025-06-05T23:55:24.4458289Z adding 'executorch/backends/arm/_passes/arm_pass_utils.py' 2025-06-05T23:55:24.4458556Z adding 'executorch/backends/arm/_passes/broadcast_args_pass.py' 2025-06-05T23:55:24.4458810Z adding 'executorch/backends/arm/_passes/cast_int64_pass.py' 2025-06-05T23:55:24.4459075Z adding 'executorch/backends/arm/_passes/cast_to_int32_pass.py' 2025-06-05T23:55:24.4459408Z adding 'executorch/backends/arm/_passes/conv1d_unsqueeze_pass.py' 2025-06-05T23:55:24.4459801Z adding 'executorch/backends/arm/_passes/convert_any_default_dim_dims_pass.py' 2025-06-05T23:55:24.4460210Z adding 'executorch/backends/arm/_passes/convert_expand_copy_to_repeat.py' 2025-06-05T23:55:24.4460554Z adding 'executorch/backends/arm/_passes/convert_full_like_to_full_pass.py' 2025-06-05T23:55:24.4460859Z adding 'executorch/backends/arm/_passes/convert_int_pow_to_mul.py' 2025-06-05T23:55:24.4461124Z adding 'executorch/backends/arm/_passes/convert_minmax_pass.py' 2025-06-05T23:55:24.4461424Z adding 'executorch/backends/arm/_passes/convert_split_to_slice.py' 2025-06-05T23:55:24.4461731Z adding 'executorch/backends/arm/_passes/convert_squeezes_to_view.py' 2025-06-05T23:55:24.4461994Z adding 'executorch/backends/arm/_passes/convert_to_clamp.py' 2025-06-05T23:55:24.4462346Z adding 'executorch/backends/arm/_passes/decompose_cosine_similarity_pass.py' 2025-06-05T23:55:24.4462605Z adding 'executorch/backends/arm/_passes/decompose_div_pass.py' 2025-06-05T23:55:24.4462879Z adding 'executorch/backends/arm/_passes/decompose_gelu_pass.py' 2025-06-05T23:55:24.4463268Z adding 'executorch/backends/arm/_passes/decompose_groupnorm_pass.py' 2025-06-05T23:55:24.4463578Z adding 'executorch/backends/arm/_passes/decompose_layernorm_pass.py' 2025-06-05T23:55:24.4463886Z adding 'executorch/backends/arm/_passes/decompose_leaky_relu_pass.py' 2025-06-05T23:55:24.4464248Z adding 'executorch/backends/arm/_passes/decompose_linalg_vector_norm_pass.py' 2025-06-05T23:55:24.4464541Z adding 'executorch/backends/arm/_passes/decompose_linear_pass.py' 2025-06-05T23:55:24.4464839Z adding 'executorch/backends/arm/_passes/decompose_meandim_pass.py' 2025-06-05T23:55:24.4465093Z adding 'executorch/backends/arm/_passes/decompose_ne_pass.py' 2025-06-05T23:55:24.4465355Z adding 'executorch/backends/arm/_passes/decompose_select.py' 2025-06-05T23:55:24.4465631Z adding 'executorch/backends/arm/_passes/decompose_silu_pass.py' 2025-06-05T23:55:24.4465924Z adding 'executorch/backends/arm/_passes/decompose_softmax_pass.py' 2025-06-05T23:55:24.4466262Z adding 'executorch/backends/arm/_passes/decompose_softmax_unstable_pass.py' 2025-06-05T23:55:24.4466540Z adding 'executorch/backends/arm/_passes/decompose_sqrt_pass.py' 2025-06-05T23:55:24.4466817Z adding 'executorch/backends/arm/_passes/decompose_sum_pass.py' 2025-06-05T23:55:24.4467086Z adding 'executorch/backends/arm/_passes/decompose_var_pass.py' 2025-06-05T23:55:24.4467551Z adding 'executorch/backends/arm/_passes/fold_qdq_with_annotated_qparams_pass.py' 2025-06-05T23:55:24.4467938Z adding 'executorch/backends/arm/_passes/fuse_batchnorm2d_pass.py' 2025-06-05T23:55:24.4468265Z adding 'executorch/backends/arm/_passes/fuse_constant_ops_pass.py' 2025-06-05T23:55:24.4468602Z adding 'executorch/backends/arm/_passes/fuse_equal_placeholders_pass.py' 2025-06-05T23:55:24.4468947Z adding 'executorch/backends/arm/_passes/fuse_quantized_activation_pass.py' 2025-06-05T23:55:24.4469224Z adding 'executorch/backends/arm/_passes/insert_rescales_pass.py' 2025-06-05T23:55:24.4469486Z adding 'executorch/backends/arm/_passes/insert_table_ops.py' 2025-06-05T23:55:24.4469773Z adding 'executorch/backends/arm/_passes/match_arg_ranks_pass.py' 2025-06-05T23:55:24.4470120Z adding 'executorch/backends/arm/_passes/match_where_self_arg_dtype_pass.py' 2025-06-05T23:55:24.4470501Z adding 'executorch/backends/arm/_passes/mm_to_bmm_pass.py' 2025-06-05T23:55:24.4470771Z adding 'executorch/backends/arm/_passes/remove_clone_pass.py' 2025-06-05T23:55:24.4471135Z adding 'executorch/backends/arm/_passes/replace_inf_values_pass.py' 2025-06-05T23:55:24.4471481Z adding 'executorch/backends/arm/_passes/replace_scalar_with_tensor_pass.py' 2025-06-05T23:55:24.4471779Z adding 'executorch/backends/arm/_passes/scalars_to_attribute_pass.py' 2025-06-05T23:55:24.4472082Z adding 'executorch/backends/arm/_passes/size_adjust_conv2d_pass.py' 2025-06-05T23:55:24.4472416Z adding 'executorch/backends/arm/_passes/unsqueeze_before_repeat_pass.py' 2025-06-05T23:55:24.4472786Z adding 'executorch/backends/arm/_passes/unsqueeze_scalar_placeholders_pass.py' 2025-06-05T23:55:24.4473052Z adding 'executorch/backends/arm/operator_support/__init__.py' 2025-06-05T23:55:24.4473382Z adding 'executorch/backends/arm/operator_support/convolution_support.py' 2025-06-05T23:55:24.4473746Z adding 'executorch/backends/arm/operator_support/ethos_u55_support.py' 2025-06-05T23:55:24.4474099Z adding 'executorch/backends/arm/operator_support/minmax_support.py' 2025-06-05T23:55:24.4474475Z adding 'executorch/backends/arm/operator_support/pool_2d_support.py' 2025-06-05T23:55:24.4474795Z adding 'executorch/backends/arm/operator_support/reduce_sum_support.py' 2025-06-05T23:55:24.4475137Z adding 'executorch/backends/arm/operator_support/right_shift_support.py' 2025-06-05T23:55:24.4475451Z adding 'executorch/backends/arm/operator_support/sin_cos_support.py' 2025-06-05T23:55:24.4475782Z adding 'executorch/backends/arm/operator_support/slice_copy_support.py' 2025-06-05T23:55:24.4476095Z adding 'executorch/backends/arm/operator_support/to_copy_support.py' 2025-06-05T23:55:24.4476531Z adding 'executorch/backends/arm/operator_support/tosa_supported_operators.py' 2025-06-05T23:55:24.4476767Z adding 'executorch/backends/arm/operators/__init__.py' 2025-06-05T23:55:24.4477033Z adding 'executorch/backends/arm/operators/node_visitor.py' 2025-06-05T23:55:24.4477238Z adding 'executorch/backends/arm/operators/op_abs.py' 2025-06-05T23:55:24.4477454Z adding 'executorch/backends/arm/operators/op_add.py' 2025-06-05T23:55:24.4477678Z adding 'executorch/backends/arm/operators/op_amax.py' 2025-06-05T23:55:24.4477898Z adding 'executorch/backends/arm/operators/op_amin.py' 2025-06-05T23:55:24.4478099Z adding 'executorch/backends/arm/operators/op_any.py' 2025-06-05T23:55:24.4478355Z adding 'executorch/backends/arm/operators/op_avg_pool2d.py' 2025-06-05T23:55:24.4478567Z adding 'executorch/backends/arm/operators/op_bmm.py' 2025-06-05T23:55:24.4478781Z adding 'executorch/backends/arm/operators/op_cat.py' 2025-06-05T23:55:24.4478998Z adding 'executorch/backends/arm/operators/op_clamp.py' 2025-06-05T23:55:24.4479287Z adding 'executorch/backends/arm/operators/op_constant_pad_nd.py' 2025-06-05T23:55:24.4479544Z adding 'executorch/backends/arm/operators/op_conv2d.py' 2025-06-05T23:55:24.4479807Z adding 'executorch/backends/arm/operators/op_cos.py' 2025-06-05T23:55:24.4480026Z adding 'executorch/backends/arm/operators/op_eq.py' 2025-06-05T23:55:24.4480269Z adding 'executorch/backends/arm/operators/op_erf.py' 2025-06-05T23:55:24.4480494Z adding 'executorch/backends/arm/operators/op_exp.py' 2025-06-05T23:55:24.4480699Z adding 'executorch/backends/arm/operators/op_ge.py' 2025-06-05T23:55:24.4480901Z adding 'executorch/backends/arm/operators/op_gt.py' 2025-06-05T23:55:24.4481093Z adding 'executorch/backends/arm/operators/op_le.py' 2025-06-05T23:55:24.4481308Z adding 'executorch/backends/arm/operators/op_log.py' 2025-06-05T23:55:24.4481509Z adding 'executorch/backends/arm/operators/op_lt.py' 2025-06-05T23:55:24.4481764Z adding 'executorch/backends/arm/operators/op_max_pool2d.py' 2025-06-05T23:55:24.4481992Z adding 'executorch/backends/arm/operators/op_maximum.py' 2025-06-05T23:55:24.4482268Z adding 'executorch/backends/arm/operators/op_minimum.py' 2025-06-05T23:55:24.4482610Z adding 'executorch/backends/arm/operators/op_mul.py' 2025-06-05T23:55:24.4482842Z adding 'executorch/backends/arm/operators/op_neg.py' 2025-06-05T23:55:24.4483254Z adding 'executorch/backends/arm/operators/op_permute.py' 2025-06-05T23:55:24.4483518Z adding 'executorch/backends/arm/operators/op_pow.py' 2025-06-05T23:55:24.4483776Z adding 'executorch/backends/arm/operators/op_reciprocal.py' 2025-06-05T23:55:24.4484008Z adding 'executorch/backends/arm/operators/op_repeat.py' 2025-06-05T23:55:24.4484232Z adding 'executorch/backends/arm/operators/op_rescale.py' 2025-06-05T23:55:24.4484506Z adding 'executorch/backends/arm/operators/op_rshift_tensor.py' 2025-06-05T23:55:24.4484734Z adding 'executorch/backends/arm/operators/op_rsqrt.py' 2025-06-05T23:55:24.4484971Z adding 'executorch/backends/arm/operators/op_sigmoid.py' 2025-06-05T23:55:24.4485356Z adding 'executorch/backends/arm/operators/op_sin.py' 2025-06-05T23:55:24.4485622Z adding 'executorch/backends/arm/operators/op_slice.py' 2025-06-05T23:55:24.4485926Z adding 'executorch/backends/arm/operators/op_sub.py' 2025-06-05T23:55:24.4486239Z adding 'executorch/backends/arm/operators/op_sum.py' 2025-06-05T23:55:24.4486490Z adding 'executorch/backends/arm/operators/op_table.py' 2025-06-05T23:55:24.4486738Z adding 'executorch/backends/arm/operators/op_tanh.py' 2025-06-05T23:55:24.4486973Z adding 'executorch/backends/arm/operators/op_to_copy.py' 2025-06-05T23:55:24.4487272Z adding 'executorch/backends/arm/operators/op_to_dim_order_copy.py' 2025-06-05T23:55:24.4487516Z adding 'executorch/backends/arm/operators/op_transpose.py' 2025-06-05T23:55:24.4487826Z adding 'executorch/backends/arm/operators/op_upsample_bilinear2d.py' 2025-06-05T23:55:24.4488136Z adding 'executorch/backends/arm/operators/op_upsample_nearest2d.py' 2025-06-05T23:55:24.4488388Z adding 'executorch/backends/arm/operators/op_view.py' 2025-06-05T23:55:24.4488655Z adding 'executorch/backends/arm/operators/op_where.py' 2025-06-05T23:55:24.4489140Z adding 'executorch/backends/arm/operators/operator_validation_utils.py' 2025-06-05T23:55:24.4489379Z adding 'executorch/backends/arm/operators/ops_binary.py' 2025-06-05T23:55:24.4489692Z adding 'executorch/backends/arm/operators/ops_identity.py' 2025-06-05T23:55:24.4489924Z adding 'executorch/backends/arm/operators/ops_unary.py' 2025-06-05T23:55:24.4490141Z adding 'executorch/backends/arm/quantizer/__init__.py' 2025-06-05T23:55:24.4490396Z adding 'executorch/backends/arm/quantizer/arm_quantizer.py' 2025-06-05T23:55:24.4490682Z adding 'executorch/backends/arm/quantizer/arm_quantizer_utils.py' 2025-06-05T23:55:24.4490996Z adding 'executorch/backends/arm/quantizer/quantization_annotator.py' 2025-06-05T23:55:24.4491299Z adding 'executorch/backends/arm/quantizer/quantization_config.py' 2025-06-05T23:55:24.4491597Z adding 'executorch/backends/arm/scripts/parse_test_names.py' 2025-06-05T23:55:24.4491857Z adding 'executorch/backends/arm/test/common.py' 2025-06-05T23:55:24.4492169Z adding 'executorch/backends/arm/test/conftest.py' 2025-06-05T23:55:24.4492389Z adding 'executorch/backends/arm/test/runner_utils.py' 2025-06-05T23:55:24.4492642Z adding 'executorch/backends/arm/test/test_model.py' 2025-06-05T23:55:24.4492968Z adding 'executorch/backends/arm/test/misc/test_bn_relu_folding_qat.py' 2025-06-05T23:55:24.4493270Z adding 'executorch/backends/arm/test/misc/test_custom_partition.py' 2025-06-05T23:55:24.4493532Z adding 'executorch/backends/arm/test/misc/test_debug_feats.py' 2025-06-05T23:55:24.4493820Z adding 'executorch/backends/arm/test/misc/test_dim_order_guards.py' 2025-06-05T23:55:24.4494143Z adding 'executorch/backends/arm/test/misc/test_lifted_tensor.py' 2025-06-05T23:55:24.4494490Z adding 'executorch/backends/arm/test/misc/test_model_evaluator.py' 2025-06-05T23:55:24.4494955Z adding 'executorch/backends/arm/test/misc/test_multiple_delegates.py' 2025-06-05T23:55:24.4495267Z adding 'executorch/backends/arm/test/misc/test_multiple_outputs.py' 2025-06-05T23:55:24.4495822Z adding 'executorch/backends/arm/test/misc/test_non_persistent_buffers.py' 2025-06-05T23:55:24.4496422Z adding 'executorch/backends/arm/test/misc/test_partition_decomposed_quantized_ops.py' 2025-06-05T23:55:24.4496797Z adding 'executorch/backends/arm/test/misc/test_tosa_spec.py' 2025-06-05T23:55:24.4497096Z adding 'executorch/backends/arm/test/models/test_conformer.py' 2025-06-05T23:55:24.4497391Z adding 'executorch/backends/arm/test/models/test_deit_tiny_arm.py' 2025-06-05T23:55:24.4497648Z adding 'executorch/backends/arm/test/models/test_dl3_arm.py' 2025-06-05T23:55:24.4497898Z adding 'executorch/backends/arm/test/models/test_llama.py' 2025-06-05T23:55:24.4498200Z adding 'executorch/backends/arm/test/models/test_lstm_arm.py' 2025-06-05T23:55:24.4498645Z adding 'executorch/backends/arm/test/models/test_mobilenet_v2_arm.py' 2025-06-05T23:55:24.4499013Z adding 'executorch/backends/arm/test/models/test_mobilenet_v3_arm.py' 2025-06-05T23:55:24.4499367Z adding 'executorch/backends/arm/test/models/test_nn_functional.py' 2025-06-05T23:55:24.4499652Z adding 'executorch/backends/arm/test/models/test_nn_modules.py' 2025-06-05T23:55:24.4499952Z adding 'executorch/backends/arm/test/models/test_torch_functions.py' 2025-06-05T23:55:24.4500251Z adding 'executorch/backends/arm/test/models/test_w2l_arm.py' 2025-06-05T23:55:24.4500570Z adding 'executorch/backends/arm/test/ops/test_abs.py' 2025-06-05T23:55:24.4500866Z adding 'executorch/backends/arm/test/ops/test_add.py' 2025-06-05T23:55:24.4501121Z adding 'executorch/backends/arm/test/ops/test_alias_copy.py' 2025-06-05T23:55:24.4501422Z adding 'executorch/backends/arm/test/ops/test_amax.py' 2025-06-05T23:55:24.4501645Z adding 'executorch/backends/arm/test/ops/test_amin.py' 2025-06-05T23:55:24.4501858Z adding 'executorch/backends/arm/test/ops/test_any.py' 2025-06-05T23:55:24.4502085Z adding 'executorch/backends/arm/test/ops/test_arange.py' 2025-06-05T23:55:24.4502298Z adding 'executorch/backends/arm/test/ops/test_at.py' 2025-06-05T23:55:24.4502648Z adding 'executorch/backends/arm/test/ops/test_avg_pool2d.py' 2025-06-05T23:55:24.4503026Z adding 'executorch/backends/arm/test/ops/test_batch_norm.py' 2025-06-05T23:55:24.4503385Z adding 'executorch/backends/arm/test/ops/test_bitwise.py' 2025-06-05T23:55:24.4503625Z adding 'executorch/backends/arm/test/ops/test_bmm.py' 2025-06-05T23:55:24.4503840Z adding 'executorch/backends/arm/test/ops/test_cat.py' 2025-06-05T23:55:24.4504076Z adding 'executorch/backends/arm/test/ops/test_clamp.py' 2025-06-05T23:55:24.4504365Z adding 'executorch/backends/arm/test/ops/test_clone.py' 2025-06-05T23:55:24.4504654Z adding 'executorch/backends/arm/test/ops/test_constant_pad_nd.py' 2025-06-05T23:55:24.4504922Z adding 'executorch/backends/arm/test/ops/test_conv1d.py' 2025-06-05T23:55:24.4505186Z adding 'executorch/backends/arm/test/ops/test_conv2d.py' 2025-06-05T23:55:24.4505459Z adding 'executorch/backends/arm/test/ops/test_conv3d.py' 2025-06-05T23:55:24.4505792Z adding 'executorch/backends/arm/test/ops/test_conv_combos.py' 2025-06-05T23:55:24.4506225Z adding 'executorch/backends/arm/test/ops/test_conv_constant_pad_nd.py' 2025-06-05T23:55:24.4506439Z adding 'executorch/backends/arm/test/ops/test_cos.py' 2025-06-05T23:55:24.4506731Z adding 'executorch/backends/arm/test/ops/test_depthwise_conv.py' 2025-06-05T23:55:24.4506933Z adding 'executorch/backends/arm/test/ops/test_div.py' 2025-06-05T23:55:24.4507145Z adding 'executorch/backends/arm/test/ops/test_eq.py' 2025-06-05T23:55:24.4507403Z adding 'executorch/backends/arm/test/ops/test_erf.py' 2025-06-05T23:55:24.4507623Z adding 'executorch/backends/arm/test/ops/test_exp.py' 2025-06-05T23:55:24.4507919Z adding 'executorch/backends/arm/test/ops/test_expand.py' 2025-06-05T23:55:24.4508198Z adding 'executorch/backends/arm/test/ops/test_eye.py' 2025-06-05T23:55:24.4508437Z adding 'executorch/backends/arm/test/ops/test_full.py' 2025-06-05T23:55:24.4508680Z adding 'executorch/backends/arm/test/ops/test_ge.py' 2025-06-05T23:55:24.4509073Z adding 'executorch/backends/arm/test/ops/test_gelu.py' 2025-06-05T23:55:24.4509396Z adding 'executorch/backends/arm/test/ops/test_group_norm.py' 2025-06-05T23:55:24.4509708Z adding 'executorch/backends/arm/test/ops/test_gt.py' 2025-06-05T23:55:24.4510051Z adding 'executorch/backends/arm/test/ops/test_hardsigmoid.py' 2025-06-05T23:55:24.4510304Z adding 'executorch/backends/arm/test/ops/test_hardswish.py' 2025-06-05T23:55:24.4510629Z adding 'executorch/backends/arm/test/ops/test_hardtanh.py' 2025-06-05T23:55:24.4510899Z adding 'executorch/backends/arm/test/ops/test_layer_norm.py' 2025-06-05T23:55:24.4511111Z adding 'executorch/backends/arm/test/ops/test_le.py' 2025-06-05T23:55:24.4511512Z adding 'executorch/backends/arm/test/ops/test_leaky_relu.py' 2025-06-05T23:55:24.4511812Z adding 'executorch/backends/arm/test/ops/test_linalg_vector_norm.py' 2025-06-05T23:55:24.4512049Z adding 'executorch/backends/arm/test/ops/test_linear.py' 2025-06-05T23:55:24.4512273Z adding 'executorch/backends/arm/test/ops/test_log.py' 2025-06-05T23:55:24.4512515Z adding 'executorch/backends/arm/test/ops/test_logical.py' 2025-06-05T23:55:24.4512762Z adding 'executorch/backends/arm/test/ops/test_logsoftmax.py' 2025-06-05T23:55:24.4513003Z adding 'executorch/backends/arm/test/ops/test_lshift.py' 2025-06-05T23:55:24.4513214Z adding 'executorch/backends/arm/test/ops/test_lt.py' 2025-06-05T23:55:24.4513450Z adding 'executorch/backends/arm/test/ops/test_matmul.py' 2025-06-05T23:55:24.4513734Z adding 'executorch/backends/arm/test/ops/test_max_pool.py' 2025-06-05T23:55:24.4513976Z adding 'executorch/backends/arm/test/ops/test_maximum.py' 2025-06-05T23:55:24.4514219Z adding 'executorch/backends/arm/test/ops/test_mean_dim.py' 2025-06-05T23:55:24.4514523Z adding 'executorch/backends/arm/test/ops/test_minimum.py' 2025-06-05T23:55:24.4514721Z adding 'executorch/backends/arm/test/ops/test_mm.py' 2025-06-05T23:55:24.4514977Z adding 'executorch/backends/arm/test/ops/test_mul.py' 2025-06-05T23:55:24.4515256Z adding 'executorch/backends/arm/test/ops/test_ne.py' 2025-06-05T23:55:24.4515555Z adding 'executorch/backends/arm/test/ops/test_neg.py' 2025-06-05T23:55:24.4515866Z adding 'executorch/backends/arm/test/ops/test_ones.py' 2025-06-05T23:55:24.4516168Z adding 'executorch/backends/arm/test/ops/test_permute.py' 2025-06-05T23:55:24.4516383Z adding 'executorch/backends/arm/test/ops/test_pow.py' 2025-06-05T23:55:24.4516656Z adding 'executorch/backends/arm/test/ops/test_reciprocal.py' 2025-06-05T23:55:24.4516934Z adding 'executorch/backends/arm/test/ops/test_relu.py' 2025-06-05T23:55:24.4517156Z adding 'executorch/backends/arm/test/ops/test_repeat.py' 2025-06-05T23:55:24.4517391Z adding 'executorch/backends/arm/test/ops/test_rshift.py' 2025-06-05T23:55:24.4517683Z adding 'executorch/backends/arm/test/ops/test_rsqrt.py' 2025-06-05T23:55:24.4517999Z adding 'executorch/backends/arm/test/ops/test_scalar_tensor.py' 2025-06-05T23:55:24.4518266Z adding 'executorch/backends/arm/test/ops/test_scalars.py' 2025-06-05T23:55:24.4518635Z adding 'executorch/backends/arm/test/ops/test_sdpa.py' 2025-06-05T23:55:24.4518901Z adding 'executorch/backends/arm/test/ops/test_select.py' 2025-06-05T23:55:24.4519212Z adding 'executorch/backends/arm/test/ops/test_sigmoid.py' 2025-06-05T23:55:24.4519481Z adding 'executorch/backends/arm/test/ops/test_sigmoid_16bit.py' 2025-06-05T23:55:24.4519757Z adding 'executorch/backends/arm/test/ops/test_sigmoid_32bit.py' 2025-06-05T23:55:24.4520043Z adding 'executorch/backends/arm/test/ops/test_silu.py' 2025-06-05T23:55:24.4520266Z adding 'executorch/backends/arm/test/ops/test_sin.py' 2025-06-05T23:55:24.4520487Z adding 'executorch/backends/arm/test/ops/test_slice.py' 2025-06-05T23:55:24.4520794Z adding 'executorch/backends/arm/test/ops/test_softmax.py' 2025-06-05T23:55:24.4521025Z adding 'executorch/backends/arm/test/ops/test_split.py' 2025-06-05T23:55:24.4521323Z adding 'executorch/backends/arm/test/ops/test_sqrt.py' 2025-06-05T23:55:24.4521739Z adding 'executorch/backends/arm/test/ops/test_squeeze.py' 2025-06-05T23:55:24.4521958Z adding 'executorch/backends/arm/test/ops/test_sub.py' 2025-06-05T23:55:24.4522173Z adding 'executorch/backends/arm/test/ops/test_sum.py' 2025-06-05T23:55:24.4522460Z adding 'executorch/backends/arm/test/ops/test_tanh.py' 2025-06-05T23:55:24.4522698Z adding 'executorch/backends/arm/test/ops/test_to_copy.py' 2025-06-05T23:55:24.4522917Z adding 'executorch/backends/arm/test/ops/test_unary.py' 2025-06-05T23:55:24.4523165Z adding 'executorch/backends/arm/test/ops/test_unsqueeze.py' 2025-06-05T23:55:24.4523490Z adding 'executorch/backends/arm/test/ops/test_upsample_bilinear2d.py' 2025-06-05T23:55:24.4523891Z adding 'executorch/backends/arm/test/ops/test_upsample_nearest2d.py' 2025-06-05T23:55:24.4524163Z adding 'executorch/backends/arm/test/ops/test_var.py' 2025-06-05T23:55:24.4524385Z adding 'executorch/backends/arm/test/ops/test_view.py' 2025-06-05T23:55:24.4524617Z adding 'executorch/backends/arm/test/ops/test_where.py' 2025-06-05T23:55:24.4524853Z adding 'executorch/backends/arm/test/ops/test_zeros.py' 2025-06-05T23:55:24.4525181Z adding 'executorch/backends/arm/test/passes/test_broadcast_args_pass.py' 2025-06-05T23:55:24.4525495Z adding 'executorch/backends/arm/test/passes/test_cast_int64_pass.py' 2025-06-05T23:55:24.4525893Z adding 'executorch/backends/arm/test/passes/test_convert_expand_copy_to_repeat.py' 2025-06-05T23:55:24.4526284Z adding 'executorch/backends/arm/test/passes/test_convert_int_pow_to_muls.py' 2025-06-05T23:55:24.4526744Z adding 'executorch/backends/arm/test/passes/test_convert_split_to_slice.py' 2025-06-05T23:55:24.4527060Z adding 'executorch/backends/arm/test/passes/test_convert_to_clamp.py' 2025-06-05T23:55:24.4527480Z adding 'executorch/backends/arm/test/passes/test_decompose_cosine_similarity_pass.py' 2025-06-05T23:55:24.4527805Z adding 'executorch/backends/arm/test/passes/test_decompose_div_pass.py' 2025-06-05T23:55:24.4528172Z adding 'executorch/backends/arm/test/passes/test_decompose_layernorm_pass.py' 2025-06-05T23:55:24.4528590Z adding 'executorch/backends/arm/test/passes/test_decompose_linalg_vector_norm_pass.py' 2025-06-05T23:55:24.4528946Z adding 'executorch/backends/arm/test/passes/test_decompose_meandim_pass.py' 2025-06-05T23:55:24.4529296Z adding 'executorch/backends/arm/test/passes/test_decompose_softmax_pass.py' 2025-06-05T23:55:24.4529764Z adding 'executorch/backends/arm/test/passes/test_decompose_var_pass.py' 2025-06-05T23:55:24.4530053Z adding 'executorch/backends/arm/test/passes/test_fold_qdq_pass.py' 2025-06-05T23:55:24.4530385Z adding 'executorch/backends/arm/test/passes/test_fuse_batchnorm_pass.py' 2025-06-05T23:55:24.4530739Z adding 'executorch/backends/arm/test/passes/test_fuse_constant_ops_pass.py' 2025-06-05T23:55:24.4531163Z adding 'executorch/backends/arm/test/passes/test_fuse_equal_placeholders_ops_pass.py' 2025-06-05T23:55:24.4531499Z adding 'executorch/backends/arm/test/passes/test_insert_table_ops_pass.py' 2025-06-05T23:55:24.4531838Z adding 'executorch/backends/arm/test/passes/test_ioquantization_pass.py' 2025-06-05T23:55:24.4532151Z adding 'executorch/backends/arm/test/passes/test_remove_clone_pass.py' 2025-06-05T23:55:24.4532452Z adding 'executorch/backends/arm/test/passes/test_rescale_pass.py' 2025-06-05T23:55:24.4532987Z adding 'executorch/backends/arm/test/passes/test_unsqueeze_before_repeat_pass.py' 2025-06-05T23:55:24.4533374Z adding 'executorch/backends/arm/test/quantizer/test_generic_annotater.py' 2025-06-05T23:55:24.4533609Z adding 'executorch/backends/arm/test/tester/__init__.py' 2025-06-05T23:55:24.4533932Z adding 'executorch/backends/arm/test/tester/analyze_output_utils.py' 2025-06-05T23:55:24.4534234Z adding 'executorch/backends/arm/test/tester/arm_tester.py' 2025-06-05T23:55:24.4534493Z adding 'executorch/backends/arm/test/tester/test_pipeline.py' 2025-06-05T23:55:24.4534770Z adding 'executorch/backends/arm/test/tosautil/__init__.py' 2025-06-05T23:55:24.4535214Z adding 'executorch/backends/arm/third-party/serialization_lib/setup.py' 2025-06-05T23:55:24.4535911Z adding 'executorch/backends/arm/third-party/serialization_lib/python/serializer/__init__.py' 2025-06-05T23:55:24.4536542Z adding 'executorch/backends/arm/third-party/serialization_lib/python/serializer/tosa_serializer.py' 2025-06-05T23:55:24.4537206Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/ArithmeticRightShiftAttribute.py' 2025-06-05T23:55:24.4537635Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/Attribute.py' 2025-06-05T23:55:24.4538223Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/AxisAttribute.py' 2025-06-05T23:55:24.4538769Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/ClampAttribute.py' 2025-06-05T23:55:24.4539234Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/CondIfAttribute.py' 2025-06-05T23:55:24.4539752Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/ConvAttribute.py' 2025-06-05T23:55:24.4540284Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/CustomAttribute.py' 2025-06-05T23:55:24.4540794Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/DType.py' 2025-06-05T23:55:24.4541299Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/FFTAttribute.py' 2025-06-05T23:55:24.4541906Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/FullyConnectedAttribute.py' 2025-06-05T23:55:24.4542380Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/MatMulAttribute.py' 2025-06-05T23:55:24.4542959Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/MulAttribute.py' 2025-06-05T23:55:24.4543432Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/NegateAttribute.py' 2025-06-05T23:55:24.4543804Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/Op.py' 2025-06-05T23:55:24.4544312Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/PadAttribute.py' 2025-06-05T23:55:24.4544772Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/PoolAttribute.py' 2025-06-05T23:55:24.4545249Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/RFFTAttribute.py' 2025-06-05T23:55:24.4545803Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/RescaleAttribute.py' 2025-06-05T23:55:24.4546281Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/ReshapeAttribute.py' 2025-06-05T23:55:24.4546829Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/ResizeAttribute.py' 2025-06-05T23:55:24.4547366Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/ResizeMode.py' 2025-06-05T23:55:24.4547918Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/SliceAttribute.py' 2025-06-05T23:55:24.4548373Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TableAttribute.py' 2025-06-05T23:55:24.4548836Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TileAttribute.py' 2025-06-05T23:55:24.4549308Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaBasicBlock.py' 2025-06-05T23:55:24.4549739Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaGraph.py' 2025-06-05T23:55:24.4550222Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaOperator.py' 2025-06-05T23:55:24.4550676Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaRegion.py' 2025-06-05T23:55:24.4551147Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TosaTensor.py' 2025-06-05T23:55:24.4551696Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TransposeAttribute.py' 2025-06-05T23:55:24.4552456Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/TransposeConvAttribute.py' 2025-06-05T23:55:24.4553018Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/Version.py' 2025-06-05T23:55:24.4553579Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/WhileLoopAttribute.py' 2025-06-05T23:55:24.4553999Z adding 'executorch/backends/arm/third-party/serialization_lib/python/tosa/__init__.py' 2025-06-05T23:55:24.4554371Z adding 'executorch/backends/arm/third-party/serialization_lib/schema/tosa.fbs' 2025-06-05T23:55:24.4554944Z adding 'executorch/backends/arm/third-party/serialization_lib/test/scripts/test_npy_fileio.py' 2025-06-05T23:55:24.4555476Z adding 'executorch/backends/arm/third-party/serialization_lib/test/scripts/xunit/xunit.py' 2025-06-05T23:55:24.4555995Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conanfile.py' 2025-06-05T23:55:24.4556525Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/pnpm-lock.yaml' 2025-06-05T23:55:24.4557258Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/android/app/src/main/fbs/animal.fbs' 2025-06-05T23:55:24.4557945Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/benchmarks/cpp/flatbuffers/bench.fbs' 2025-06-05T23:55:24.4558472Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conan/build.py' 2025-06-05T23:55:24.4559108Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/conan/test_package/conanfile.py' 2025-06-05T23:55:24.4559744Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/analysis_options.yaml' 2025-06-05T23:55:24.4560383Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/pubspec.yaml' 2025-06-05T23:55:24.4560971Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test/bool_structs.fbs' 2025-06-05T23:55:24.4561582Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test/list_of_enums.fbs' 2025-06-05T23:55:24.4562186Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/dart/test/monster_test.fbs' 2025-06-05T23:55:24.4562811Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/examples/go-echo/hero.fbs' 2025-06-05T23:55:24.4563509Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/examples/go-echo/net.fbs' 2025-06-05T23:55:24.4564115Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/generate_goldens.py' 2025-06-05T23:55:24.4564696Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/golden_utils.py' 2025-06-05T23:55:24.4565318Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/cpp/generate.py' 2025-06-05T23:55:24.4565923Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/csharp/generate.py' 2025-06-05T23:55:24.4566597Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/dart/generate.py' 2025-06-05T23:55:24.4567171Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/go/generate.py' 2025-06-05T23:55:24.4567754Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/java/generate.py' 2025-06-05T23:55:24.4568357Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/kotlin/generate.py' 2025-06-05T23:55:24.4568965Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lobster/generate.py' 2025-06-05T23:55:24.4569539Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/lua/generate.py' 2025-06-05T23:55:24.4570201Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/nim/generate.py' 2025-06-05T23:55:24.4570847Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/php/generate.py' 2025-06-05T23:55:24.4571475Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py/Galaxy.py' 2025-06-05T23:55:24.4572046Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py/Universe.py' 2025-06-05T23:55:24.4572621Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py/__init__.py' 2025-06-05T23:55:24.4573192Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/py/generate.py' 2025-06-05T23:55:24.4573776Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/rust/generate.py' 2025-06-05T23:55:24.4574367Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/schema/basic.fbs' 2025-06-05T23:55:24.4574955Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/swift/generate.py' 2025-06-05T23:55:24.4575536Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/goldens/ts/generate.py' 2025-06-05T23:55:24.4576125Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/greeter.fbs' 2025-06-05T23:55:24.4576819Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/client.py' 2025-06-05T23:55:24.4577510Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/server.py' 2025-06-05T23:55:24.4578281Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models/HelloReply.py' 2025-06-05T23:55:24.4579080Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models/HelloRequest.py' 2025-06-05T23:55:24.4579839Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models/__init__.py' 2025-06-05T23:55:24.4580651Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/examples/python/greeter/models/greeter_grpc_fb.py' 2025-06-05T23:55:24.4581300Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/samples/greeter/greeter.fbs' 2025-06-05T23:55:24.4581867Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/grpc/tests/grpctest.py' 2025-06-05T23:55:24.4582619Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/InParentNamespace.py' 2025-06-05T23:55:24.4583326Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/MonsterExtra.py' 2025-06-05T23:55:24.4584004Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/__init__.py' 2025-06-05T23:55:24.4584784Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Ability.py' 2025-06-05T23:55:24.4585767Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Any.py' 2025-06-05T23:55:24.4586616Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/AnyAmbiguousAliases.py' 2025-06-05T23:55:24.4587437Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/AnyUniqueAliases.py' 2025-06-05T23:55:24.4588283Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/ArrayStruct.py' 2025-06-05T23:55:24.4589169Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/ArrayTable.py' 2025-06-05T23:55:24.4589971Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Color.py' 2025-06-05T23:55:24.4590716Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/LongEnum.py' 2025-06-05T23:55:24.4591498Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Monster.py' 2025-06-05T23:55:24.4592378Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedStruct.py' 2025-06-05T23:55:24.4593096Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Race.py' 2025-06-05T23:55:24.4594011Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Referrable.py' 2025-06-05T23:55:24.4594736Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Stat.py' 2025-06-05T23:55:24.4595542Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/StructOfStructs.py' 2025-06-05T23:55:24.4596426Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/StructOfStructsOfStructs.py' 2025-06-05T23:55:24.4597211Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Test.py' 2025-06-05T23:55:24.4597950Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/TestEnum.py' 2025-06-05T23:55:24.4598871Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/TestSimpleTableWithEnum.py' 2025-06-05T23:55:24.4599752Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/TypeAliases.py' 2025-06-05T23:55:24.4600462Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/Vec3.py' 2025-06-05T23:55:24.4601208Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/__init__.py' 2025-06-05T23:55:24.4602046Z 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:24.4602986Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Any.py' 2025-06-05T23:55:24.4603811Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Color.py' 2025-06-05T23:55:24.4604753Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/NestedUnionTest.py' 2025-06-05T23:55:24.4605661Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Test.py' 2025-06-05T23:55:24.4606617Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/TestSimpleTableWithEnum.py' 2025-06-05T23:55:24.4607497Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/Vec3.py' 2025-06-05T23:55:24.4608420Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example/NestedUnion/__init__.py' 2025-06-05T23:55:24.4609245Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example2/Monster.py' 2025-06-05T23:55:24.4610089Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/MyGame/Example2/__init__.py' 2025-06-05T23:55:24.4610944Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/SecondTableInA.py' 2025-06-05T23:55:24.4611756Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/TableInC.py' 2025-06-05T23:55:24.4612663Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/TableInFirstNS.py' 2025-06-05T23:55:24.4613365Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/__init__.py' 2025-06-05T23:55:24.4614217Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/EnumInNestedNS.py' 2025-06-05T23:55:24.4615226Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/StructInNestedNS.py' 2025-06-05T23:55:24.4616092Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/TableInNestedNS.py' 2025-06-05T23:55:24.4616963Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/UnionInNestedNS.py' 2025-06-05T23:55:24.4617890Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceA/NamespaceB/__init__.py' 2025-06-05T23:55:24.4618605Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceC/TableInC.py' 2025-06-05T23:55:24.4619354Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/NamespaceC/__init__.py' 2025-06-05T23:55:24.4620234Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/optional_scalars/OptionalByte.py' 2025-06-05T23:55:24.4621015Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/optional_scalars/ScalarStuff.py' 2025-06-05T23:55:24.4621793Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/optional_scalars/__init__.py' 2025-06-05T23:55:24.4622670Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/java/src/test/java/union_vector/union_vector.fbs' 2025-06-05T23:55:24.4623228Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/__init__.py' 2025-06-05T23:55:24.4623763Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/py.typed' 2025-06-05T23:55:24.4624323Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/setup.py' 2025-06-05T23:55:24.4625058Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/__init__.py' 2025-06-05T23:55:24.4625692Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/_version.py' 2025-06-05T23:55:24.4626326Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/builder.py' 2025-06-05T23:55:24.4627097Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/compat.py' 2025-06-05T23:55:24.4627706Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/encode.py' 2025-06-05T23:55:24.4628447Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/flexbuffers.py' 2025-06-05T23:55:24.4629247Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/number_types.py' 2025-06-05T23:55:24.4630024Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/packer.py' 2025-06-05T23:55:24.4630643Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/table.py' 2025-06-05T23:55:24.4631236Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/util.py' 2025-06-05T23:55:24.4632059Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/AdvancedFeatures.py' 2025-06-05T23:55:24.4632895Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/BaseType.py' 2025-06-05T23:55:24.4633586Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Enum.py' 2025-06-05T23:55:24.4634306Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/EnumVal.py' 2025-06-05T23:55:24.4634985Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Field.py' 2025-06-05T23:55:24.4635734Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/KeyValue.py' 2025-06-05T23:55:24.4636534Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Object.py' 2025-06-05T23:55:24.4637243Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/RPCCall.py' 2025-06-05T23:55:24.4637948Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Schema.py' 2025-06-05T23:55:24.4638819Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/SchemaFile.py' 2025-06-05T23:55:24.4639537Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Service.py' 2025-06-05T23:55:24.4640226Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/Type.py' 2025-06-05T23:55:24.4640934Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/python/flatbuffers/reflection/__init__.py' 2025-06-05T23:55:24.4641558Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/reflection/reflection.fbs' 2025-06-05T23:55:24.4642214Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/samples/monster.fbs' 2025-06-05T23:55:24.4642803Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/samples/sample_binary.py' 2025-06-05T23:55:24.4643512Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/check-grpc-generated-code.py' 2025-06-05T23:55:24.4644289Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/check_generate_code.py' 2025-06-05T23:55:24.4644870Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/generate_code.py' 2025-06-05T23:55:24.4645531Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/generate_grpc_examples.py' 2025-06-05T23:55:24.4646066Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/scripts/util.py' 2025-06-05T23:55:24.4646669Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/snap/snapcraft.yaml' 2025-06-05T23:55:24.4647345Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MutatingBool.fbs' 2025-06-05T23:55:24.4647998Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/alignment_test.fbs' 2025-06-05T23:55:24.4648666Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/arrays_test.fbs' 2025-06-05T23:55:24.4649296Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/dictionary_lookup.fbs' 2025-06-05T23:55:24.4649881Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/included_test.fbs' 2025-06-05T23:55:24.4650566Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/includer_test.fbs' 2025-06-05T23:55:24.4651269Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/keyword_test.fbs' 2025-06-05T23:55:24.4651852Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/monster_extra.fbs' 2025-06-05T23:55:24.4652429Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/monster_test.fbs' 2025-06-05T23:55:24.4653111Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/monster_test_generated.py' 2025-06-05T23:55:24.4653775Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/more_defaults.fbs' 2025-06-05T23:55:24.4654406Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nan_inf_test.fbs' 2025-06-05T23:55:24.4655131Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/native_inline_table_test.fbs' 2025-06-05T23:55:24.4655735Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/native_type_test.fbs' 2025-06-05T23:55:24.4656395Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_union_test.fbs' 2025-06-05T23:55:24.4657122Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars.fbs' 2025-06-05T23:55:24.4657785Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/private_annotation_test.fbs' 2025-06-05T23:55:24.4658401Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/py_flexbuffers_test.py' 2025-06-05T23:55:24.4658980Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/py_test.py' 2025-06-05T23:55:24.4659679Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/required_strings.fbs' 2025-06-05T23:55:24.4660262Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/rust_namer_test.fbs' 2025-06-05T23:55:24.4660788Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/test.fbs' 2025-06-05T23:55:24.4661418Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/type_field_collsion.fbs' 2025-06-05T23:55:24.4662248Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/union_underlying_type_test.fbs' 2025-06-05T23:55:24.4662888Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/union_value_collision.fbs' 2025-06-05T23:55:24.4663468Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/vector_has_test.fbs' 2025-06-05T23:55:24.4664066Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit/test_64bit.fbs' 2025-06-05T23:55:24.4664709Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit/evolution/v1.fbs' 2025-06-05T23:55:24.4665376Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/64bit/evolution/v2.fbs' 2025-06-05T23:55:24.4666163Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/InParentNamespace.py' 2025-06-05T23:55:24.4666860Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/MonsterExtra.py' 2025-06-05T23:55:24.4667446Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/__init__.py' 2025-06-05T23:55:24.4668174Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Ability.py' 2025-06-05T23:55:24.4668821Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Any.py' 2025-06-05T23:55:24.4669681Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/AnyAmbiguousAliases.py' 2025-06-05T23:55:24.4670398Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/AnyUniqueAliases.py' 2025-06-05T23:55:24.4671075Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/ArrayStruct.py' 2025-06-05T23:55:24.4671779Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/ArrayTable.py' 2025-06-05T23:55:24.4672488Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Color.py' 2025-06-05T23:55:24.4673125Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/LongEnum.py' 2025-06-05T23:55:24.4673772Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Monster.py' 2025-06-05T23:55:24.4674598Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedStruct.py' 2025-06-05T23:55:24.4675218Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Race.py' 2025-06-05T23:55:24.4675892Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Referrable.py' 2025-06-05T23:55:24.4676536Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Stat.py' 2025-06-05T23:55:24.4677332Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/StructOfStructs.py' 2025-06-05T23:55:24.4678120Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/StructOfStructsOfStructs.py' 2025-06-05T23:55:24.4678739Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Test.py' 2025-06-05T23:55:24.4679540Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/TestEnum.py' 2025-06-05T23:55:24.4680313Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/TestSimpleTableWithEnum.py' 2025-06-05T23:55:24.4680993Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/TypeAliases.py' 2025-06-05T23:55:24.4681699Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/Vec3.py' 2025-06-05T23:55:24.4682404Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/__init__.py' 2025-06-05T23:55:24.4683132Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/monster_test_grpc_fb.py' 2025-06-05T23:55:24.4683909Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Any.py' 2025-06-05T23:55:24.4684707Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Color.py' 2025-06-05T23:55:24.4685761Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/NestedUnionTest.py' 2025-06-05T23:55:24.4686628Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Test.py' 2025-06-05T23:55:24.4687591Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/TestSimpleTableWithEnum.py' 2025-06-05T23:55:24.4688308Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/Vec3.py' 2025-06-05T23:55:24.4689086Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example/NestedUnion/__init__.py' 2025-06-05T23:55:24.4689873Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example2/Monster.py' 2025-06-05T23:55:24.4690535Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/MyGame/Example2/__init__.py' 2025-06-05T23:55:24.4691291Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary/annotated_binary.fbs' 2025-06-05T23:55:24.4692137Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary/annotated_binary_old.fbs' 2025-06-05T23:55:24.4692891Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/annotated_binary/generate_annotations.py' 2025-06-05T23:55:24.4693612Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/evolution_test/evolution_v1.fbs' 2025-06-05T23:55:24.4694428Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/evolution_test/evolution_v2.fbs' 2025-06-05T23:55:24.4695086Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/enum_val_attributes.fbs' 2025-06-05T23:55:24.4695765Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_cpp_tests.py' 2025-06-05T23:55:24.4696526Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_kotlin_tests.py' 2025-06-05T23:55:24.4697181Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_schema_tests.py' 2025-06-05T23:55:24.4697780Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_test.py' 2025-06-05T23:55:24.4698425Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/flatc_ts_tests.py' 2025-06-05T23:55:24.4699097Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/foo.fbs' 2025-06-05T23:55:24.4699716Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/foo_with_ns.fbs' 2025-06-05T23:55:24.4700276Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/main.py' 2025-06-05T23:55:24.4700868Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/bar.fbs' 2025-06-05T23:55:24.4701518Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/bar_with_foo.fbs' 2025-06-05T23:55:24.4702234Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/bar_with_ns.fbs' 2025-06-05T23:55:24.4702886Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/baz/baz.fbs' 2025-06-05T23:55:24.4703558Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/flatc/bar/baz/baz_with_ns.fbs' 2025-06-05T23:55:24.4704449Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/include_test1.fbs' 2025-06-05T23:55:24.4705092Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/order.fbs' 2025-06-05T23:55:24.4705862Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/sub/include_test2.fbs' 2025-06-05T23:55:24.4706597Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/include_test/sub/no_namespace.fbs' 2025-06-05T23:55:24.4707330Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/key_field/key_field_sample.fbs' 2025-06-05T23:55:24.4708066Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/minified_enums/enums.fbs' 2025-06-05T23:55:24.4708762Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test/invalid_test1.fbs' 2025-06-05T23:55:24.4709607Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test/invalid_test2.fbs' 2025-06-05T23:55:24.4710293Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test/valid_test1.fbs' 2025-06-05T23:55:24.4710962Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/name_clash_test/valid_test2.fbs' 2025-06-05T23:55:24.4711649Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/namespace_test1.fbs' 2025-06-05T23:55:24.4712351Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/namespace_test2.fbs' 2025-06-05T23:55:24.4713222Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/SecondTableInA.py' 2025-06-05T23:55:24.4714007Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/TableInC.py' 2025-06-05T23:55:24.4714793Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/TableInFirstNS.py' 2025-06-05T23:55:24.4715512Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/__init__.py' 2025-06-05T23:55:24.4716515Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/EnumInNestedNS.py' 2025-06-05T23:55:24.4717384Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/StructInNestedNS.py' 2025-06-05T23:55:24.4718268Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/TableInNestedNS.py' 2025-06-05T23:55:24.4719214Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/UnionInNestedNS.py' 2025-06-05T23:55:24.4720017Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/__init__.py' 2025-06-05T23:55:24.4720751Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceC/TableInC.py' 2025-06-05T23:55:24.4721477Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/namespace_test/NamespaceC/__init__.py' 2025-06-05T23:55:24.4722433Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_namespace_test/nested_namespace_test1.fbs' 2025-06-05T23:55:24.4723236Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_namespace_test/nested_namespace_test2.fbs' 2025-06-05T23:55:24.4724099Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nested_namespace_test/nested_namespace_test3.fbs' 2025-06-05T23:55:24.4724726Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/nim/testnim.py' 2025-06-05T23:55:24.4725423Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars/OptionalByte.py' 2025-06-05T23:55:24.4726107Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars/ScalarStuff.py' 2025-06-05T23:55:24.4726799Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/optional_scalars/__init__.py' 2025-06-05T23:55:24.4727519Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test.golden.fbs' 2025-06-05T23:55:24.4728188Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_id.golden.fbs' 2025-06-05T23:55:24.4728892Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_include.golden.fbs' 2025-06-05T23:55:24.4729653Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_include_id.golden.fbs' 2025-06-05T23:55:24.4730462Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_suffix.golden.fbs' 2025-06-05T23:55:24.4731164Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_suffix_id.golden.fbs' 2025-06-05T23:55:24.4731844Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union.golden.fbs' 2025-06-05T23:55:24.4732550Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_id.golden.fbs' 2025-06-05T23:55:24.4733294Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_include.golden.fbs' 2025-06-05T23:55:24.4734067Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_include_id.golden.fbs' 2025-06-05T23:55:24.4734828Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_suffix.golden.fbs' 2025-06-05T23:55:24.4735680Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/prototest/test_union_suffix_id.golden.fbs' 2025-06-05T23:55:24.4736493Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/CodeGenerationTests/test_import.fbs' 2025-06-05T23:55:24.4737329Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/CodeGenerationTests/test_no_include.fbs' 2025-06-05T23:55:24.4738139Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/swift/tests/Sources/SwiftFlatBuffers/fuzzer.fbs' 2025-06-05T23:55:24.4738745Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/TypeScriptTest.py' 2025-06-05T23:55:24.4739550Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/typescript_keywords.fbs' 2025-06-05T23:55:24.4740341Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/arrays_test_complex/arrays_test_complex.fbs' 2025-06-05T23:55:24.4741056Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/bazel_repository_test_dir/one.fbs' 2025-06-05T23:55:24.4741827Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/bazel_repository_test_dir/pnpm-lock.yaml' 2025-06-05T23:55:24.4742549Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/bazel_repository_test_dir/two.fbs' 2025-06-05T23:55:24.4743444Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/test_dir/typescript_include.fbs' 2025-06-05T23:55:24.4744292Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/ts/test_dir/typescript_transitive_include.fbs' 2025-06-05T23:55:24.4744967Z adding 'executorch/backends/arm/third-party/serialization_lib/third_party/flatbuffers/tests/union_vector/union_vector.fbs' 2025-06-05T23:55:24.4745287Z adding 'executorch/backends/arm/tosa/schemas/tosa_0.80.fbs' 2025-06-05T23:55:24.4745594Z adding 'executorch/backends/arm/tosa/schemas/tosa_1.0.fbs' 2025-06-05T23:55:24.4745936Z adding 'executorch/backends/arm/util/arm_model_evaluator.py' 2025-06-05T23:55:24.4746151Z adding 'executorch/backends/cadence/aot/__init__.py' 2025-06-05T23:55:24.4746367Z adding 'executorch/backends/cadence/aot/compiler.py' 2025-06-05T23:55:24.4746606Z adding 'executorch/backends/cadence/aot/compiler_utils.py' 2025-06-05T23:55:24.4746860Z adding 'executorch/backends/cadence/aot/decompose_ops.py' 2025-06-05T23:55:24.4747110Z adding 'executorch/backends/cadence/aot/export_example.py' 2025-06-05T23:55:24.4747357Z adding 'executorch/backends/cadence/aot/functions.yaml' 2025-06-05T23:55:24.4747644Z adding 'executorch/backends/cadence/aot/functions_fusion_g3.yaml' 2025-06-05T23:55:24.4747987Z adding 'executorch/backends/cadence/aot/functions_hifi.yaml' 2025-06-05T23:55:24.4748209Z adding 'executorch/backends/cadence/aot/fuse_ops.py' 2025-06-05T23:55:24.4748499Z adding 'executorch/backends/cadence/aot/graph_builder.py' 2025-06-05T23:55:24.4748811Z adding 'executorch/backends/cadence/aot/memory_constraints.py' 2025-06-05T23:55:24.4749069Z adding 'executorch/backends/cadence/aot/memory_planning.py' 2025-06-05T23:55:24.4749461Z adding 'executorch/backends/cadence/aot/ops_registrations.py' 2025-06-05T23:55:24.4749801Z adding 'executorch/backends/cadence/aot/pass_utils.py' 2025-06-05T23:55:24.4750114Z adding 'executorch/backends/cadence/aot/passes.py' 2025-06-05T23:55:24.4750605Z adding 'executorch/backends/cadence/aot/ref_implementations.py' 2025-06-05T23:55:24.4750958Z adding 'executorch/backends/cadence/aot/remove_ops.py' 2025-06-05T23:55:24.4751347Z adding 'executorch/backends/cadence/aot/reorder_ops.py' 2025-06-05T23:55:24.4751795Z adding 'executorch/backends/cadence/aot/replace_ops.py' 2025-06-05T23:55:24.4752123Z adding 'executorch/backends/cadence/aot/simplify_ops.py' 2025-06-05T23:55:24.4752322Z adding 'executorch/backends/cadence/aot/utils.py' 2025-06-05T23:55:24.4752622Z adding 'executorch/backends/cadence/aot/quantizer/fusion_pass.py' 2025-06-05T23:55:24.4752899Z adding 'executorch/backends/cadence/aot/quantizer/patterns.py' 2025-06-05T23:55:24.4753170Z adding 'executorch/backends/cadence/aot/quantizer/quantizer.py' 2025-06-05T23:55:24.4753423Z adding 'executorch/backends/cadence/aot/quantizer/utils.py' 2025-06-05T23:55:24.4753785Z adding 'executorch/backends/cadence/aot/tests/test_decompose_ops_passes.py' 2025-06-05T23:55:24.4754185Z adding 'executorch/backends/cadence/aot/tests/test_fusion_ops_passes.py' 2025-06-05T23:55:24.4754635Z adding 'executorch/backends/cadence/aot/tests/test_graph_builder.py' 2025-06-05T23:55:24.4755002Z adding 'executorch/backends/cadence/aot/tests/test_memory_passes.py' 2025-06-05T23:55:24.4755301Z adding 'executorch/backends/cadence/aot/tests/test_pass_filter.py' 2025-06-05T23:55:24.4755642Z adding 'executorch/backends/cadence/aot/tests/test_remove_ops_passes.py' 2025-06-05T23:55:24.4756148Z adding 'executorch/backends/cadence/aot/tests/test_reorder_ops_passes.py' 2025-06-05T23:55:24.4756582Z adding 'executorch/backends/cadence/aot/tests/test_replace_ops_passes.py' 2025-06-05T23:55:24.4756935Z adding 'executorch/backends/cadence/aot/tests/test_simplify_ops_passes.py' 2025-06-05T23:55:24.4757175Z adding 'executorch/backends/cadence/runtime/__init__.py' 2025-06-05T23:55:24.4757466Z adding 'executorch/backends/cadence/runtime/executor.py' 2025-06-05T23:55:24.4757856Z adding 'executorch/backends/cadence/runtime/runtime.py' 2025-06-05T23:55:24.4758081Z adding 'executorch/backends/cadence/runtime/utils.py' 2025-06-05T23:55:24.4758381Z adding 'executorch/backends/cadence/utils/facto_util.py' 2025-06-05T23:55:24.4758619Z adding 'executorch/backends/cadence/utils/gen_header.py' 2025-06-05T23:55:24.4758882Z adding 'executorch/backends/cadence/utils/post_compilation.py' 2025-06-05T23:55:24.4759128Z adding 'executorch/backends/cadence/utils/FACTO/setup.py' 2025-06-05T23:55:24.4759466Z adding 'executorch/backends/cadence/utils/FACTO/calibrator/__init__.py' 2025-06-05T23:55:24.4759792Z adding 'executorch/backends/cadence/utils/FACTO/calibrator/runner.py' 2025-06-05T23:55:24.4760110Z adding 'executorch/backends/cadence/utils/FACTO/examples/example.py' 2025-06-05T23:55:24.4760468Z adding 'executorch/backends/cadence/utils/FACTO/examples/minimal_example.py' 2025-06-05T23:55:24.4760811Z adding 'executorch/backends/cadence/utils/FACTO/examples/random_seed.py' 2025-06-05T23:55:24.4761114Z adding 'executorch/backends/cadence/utils/FACTO/facto/__init__.py' 2025-06-05T23:55:24.4761469Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/__init__.py' 2025-06-05T23:55:24.4761881Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple/__init__.py' 2025-06-05T23:55:24.4762292Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple/engine.py' 2025-06-05T23:55:24.4762679Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argtuple/gen.py' 2025-06-05T23:55:24.4763188Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argument/__init__.py' 2025-06-05T23:55:24.4763641Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argument/engine.py' 2025-06-05T23:55:24.4764031Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argument/gen.py' 2025-06-05T23:55:24.4764426Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/argument/type.py' 2025-06-05T23:55:24.4764857Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute/__init__.py' 2025-06-05T23:55:24.4765270Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute/engine.py' 2025-06-05T23:55:24.4765666Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute/model.py' 2025-06-05T23:55:24.4766073Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/attribute/solve.py' 2025-06-05T23:55:24.4766478Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/specs/__init__.py' 2025-06-05T23:55:24.4766854Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/specs/model.py' 2025-06-05T23:55:24.4767340Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/utils/__init__.py' 2025-06-05T23:55:24.4767836Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/utils/random_manager.py' 2025-06-05T23:55:24.4768257Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/__init__.py' 2025-06-05T23:55:24.4768701Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/constants.py' 2025-06-05T23:55:24.4769088Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/gen.py' 2025-06-05T23:55:24.4769487Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/solve.py' 2025-06-05T23:55:24.4769893Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/space.py' 2025-06-05T23:55:24.4770333Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/type.py' 2025-06-05T23:55:24.4770870Z adding 'executorch/backends/cadence/utils/FACTO/facto/inputgen/variable/utils.py' 2025-06-05T23:55:24.4771185Z adding 'executorch/backends/cadence/utils/FACTO/facto/specdb/db.py' 2025-06-05T23:55:24.4771520Z adding 'executorch/backends/cadence/utils/FACTO/facto/specdb/default.py' 2025-06-05T23:55:24.4771860Z adding 'executorch/backends/cadence/utils/FACTO/facto/specdb/dtypes.py' 2025-06-05T23:55:24.4772285Z adding 'executorch/backends/cadence/utils/FACTO/facto/specdb/function.py' 2025-06-05T23:55:24.4772722Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_argtuple_engine.py' 2025-06-05T23:55:24.4773227Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_argtuple_generator.py' 2025-06-05T23:55:24.4773698Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_argument_attributes.py' 2025-06-05T23:55:24.4774158Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_argument_generator.py' 2025-06-05T23:55:24.4774588Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_argument_types.py' 2025-06-05T23:55:24.4775033Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_attribute_engine.py' 2025-06-05T23:55:24.4775461Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_attribute_solver.py' 2025-06-05T23:55:24.4775920Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_constraints.py' 2025-06-05T23:55:24.4776464Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_meta_arg_engine.py' 2025-06-05T23:55:24.4776840Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_specs.py' 2025-06-05T23:55:24.4777283Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_structural_engine.py' 2025-06-05T23:55:24.4777750Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_variable_generation.py' 2025-06-05T23:55:24.4778192Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_variable_solving.py' 2025-06-05T23:55:24.4778621Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_variable_space.py' 2025-06-05T23:55:24.4779033Z adding 'executorch/backends/cadence/utils/FACTO/test/inputgen/test_variable_types.py' 2025-06-05T23:55:24.4779322Z adding 'executorch/backends/cortex_m/ops/operators.py' 2025-06-05T23:55:24.4779573Z adding 'executorch/backends/cortex_m/ops/operators.yaml' 2025-06-05T23:55:24.4779982Z adding 'executorch/backends/cortex_m/passes/replace_quant_nodes_pass.py' 2025-06-05T23:55:24.4780302Z adding 'executorch/backends/cortex_m/test/test_replace_quant_nodes.py' 2025-06-05T23:55:24.4780591Z adding 'executorch/backends/example/example_backend.py' 2025-06-05T23:55:24.4780891Z adding 'executorch/backends/example/example_partitioner.py' 2025-06-05T23:55:24.4781208Z adding 'executorch/backends/example/example_quantizer.py' 2025-06-05T23:55:24.4781478Z adding 'executorch/backends/example/test_example_delegate.py' 2025-06-05T23:55:24.4781961Z adding 'executorch/backends/example/example_backend_delegate_passes/merge_to_dim_pass.py' 2025-06-05T23:55:24.4782474Z adding 'executorch/backends/example/example_backend_delegate_passes/permute_memory_formats_pass.py' 2025-06-05T23:55:24.4782849Z adding 'executorch/backends/example/example_operators/adaptive_avg_pool2d.py' 2025-06-05T23:55:24.4783118Z adding 'executorch/backends/example/example_operators/add.py' 2025-06-05T23:55:24.4783403Z adding 'executorch/backends/example/example_operators/conv2d.py' 2025-06-05T23:55:24.4783705Z adding 'executorch/backends/example/example_operators/conv_relu.py' 2025-06-05T23:55:24.4784007Z adding 'executorch/backends/example/example_operators/dropout.py' 2025-06-05T23:55:24.4784301Z adding 'executorch/backends/example/example_operators/flatten.py' 2025-06-05T23:55:24.4784651Z adding 'executorch/backends/example/example_operators/linear.py' 2025-06-05T23:55:24.4785014Z adding 'executorch/backends/example/example_operators/op_base.py' 2025-06-05T23:55:24.4785485Z adding 'executorch/backends/example/example_operators/ops.py' 2025-06-05T23:55:24.4785771Z adding 'executorch/backends/example/example_operators/utils.py' 2025-06-05T23:55:24.4785976Z adding 'executorch/backends/mediatek/__init__.py' 2025-06-05T23:55:24.4786188Z adding 'executorch/backends/mediatek/partitioner.py' 2025-06-05T23:55:24.4786399Z adding 'executorch/backends/mediatek/preprocess.py' 2025-06-05T23:55:24.4786766Z adding 'executorch/backends/mediatek/_passes/__init__.py' 2025-06-05T23:55:24.4787193Z adding 'executorch/backends/mediatek/_passes/decompose_scaled_dot_product_attention.py' 2025-06-05T23:55:24.4787509Z adding 'executorch/backends/mediatek/quantizer/__init__.py' 2025-06-05T23:55:24.4787774Z adding 'executorch/backends/mediatek/quantizer/annotator.py' 2025-06-05T23:55:24.4788108Z adding 'executorch/backends/mediatek/quantizer/qconfig.py' 2025-06-05T23:55:24.4788381Z adding 'executorch/backends/mediatek/quantizer/quantizer.py' 2025-06-05T23:55:24.4788623Z adding 'executorch/backends/nxp/neutron_node_extraction.py' 2025-06-05T23:55:24.4788859Z adding 'executorch/backends/nxp/neutron_partitioner.py' 2025-06-05T23:55:24.4789101Z adding 'executorch/backends/nxp/neutron_pass_manager.py' 2025-06-05T23:55:24.4789303Z adding 'executorch/backends/nxp/nxp_backend.py' 2025-06-05T23:55:24.4789663Z adding 'executorch/backends/nxp/aten_passes/fuse_batch_norm_with_conv_pass.py' 2025-06-05T23:55:24.4790052Z adding 'executorch/backends/nxp/aten_passes/fuse_batch_norm_with_linear_pass.py' 2025-06-05T23:55:24.4790397Z adding 'executorch/backends/nxp/aten_passes/neutron_aten_pass_manager.py' 2025-06-05T23:55:24.5121523Z adding 'executorch/backends/nxp/backend/edge_helper.py' 2025-06-05T23:55:24.5121851Z adding 'executorch/backends/nxp/backend/edge_program_converter.py' 2025-06-05T23:55:24.5122165Z adding 'executorch/backends/nxp/backend/neutron_converter_manager.py' 2025-06-05T23:55:24.5122464Z adding 'executorch/backends/nxp/backend/node_format_inference.py' 2025-06-05T23:55:24.5122755Z adding 'executorch/backends/nxp/backend/ir/conversion_config.py' 2025-06-05T23:55:24.5123049Z adding 'executorch/backends/nxp/backend/ir/conversion_context.py' 2025-06-05T23:55:24.5123314Z adding 'executorch/backends/nxp/backend/ir/logger.py' 2025-06-05T23:55:24.5123609Z adding 'executorch/backends/nxp/backend/ir/tensor_formatting.py' 2025-06-05T23:55:24.5123898Z adding 'executorch/backends/nxp/backend/ir/converter/__init__.py' 2025-06-05T23:55:24.5124242Z adding 'executorch/backends/nxp/backend/ir/converter/node_converter.py' 2025-06-05T23:55:24.5124610Z adding 'executorch/backends/nxp/backend/ir/converter/quantization_utils.py' 2025-06-05T23:55:24.5124921Z adding 'executorch/backends/nxp/backend/ir/converter/tensor_utils.py' 2025-06-05T23:55:24.5125269Z adding 'executorch/backends/nxp/backend/ir/converter/builder/__init__.py' 2025-06-05T23:55:24.5125873Z adding 'executorch/backends/nxp/backend/ir/converter/builder/aten_model_builder_director.py' 2025-06-05T23:55:24.5126258Z adding 'executorch/backends/nxp/backend/ir/converter/builder/model_builder.py' 2025-06-05T23:55:24.5126719Z adding 'executorch/backends/nxp/backend/ir/converter/builder/quantization_verification.py' 2025-06-05T23:55:24.5127091Z adding 'executorch/backends/nxp/backend/ir/converter/conversion/__init__.py' 2025-06-05T23:55:24.5127504Z adding 'executorch/backends/nxp/backend/ir/converter/conversion/aten_translator.py' 2025-06-05T23:55:24.5127865Z adding 'executorch/backends/nxp/backend/ir/converter/conversion/common.py' 2025-06-05T23:55:24.5128381Z adding 'executorch/backends/nxp/backend/ir/converter/conversion/translator.py' 2025-06-05T23:55:24.5128785Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/__init__.py' 2025-06-05T23:55:24.5129288Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/__init__.py' 2025-06-05T23:55:24.5129856Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/addmm_converter.py' 2025-06-05T23:55:24.5130591Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/avg_pool_2d_converter.py' 2025-06-05T23:55:24.5131198Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/constant_pad_nd_converter.py' 2025-06-05T23:55:24.5131790Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/convolution_converter.py' 2025-06-05T23:55:24.5132735Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/max_pool_2d_converter.py' 2025-06-05T23:55:24.5133355Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/mm_converter.py' 2025-06-05T23:55:24.5133958Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/permute_copy_converter.py' 2025-06-05T23:55:24.5134584Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/qdq_dequantize_converter.py' 2025-06-05T23:55:24.5135298Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/qdq_quantize_converter.py' 2025-06-05T23:55:24.5135840Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/relu_converter.py' 2025-06-05T23:55:24.5136403Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/softmax_converter.py' 2025-06-05T23:55:24.5136983Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/ops_converters/view_copy_converter.py' 2025-06-05T23:55:24.5137570Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/shared/__init__.py' 2025-06-05T23:55:24.5138070Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/shared/recurrent_utils.py' 2025-06-05T23:55:24.5138549Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/shared/reduce_utils.py' 2025-06-05T23:55:24.5139088Z adding 'executorch/backends/nxp/backend/ir/converter/node_converters/shared/reshape_transposition.py' 2025-06-05T23:55:24.5139346Z adding 'executorch/backends/nxp/backend/ir/lib/__init__.py' 2025-06-05T23:55:24.5139791Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ATan2Options.py' 2025-06-05T23:55:24.5140110Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/AbsOptions.py' 2025-06-05T23:55:24.5140523Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ActivationFunctionType.py' 2025-06-05T23:55:24.5140850Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/AddNOptions.py' 2025-06-05T23:55:24.5141152Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/AddOptions.py' 2025-06-05T23:55:24.5141492Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ArgMaxOptions.py' 2025-06-05T23:55:24.5141859Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ArgMinOptions.py' 2025-06-05T23:55:24.5142377Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/AssignVariableOptions.py' 2025-06-05T23:55:24.5142756Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BatchMatMulOptions.py' 2025-06-05T23:55:24.5143201Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BatchToSpaceNDOptions.py' 2025-06-05T23:55:24.5143694Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BidirectionalSequenceLSTMOptions.py' 2025-06-05T23:55:24.5144176Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BidirectionalSequenceRNNOptions.py' 2025-06-05T23:55:24.5144560Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BitcastOptions.py' 2025-06-05T23:55:24.5145007Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BitwiseXorOptions.py' 2025-06-05T23:55:24.5145383Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BroadcastToOptions.py' 2025-06-05T23:55:24.5145745Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BucketizeOptions.py' 2025-06-05T23:55:24.5146036Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Buffer.py' 2025-06-05T23:55:24.5146378Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BuiltinOperator.py' 2025-06-05T23:55:24.5146726Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BuiltinOptions.py' 2025-06-05T23:55:24.5147235Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/BuiltinOptions2.py' 2025-06-05T23:55:24.5147591Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CallOnceOptions.py' 2025-06-05T23:55:24.5147986Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CallOptions.py' 2025-06-05T23:55:24.5148296Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CastOptions.py' 2025-06-05T23:55:24.5148752Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CombinerType.py' 2025-06-05T23:55:24.5149252Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ConcatEmbeddingsOptions.py' 2025-06-05T23:55:24.5149748Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ConcatenationOptions.py' 2025-06-05T23:55:24.5150075Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Conv2DOptions.py' 2025-06-05T23:55:24.5150410Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Conv3DOptions.py' 2025-06-05T23:55:24.5150727Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CosOptions.py' 2025-06-05T23:55:24.5151068Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CumsumOptions.py' 2025-06-05T23:55:24.5151440Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CustomOptionsFormat.py' 2025-06-05T23:55:24.5151876Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/CustomQuantization.py' 2025-06-05T23:55:24.5152362Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DensifyOptions.py' 2025-06-05T23:55:24.5152746Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DepthToSpaceOptions.py' 2025-06-05T23:55:24.5153162Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DepthwiseConv2DOptions.py' 2025-06-05T23:55:24.5153545Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DequantizeOptions.py' 2025-06-05T23:55:24.5154042Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DilateOptions.py' 2025-06-05T23:55:24.5154509Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DimensionMetadata.py' 2025-06-05T23:55:24.5154851Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DimensionType.py' 2025-06-05T23:55:24.5155152Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DivOptions.py' 2025-06-05T23:55:24.5155582Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/DynamicUpdateSliceOptions.py' 2025-06-05T23:55:24.5156040Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/EmbeddingLookupSparseOptions.py' 2025-06-05T23:55:24.5156458Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/EqualOptions.py' 2025-06-05T23:55:24.5156833Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ExpOptions.py' 2025-06-05T23:55:24.5157192Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ExpandDimsOptions.py' 2025-06-05T23:55:24.5157554Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/FakeQuantOptions.py' 2025-06-05T23:55:24.5157879Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/FillOptions.py' 2025-06-05T23:55:24.5158234Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/FloorDivOptions.py' 2025-06-05T23:55:24.5158577Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/FloorModOptions.py' 2025-06-05T23:55:24.5159099Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/FullyConnectedOptions.py' 2025-06-05T23:55:24.5159620Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/FullyConnectedOptionsWeightsFormat.py' 2025-06-05T23:55:24.5159981Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/GatherNdOptions.py' 2025-06-05T23:55:24.5160308Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/GatherOptions.py' 2025-06-05T23:55:24.5160636Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/GeluOptions.py' 2025-06-05T23:55:24.5161123Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/GreaterEqualOptions.py' 2025-06-05T23:55:24.5161618Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/GreaterOptions.py' 2025-06-05T23:55:24.5161979Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/HardSwishOptions.py' 2025-06-05T23:55:24.5162358Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/HashtableFindOptions.py' 2025-06-05T23:55:24.5162768Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/HashtableImportOptions.py' 2025-06-05T23:55:24.5163125Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/HashtableOptions.py' 2025-06-05T23:55:24.5163515Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/HashtableSizeOptions.py' 2025-06-05T23:55:24.5385792Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/IfOptions.py' 2025-06-05T23:55:24.5386368Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Int32Vector.py' 2025-06-05T23:55:24.5386912Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/L2NormOptions.py' 2025-06-05T23:55:24.5387318Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LSHProjectionOptions.py' 2025-06-05T23:55:24.5387908Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LSHProjectionType.py' 2025-06-05T23:55:24.5388270Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LSTMKernelType.py' 2025-06-05T23:55:24.5388582Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LSTMOptions.py' 2025-06-05T23:55:24.5388947Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LeakyReluOptions.py' 2025-06-05T23:55:24.5389307Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LessEqualOptions.py' 2025-06-05T23:55:24.5389632Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LessOptions.py' 2025-06-05T23:55:24.5390222Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LocalResponseNormalizationOptions.py' 2025-06-05T23:55:24.5390659Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LogSoftmaxOptions.py' 2025-06-05T23:55:24.5391033Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LogicalAndOptions.py' 2025-06-05T23:55:24.5391456Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LogicalNotOptions.py' 2025-06-05T23:55:24.5391800Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/LogicalOrOptions.py' 2025-06-05T23:55:24.5392165Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/MatrixDiagOptions.py' 2025-06-05T23:55:24.5392552Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/MatrixSetDiagOptions.py' 2025-06-05T23:55:24.5393055Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/MaximumMinimumOptions.py' 2025-06-05T23:55:24.5393413Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Metadata.py' 2025-06-05T23:55:24.5393747Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/MirrorPadMode.py' 2025-06-05T23:55:24.5394162Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/MirrorPadOptions.py' 2025-06-05T23:55:24.5394452Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Model.py' 2025-06-05T23:55:24.5394767Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/MulOptions.py' 2025-06-05T23:55:24.5395070Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/NegOptions.py' 2025-06-05T23:55:24.5395616Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/NonMaxSuppressionV4Options.py' 2025-06-05T23:55:24.5396107Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/NonMaxSuppressionV5Options.py' 2025-06-05T23:55:24.5396463Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/NotEqualOptions.py' 2025-06-05T23:55:24.5396851Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/OneHotOptions.py' 2025-06-05T23:55:24.5397157Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Operator.py' 2025-06-05T23:55:24.5397494Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/OperatorCode.py' 2025-06-05T23:55:24.5397818Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/PackOptions.py' 2025-06-05T23:55:24.5398137Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/PadOptions.py' 2025-06-05T23:55:24.5398560Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/PadV2Options.py' 2025-06-05T23:55:24.5398904Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Padding.py' 2025-06-05T23:55:24.5399244Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Pool2DOptions.py' 2025-06-05T23:55:24.5399609Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/PowOptions.py' 2025-06-05T23:55:24.5399985Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/QuantizationDetails.py' 2025-06-05T23:55:24.5400396Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/QuantizationParameters.py' 2025-06-05T23:55:24.5400809Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/QuantizeOptions.py' 2025-06-05T23:55:24.5401326Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/RNNOptions.py' 2025-06-05T23:55:24.5401652Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/RandomOptions.py' 2025-06-05T23:55:24.5402107Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/RangeOptions.py' 2025-06-05T23:55:24.5402431Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/RankOptions.py' 2025-06-05T23:55:24.5402814Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReadVariableOptions.py' 2025-06-05T23:55:24.5403243Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReduceWindowFunction.py' 2025-06-05T23:55:24.5403732Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReduceWindowOptions.py' 2025-06-05T23:55:24.5404080Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReducerOptions.py' 2025-06-05T23:55:24.5404469Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReshapeOptions.py' 2025-06-05T23:55:24.5404880Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ResizeBilinearOptions.py' 2025-06-05T23:55:24.5405331Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ResizeNearestNeighborOptions.py' 2025-06-05T23:55:24.5405845Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReverseSequenceOptions.py' 2025-06-05T23:55:24.5406300Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ReverseV2Options.py' 2025-06-05T23:55:24.5406750Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Rfft2dOptions.py' 2025-06-05T23:55:24.5407122Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/RightShiftOptions.py' 2025-06-05T23:55:24.5407454Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/RngAlgorithm.py' 2025-06-05T23:55:24.5407779Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SVDFOptions.py' 2025-06-05T23:55:24.5408240Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ScatterNdOptions.py' 2025-06-05T23:55:24.5408663Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SegmentSumOptions.py' 2025-06-05T23:55:24.5408998Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SelectOptions.py' 2025-06-05T23:55:24.5409408Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SelectV2Options.py' 2025-06-05T23:55:24.5409790Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SequenceRNNOptions.py' 2025-06-05T23:55:24.5410118Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ShapeOptions.py' 2025-06-05T23:55:24.5410543Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SignOptions.py' 2025-06-05T23:55:24.5410923Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SignatureDef.py' 2025-06-05T23:55:24.5411279Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SkipGramOptions.py' 2025-06-05T23:55:24.5411659Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SliceOptions.py' 2025-06-05T23:55:24.5411993Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SoftmaxOptions.py' 2025-06-05T23:55:24.5412392Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SpaceToBatchNDOptions.py' 2025-06-05T23:55:24.5412885Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SpaceToDepthOptions.py' 2025-06-05T23:55:24.5413305Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SparseIndexVector.py' 2025-06-05T23:55:24.5413703Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SparseToDenseOptions.py' 2025-06-05T23:55:24.5414122Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SparsityParameters.py' 2025-06-05T23:55:24.5414453Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SplitOptions.py' 2025-06-05T23:55:24.5414792Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SplitVOptions.py' 2025-06-05T23:55:24.5415161Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SquareOptions.py' 2025-06-05T23:55:24.5415713Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SquaredDifferenceOptions.py' 2025-06-05T23:55:24.5416066Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SqueezeOptions.py' 2025-06-05T23:55:24.5416596Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloBroadcastInDimOptions.py' 2025-06-05T23:55:24.5417110Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloCompareOptions.py' 2025-06-05T23:55:24.5417629Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloComparisonDirection.py' 2025-06-05T23:55:24.5418141Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloComparisonType.py' 2025-06-05T23:55:24.5418640Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloConcatenateOptions.py' 2025-06-05T23:55:24.5419123Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloConvolutionOptions.py' 2025-06-05T23:55:24.5419584Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloCustomCallOptions.py' 2025-06-05T23:55:24.5420012Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloDotGeneralOptions.py' 2025-06-05T23:55:24.5420575Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloDynamicSliceOptions.py' 2025-06-05T23:55:24.5421038Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloGatherOptions.py' 2025-06-05T23:55:24.5421458Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloIotaOptions.py' 2025-06-05T23:55:24.5421870Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloPadOptions.py' 2025-06-05T23:55:24.5422276Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloPrecisionConfig.py' 2025-06-05T23:55:24.5422683Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloReduceOptions.py' 2025-06-05T23:55:24.5423290Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloReduceWindowOptions.py' 2025-06-05T23:55:24.5423770Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloRngBitGeneratorOptions.py' 2025-06-05T23:55:24.5424227Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloScatterOptions.py' 2025-06-05T23:55:24.5424626Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloSliceOptions.py' 2025-06-05T23:55:24.5425020Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloSortOptions.py' 2025-06-05T23:55:24.5425578Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloTransposeOptions.py' 2025-06-05T23:55:24.5426014Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StablehloWhileOptions.py' 2025-06-05T23:55:24.5426445Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/StridedSliceOptions.py' 2025-06-05T23:55:24.5426752Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SubGraph.py' 2025-06-05T23:55:24.5427149Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/SubOptions.py' 2025-06-05T23:55:24.5427505Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Tensor.py' 2025-06-05T23:55:24.5427802Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/TensorMap.py' 2025-06-05T23:55:24.5428239Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/TensorType.py' 2025-06-05T23:55:24.5428572Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/TileOptions.py' 2025-06-05T23:55:24.5588785Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/TopKV2Options.py' 2025-06-05T23:55:24.5589392Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/TransposeConvOptions.py' 2025-06-05T23:55:24.5589907Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/TransposeOptions.py' 2025-06-05T23:55:24.5590380Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Uint16Vector.py' 2025-06-05T23:55:24.5590887Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/Uint8Vector.py' 2025-06-05T23:55:24.5591719Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/UnidirectionalSequenceLSTMOptions.py' 2025-06-05T23:55:24.5592325Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/UniqueOptions.py' 2025-06-05T23:55:24.5592891Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/UnpackOptions.py' 2025-06-05T23:55:24.5593616Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/UnsortedSegmentMaxOptions.py' 2025-06-05T23:55:24.5594380Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/UnsortedSegmentMinOptions.py' 2025-06-05T23:55:24.5595407Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/UnsortedSegmentProdOptions.py' 2025-06-05T23:55:24.5596136Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/UnsortedSegmentSumOptions.py' 2025-06-05T23:55:24.5596936Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/VarHandleOptions.py' 2025-06-05T23:55:24.5597578Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/VariantSubType.py' 2025-06-05T23:55:24.5598152Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/WhereOptions.py' 2025-06-05T23:55:24.5598724Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/WhileOptions.py' 2025-06-05T23:55:24.5599357Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/ZerosLikeOptions.py' 2025-06-05T23:55:24.5599910Z adding 'executorch/backends/nxp/backend/ir/lib/tflite/__init__.py' 2025-06-05T23:55:24.5600500Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/__init__.py' 2025-06-05T23:55:24.5601149Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/tflite_model.py' 2025-06-05T23:55:24.5601931Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/__init__.py' 2025-06-05T23:55:24.5602765Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/abs_options.py' 2025-06-05T23:55:24.5603602Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/add_n_options.py' 2025-06-05T23:55:24.5604442Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/add_options.py' 2025-06-05T23:55:24.5605274Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/arg_max_options.py' 2025-06-05T23:55:24.5606145Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/arg_min_options.py' 2025-06-05T23:55:24.5607113Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/average_pool_2d_options.py' 2025-06-05T23:55:24.5608039Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/batch_mat_mul_options.py' 2025-06-05T23:55:24.5609198Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/bidirectional_sequence_lstm_options.py' 2025-06-05T23:55:24.5610287Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/bidirectional_sequence_rnn_options.py' 2025-06-05T23:55:24.5611234Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/bitwise_xor_options.py' 2025-06-05T23:55:24.5612150Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/broadcast_to_options.py' 2025-06-05T23:55:24.5613009Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/cast_options.py' 2025-06-05T23:55:24.5613942Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/concatenation_options.py' 2025-06-05T23:55:24.5614801Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/conv_2d_options.py' 2025-06-05T23:55:24.5615688Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/conv_3d_options.py' 2025-06-05T23:55:24.5616539Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/cum_sum_options.py' 2025-06-05T23:55:24.5617516Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/depth_to_space_options.py' 2025-06-05T23:55:24.5618476Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/depthwise_conv_2d_options.py' 2025-06-05T23:55:24.5619408Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/dequantize_options.py' 2025-06-05T23:55:24.5620225Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/div_options.py' 2025-06-05T23:55:24.5621065Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/equal_options.py' 2025-06-05T23:55:24.5621905Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/exp_options.py' 2025-06-05T23:55:24.5622914Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/floor_mod_options.py' 2025-06-05T23:55:24.5623898Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/fully_connected_options.py' 2025-06-05T23:55:24.5624887Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/gather_nd_options.py' 2025-06-05T23:55:24.5625762Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/gather_options.py' 2025-06-05T23:55:24.5626589Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/gelu_options.py' 2025-06-05T23:55:24.5627505Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/greater_equal_options.py' 2025-06-05T23:55:24.5628469Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/greater_options.py' 2025-06-05T23:55:24.5629299Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/hard_swish_options.py' 2025-06-05T23:55:24.5629824Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/leaky_relu_options.py' 2025-06-05T23:55:24.5630434Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/less_equal_options.py' 2025-06-05T23:55:24.5631265Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/less_options.py' 2025-06-05T23:55:24.5632193Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/log_softmax_options.py' 2025-06-05T23:55:24.5633085Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/logical_and_options.py' 2025-06-05T23:55:24.5633999Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/logical_not_options.py' 2025-06-05T23:55:24.5634808Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/logical_or_options.py' 2025-06-05T23:55:24.5635281Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/lrn_options.py' 2025-06-05T23:55:24.5636013Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/lstm_options.py' 2025-06-05T23:55:24.5636924Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/max_pool_2d_options.py' 2025-06-05T23:55:24.5637757Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/maximum_options.py' 2025-06-05T23:55:24.5638332Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/mean_options.py' 2025-06-05T23:55:24.5639186Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/minimum_options.py' 2025-06-05T23:55:24.5640096Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/mirror_pad_options.py' 2025-06-05T23:55:24.5640694Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/mul_options.py' 2025-06-05T23:55:24.5641202Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/multinomial_options.py' 2025-06-05T23:55:24.5641670Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/neg_options.py' 2025-06-05T23:55:24.5642277Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/not_equal_options.py' 2025-06-05T23:55:24.5643147Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/one_hot_options.py' 2025-06-05T23:55:24.5643967Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/pad_options.py' 2025-06-05T23:55:24.5644613Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/pad_v2_options.py' 2025-06-05T23:55:24.5645077Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/pow_options.py' 2025-06-05T23:55:24.5645570Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/quantize_options.py' 2025-06-05T23:55:24.5646047Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/range_options.py' 2025-06-05T23:55:24.5646540Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reduce_max_options.py' 2025-06-05T23:55:24.5647170Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reduce_min_options.py' 2025-06-05T23:55:24.5647893Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reduce_prod_options.py' 2025-06-05T23:55:24.5648382Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reshape_options.py' 2025-06-05T23:55:24.5648910Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/resize_bilinear_options.py' 2025-06-05T23:55:24.5649503Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/resize_nearest_neighbor_options.py' 2025-06-05T23:55:24.5650053Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/reverse_sequence_options.py' 2025-06-05T23:55:24.5650561Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/scatter_nd_options.py' 2025-06-05T23:55:24.5651065Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/select_v2_options.py' 2025-06-05T23:55:24.5651668Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/shape_options.py' 2025-06-05T23:55:24.5652464Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/sign_options.py' 2025-06-05T23:55:24.5875552Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/slice_options.py' 2025-06-05T23:55:24.5876261Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/softmax_options.py' 2025-06-05T23:55:24.5877066Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/space_to_depth_options.py' 2025-06-05T23:55:24.5877565Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/split_options.py' 2025-06-05T23:55:24.5878182Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/split_v_options.py' 2025-06-05T23:55:24.5878755Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/square_options.py' 2025-06-05T23:55:24.5879326Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/squared_difference_options.py' 2025-06-05T23:55:24.5879804Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/squeeze_options.py' 2025-06-05T23:55:24.5880437Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/strided_slice_options.py' 2025-06-05T23:55:24.5880945Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/sub_options.py' 2025-06-05T23:55:24.5881486Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/sum_options.py' 2025-06-05T23:55:24.5881956Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/tile_options.py' 2025-06-05T23:55:24.5882514Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/transpose_conv_options.py' 2025-06-05T23:55:24.5883134Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/transpose_options.py' 2025-06-05T23:55:24.5883837Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/unidirectional_sequence_lstm_options.py' 2025-06-05T23:55:24.5884501Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/builtin_options/unidirectional_sequence_rnn_options.py' 2025-06-05T23:55:24.5885069Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/custom_options/flex_transpose_options.py' 2025-06-05T23:55:24.5885647Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/meta/__init__.py' 2025-06-05T23:55:24.5886015Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/meta/meta.py' 2025-06-05T23:55:24.5886402Z adding 'executorch/backends/nxp/backend/ir/tflite_generator/meta/types.py' 2025-06-05T23:55:24.5886746Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/__init__.py' 2025-06-05T23:55:24.5887104Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/graph_utils.py' 2025-06-05T23:55:24.5887624Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/operator_rules.py' 2025-06-05T23:55:24.5887974Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizer.py' 2025-06-05T23:55:24.5888529Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/pattern_matcher.py' 2025-06-05T23:55:24.5888943Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/tensor_rules.py' 2025-06-05T23:55:24.5889430Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/__init__.py' 2025-06-05T23:55:24.5889923Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/base_optimization.py' 2025-06-05T23:55:24.5890600Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/combine_hard_sigmoid_and_mul_to_hard_swish.py' 2025-06-05T23:55:24.5891138Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/eliminate_dead_branches.py' 2025-06-05T23:55:24.5891817Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/fuse_activation_functions.py' 2025-06-05T23:55:24.5892519Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/fuse_fully_connected_and_add_operators.py' 2025-06-05T23:55:24.5893116Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/fuse_quanitze_into_preceding_ops.py' 2025-06-05T23:55:24.5893633Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/keep_one_empty_buffer.py' 2025-06-05T23:55:24.5894158Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/move_relu_before_concat.py' 2025-06-05T23:55:24.5894856Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/permute_fully_connected_weights_after_reshape.py' 2025-06-05T23:55:24.5895487Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/prune_cast_operators.py' 2025-06-05T23:55:24.5896081Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/prune_quantize_operators.py' 2025-06-05T23:55:24.5896619Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/prune_reshape_operators.py' 2025-06-05T23:55:24.5897165Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/prune_transpose_operators.py' 2025-06-05T23:55:24.5897749Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/remove_unused_tensors_and_buffers.py' 2025-06-05T23:55:24.5898580Z adding 'executorch/backends/nxp/backend/ir/tflite_optimizer/optimizations/replace_average_pool_before_fully_connected_with_sum.py' 2025-06-05T23:55:24.5898924Z adding 'executorch/backends/nxp/quantizer/neutron_quantizer.py' 2025-06-05T23:55:24.5899214Z adding 'executorch/backends/nxp/quantizer/patterns.py' 2025-06-05T23:55:24.5899428Z adding 'executorch/backends/nxp/quantizer/utils.py' 2025-06-05T23:55:24.5899692Z adding 'executorch/backends/nxp/tests/executorch_pipeline.py' 2025-06-05T23:55:24.5899908Z adding 'executorch/backends/nxp/tests/executors.py' 2025-06-05T23:55:24.5900229Z adding 'executorch/backends/nxp/tests/exported_program_vizualize.py' 2025-06-05T23:55:24.5900431Z adding 'executorch/backends/nxp/tests/models.py' 2025-06-05T23:55:24.5900707Z adding 'executorch/backends/nxp/tests/test_batch_norm_fusion.py' 2025-06-05T23:55:24.5900978Z adding 'executorch/backends/nxp/tests/test_neutron_backend.py' 2025-06-05T23:55:24.5901356Z adding 'executorch/backends/nxp/tests/test_neutron_converter_manager.py' 2025-06-05T23:55:24.5901764Z adding 'executorch/backends/nxp/tests/test_node_format_inference.py' 2025-06-05T23:55:24.5902041Z adding 'executorch/backends/nxp/tests/test_operator_selector.py' 2025-06-05T23:55:24.5902406Z adding 'executorch/backends/nxp/tests/test_qdq_clustering_conv.py' 2025-06-05T23:55:24.5902646Z adding 'executorch/backends/nxp/tests/test_quantizer.py' 2025-06-05T23:55:24.5903143Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_avg_pool2d_converter.py' 2025-06-05T23:55:24.5903832Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_constant_pad_nd_converter.py' 2025-06-05T23:55:24.5904334Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_conv_converter.py' 2025-06-05T23:55:24.5904806Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_linear_converter.py' 2025-06-05T23:55:24.5905304Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_max_pool_2d_converter.py' 2025-06-05T23:55:24.5905859Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_permute_copy_converter.py' 2025-06-05T23:55:24.5906384Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_relu_converter.py' 2025-06-05T23:55:24.5906921Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_softmax_converter.py' 2025-06-05T23:55:24.5907409Z adding 'executorch/backends/nxp/tests/ir/converter/node_converter/test_view_copy_converter.py' 2025-06-05T23:55:24.5907620Z adding 'executorch/backends/openvino/__init__.py' 2025-06-05T23:55:24.5907906Z adding 'executorch/backends/openvino/partitioner.py' 2025-06-05T23:55:24.5908124Z adding 'executorch/backends/openvino/preprocess.py' 2025-06-05T23:55:24.5908384Z adding 'executorch/backends/openvino/quantizer/__init__.py' 2025-06-05T23:55:24.5908652Z adding 'executorch/backends/openvino/quantizer/quantizer.py' 2025-06-05T23:55:24.5908906Z adding 'executorch/backends/openvino/tests/test_runner.py' 2025-06-05T23:55:24.5909250Z adding 'executorch/backends/openvino/tests/models/test_classification.py' 2025-06-05T23:55:24.5909597Z adding 'executorch/backends/openvino/tests/ops/base_openvino_op_test.py' 2025-06-05T23:55:24.5909950Z adding 'executorch/backends/openvino/tests/ops/test_add.py' 2025-06-05T23:55:24.5910266Z adding 'executorch/backends/openvino/tests/ops/test_addmm.py' 2025-06-05T23:55:24.5910554Z adding 'executorch/backends/openvino/tests/ops/test_arange.py' 2025-06-05T23:55:24.5919472Z adding 'executorch/backends/openvino/tests/ops/test_batch_norm.py' 2025-06-05T23:55:24.5919883Z adding 'executorch/backends/openvino/tests/ops/test_convolution.py' 2025-06-05T23:55:24.5920195Z adding 'executorch/backends/openvino/tests/ops/test_mean.py' 2025-06-05T23:55:24.5920511Z adding 'executorch/backends/openvino/tests/ops/test_permute.py' 2025-06-05T23:55:24.5920797Z adding 'executorch/backends/openvino/tests/ops/test_pooling.py' 2025-06-05T23:55:24.5921092Z adding 'executorch/backends/openvino/tests/ops/test_unary_ops.py' 2025-06-05T23:55:24.5921344Z adding 'executorch/backends/openvino/tests/ops/test_view.py' 2025-06-05T23:55:24.5921660Z adding 'executorch/backends/qualcomm/qnn_preprocess.py' 2025-06-05T23:55:24.5921968Z adding 'executorch/backends/qualcomm/_passes/__init__.py' 2025-06-05T23:55:24.5922358Z adding 'executorch/backends/qualcomm/_passes/annotate_adaptive_avg_pool1d.py' 2025-06-05T23:55:24.5922684Z adding 'executorch/backends/qualcomm/_passes/annotate_quant_attrs.py' 2025-06-05T23:55:24.5923010Z adding 'executorch/backends/qualcomm/_passes/annotate_stack.py' 2025-06-05T23:55:24.5923298Z adding 'executorch/backends/qualcomm/_passes/annotate_unbind.py' 2025-06-05T23:55:24.5923585Z adding 'executorch/backends/qualcomm/_passes/build_quant_io.py' 2025-06-05T23:55:24.5923996Z adding 'executorch/backends/qualcomm/_passes/convert_bmm_to_matmul.py' 2025-06-05T23:55:24.5924394Z adding 'executorch/backends/qualcomm/_passes/convert_conv1d_to_conv2d.py' 2025-06-05T23:55:24.5924715Z adding 'executorch/backends/qualcomm/_passes/convert_square_to_pow.py' 2025-06-05T23:55:24.5925049Z adding 'executorch/backends/qualcomm/_passes/decompose_any.py' 2025-06-05T23:55:24.5925337Z adding 'executorch/backends/qualcomm/_passes/decompose_cdist.py' 2025-06-05T23:55:24.5925617Z adding 'executorch/backends/qualcomm/_passes/decompose_einsum.py' 2025-06-05T23:55:24.5925900Z adding 'executorch/backends/qualcomm/_passes/decompose_expm1.py' 2025-06-05T23:55:24.5926533Z adding 'executorch/backends/qualcomm/_passes/decompose_linalg_vector_norm.py' 2025-06-05T23:55:24.6225765Z adding 'executorch/backends/qualcomm/_passes/decompose_roll.py' 2025-06-05T23:55:24.6226447Z adding 'executorch/backends/qualcomm/_passes/decompose_silu.py' 2025-06-05T23:55:24.6227102Z adding 'executorch/backends/qualcomm/_passes/expand_broadcast_tensor_shape.py' 2025-06-05T23:55:24.6227660Z adding 'executorch/backends/qualcomm/_passes/fixed_linear_keep_dim.py' 2025-06-05T23:55:24.6228138Z adding 'executorch/backends/qualcomm/_passes/fold_qdq.py' 2025-06-05T23:55:24.6228688Z adding 'executorch/backends/qualcomm/_passes/fuse_consecutive_cast.py' 2025-06-05T23:55:24.6229299Z adding 'executorch/backends/qualcomm/_passes/fuse_consecutive_transpose.py' 2025-06-05T23:55:24.6229766Z adding 'executorch/backends/qualcomm/_passes/i64_to_i32.py' 2025-06-05T23:55:24.6230229Z adding 'executorch/backends/qualcomm/_passes/insert_io_qdq.py' 2025-06-05T23:55:24.6230725Z adding 'executorch/backends/qualcomm/_passes/insert_requantize.py' 2025-06-05T23:55:24.6231237Z adding 'executorch/backends/qualcomm/_passes/layout_transform.py' 2025-06-05T23:55:24.6231870Z adding 'executorch/backends/qualcomm/_passes/lift_constant_scalar_operands.py' 2025-06-05T23:55:24.6232359Z adding 'executorch/backends/qualcomm/_passes/qnn_pass_manager.py' 2025-06-05T23:55:24.6232985Z adding 'executorch/backends/qualcomm/_passes/recompose_pixel_unshuffle.py' 2025-06-05T23:55:24.6233519Z adding 'executorch/backends/qualcomm/_passes/recompose_rms_norm.py' 2025-06-05T23:55:24.6234036Z adding 'executorch/backends/qualcomm/_passes/reduce_dynamic_range.py' 2025-06-05T23:55:24.6234511Z adding 'executorch/backends/qualcomm/_passes/remove_0d_tensor.py' 2025-06-05T23:55:24.6235009Z adding 'executorch/backends/qualcomm/_passes/remove_redundancy.py' 2025-06-05T23:55:24.6235540Z adding 'executorch/backends/qualcomm/_passes/replace_arange_args.py' 2025-06-05T23:55:24.6236126Z adding 'executorch/backends/qualcomm/_passes/replace_index_put_input.py' 2025-06-05T23:55:24.6236657Z adding 'executorch/backends/qualcomm/_passes/replace_inf_values.py' 2025-06-05T23:55:24.6237106Z adding 'executorch/backends/qualcomm/_passes/tag_quant_io.py' 2025-06-05T23:55:24.6237502Z adding 'executorch/backends/qualcomm/_passes/utils.py' 2025-06-05T23:55:24.6237883Z adding 'executorch/backends/qualcomm/aot/ir/qcir.fbs' 2025-06-05T23:55:24.6238303Z adding 'executorch/backends/qualcomm/builders/__init__.py' 2025-06-05T23:55:24.6238742Z adding 'executorch/backends/qualcomm/builders/node_visitor.py' 2025-06-05T23:55:24.6239133Z adding 'executorch/backends/qualcomm/builders/op_abs.py' 2025-06-05T23:55:24.6239685Z adding 'executorch/backends/qualcomm/builders/op_adaptive_avg_pool2d.py' 2025-06-05T23:55:24.6240076Z adding 'executorch/backends/qualcomm/builders/op_add.py' 2025-06-05T23:55:24.6240491Z adding 'executorch/backends/qualcomm/builders/op_amax.py' 2025-06-05T23:55:24.6240906Z adding 'executorch/backends/qualcomm/builders/op_and.py' 2025-06-05T23:55:24.6241350Z adding 'executorch/backends/qualcomm/builders/op_arange.py' 2025-06-05T23:55:24.6241781Z adding 'executorch/backends/qualcomm/builders/op_argmin.py' 2025-06-05T23:55:24.6242277Z adding 'executorch/backends/qualcomm/builders/op_avg_pool2d.py' 2025-06-05T23:55:24.6242736Z adding 'executorch/backends/qualcomm/builders/op_batch_norm.py' 2025-06-05T23:55:24.6243141Z adding 'executorch/backends/qualcomm/builders/op_bmm.py' 2025-06-05T23:55:24.6243543Z adding 'executorch/backends/qualcomm/builders/op_cat.py' 2025-06-05T23:55:24.6243947Z adding 'executorch/backends/qualcomm/builders/op_ceil.py' 2025-06-05T23:55:24.6244348Z adding 'executorch/backends/qualcomm/builders/op_clamp.py' 2025-06-05T23:55:24.6244771Z adding 'executorch/backends/qualcomm/builders/op_conv2d.py' 2025-06-05T23:55:24.6245173Z adding 'executorch/backends/qualcomm/builders/op_cos.py' 2025-06-05T23:55:24.6245607Z adding 'executorch/backends/qualcomm/builders/op_cum_sum.py' 2025-06-05T23:55:24.6246318Z adding 'executorch/backends/qualcomm/builders/op_depth_to_space.py' 2025-06-05T23:55:24.6246797Z adding 'executorch/backends/qualcomm/builders/op_dequantize.py' 2025-06-05T23:55:24.6247196Z adding 'executorch/backends/qualcomm/builders/op_div.py' 2025-06-05T23:55:24.6247678Z adding 'executorch/backends/qualcomm/builders/op_elu.py' 2025-06-05T23:55:24.6248125Z adding 'executorch/backends/qualcomm/builders/op_embedding.py' 2025-06-05T23:55:24.6248518Z adding 'executorch/backends/qualcomm/builders/op_eq.py' 2025-06-05T23:55:24.6248923Z adding 'executorch/backends/qualcomm/builders/op_exp.py' 2025-06-05T23:55:24.6249352Z adding 'executorch/backends/qualcomm/builders/op_expand.py' 2025-06-05T23:55:24.6249762Z adding 'executorch/backends/qualcomm/builders/op_full.py' 2025-06-05T23:55:24.6250205Z adding 'executorch/backends/qualcomm/builders/op_full_like.py' 2025-06-05T23:55:24.6250634Z adding 'executorch/backends/qualcomm/builders/op_gather.py' 2025-06-05T23:55:24.6251027Z adding 'executorch/backends/qualcomm/builders/op_ge.py' 2025-06-05T23:55:24.6251461Z adding 'executorch/backends/qualcomm/builders/op_gelu.py' 2025-06-05T23:55:24.6251954Z adding 'executorch/backends/qualcomm/builders/op_group_norm.py' 2025-06-05T23:55:24.6252374Z adding 'executorch/backends/qualcomm/builders/op_gt.py' 2025-06-05T23:55:24.6252873Z adding 'executorch/backends/qualcomm/builders/op_hardsigmoid.py' 2025-06-05T23:55:24.6253335Z adding 'executorch/backends/qualcomm/builders/op_hardswish.py' 2025-06-05T23:55:24.6253772Z adding 'executorch/backends/qualcomm/builders/op_hardtanh.py' 2025-06-05T23:55:24.6254187Z adding 'executorch/backends/qualcomm/builders/op_index.py' 2025-06-05T23:55:24.6254646Z adding 'executorch/backends/qualcomm/builders/op_index_put.py' 2025-06-05T23:55:24.6255156Z adding 'executorch/backends/qualcomm/builders/op_instance_norm.py' 2025-06-05T23:55:24.6255612Z adding 'executorch/backends/qualcomm/builders/op_layer_norm.py' 2025-06-05T23:55:24.6256011Z adding 'executorch/backends/qualcomm/builders/op_le.py' 2025-06-05T23:55:24.6256445Z adding 'executorch/backends/qualcomm/builders/op_linear.py' 2025-06-05T23:55:24.6256846Z adding 'executorch/backends/qualcomm/builders/op_log.py' 2025-06-05T23:55:24.6257328Z adding 'executorch/backends/qualcomm/builders/op_log_softmax.py' 2025-06-05T23:55:24.6257817Z adding 'executorch/backends/qualcomm/builders/op_logical_not.py' 2025-06-05T23:55:24.6258234Z adding 'executorch/backends/qualcomm/builders/op_lt.py' 2025-06-05T23:55:24.6258674Z adding 'executorch/backends/qualcomm/builders/op_matmul.py' 2025-06-05T23:55:24.6259090Z adding 'executorch/backends/qualcomm/builders/op_max.py' 2025-06-05T23:55:24.6259563Z adding 'executorch/backends/qualcomm/builders/op_max_pool2d.py' 2025-06-05T23:55:24.6260012Z adding 'executorch/backends/qualcomm/builders/op_mean_dim.py' 2025-06-05T23:55:24.6260412Z adding 'executorch/backends/qualcomm/builders/op_min.py' 2025-06-05T23:55:24.6260811Z adding 'executorch/backends/qualcomm/builders/op_mul.py' 2025-06-05T23:55:24.6261198Z adding 'executorch/backends/qualcomm/builders/op_ne.py' 2025-06-05T23:55:24.6261593Z adding 'executorch/backends/qualcomm/builders/op_neg.py' 2025-06-05T23:55:24.6261991Z adding 'executorch/backends/qualcomm/builders/op_or.py' 2025-06-05T23:55:24.6262388Z adding 'executorch/backends/qualcomm/builders/op_pad.py' 2025-06-05T23:55:24.6262775Z adding 'executorch/backends/qualcomm/builders/op_pow.py' 2025-06-05T23:55:24.6263196Z adding 'executorch/backends/qualcomm/builders/op_prelu.py' 2025-06-05T23:55:24.6263661Z adding 'executorch/backends/qualcomm/builders/op_quantize.py' 2025-06-05T23:55:24.6264081Z adding 'executorch/backends/qualcomm/builders/op_relu.py' 2025-06-05T23:55:24.6264497Z adding 'executorch/backends/qualcomm/builders/op_repeat.py' 2025-06-05T23:55:24.6264938Z adding 'executorch/backends/qualcomm/builders/op_reshape.py' 2025-06-05T23:55:24.6265370Z adding 'executorch/backends/qualcomm/builders/op_resize.py' 2025-06-05T23:55:24.6265923Z adding 'executorch/backends/qualcomm/builders/op_rms_norm.py' 2025-06-05T23:55:24.6266329Z adding 'executorch/backends/qualcomm/builders/op_rsqrt.py' 2025-06-05T23:55:24.6266865Z adding 'executorch/backends/qualcomm/builders/op_scalar_tensor.py' 2025-06-05T23:55:24.6267459Z adding 'executorch/backends/qualcomm/builders/op_select_copy.py' 2025-06-05T23:55:24.6268000Z adding 'executorch/backends/qualcomm/builders/op_sigmoid.py' 2025-06-05T23:55:24.6268406Z adding 'executorch/backends/qualcomm/builders/op_sin.py' 2025-06-05T23:55:24.6268839Z adding 'executorch/backends/qualcomm/builders/op_skip_ops.py' 2025-06-05T23:55:24.6269318Z adding 'executorch/backends/qualcomm/builders/op_slice_copy.py' 2025-06-05T23:55:24.6269756Z adding 'executorch/backends/qualcomm/builders/op_softmax.py' 2025-06-05T23:55:24.6270276Z adding 'executorch/backends/qualcomm/builders/op_space_to_depth.py' 2025-06-05T23:55:24.6270806Z adding 'executorch/backends/qualcomm/builders/op_split_with_sizes.py' 2025-06-05T23:55:24.6271225Z adding 'executorch/backends/qualcomm/builders/op_sqrt.py' 2025-06-05T23:55:24.6271668Z adding 'executorch/backends/qualcomm/builders/op_squeeze.py' 2025-06-05T23:55:24.6272090Z adding 'executorch/backends/qualcomm/builders/op_stack.py' 2025-06-05T23:55:24.6272487Z adding 'executorch/backends/qualcomm/builders/op_sub.py' 2025-06-05T23:55:24.6273007Z adding 'executorch/backends/qualcomm/builders/op_sum_int_list.py' 2025-06-05T23:55:24.6273436Z adding 'executorch/backends/qualcomm/builders/op_tanh.py' 2025-06-05T23:55:24.6273843Z adding 'executorch/backends/qualcomm/builders/op_to.py' 2025-06-05T23:55:24.6274243Z adding 'executorch/backends/qualcomm/builders/op_topk.py' 2025-06-05T23:55:24.6274709Z adding 'executorch/backends/qualcomm/builders/op_transpose.py' 2025-06-05T23:55:24.6275138Z adding 'executorch/backends/qualcomm/builders/op_unbind.py' 2025-06-05T23:55:24.6275604Z adding 'executorch/backends/qualcomm/builders/op_unsqueeze.py' 2025-06-05T23:55:24.6276208Z adding 'executorch/backends/qualcomm/builders/op_upsample_bilinear2d.py' 2025-06-05T23:55:24.6276770Z adding 'executorch/backends/qualcomm/builders/op_upsample_nearest2d.py' 2025-06-05T23:55:24.6277190Z adding 'executorch/backends/qualcomm/builders/op_where.py' 2025-06-05T23:55:24.6277671Z adding 'executorch/backends/qualcomm/builders/qnn_constants.py' 2025-06-05T23:55:24.6278089Z adding 'executorch/backends/qualcomm/builders/utils.py' 2025-06-05T23:55:24.6278490Z adding 'executorch/backends/qualcomm/debugger/utils.py' 2025-06-05T23:55:24.6278979Z adding 'executorch/backends/qualcomm/partition/common_defs.py' 2025-06-05T23:55:24.6279497Z adding 'executorch/backends/qualcomm/partition/qnn_partitioner.py' 2025-06-05T23:55:24.6279906Z adding 'executorch/backends/qualcomm/partition/utils.py' 2025-06-05T23:55:24.6280353Z adding 'executorch/backends/qualcomm/quantizer/annotators.py' 2025-06-05T23:55:24.6280891Z adding 'executorch/backends/qualcomm/quantizer/custom_annotation.py' 2025-06-05T23:55:24.6281310Z adding 'executorch/backends/qualcomm/quantizer/qconfig.py' 2025-06-05T23:55:24.6281770Z adding 'executorch/backends/qualcomm/quantizer/quantizer.py' 2025-06-05T23:55:24.6282536Z adding 'executorch/backends/qualcomm/quantizer/observers/per_block_param_observer.py' 2025-06-05T23:55:24.6283329Z adding 'executorch/backends/qualcomm/quantizer/observers/per_channel_param_observer.py' 2025-06-05T23:55:24.6283944Z adding 'executorch/backends/qualcomm/serialization/qc_compiler_spec.fbs' 2025-06-05T23:55:24.6284462Z adding 'executorch/backends/qualcomm/serialization/qc_schema.py' 2025-06-05T23:55:24.6585057Z adding 'executorch/backends/qualcomm/serialization/qc_schema_serialize.py' 2025-06-05T23:55:24.6585631Z adding 'executorch/backends/qualcomm/tests/models.py' 2025-06-05T23:55:24.6586119Z adding 'executorch/backends/qualcomm/tests/test_qnn_delegate.py' 2025-06-05T23:55:24.6586493Z adding 'executorch/backends/qualcomm/tests/utils.py' 2025-06-05T23:55:24.6586906Z adding 'executorch/backends/qualcomm/utils/constants.py' 2025-06-05T23:55:24.6587494Z adding 'executorch/backends/qualcomm/utils/utils.py' 2025-06-05T23:55:24.6587909Z adding 'executorch/backends/transforms/__init__.py' 2025-06-05T23:55:24.6588479Z adding 'executorch/backends/transforms/addmm_mm_to_linear.py' 2025-06-05T23:55:24.6588939Z adding 'executorch/backends/transforms/convert_dtype_pass.py' 2025-06-05T23:55:24.6589355Z adding 'executorch/backends/transforms/decompose_sdpa.py' 2025-06-05T23:55:24.6589922Z adding 'executorch/backends/transforms/duplicate_dynamic_quant_chain.py' 2025-06-05T23:55:24.6590579Z adding 'executorch/backends/transforms/fuse_batch_norm_with_conv.py' 2025-06-05T23:55:24.6591048Z adding 'executorch/backends/transforms/fuse_conv_with_clamp.py' 2025-06-05T23:55:24.6591458Z adding 'executorch/backends/transforms/fuse_view_copy.py' 2025-06-05T23:55:24.6591881Z adding 'executorch/backends/transforms/mean_to_sum_div.py' 2025-06-05T23:55:24.6592289Z adding 'executorch/backends/transforms/rank_0_to_rank_1.py' 2025-06-05T23:55:24.6592728Z adding 'executorch/backends/transforms/remove_clone_ops.py' 2025-06-05T23:55:24.6593167Z adding 'executorch/backends/transforms/remove_getitem_op.py' 2025-06-05T23:55:24.6593714Z adding 'executorch/backends/transforms/replace_scalar_with_tensor.py' 2025-06-05T23:55:24.6594039Z adding 'executorch/backends/transforms/utils.py' 2025-06-05T23:55:24.6594603Z adding 'executorch/backends/transforms/view_copy_to_squeeze_unsqueeze.py' 2025-06-05T23:55:24.6595383Z adding 'executorch/backends/transforms/test/test_create_delete_constant_placeholder.py' 2025-06-05T23:55:24.6596098Z adding 'executorch/backends/transforms/test/test_duplicate_dynamic_quant_chain.py' 2025-06-05T23:55:24.6596599Z adding 'executorch/backends/transforms/test/test_rank_0_to_rank_1.py' 2025-06-05T23:55:24.6596919Z adding 'executorch/backends/vulkan/__init__.py' 2025-06-05T23:55:24.6597272Z adding 'executorch/backends/vulkan/custom_ops_lib.py' 2025-06-05T23:55:24.6597646Z adding 'executorch/backends/vulkan/op_registry.py' 2025-06-05T23:55:24.6597952Z adding 'executorch/backends/vulkan/utils.py' 2025-06-05T23:55:24.6598372Z adding 'executorch/backends/vulkan/vulkan_preprocess.py' 2025-06-05T23:55:24.6598784Z adding 'executorch/backends/vulkan/_passes/__init__.py' 2025-06-05T23:55:24.6599295Z adding 'executorch/backends/vulkan/_passes/fuse_quantized_ops.py' 2025-06-05T23:55:24.6599809Z adding 'executorch/backends/vulkan/_passes/insert_prepack_nodes.py' 2025-06-05T23:55:24.6600380Z adding 'executorch/backends/vulkan/_passes/int4_weight_only_quantizer.py' 2025-06-05T23:55:24.6600838Z adding 'executorch/backends/vulkan/_passes/remove_asserts.py' 2025-06-05T23:55:24.6601438Z adding 'executorch/backends/vulkan/_passes/remove_local_scalar_dense_ops.py' 2025-06-05T23:55:24.6601946Z adding 'executorch/backends/vulkan/_passes/remove_redundant_ops.py' 2025-06-05T23:55:24.6602508Z adding 'executorch/backends/vulkan/_passes/squeeze_unsqueeze_inputs.py' 2025-06-05T23:55:24.6603042Z adding 'executorch/backends/vulkan/_passes/tag_memory_meta_pass.py' 2025-06-05T23:55:24.6603580Z adding 'executorch/backends/vulkan/partitioner/vulkan_partitioner.py' 2025-06-05T23:55:24.6604085Z adding 'executorch/backends/vulkan/quantizer/vulkan_quantizer.py' 2025-06-05T23:55:24.6604535Z adding 'executorch/backends/vulkan/runtime/gen_vulkan_spv.py' 2025-06-05T23:55:24.6605245Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/addmm_naive_buffer.yaml' 2025-06-05T23:55:24.6605993Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/addmm_naive_texture3d.yaml' 2025-06-05T23:55:24.6606677Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/addmm_optimized.yaml' 2025-06-05T23:55:24.6607231Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/arange.yaml' 2025-06-05T23:55:24.6607823Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/avg_pool2d.yaml' 2025-06-05T23:55:24.6608422Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/batchnorm.yaml' 2025-06-05T23:55:24.6609175Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/binary_op.yaml' 2025-06-05T23:55:24.6610067Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/bitw8_image_to_nchw_nobitw8buffer.yaml' 2025-06-05T23:55:24.6610899Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/buffer_to_buffer.yaml' 2025-06-05T23:55:24.6611583Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/buffer_to_nchw.yaml' 2025-06-05T23:55:24.6612130Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/clone.yaml' 2025-06-05T23:55:24.6612682Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv1d.yaml' 2025-06-05T23:55:24.6613224Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d.yaml' 2025-06-05T23:55:24.6613817Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_dw.yaml' 2025-06-05T23:55:24.6614571Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_dw_output_tile.yaml' 2025-06-05T23:55:24.6615366Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_dw_prepack_weights.yaml' 2025-06-05T23:55:24.6616167Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_dw_sned_output_tile.yaml' 2025-06-05T23:55:24.6616940Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_prepack_weights.yaml' 2025-06-05T23:55:24.6617537Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_pw.yaml' 2025-06-05T23:55:24.6618190Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv2d_pw_s1p0.yaml' 2025-06-05T23:55:24.6618892Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv_transpose2d.yaml' 2025-06-05T23:55:24.6619779Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/conv_transpose2d_prepack_weights.yaml' 2025-06-05T23:55:24.6620516Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/copy_channel_offset.yaml' 2025-06-05T23:55:24.6621151Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/copy_offset.yaml' 2025-06-05T23:55:24.6621912Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/copy_packed_dim_offset.yaml' 2025-06-05T23:55:24.6622509Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/embedding.yaml' 2025-06-05T23:55:24.6623058Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/flip.yaml' 2025-06-05T23:55:24.6623595Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/full.yaml' 2025-06-05T23:55:24.6624218Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/grid_priors.yaml' 2025-06-05T23:55:24.6624857Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/image_to_nchw.yaml' 2025-06-05T23:55:24.6625470Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/index_select.yaml' 2025-06-05T23:55:24.6626196Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/index_select_channel.yaml' 2025-06-05T23:55:24.6626865Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/kv_cache_update.yaml' 2025-06-05T23:55:24.6627486Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qcsnw.yaml' 2025-06-05T23:55:24.6628270Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qcsnw_coop.yaml' 2025-06-05T23:55:24.6629001Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qcsnw_tiled.yaml' 2025-06-05T23:55:24.6629685Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qga4w_coop.yaml' 2025-06-05T23:55:24.6630374Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/linear_qga4w_tiled.yaml' 2025-06-05T23:55:24.6630983Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/max_pool2d.yaml' 2025-06-05T23:55:24.6631687Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/native_layer_norm.yaml' 2025-06-05T23:55:24.6632563Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/nchw_to_bitw8_image_nobitw8buffer.yaml' 2025-06-05T23:55:24.6633233Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/nchw_to_buffer.yaml' 2025-06-05T23:55:24.6633852Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/nchw_to_image.yaml' 2025-06-05T23:55:24.6634536Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/no_op.yaml' 2025-06-05T23:55:24.6635605Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/pack_int4_linear_weight_transposed_interleaved.yaml' 2025-06-05T23:55:24.6636326Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/pad_channel.yaml' 2025-06-05T23:55:24.6637037Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/pad_height_width.yaml' 2025-06-05T23:55:24.6637604Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/permute.yaml' 2025-06-05T23:55:24.6638175Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/reduce.yaml' 2025-06-05T23:55:24.6638743Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/repeat.yaml' 2025-06-05T23:55:24.6639393Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/repeat_channel.yaml' 2025-06-05T23:55:24.6640093Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/repeat_interleave.yaml' 2025-06-05T23:55:24.6640806Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/rotary_embedding.yaml' 2025-06-05T23:55:24.6641657Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/sdpa_attn_weight_scale_and_mask.yaml' 2025-06-05T23:55:24.6642267Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/softmax.yaml' 2025-06-05T23:55:24.6642781Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/tan.yaml' 2025-06-05T23:55:24.6643445Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/transfer_buffer.yaml' 2025-06-05T23:55:24.6644146Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/transfer_texture.yaml' 2025-06-05T23:55:24.6644728Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/unary_op.yaml' 2025-06-05T23:55:24.6645368Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/upsample_2d.yaml' 2025-06-05T23:55:24.6645975Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/var_buffer.yaml' 2025-06-05T23:55:24.6646633Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/var_texture3d.yaml' 2025-06-05T23:55:24.6647189Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/view.yaml' 2025-06-05T23:55:24.6647749Z adding 'executorch/backends/vulkan/runtime/graph/ops/glsl/where.yaml' 2025-06-05T23:55:24.6648212Z adding 'executorch/backends/vulkan/serialization/schema.fbs' 2025-06-05T23:55:24.6648794Z adding 'executorch/backends/vulkan/serialization/vulkan_graph_builder.py' 2025-06-05T23:55:24.6649384Z adding 'executorch/backends/vulkan/serialization/vulkan_graph_schema.py' 2025-06-05T23:55:24.6650033Z adding 'executorch/backends/vulkan/serialization/vulkan_graph_serialize.py' 2025-06-05T23:55:24.7034620Z adding 'executorch/backends/vulkan/test/test_serialization.py' 2025-06-05T23:55:24.7035188Z adding 'executorch/backends/vulkan/test/test_vulkan_delegate.py' 2025-06-05T23:55:24.7035749Z adding 'executorch/backends/vulkan/test/test_vulkan_delegate_header.py' 2025-06-05T23:55:24.7036539Z adding 'executorch/backends/vulkan/test/test_vulkan_passes.py' 2025-06-05T23:55:24.7037174Z adding 'executorch/backends/vulkan/test/glsl/all_shaders.yaml' 2025-06-05T23:55:24.7037745Z adding 'executorch/backends/vulkan/test/glsl/dynamic_dispatch_test.yaml' 2025-06-05T23:55:24.7038374Z adding 'executorch/backends/vulkan/test/glsl/reference_matmul_common.yaml' 2025-06-05T23:55:24.7038797Z adding 'executorch/backends/vulkan/test/op_tests/cases.py' 2025-06-05T23:55:24.7039407Z adding 'executorch/backends/vulkan/test/op_tests/generate_op_benchmarks.py' 2025-06-05T23:55:24.7040080Z adding 'executorch/backends/vulkan/test/op_tests/generate_op_correctness_tests.py' 2025-06-05T23:55:24.7040642Z adding 'executorch/backends/vulkan/test/op_tests/utils/aten_types.py' 2025-06-05T23:55:24.7041230Z adding 'executorch/backends/vulkan/test/op_tests/utils/gen_benchmark_vk.py' 2025-06-05T23:55:24.7041860Z adding 'executorch/backends/vulkan/test/op_tests/utils/gen_computegraph.py' 2025-06-05T23:55:24.7042520Z adding 'executorch/backends/vulkan/test/op_tests/utils/gen_correctness_base.py' 2025-06-05T23:55:24.7043335Z adding 'executorch/backends/vulkan/test/op_tests/utils/gen_correctness_vk.py' 2025-06-05T23:55:24.7043870Z adding 'executorch/backends/vulkan/test/op_tests/utils/test_suite.py' 2025-06-05T23:55:24.7044801Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/apiconventions.py' 2025-06-05T23:55:24.7045556Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/cgenerator.py' 2025-06-05T23:55:24.7046308Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/conventions.py' 2025-06-05T23:55:24.7047002Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/generator.py' 2025-06-05T23:55:24.7047716Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/genvk.py' 2025-06-05T23:55:24.7048370Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/reg.py' 2025-06-05T23:55:24.7049152Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/vkconventions.py' 2025-06-05T23:55:24.7049964Z adding 'executorch/backends/vulkan/third-party/Vulkan-Headers/registry/spec_tools/util.py' 2025-06-05T23:55:24.7050990Z adding 'executorch/backends/vulkan/third-party/VulkanMemoryAllocator/tools/GpuMemDumpVis/GpuMemDumpVis.py' 2025-06-05T23:55:24.7051498Z adding 'executorch/backends/vulkan/third-party/volk/generate.py' 2025-06-05T23:55:24.7052107Z adding 'executorch/backends/vulkan/tools/gpuinfo/glsl/buf_bandwidth.yaml' 2025-06-05T23:55:24.7052778Z adding 'executorch/backends/vulkan/tools/gpuinfo/glsl/buf_cacheline_size.yaml' 2025-06-05T23:55:24.7053297Z adding 'executorch/backends/vulkan/tools/gpuinfo/glsl/reg_count.yaml' 2025-06-05T23:55:24.7053906Z adding 'executorch/backends/vulkan/tools/gpuinfo/glsl/tex_bandwidth.yaml' 2025-06-05T23:55:24.7054611Z adding 'executorch/backends/vulkan/tools/gpuinfo/glsl/tex_cacheline_concurr.yaml' 2025-06-05T23:55:24.7055160Z adding 'executorch/backends/vulkan/tools/gpuinfo/glsl/warp_size.yaml' 2025-06-05T23:55:24.7055509Z adding 'executorch/backends/xnnpack/__init__.py' 2025-06-05T23:55:24.7055949Z adding 'executorch/backends/xnnpack/xnnpack_preprocess.py' 2025-06-05T23:55:24.7056351Z adding 'executorch/backends/xnnpack/_passes/__init__.py' 2025-06-05T23:55:24.7057007Z adding 'executorch/backends/xnnpack/_passes/channels_last_tagged_reshape_pass.py' 2025-06-05T23:55:24.7057569Z adding 'executorch/backends/xnnpack/_passes/conv1d_unsqueeze_pass.py' 2025-06-05T23:55:24.7058070Z adding 'executorch/backends/xnnpack/_passes/convert_to_linear.py' 2025-06-05T23:55:24.7058555Z adding 'executorch/backends/xnnpack/_passes/convert_to_sdpa.py' 2025-06-05T23:55:24.7059193Z adding 'executorch/backends/xnnpack/_passes/convert_to_upsample_bilinear2d.py' 2025-06-05T23:55:24.7059658Z adding 'executorch/backends/xnnpack/_passes/decompose_cat.py' 2025-06-05T23:55:24.7060169Z adding 'executorch/backends/xnnpack/_passes/fuse_activation_pass.py' 2025-06-05T23:55:24.7060734Z adding 'executorch/backends/xnnpack/_passes/fuse_batch_norm_with_conv.py' 2025-06-05T23:55:24.7061280Z adding 'executorch/backends/xnnpack/_passes/prelu_reshape_pass.py' 2025-06-05T23:55:24.7061832Z adding 'executorch/backends/xnnpack/_passes/tag_implicit_q_dq_pass.py' 2025-06-05T23:55:24.7062270Z adding 'executorch/backends/xnnpack/_passes/xnnpack_pass.py' 2025-06-05T23:55:24.7062708Z adding 'executorch/backends/xnnpack/operators/__init__.py' 2025-06-05T23:55:24.7063187Z adding 'executorch/backends/xnnpack/operators/node_visitor.py' 2025-06-05T23:55:24.7063606Z adding 'executorch/backends/xnnpack/operators/op_abs.py' 2025-06-05T23:55:24.7064000Z adding 'executorch/backends/xnnpack/operators/op_add.py' 2025-06-05T23:55:24.7064413Z adding 'executorch/backends/xnnpack/operators/op_addmm.py' 2025-06-05T23:55:24.7064937Z adding 'executorch/backends/xnnpack/operators/op_avg_pooling2d.py' 2025-06-05T23:55:24.7065355Z adding 'executorch/backends/xnnpack/operators/op_bmm.py' 2025-06-05T23:55:24.7065924Z adding 'executorch/backends/xnnpack/operators/op_cat.py' 2025-06-05T23:55:24.7066349Z adding 'executorch/backends/xnnpack/operators/op_ceiling.py' 2025-06-05T23:55:24.7066787Z adding 'executorch/backends/xnnpack/operators/op_clamp.py' 2025-06-05T23:55:24.7067332Z adding 'executorch/backends/xnnpack/operators/op_conv2d.py' 2025-06-05T23:55:24.7067744Z adding 'executorch/backends/xnnpack/operators/op_div.py' 2025-06-05T23:55:24.7068530Z adding 'executorch/backends/xnnpack/operators/op_dynamic_dequantize_ops.py' 2025-06-05T23:55:24.7069142Z adding 'executorch/backends/xnnpack/operators/op_dynamic_quantize_ops.py' 2025-06-05T23:55:24.7069550Z adding 'executorch/backends/xnnpack/operators/op_elu.py' 2025-06-05T23:55:24.7069945Z adding 'executorch/backends/xnnpack/operators/op_exp.py' 2025-06-05T23:55:24.7070367Z adding 'executorch/backends/xnnpack/operators/op_floor.py' 2025-06-05T23:55:24.7070788Z adding 'executorch/backends/xnnpack/operators/op_gelu.py' 2025-06-05T23:55:24.7071280Z adding 'executorch/backends/xnnpack/operators/op_hardswish.py' 2025-06-05T23:55:24.7071750Z adding 'executorch/backends/xnnpack/operators/op_hardtanh.py' 2025-06-05T23:55:24.7072202Z adding 'executorch/backends/xnnpack/operators/op_leaky_relu.py' 2025-06-05T23:55:24.7072641Z adding 'executorch/backends/xnnpack/operators/op_linear.py' 2025-06-05T23:55:24.7073065Z adding 'executorch/backends/xnnpack/operators/op_log.py' 2025-06-05T23:55:24.7073686Z adding 'executorch/backends/xnnpack/operators/op_matrix_multiplication.py' 2025-06-05T23:55:24.7074109Z adding 'executorch/backends/xnnpack/operators/op_max_dim.py' 2025-06-05T23:55:24.7074600Z adding 'executorch/backends/xnnpack/operators/op_max_pool2d.py' 2025-06-05T23:55:24.7075044Z adding 'executorch/backends/xnnpack/operators/op_maximum.py' 2025-06-05T23:55:24.7075488Z adding 'executorch/backends/xnnpack/operators/op_mean_dim.py' 2025-06-05T23:55:24.7075942Z adding 'executorch/backends/xnnpack/operators/op_minimum.py' 2025-06-05T23:55:24.7076414Z adding 'executorch/backends/xnnpack/operators/op_multiply.py' 2025-06-05T23:55:24.7076842Z adding 'executorch/backends/xnnpack/operators/op_negate.py' 2025-06-05T23:55:24.7077291Z adding 'executorch/backends/xnnpack/operators/op_permute.py' 2025-06-05T23:55:24.7077740Z adding 'executorch/backends/xnnpack/operators/op_prelu.py' 2025-06-05T23:55:24.7078248Z adding 'executorch/backends/xnnpack/operators/op_quant_dequant.py' 2025-06-05T23:55:24.7078676Z adding 'executorch/backends/xnnpack/operators/op_relu.py' 2025-06-05T23:55:24.7079104Z adding 'executorch/backends/xnnpack/operators/op_rsqrt.py' 2025-06-05T23:55:24.7079511Z adding 'executorch/backends/xnnpack/operators/op_sdpa.py' 2025-06-05T23:55:24.7079946Z adding 'executorch/backends/xnnpack/operators/op_sigmoid.py' 2025-06-05T23:55:24.7080403Z adding 'executorch/backends/xnnpack/operators/op_skip_ops.py' 2025-06-05T23:55:24.7080908Z adding 'executorch/backends/xnnpack/operators/op_slice_copy.py' 2025-06-05T23:55:24.7081355Z adding 'executorch/backends/xnnpack/operators/op_softmax.py' 2025-06-05T23:55:24.7081794Z adding 'executorch/backends/xnnpack/operators/op_square.py' 2025-06-05T23:55:24.7082292Z adding 'executorch/backends/xnnpack/operators/op_square_root.py' 2025-06-05T23:55:24.7082750Z adding 'executorch/backends/xnnpack/operators/op_squeeze.py' 2025-06-05T23:55:24.7083330Z adding 'executorch/backends/xnnpack/operators/op_static_constant_pad.py' 2025-06-05T23:55:24.7084000Z adding 'executorch/backends/xnnpack/operators/op_static_resize_bilinear_2d.py' 2025-06-05T23:55:24.7084402Z adding 'executorch/backends/xnnpack/operators/op_sub.py' 2025-06-05T23:55:24.7084853Z adding 'executorch/backends/xnnpack/operators/op_to_copy.py' 2025-06-05T23:55:24.7085593Z adding 'executorch/backends/xnnpack/operators/quant_params.py' 2025-06-05T23:55:24.7086020Z adding 'executorch/backends/xnnpack/partition/configs.py' 2025-06-05T23:55:24.7086576Z adding 'executorch/backends/xnnpack/partition/xnnpack_partitioner.py' 2025-06-05T23:55:24.7087249Z adding 'executorch/backends/xnnpack/partition/config/__init__.py' 2025-06-05T23:55:24.7087797Z adding 'executorch/backends/xnnpack/partition/config/gemm_configs.py' 2025-06-05T23:55:24.7089136Z adding 'executorch/backends/xnnpack/partition/config/generic_node_configs.py' 2025-06-05T23:55:24.7089719Z adding 'executorch/backends/xnnpack/partition/config/node_configs.py' 2025-06-05T23:55:24.7090369Z adding 'executorch/backends/xnnpack/partition/config/quant_affine_configs.py' 2025-06-05T23:55:24.7090932Z adding 'executorch/backends/xnnpack/partition/config/xnnpack_config.py' 2025-06-05T23:55:24.7091489Z adding 'executorch/backends/xnnpack/partition/graphs/bilinear_2d.py' 2025-06-05T23:55:24.7091939Z adding 'executorch/backends/xnnpack/partition/graphs/sdpa.py' 2025-06-05T23:55:24.7092459Z adding 'executorch/backends/xnnpack/quantizer/xnnpack_quantizer.py' 2025-06-05T23:55:24.7093072Z adding 'executorch/backends/xnnpack/quantizer/xnnpack_quantizer_utils.py' 2025-06-05T23:55:24.7093647Z adding 'executorch/backends/xnnpack/serialization/runtime_schema.fbs' 2025-06-05T23:55:24.7094135Z adding 'executorch/backends/xnnpack/serialization/schema.fbs' 2025-06-05T23:55:24.7094773Z adding 'executorch/backends/xnnpack/serialization/xnnpack_graph_schema.py' 2025-06-05T23:55:24.7095413Z adding 'executorch/backends/xnnpack/serialization/xnnpack_graph_serialize.py' 2025-06-05T23:55:24.7095913Z adding 'executorch/backends/xnnpack/test/test_xnnpack_utils.py' 2025-06-05T23:55:24.7096479Z adding 'executorch/backends/xnnpack/test/test_xnnpack_utils_classes.py' 2025-06-05T23:55:24.7096922Z adding 'executorch/backends/xnnpack/test/models/deeplab_v3.py' 2025-06-05T23:55:24.7097343Z adding 'executorch/backends/xnnpack/test/models/edsr.py' 2025-06-05T23:55:24.7097850Z adding 'executorch/backends/xnnpack/test/models/emformer_rnnt.py' 2025-06-05T23:55:24.7098364Z adding 'executorch/backends/xnnpack/test/models/inception_v3.py' 2025-06-05T23:55:24.7370567Z adding 'executorch/backends/xnnpack/test/models/inception_v4.py' 2025-06-05T23:55:24.7371917Z adding 'executorch/backends/xnnpack/test/models/llama2_et_example.py' 2025-06-05T23:55:24.7373194Z adding 'executorch/backends/xnnpack/test/models/mobilebert.py' 2025-06-05T23:55:24.7374425Z adding 'executorch/backends/xnnpack/test/models/mobilenet_v2.py' 2025-06-05T23:55:24.7375702Z adding 'executorch/backends/xnnpack/test/models/mobilenet_v3.py' 2025-06-05T23:55:24.7376883Z adding 'executorch/backends/xnnpack/test/models/resnet.py' 2025-06-05T23:55:24.7378086Z adding 'executorch/backends/xnnpack/test/models/torchvision_vit.py' 2025-06-05T23:55:24.7379398Z adding 'executorch/backends/xnnpack/test/models/very_big_model.py' 2025-06-05T23:55:24.7380735Z adding 'executorch/backends/xnnpack/test/models/w2l.py' 2025-06-05T23:55:24.7381809Z adding 'executorch/backends/xnnpack/test/ops/test_abs.py' 2025-06-05T23:55:24.7382909Z adding 'executorch/backends/xnnpack/test/ops/test_add.py' 2025-06-05T23:55:24.7384063Z adding 'executorch/backends/xnnpack/test/ops/test_avgpool2d.py' 2025-06-05T23:55:24.7385592Z adding 'executorch/backends/xnnpack/test/ops/test_bilinear2d.py' 2025-06-05T23:55:24.7386762Z adding 'executorch/backends/xnnpack/test/ops/test_bmm.py' 2025-06-05T23:55:24.7387953Z adding 'executorch/backends/xnnpack/test/ops/test_cat.py' 2025-06-05T23:55:24.7389066Z adding 'executorch/backends/xnnpack/test/ops/test_ceil.py' 2025-06-05T23:55:24.7390339Z adding 'executorch/backends/xnnpack/test/ops/test_check_quant_params.py' 2025-06-05T23:55:24.7391621Z adding 'executorch/backends/xnnpack/test/ops/test_clamp.py' 2025-06-05T23:55:24.7392795Z adding 'executorch/backends/xnnpack/test/ops/test_conv1d.py' 2025-06-05T23:55:24.7393954Z adding 'executorch/backends/xnnpack/test/ops/test_conv2d.py' 2025-06-05T23:55:24.7395112Z adding 'executorch/backends/xnnpack/test/ops/test_div.py' 2025-06-05T23:55:24.7396193Z adding 'executorch/backends/xnnpack/test/ops/test_elu.py' 2025-06-05T23:55:24.7397283Z adding 'executorch/backends/xnnpack/test/ops/test_exp.py' 2025-06-05T23:55:24.7398609Z adding 'executorch/backends/xnnpack/test/ops/test_floor.py' 2025-06-05T23:55:24.7399747Z adding 'executorch/backends/xnnpack/test/ops/test_gelu.py' 2025-06-05T23:55:24.7401124Z adding 'executorch/backends/xnnpack/test/ops/test_hardswish.py' 2025-06-05T23:55:24.7402371Z adding 'executorch/backends/xnnpack/test/ops/test_hardtanh.py' 2025-06-05T23:55:24.7403590Z adding 'executorch/backends/xnnpack/test/ops/test_leaky_relu.py' 2025-06-05T23:55:24.7404819Z adding 'executorch/backends/xnnpack/test/ops/test_linear.py' 2025-06-05T23:55:24.7405955Z adding 'executorch/backends/xnnpack/test/ops/test_log.py' 2025-06-05T23:55:24.7407074Z adding 'executorch/backends/xnnpack/test/ops/test_lstm.py' 2025-06-05T23:55:24.7408190Z adding 'executorch/backends/xnnpack/test/ops/test_max_dim.py' 2025-06-05T23:55:24.7409361Z adding 'executorch/backends/xnnpack/test/ops/test_maximum.py' 2025-06-05T23:55:24.7410570Z adding 'executorch/backends/xnnpack/test/ops/test_maxpool2d.py' 2025-06-05T23:55:24.7411823Z adding 'executorch/backends/xnnpack/test/ops/test_mean_dim.py' 2025-06-05T23:55:24.7413014Z adding 'executorch/backends/xnnpack/test/ops/test_minimum.py' 2025-06-05T23:55:24.7414231Z adding 'executorch/backends/xnnpack/test/ops/test_multiply.py' 2025-06-05T23:55:24.7415436Z adding 'executorch/backends/xnnpack/test/ops/test_negate.py' 2025-06-05T23:55:24.7416623Z adding 'executorch/backends/xnnpack/test/ops/test_permute.py' 2025-06-05T23:55:24.7417770Z adding 'executorch/backends/xnnpack/test/ops/test_pow.py' 2025-06-05T23:55:24.7418896Z adding 'executorch/backends/xnnpack/test/ops/test_prelu.py' 2025-06-05T23:55:24.7420198Z adding 'executorch/backends/xnnpack/test/ops/test_quantize_per_tensor.py' 2025-06-05T23:55:24.7421509Z adding 'executorch/backends/xnnpack/test/ops/test_relu.py' 2025-06-05T23:55:24.7422608Z adding 'executorch/backends/xnnpack/test/ops/test_rsqrt.py' 2025-06-05T23:55:24.7423758Z adding 'executorch/backends/xnnpack/test/ops/test_sdpa.py' 2025-06-05T23:55:24.7424889Z adding 'executorch/backends/xnnpack/test/ops/test_sigmoid.py' 2025-06-05T23:55:24.7426071Z adding 'executorch/backends/xnnpack/test/ops/test_slice_copy.py' 2025-06-05T23:55:24.7427303Z adding 'executorch/backends/xnnpack/test/ops/test_softmax.py' 2025-06-05T23:55:24.7428530Z adding 'executorch/backends/xnnpack/test/ops/test_sqrt.py' 2025-06-05T23:55:24.7429658Z adding 'executorch/backends/xnnpack/test/ops/test_square.py' 2025-06-05T23:55:24.7430924Z adding 'executorch/backends/xnnpack/test/ops/test_static_constant_pad.py' 2025-06-05T23:55:24.7432216Z adding 'executorch/backends/xnnpack/test/ops/test_sub.py' 2025-06-05T23:55:24.7433494Z adding 'executorch/backends/xnnpack/test/passes/test_activation_fusion.py' 2025-06-05T23:55:24.7434992Z adding 'executorch/backends/xnnpack/test/passes/test_batch_norm_fusion.py' 2025-06-05T23:55:24.7436592Z adding 'executorch/backends/xnnpack/test/passes/test_channels_last_tagged_reshape.py' 2025-06-05T23:55:24.7438258Z adding 'executorch/backends/xnnpack/test/passes/test_convert_to_linear.py' 2025-06-05T23:55:24.7439735Z adding 'executorch/backends/xnnpack/test/passes/test_decompose_cat_pass.py' 2025-06-05T23:55:24.7441285Z adding 'executorch/backends/xnnpack/test/passes/test_remove_get_item_pass.py' 2025-06-05T23:55:24.7442882Z adding 'executorch/backends/xnnpack/test/passes/test_tag_implicit_q_dq_pass.py' 2025-06-05T23:55:24.7444450Z adding 'executorch/backends/xnnpack/test/quantizer/test_pt2e_quantization.py' 2025-06-05T23:55:24.7445955Z adding 'executorch/backends/xnnpack/test/quantizer/test_representation.py' 2025-06-05T23:55:24.7447461Z adding 'executorch/backends/xnnpack/test/quantizer/test_xnnpack_quantizer.py' 2025-06-05T23:55:24.7449014Z adding 'executorch/backends/xnnpack/test/serialization/test_serialization.py' 2025-06-05T23:55:24.7450578Z adding 'executorch/backends/xnnpack/test/serialization/test_xnnheader.py' 2025-06-05T23:55:24.7451891Z adding 'executorch/backends/xnnpack/test/tester/__init__.py' 2025-06-05T23:55:24.7453171Z adding 'executorch/backends/xnnpack/test/tester/tester.py' 2025-06-05T23:55:24.7454503Z adding 'executorch/backends/xnnpack/third-party/generate-cpuinfo-wrappers.py' 2025-06-05T23:55:24.7456039Z adding 'executorch/backends/xnnpack/third-party/FP16/configure.py' 2025-06-05T23:55:24.7457311Z adding 'executorch/backends/xnnpack/third-party/FP16/confu.yaml' 2025-06-05T23:55:24.7458715Z adding 'executorch/backends/xnnpack/third-party/FP16/include/fp16/__init__.py' 2025-06-05T23:55:24.7460251Z adding 'executorch/backends/xnnpack/third-party/FP16/include/fp16/avx.py' 2025-06-05T23:55:24.7461686Z adding 'executorch/backends/xnnpack/third-party/FP16/include/fp16/avx2.py' 2025-06-05T23:55:24.7463172Z adding 'executorch/backends/xnnpack/third-party/FP16/test/peachpy/stubs.py' 2025-06-05T23:55:24.7464588Z adding 'executorch/backends/xnnpack/third-party/FXdiv/configure.py' 2025-06-05T23:55:24.7465881Z adding 'executorch/backends/xnnpack/third-party/FXdiv/confu.yaml' 2025-06-05T23:55:24.7467345Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/scripts/check_config.py' 2025-06-05T23:55:24.7469126Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/scripts/check_files_changed.py' 2025-06-05T23:55:24.7471020Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/scripts/generate-build-identifier.py' 2025-06-05T23:55:24.7472870Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/scripts/sort-filenames.py' 2025-06-05T23:55:24.7474606Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/bf16-gemm-minmax.yaml' 2025-06-05T23:55:24.7476273Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-conv-hwc2chw.yaml' 2025-06-05T23:55:24.7477942Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-dwconv2d-chw.yaml' 2025-06-05T23:55:24.7479684Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-f32acc-gemm-minmax.yaml' 2025-06-05T23:55:24.7481567Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-f32acc-igemm-minmax.yaml' 2025-06-05T23:55:24.7483349Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-f32acc-rdsum.yaml' 2025-06-05T23:55:24.7485062Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-f32acc-rsum.yaml' 2025-06-05T23:55:24.7486859Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-gemm-minmax.yaml' 2025-06-05T23:55:24.7488514Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-ibilinear-chw.yaml' 2025-06-05T23:55:24.7490166Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-ibilinear.yaml' 2025-06-05T23:55:24.7491795Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-igemm-minmax.yaml' 2025-06-05T23:55:24.7493596Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-raddstoreexpminusmax.yaml' 2025-06-05T23:55:24.7495274Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-rmax.yaml' 2025-06-05T23:55:24.7496773Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-rmin.yaml' 2025-06-05T23:55:24.7498343Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-rminmax.yaml' 2025-06-05T23:55:24.7499866Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-rsum.yaml' 2025-06-05T23:55:24.7501455Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-spmm-minmax.yaml' 2025-06-05T23:55:24.7503177Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f16-vmulcaddc-minmax.yaml' 2025-06-05T23:55:24.7504922Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-argmaxpool.yaml' 2025-06-05T23:55:24.7506556Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-conv-hwc.yaml' 2025-06-05T23:55:24.7508270Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-conv-hwc2chw.yaml' 2025-06-05T23:55:24.7509975Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-dwconv2d-chw.yaml' 2025-06-05T23:55:24.7511719Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemm-goi-minmax.yaml' 2025-06-05T23:55:24.7513633Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemm-minmax.yaml' 2025-06-05T23:55:24.7515303Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemm-relu.yaml' 2025-06-05T23:55:24.7517020Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemm.yaml' 2025-06-05T23:55:24.7518647Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-gemminc-minmax.yaml' 2025-06-05T23:55:24.7520393Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-ibilinear-chw.yaml' 2025-06-05T23:55:24.7522160Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-ibilinear.yaml' 2025-06-05T23:55:24.7523791Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-igemm-minmax.yaml' 2025-06-05T23:55:24.7525467Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-igemm-relu.yaml' 2025-06-05T23:55:24.7527048Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-igemm.yaml' 2025-06-05T23:55:24.7771399Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-ppmm-minmax.yaml' 2025-06-05T23:55:24.7773228Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-qc4w-gemm-minmax.yaml' 2025-06-05T23:55:24.7775038Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-qc8w-gemm-minmax.yaml' 2025-06-05T23:55:24.7776822Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-qc8w-gemm-relu.yaml' 2025-06-05T23:55:24.7778520Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-qc8w-gemm.yaml' 2025-06-05T23:55:24.7780247Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-raddexpminusmax.yaml' 2025-06-05T23:55:24.7781964Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-raddextexp.yaml' 2025-06-05T23:55:24.7783763Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-raddstoreexpminusmax.yaml' 2025-06-05T23:55:24.7785825Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rdsum.yaml' 2025-06-05T23:55:24.7787377Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rmax.yaml' 2025-06-05T23:55:24.7788980Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rmin.yaml' 2025-06-05T23:55:24.7790521Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rminmax.yaml' 2025-06-05T23:55:24.7792079Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-rsum.yaml' 2025-06-05T23:55:24.7793681Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-spmm-minmax.yaml' 2025-06-05T23:55:24.7795373Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-vmulcaddc-minmax.yaml' 2025-06-05T23:55:24.7797075Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-vscaleexpminusmax.yaml' 2025-06-05T23:55:24.7798709Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/f32-vscaleextexp.yaml' 2025-06-05T23:55:24.7800395Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f16-qb4w-gemm-minmax.yaml' 2025-06-05T23:55:24.7802130Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f16-qc4w-gemm-minmax.yaml' 2025-06-05T23:55:24.7803873Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f16-qc8w-gemm-minmax.yaml' 2025-06-05T23:55:24.7805618Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f16-qc8w-igemm-minmax.yaml' 2025-06-05T23:55:24.7807358Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f32-qb4w-gemm-minmax.yaml' 2025-06-05T23:55:24.7809104Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f32-qc4w-gemm-minmax.yaml' 2025-06-05T23:55:24.7810848Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f32-qc8w-gemm-minmax.yaml' 2025-06-05T23:55:24.7812586Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qd8-f32-qc8w-igemm-minmax.yaml' 2025-06-05T23:55:24.7814330Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qp8-f32-qb4w-gemm-minmax.yaml' 2025-06-05T23:55:24.7816298Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qp8-f32-qc4w-gemm-minmax.yaml' 2025-06-05T23:55:24.7818076Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qs8-qc8w-gemm-minmax-fp32.yaml' 2025-06-05T23:55:24.7820011Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qs8-qc8w-igemm-minmax-fp32.yaml' 2025-06-05T23:55:24.7821771Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qs8-rdsum-minmax-fp32.yaml' 2025-06-05T23:55:24.7823329Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qs8-rsum.yaml' 2025-06-05T23:55:24.7824873Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-gemm-minmax-fp32.yaml' 2025-06-05T23:55:24.7826553Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-gemm-minmax-rndnu.yaml' 2025-06-05T23:55:24.7828336Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-igemm-minmax-fp32.yaml' 2025-06-05T23:55:24.7830019Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-igemm-minmax-rndnu.yaml' 2025-06-05T23:55:24.7831633Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-rdsum.yaml' 2025-06-05T23:55:24.7833060Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/qu8-rsum.yaml' 2025-06-05T23:55:24.7834535Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/s8-ibilinear.yaml' 2025-06-05T23:55:24.7835997Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/u8-ibilinear.yaml' 2025-06-05T23:55:24.7837498Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/u8-lut32norm.yaml' 2025-06-05T23:55:24.7838940Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/u8-rmax.yaml' 2025-06-05T23:55:24.7840341Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/test/x8-lut.yaml' 2025-06-05T23:55:24.7841910Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-argmaxpool-test.py' 2025-06-05T23:55:24.7843670Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-conv-hwc-test.py' 2025-06-05T23:55:24.7845455Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-conv-hwc2chw-test.py' 2025-06-05T23:55:24.7847346Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-dwconv-multipass-test.py' 2025-06-05T23:55:24.7849247Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-dwconv-unipass-test.py' 2025-06-05T23:55:24.7851105Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-dwconv2d-chw-test.py' 2025-06-05T23:55:24.7852821Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-gemm-test.py' 2025-06-05T23:55:24.7854567Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-ibilinear-chw-test.py' 2025-06-05T23:55:24.7856347Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-ibilinear-test.py' 2025-06-05T23:55:24.7858089Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-lut-norm-test.py' 2025-06-05T23:55:24.7859754Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-lut-test.py' 2025-06-05T23:55:24.7861520Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-raddexpminusmax-test.py' 2025-06-05T23:55:24.7863358Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-raddextexp-test.py' 2025-06-05T23:55:24.7865279Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-raddstoreexpminusmax-test.py' 2025-06-05T23:55:24.7867184Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-rdsum-benchmark.py' 2025-06-05T23:55:24.7868999Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-rdsum-test.py' 2025-06-05T23:55:24.7870644Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-reduce-test.py' 2025-06-05T23:55:24.7872303Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-spmm-test.py' 2025-06-05T23:55:24.7873971Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vbinary-test.py' 2025-06-05T23:55:24.7875895Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vmulcaddc-test.py' 2025-06-05T23:55:24.7878058Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vscaleexpminusmax-test.py' 2025-06-05T23:55:24.7880108Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vscaleextexp-test.py' 2025-06-05T23:55:24.7882036Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/generate-vunary-test.py' 2025-06-05T23:55:24.7883718Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/primes.py' 2025-06-05T23:55:24.7885601Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/update-microkernels.py' 2025-06-05T23:55:24.7887257Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/xngen.py' 2025-06-05T23:55:24.7888784Z adding 'executorch/backends/xnnpack/third-party/XNNPACK/tools/xnncommon.py' 2025-06-05T23:55:24.7890303Z adding 'executorch/backends/xnnpack/third-party/cpuinfo/configure.py' 2025-06-05T23:55:24.7891707Z adding 'executorch/backends/xnnpack/third-party/cpuinfo/confu.yaml' 2025-06-05T23:55:24.7893208Z adding 'executorch/backends/xnnpack/third-party/cpuinfo/deps/clog/configure.py' 2025-06-05T23:55:24.7894843Z adding 'executorch/backends/xnnpack/third-party/cpuinfo/deps/clog/confu.yaml' 2025-06-05T23:55:24.7896546Z adding 'executorch/backends/xnnpack/third-party/cpuinfo/scripts/android-device-dump.py' 2025-06-05T23:55:24.7898452Z adding 'executorch/backends/xnnpack/third-party/cpuinfo/scripts/arm-linux-filesystem-dump.py' 2025-06-05T23:55:24.7900356Z adding 'executorch/backends/xnnpack/third-party/cpuinfo/scripts/parse-x86-cpuid-dump.py' 2025-06-05T23:55:24.7902022Z adding 'executorch/backends/xnnpack/third-party/pthreadpool/configure.py' 2025-06-05T23:55:24.7903498Z adding 'executorch/backends/xnnpack/third-party/pthreadpool/confu.yaml' 2025-06-05T23:55:24.7904788Z adding 'executorch/backends/xnnpack/utils/configs.py' 2025-06-05T23:55:24.7905882Z adding 'executorch/backends/xnnpack/utils/quant_utils.py' 2025-06-05T23:55:24.7906950Z adding 'executorch/backends/xnnpack/utils/utils.py' 2025-06-05T23:55:24.7908144Z adding 'executorch/backends/xnnpack/utils/xnnpack_constants.py' 2025-06-05T23:55:24.7909215Z adding 'executorch/codegen/__init__.py' 2025-06-05T23:55:24.7910018Z adding 'executorch/codegen/gen.py' 2025-06-05T23:55:24.7910780Z adding 'executorch/codegen/model.py' 2025-06-05T23:55:24.7911547Z adding 'executorch/codegen/parse.py' 2025-06-05T23:55:24.7912341Z adding 'executorch/codegen/api/__init__.py' 2025-06-05T23:55:24.7913227Z adding 'executorch/codegen/api/custom_ops.py' 2025-06-05T23:55:24.7914096Z adding 'executorch/codegen/api/et_cpp.py' 2025-06-05T23:55:24.7914938Z adding 'executorch/codegen/api/unboxing.py' 2025-06-05T23:55:24.7915823Z adding 'executorch/codegen/api/types/__init__.py' 2025-06-05T23:55:24.7916784Z adding 'executorch/codegen/api/types/signatures.py' 2025-06-05T23:55:24.7917725Z adding 'executorch/codegen/api/types/types.py' 2025-06-05T23:55:24.7918773Z adding 'executorch/codegen/test/test_executorch_custom_ops.py' 2025-06-05T23:55:24.7919881Z adding 'executorch/codegen/test/test_executorch_gen.py' 2025-06-05T23:55:24.7921018Z adding 'executorch/codegen/test/test_executorch_signatures.py' 2025-06-05T23:55:24.7922182Z adding 'executorch/codegen/test/test_executorch_types.py' 2025-06-05T23:55:24.7923335Z adding 'executorch/codegen/test/test_executorch_unboxing.py' 2025-06-05T23:55:24.7924474Z adding 'executorch/codegen/test/test_selective_build.py' 2025-06-05T23:55:24.7925518Z adding 'executorch/codegen/tools/__init__.py' 2025-06-05T23:55:24.7926478Z adding 'executorch/codegen/tools/gen_all_oplist.py' 2025-06-05T23:55:24.7927448Z adding 'executorch/codegen/tools/gen_oplist.py' 2025-06-05T23:55:24.7928367Z adding 'executorch/codegen/tools/gen_ops_def.py' 2025-06-05T23:55:25.1605106Z adding 'executorch/codegen/tools/gen_selected_op_variants.py' 2025-06-05T23:55:25.1606549Z adding 'executorch/codegen/tools/merge_yaml.py' 2025-06-05T23:55:25.1607483Z adding 'executorch/codegen/tools/yaml_util.py' 2025-06-05T23:55:25.1608524Z adding 'executorch/codegen/tools/test/test_gen_all_oplist.py' 2025-06-05T23:55:25.1609959Z adding 'executorch/codegen/tools/test/test_gen_oplist.py' 2025-06-05T23:55:25.1611183Z adding 'executorch/codegen/tools/test/test_gen_oplist_real_model.py' 2025-06-05T23:55:25.1612597Z adding 'executorch/codegen/tools/test/test_gen_selected_op_variants.py' 2025-06-05T23:55:25.1613705Z adding 'executorch/data/bin/__init__.py' 2025-06-05T23:55:25.1614520Z adding 'executorch/data/bin/flatc' 2025-06-05T23:55:25.1615266Z adding 'executorch/devtools/__init__.py' 2025-06-05T23:55:25.1616217Z adding 'executorch/devtools/backend_debug/__init__.py' 2025-06-05T23:55:25.1617345Z adding 'executorch/devtools/backend_debug/delegation_info.py' 2025-06-05T23:55:25.1618695Z adding 'executorch/devtools/backend_debug/tests/test_delegation_info.py' 2025-06-05T23:55:25.1619975Z adding 'executorch/devtools/bundled_program/config.py' 2025-06-05T23:55:25.1621010Z adding 'executorch/devtools/bundled_program/core.py' 2025-06-05T23:55:25.1622046Z adding 'executorch/devtools/bundled_program/version.py' 2025-06-05T23:55:25.1623188Z adding 'executorch/devtools/bundled_program/schema/__init__.py' 2025-06-05T23:55:25.1624588Z adding 'executorch/devtools/bundled_program/schema/bundled_program_schema.fbs' 2025-06-05T23:55:25.1626115Z adding 'executorch/devtools/bundled_program/schema/bundled_program_schema.py' 2025-06-05T23:55:25.1627545Z adding 'executorch/devtools/bundled_program/schema/scalar_type.fbs' 2025-06-05T23:55:25.1628962Z adding 'executorch/devtools/bundled_program/schema/test/test_schema.py' 2025-06-05T23:55:25.1630296Z adding 'executorch/devtools/bundled_program/serialize/__init__.py' 2025-06-05T23:55:25.1631755Z adding 'executorch/devtools/bundled_program/serialize/bundled_program_schema.fbs' 2025-06-05T23:55:25.1633284Z adding 'executorch/devtools/bundled_program/serialize/scalar_type.fbs' 2025-06-05T23:55:25.1634765Z adding 'executorch/devtools/bundled_program/serialize/test/test_serialize.py' 2025-06-05T23:55:25.1636235Z adding 'executorch/devtools/bundled_program/test/test_bundle_data.py' 2025-06-05T23:55:25.1637574Z adding 'executorch/devtools/bundled_program/test/test_config.py' 2025-06-05T23:55:25.1638839Z adding 'executorch/devtools/bundled_program/test/test_end2end.py' 2025-06-05T23:55:25.1640077Z adding 'executorch/devtools/bundled_program/util/test_util.py' 2025-06-05T23:55:25.1641204Z adding 'executorch/devtools/debug_format/base_schema.py' 2025-06-05T23:55:25.1642258Z adding 'executorch/devtools/debug_format/et_schema.py' 2025-06-05T23:55:25.1643359Z adding 'executorch/devtools/etdump/etdump_schema_flatcc.fbs' 2025-06-05T23:55:25.1644433Z adding 'executorch/devtools/etdump/scalar_type.fbs' 2025-06-05T23:55:25.1645425Z adding 'executorch/devtools/etdump/schema_flatcc.py' 2025-06-05T23:55:25.1646412Z adding 'executorch/devtools/etdump/serialize.py' 2025-06-05T23:55:25.1647466Z adding 'executorch/devtools/etdump/tests/serialize_test.py' 2025-06-05T23:55:25.1648511Z adding 'executorch/devtools/etrecord/__init__.py' 2025-06-05T23:55:25.1649472Z adding 'executorch/devtools/etrecord/_etrecord.py' 2025-06-05T23:55:25.1650538Z adding 'executorch/devtools/etrecord/tests/etrecord_test.py' 2025-06-05T23:55:25.1651601Z adding 'executorch/devtools/inspector/__init__.py' 2025-06-05T23:55:25.1652595Z adding 'executorch/devtools/inspector/_inspector.py' 2025-06-05T23:55:25.1653658Z adding 'executorch/devtools/inspector/_inspector_utils.py' 2025-06-05T23:55:25.1654940Z adding 'executorch/devtools/inspector/_intermediate_output_capturer.py' 2025-06-05T23:55:25.1656213Z adding 'executorch/devtools/inspector/inspector_cli.py' 2025-06-05T23:55:25.1657402Z adding 'executorch/devtools/inspector/tests/event_blocks_test.py' 2025-06-05T23:55:25.1658652Z adding 'executorch/devtools/inspector/tests/inspector_test.py' 2025-06-05T23:55:25.1660110Z adding 'executorch/devtools/inspector/tests/inspector_test_utils.py' 2025-06-05T23:55:25.1661514Z adding 'executorch/devtools/inspector/tests/inspector_utils_test.py' 2025-06-05T23:55:25.1663179Z adding 'executorch/devtools/inspector/tests/intermediate_output_capturer_test.py' 2025-06-05T23:55:25.1664731Z adding 'executorch/devtools/size_analysis_tool/size_analysis_tool.py' 2025-06-05T23:55:25.1666122Z adding 'executorch/devtools/size_analysis_tool/size_analysis_tool_test.py' 2025-06-05T23:55:25.1667410Z adding 'executorch/devtools/visualization/__init__.py' 2025-06-05T23:55:25.1668674Z adding 'executorch/devtools/visualization/visualization_utils.py' 2025-06-05T23:55:25.1670034Z adding 'executorch/devtools/visualization/visualization_utils_test.py' 2025-06-05T23:55:25.1671305Z adding 'executorch/examples/apple/coreml/llama/export.py' 2025-06-05T23:55:25.1672550Z adding 'executorch/examples/apple/coreml/llama/llama_transformer.py' 2025-06-05T23:55:25.1673778Z adding 'executorch/examples/apple/coreml/llama/run.py' 2025-06-05T23:55:25.1674843Z adding 'executorch/examples/apple/coreml/llama/test.py' 2025-06-05T23:55:25.1675917Z adding 'executorch/examples/apple/coreml/llama/utils.py' 2025-06-05T23:55:25.1677107Z adding 'executorch/examples/apple/coreml/scripts/debugger_cli.py' 2025-06-05T23:55:25.1678328Z adding 'executorch/examples/apple/coreml/scripts/export.py' 2025-06-05T23:55:25.1679672Z adding 'executorch/examples/apple/coreml/scripts/extract_coreml_models.py' 2025-06-05T23:55:25.1681097Z adding 'executorch/examples/apple/coreml/scripts/inspector_cli.py' 2025-06-05T23:55:25.1682453Z adding 'executorch/examples/apple/coreml/scripts/inspector_utils.py' 2025-06-05T23:55:25.1683714Z adding 'executorch/examples/apple/mps/scripts/bench_utils.py' 2025-06-05T23:55:25.1684922Z adding 'executorch/examples/apple/mps/scripts/mps_example.py' 2025-06-05T23:55:25.1686319Z adding 'executorch/examples/llm_pte_finetuning/__init__.py' 2025-06-05T23:55:25.1687542Z adding 'executorch/examples/llm_pte_finetuning/llama3_config.yaml' 2025-06-05T23:55:25.1688808Z adding 'executorch/examples/llm_pte_finetuning/model_exporter.py' 2025-06-05T23:55:25.1690114Z adding 'executorch/examples/llm_pte_finetuning/model_loading_lib.py' 2025-06-05T23:55:25.1691526Z adding 'executorch/examples/llm_pte_finetuning/phi3_alpaca_code_config.yaml' 2025-06-05T23:55:25.1692936Z adding 'executorch/examples/llm_pte_finetuning/phi3_config.yaml' 2025-06-05T23:55:25.1694224Z adding 'executorch/examples/llm_pte_finetuning/qwen_05b_config.yaml' 2025-06-05T23:55:25.1695471Z adding 'executorch/examples/llm_pte_finetuning/runner.py' 2025-06-05T23:55:25.1696641Z adding 'executorch/examples/llm_pte_finetuning/training_lib.py' 2025-06-05T23:55:25.1697725Z adding 'executorch/examples/models/__init__.py' 2025-06-05T23:55:25.1698648Z adding 'executorch/examples/models/checkpoint.py' 2025-06-05T23:55:25.1699622Z adding 'executorch/examples/models/model_base.py' 2025-06-05T23:55:25.1700601Z adding 'executorch/examples/models/model_factory.py' 2025-06-05T23:55:25.1701682Z adding 'executorch/examples/models/deeplab_v3/__init__.py' 2025-06-05T23:55:25.1702775Z adding 'executorch/examples/models/deeplab_v3/model.py' 2025-06-05T23:55:25.1703799Z adding 'executorch/examples/models/edsr/__init__.py' 2025-06-05T23:55:25.1704780Z adding 'executorch/examples/models/edsr/model.py' 2025-06-05T23:55:25.1705840Z adding 'executorch/examples/models/efficient_sam/__init__.py' 2025-06-05T23:55:25.1706974Z adding 'executorch/examples/models/efficient_sam/model.py' 2025-06-05T23:55:25.1708567Z adding 'executorch/examples/models/efficient_sam/efficient_sam_core/build_efficient_sam.py' 2025-06-05T23:55:25.1710384Z adding 'executorch/examples/models/efficient_sam/efficient_sam_core/efficient_sam.py' 2025-06-05T23:55:25.1712235Z adding 'executorch/examples/models/efficient_sam/efficient_sam_core/efficient_sam_decoder.py' 2025-06-05T23:55:25.1714180Z adding 'executorch/examples/models/efficient_sam/efficient_sam_core/efficient_sam_encoder.py' 2025-06-05T23:55:25.1716120Z adding 'executorch/examples/models/efficient_sam/efficient_sam_core/mlp.py' 2025-06-05T23:55:25.1717997Z adding 'executorch/examples/models/efficient_sam/efficient_sam_core/two_way_transformer.py' 2025-06-05T23:55:25.1719576Z adding 'executorch/examples/models/emformer_rnnt/__init__.py' 2025-06-05T23:55:25.1720729Z adding 'executorch/examples/models/emformer_rnnt/model.py' 2025-06-05T23:55:25.1721855Z adding 'executorch/examples/models/inception_v3/__init__.py' 2025-06-05T23:55:25.1722955Z adding 'executorch/examples/models/inception_v3/model.py' 2025-06-05T23:55:25.1724094Z adding 'executorch/examples/models/inception_v4/__init__.py' 2025-06-05T23:55:25.1725224Z adding 'executorch/examples/models/inception_v4/model.py' 2025-06-05T23:55:25.1726280Z adding 'executorch/examples/models/llama/__init__.py' 2025-06-05T23:55:25.1727309Z adding 'executorch/examples/models/llama/attention.py' 2025-06-05T23:55:25.1728413Z adding 'executorch/examples/models/llama/eval_llama.py' 2025-06-05T23:55:25.1729482Z adding 'executorch/examples/models/llama/eval_llama_lib.py' 2025-06-05T23:55:25.1730628Z adding 'executorch/examples/models/llama/export_llama.py' 2025-06-05T23:55:25.1731800Z adding 'executorch/examples/models/llama/export_llama_lib.py' 2025-06-05T23:55:25.1732906Z adding 'executorch/examples/models/llama/fairseq2.py' 2025-06-05T23:55:25.1733955Z adding 'executorch/examples/models/llama/hf_download.py' 2025-06-05T23:55:25.1735214Z adding 'executorch/examples/models/llama/install_requirement_helper.py' 2025-06-05T23:55:25.1736564Z adding 'executorch/examples/models/llama/llama_transformer.py' 2025-06-05T23:55:25.1737651Z adding 'executorch/examples/models/llama/model.py' 2025-06-05T23:55:25.1738668Z adding 'executorch/examples/models/llama/model_args.py' 2025-06-05T23:55:25.1739686Z adding 'executorch/examples/models/llama/norm.py' 2025-06-05T23:55:25.1740648Z adding 'executorch/examples/models/llama/rope.py' 2025-06-05T23:55:25.1741737Z adding 'executorch/examples/models/llama/static_attention.py' 2025-06-05T23:55:25.1742918Z adding 'executorch/examples/models/llama/evaluate/__init__.py' 2025-06-05T23:55:25.1744177Z adding 'executorch/examples/models/llama/evaluate/eager_eval.py' 2025-06-05T23:55:25.1745481Z adding 'executorch/examples/models/llama/experimental/generate.py' 2025-06-05T23:55:25.1746885Z adding 'executorch/examples/models/llama/experimental/load_gguf_q4_0.py' 2025-06-05T23:55:25.1748392Z adding 'executorch/examples/models/llama/experimental/subclass.py' 2025-06-05T23:55:25.1749774Z adding 'executorch/examples/models/llama/experimental/test_subclass.py' 2025-06-05T23:55:25.1751065Z adding 'executorch/examples/models/llama/runner/eager.py' 2025-06-05T23:55:25.1752217Z adding 'executorch/examples/models/llama/runner/generation.py' 2025-06-05T23:55:25.1753412Z adding 'executorch/examples/models/llama/runner/native.py' 2025-06-05T23:55:25.1754749Z adding 'executorch/examples/models/llama/source_transformation/__init__.py' 2025-06-05T23:55:25.1756443Z adding 'executorch/examples/models/llama/source_transformation/apply_spin_quant_r1_r2.py' 2025-06-05T23:55:25.1758150Z adding 'executorch/examples/models/llama/source_transformation/attention.py' 2025-06-05T23:55:25.1759806Z adding 'executorch/examples/models/llama/source_transformation/attention_sink.py' 2025-06-05T23:55:25.2093894Z adding 'executorch/examples/models/llama/source_transformation/custom_kv_cache.py' 2025-06-05T23:55:25.2095487Z adding 'executorch/examples/models/llama/source_transformation/lora.py' 2025-06-05T23:55:25.2097047Z adding 'executorch/examples/models/llama/source_transformation/pre_quantization.py' 2025-06-05T23:55:25.2098742Z adding 'executorch/examples/models/llama/source_transformation/prune_vocab.py' 2025-06-05T23:55:25.2100291Z adding 'executorch/examples/models/llama/source_transformation/quantize.py' 2025-06-05T23:55:25.2101819Z adding 'executorch/examples/models/llama/source_transformation/rms_norm.py' 2025-06-05T23:55:25.2103530Z adding 'executorch/examples/models/llama/source_transformation/rope.py' 2025-06-05T23:55:25.2104991Z adding 'executorch/examples/models/llama/source_transformation/sdpa.py' 2025-06-05T23:55:25.2106674Z adding 'executorch/examples/models/llama/source_transformation/spin_quant.py' 2025-06-05T23:55:25.2108448Z adding 'executorch/examples/models/llama/source_transformation/test_attention_sink.py' 2025-06-05T23:55:25.2110295Z adding 'executorch/examples/models/llama/source_transformation/test_quantized_kv_cache.py' 2025-06-05T23:55:25.2112118Z adding 'executorch/examples/models/llama/source_transformation/test_quantized_sdpa.py' 2025-06-05T23:55:25.2114020Z adding 'executorch/examples/models/llama/source_transformation/test_sdpa_with_quantized_kv_cache.py' 2025-06-05T23:55:25.2115844Z adding 'executorch/examples/models/llama/source_transformation/vulkan_rope.py' 2025-06-05T23:55:25.2117348Z adding 'executorch/examples/models/llama/tests/test_export_llama_lib.py' 2025-06-05T23:55:25.2118909Z adding 'executorch/examples/models/llama/tests/test_pre_quantization_transforms.py' 2025-06-05T23:55:25.2120534Z adding 'executorch/examples/models/llama/tests/test_replace_kv_cache.py' 2025-06-05T23:55:25.2121920Z adding 'executorch/examples/models/llama/tests/test_ring_attention.py' 2025-06-05T23:55:25.2123322Z adding 'executorch/examples/models/llama/tests/test_ring_kv_cache.py' 2025-06-05T23:55:25.2124660Z adding 'executorch/examples/models/llama/tests/test_simple_sdpa.py' 2025-06-05T23:55:25.2126047Z adding 'executorch/examples/models/llama/tests/test_static_attention.py' 2025-06-05T23:55:25.2127441Z adding 'executorch/examples/models/llama/tokenizer/tiktoken.py' 2025-06-05T23:55:25.2128676Z adding 'executorch/examples/models/llama3_2_vision/__init__.py' 2025-06-05T23:55:25.2130015Z adding 'executorch/examples/models/llama3_2_vision/preprocess/__init__.py' 2025-06-05T23:55:25.2131583Z adding 'executorch/examples/models/llama3_2_vision/preprocess/export_preprocess.py' 2025-06-05T23:55:25.2133160Z adding 'executorch/examples/models/llama3_2_vision/preprocess/model.py' 2025-06-05T23:55:25.2134671Z adding 'executorch/examples/models/llama3_2_vision/preprocess/test_preprocess.py' 2025-06-05T23:55:25.2136198Z adding 'executorch/examples/models/llama3_2_vision/runner/eager.py' 2025-06-05T23:55:25.2137559Z adding 'executorch/examples/models/llama3_2_vision/runner/exported.py' 2025-06-05T23:55:25.2138987Z adding 'executorch/examples/models/llama3_2_vision/runner/generation.py' 2025-06-05T23:55:25.2140367Z adding 'executorch/examples/models/llama3_2_vision/runner/native.py' 2025-06-05T23:55:25.2141743Z adding 'executorch/examples/models/llama3_2_vision/text_decoder/model.py' 2025-06-05T23:55:25.2143311Z adding 'executorch/examples/models/llama3_2_vision/text_decoder/test/__init__.py' 2025-06-05T23:55:25.2145017Z adding 'executorch/examples/models/llama3_2_vision/text_decoder/test/test_text_decoder.py' 2025-06-05T23:55:25.2146731Z adding 'executorch/examples/models/llama3_2_vision/vision_encoder/__init__.py' 2025-06-05T23:55:25.2148369Z adding 'executorch/examples/models/llama3_2_vision/vision_encoder/model.py' 2025-06-05T23:55:25.2149969Z adding 'executorch/examples/models/llama3_2_vision/vision_encoder/test/__init__.py' 2025-06-05T23:55:25.2151762Z adding 'executorch/examples/models/llama3_2_vision/vision_encoder/test/test_vision_encoder.py' 2025-06-05T23:55:25.2153244Z adding 'executorch/examples/models/llava/__init__.py' 2025-06-05T23:55:25.2154281Z adding 'executorch/examples/models/llava/export_llava.py' 2025-06-05T23:55:25.2155345Z adding 'executorch/examples/models/llava/model.py' 2025-06-05T23:55:25.2156415Z adding 'executorch/examples/models/llava/test/test_llava.py' 2025-06-05T23:55:25.2157546Z adding 'executorch/examples/models/llava/test/test_pte.py' 2025-06-05T23:55:25.2158595Z adding 'executorch/examples/models/lstm/__init__.py' 2025-06-05T23:55:25.2159563Z adding 'executorch/examples/models/lstm/model.py' 2025-06-05T23:55:25.2160737Z adding 'executorch/examples/models/mobilebert/__init__.py' 2025-06-05T23:55:25.2161846Z adding 'executorch/examples/models/mobilebert/model.py' 2025-06-05T23:55:25.2163043Z adding 'executorch/examples/models/mobilenet_v2/__init__.py' 2025-06-05T23:55:25.2164180Z adding 'executorch/examples/models/mobilenet_v2/model.py' 2025-06-05T23:55:25.2165321Z adding 'executorch/examples/models/mobilenet_v3/__init__.py' 2025-06-05T23:55:25.2166451Z adding 'executorch/examples/models/mobilenet_v3/model.py' 2025-06-05T23:55:25.2167535Z adding 'executorch/examples/models/moshi/mimi/test_mimi.py' 2025-06-05T23:55:25.2168669Z adding 'executorch/examples/models/phi-3-mini/__init__.py' 2025-06-05T23:55:25.2169761Z adding 'executorch/examples/models/phi-3-mini/eager.py' 2025-06-05T23:55:25.2170969Z adding 'executorch/examples/models/phi-3-mini/export_phi-3-mini.py' 2025-06-05T23:55:25.2172189Z adding 'executorch/examples/models/phi-3-mini/phi_3_mini.py' 2025-06-05T23:55:25.2173379Z adding 'executorch/examples/models/phi-3-mini/static_cache.py' 2025-06-05T23:55:25.2174641Z adding 'executorch/examples/models/phi-3-mini-lora/export_model.py' 2025-06-05T23:55:25.2175853Z adding 'executorch/examples/models/phi_4_mini/__init__.py' 2025-06-05T23:55:25.2177049Z adding 'executorch/examples/models/phi_4_mini/convert_weights.py' 2025-06-05T23:55:25.2178235Z adding 'executorch/examples/models/qwen2_5/__init__.py' 2025-06-05T23:55:25.2179340Z adding 'executorch/examples/models/qwen2_5/convert_weights.py' 2025-06-05T23:55:25.2180465Z adding 'executorch/examples/models/qwen3/__init__.py' 2025-06-05T23:55:25.2181551Z adding 'executorch/examples/models/qwen3/convert_weights.py' 2025-06-05T23:55:25.2182655Z adding 'executorch/examples/models/resnet/__init__.py' 2025-06-05T23:55:25.2183689Z adding 'executorch/examples/models/resnet/model.py' 2025-06-05T23:55:25.2184695Z adding 'executorch/examples/models/smollm2/__init__.py' 2025-06-05T23:55:25.2186052Z adding 'executorch/examples/models/smollm2/convert_weights.py' 2025-06-05T23:55:25.2187164Z adding 'executorch/examples/models/test/__init__.py' 2025-06-05T23:55:25.2188237Z adding 'executorch/examples/models/test/test_export.py' 2025-06-05T23:55:25.2189393Z adding 'executorch/examples/models/torchvision_vit/__init__.py' 2025-06-05T23:55:25.2190599Z adding 'executorch/examples/models/torchvision_vit/model.py' 2025-06-05T23:55:25.2191729Z adding 'executorch/examples/models/toy_model/__init__.py' 2025-06-05T23:55:25.2192811Z adding 'executorch/examples/models/toy_model/model.py' 2025-06-05T23:55:25.2193858Z adding 'executorch/examples/models/wav2letter/__init__.py' 2025-06-05T23:55:25.2194946Z adding 'executorch/examples/models/wav2letter/model.py' 2025-06-05T23:55:25.2195897Z adding 'executorch/exir/__init__.py' 2025-06-05T23:55:25.2196670Z adding 'executorch/exir/_warnings.py' 2025-06-05T23:55:25.2197445Z adding 'executorch/exir/common.py' 2025-06-05T23:55:25.2198195Z adding 'executorch/exir/control_flow.py' 2025-06-05T23:55:25.2199019Z adding 'executorch/exir/delegate.py' 2025-06-05T23:55:25.2199801Z adding 'executorch/exir/delegate.pyi' 2025-06-05T23:55:25.2200620Z adding 'executorch/exir/dim_order_utils.py' 2025-06-05T23:55:25.2201491Z adding 'executorch/exir/dynamic_shape.py' 2025-06-05T23:55:25.2202265Z adding 'executorch/exir/error.py' 2025-06-05T23:55:25.2203002Z adding 'executorch/exir/graph.py' 2025-06-05T23:55:25.2203779Z adding 'executorch/exir/graph_module.py' 2025-06-05T23:55:25.2204701Z adding 'executorch/exir/lowered_backend_module.py' 2025-06-05T23:55:25.2205603Z adding 'executorch/exir/memory.py' 2025-06-05T23:55:25.2206369Z adding 'executorch/exir/memory_planning.py' 2025-06-05T23:55:25.2207203Z adding 'executorch/exir/pass_base.py' 2025-06-05T23:55:25.2224568Z adding 'executorch/exir/pass_manager.py' 2025-06-05T23:55:25.2225556Z adding 'executorch/exir/print_program.py' 2025-06-05T23:55:25.2226366Z adding 'executorch/exir/scalar_type.py' 2025-06-05T23:55:25.2227339Z adding 'executorch/exir/schema.py' 2025-06-05T23:55:25.2228177Z adding 'executorch/exir/sym_util.py' 2025-06-05T23:55:25.2228938Z adding 'executorch/exir/tensor.py' 2025-06-05T23:55:25.2229680Z adding 'executorch/exir/tracer.py' 2025-06-05T23:55:25.2230648Z adding 'executorch/exir/types.py' 2025-06-05T23:55:25.2231387Z adding 'executorch/exir/version.py' 2025-06-05T23:55:25.2232161Z adding 'executorch/exir/wrap.py' 2025-06-05T23:55:25.2232937Z adding 'executorch/exir/_serialize/__init__.py' 2025-06-05T23:55:25.2233874Z adding 'executorch/exir/_serialize/_cord.py' 2025-06-05T23:55:25.2234779Z adding 'executorch/exir/_serialize/_dataclass.py' 2025-06-05T23:55:25.2235723Z adding 'executorch/exir/_serialize/_flatbuffer.py' 2025-06-05T23:55:25.2236725Z adding 'executorch/exir/_serialize/_named_data_store.py' 2025-06-05T23:55:25.2237740Z adding 'executorch/exir/_serialize/_program.py' 2025-06-05T23:55:25.2238656Z adding 'executorch/exir/_serialize/_serialize.py' 2025-06-05T23:55:25.2239702Z adding 'executorch/exir/_serialize/data_serializer.py' 2025-06-05T23:55:25.2240691Z adding 'executorch/exir/_serialize/padding.py' 2025-06-05T23:55:25.2241633Z adding 'executorch/exir/_serialize/program.fbs' 2025-06-05T23:55:25.2242584Z adding 'executorch/exir/_serialize/scalar_type.fbs' 2025-06-05T23:55:25.2243539Z adding 'executorch/exir/_serialize/test/__init__.py' 2025-06-05T23:55:25.2244535Z adding 'executorch/exir/_serialize/test/test_cord.py' 2025-06-05T23:55:25.2245609Z adding 'executorch/exir/_serialize/test/test_flatbuffer.py' 2025-06-05T23:55:25.2246810Z adding 'executorch/exir/_serialize/test/test_named_data_store.py' 2025-06-05T23:55:25.2247955Z adding 'executorch/exir/_serialize/test/test_program.py' 2025-06-05T23:55:25.2248960Z adding 'executorch/exir/backend/backend_api.py' 2025-06-05T23:55:25.2249907Z adding 'executorch/exir/backend/backend_details.py' 2025-06-05T23:55:25.2250923Z adding 'executorch/exir/backend/compile_spec_schema.py' 2025-06-05T23:55:25.2251949Z adding 'executorch/exir/backend/operator_support.py' 2025-06-05T23:55:25.2252953Z adding 'executorch/exir/backend/partitioner.py' 2025-06-05T23:55:25.2253821Z adding 'executorch/exir/backend/utils.py' 2025-06-05T23:55:25.2255081Z adding 'executorch/exir/backend/canonical_partitioners/all_node_partitioner.py' 2025-06-05T23:55:25.2256704Z adding 'executorch/exir/backend/canonical_partitioners/config_partitioner.py' 2025-06-05T23:55:25.2258414Z adding 'executorch/exir/backend/canonical_partitioners/duplicate_constant_node_pass.py' 2025-06-05T23:55:25.2260149Z adding 'executorch/exir/backend/canonical_partitioners/duplicate_dequant_node_pass.py' 2025-06-05T23:55:25.2261877Z adding 'executorch/exir/backend/canonical_partitioners/pattern_op_partitioner.py' 2025-06-05T23:55:25.2263363Z adding 'executorch/exir/backend/test/backend_with_compiler_demo.py' 2025-06-05T23:55:25.2264821Z adding 'executorch/exir/backend/test/backend_with_delegate_mapping_demo.py' 2025-06-05T23:55:25.2266238Z adding 'executorch/exir/backend/test/backend_with_named_data_map.py' 2025-06-05T23:55:25.2797604Z adding 'executorch/exir/backend/test/backend_with_preprocess_all_demo.py' 2025-06-05T23:55:25.2798894Z adding 'executorch/exir/backend/test/hta_partitioner_demo.py' 2025-06-05T23:55:25.2799606Z adding 'executorch/exir/backend/test/op_partitioner_demo.py' 2025-06-05T23:55:25.2800268Z adding 'executorch/exir/backend/test/qnn_backend_demo.py' 2025-06-05T23:55:25.2801015Z adding 'executorch/exir/backend/test/test_backend_with_named_data_map.py' 2025-06-05T23:55:25.2801748Z adding 'executorch/exir/backend/test/test_backends.py' 2025-06-05T23:55:25.2802403Z adding 'executorch/exir/backend/test/test_backends_lifted.py' 2025-06-05T23:55:25.2803250Z adding 'executorch/exir/backend/test/test_backends_nested.py' 2025-06-05T23:55:25.2803937Z adding 'executorch/exir/backend/test/test_compatibility.py' 2025-06-05T23:55:25.2804612Z adding 'executorch/exir/backend/test/test_debug_handle_map.py' 2025-06-05T23:55:25.2805551Z adding 'executorch/exir/backend/test/test_delegate_map_builder.py' 2025-06-05T23:55:25.2806278Z adding 'executorch/exir/backend/test/test_graph_partition.py' 2025-06-05T23:55:25.2807162Z adding 'executorch/exir/backend/test/test_lowered_backend_module.py' 2025-06-05T23:55:25.2807882Z adding 'executorch/exir/backend/test/test_partitioner.py' 2025-06-05T23:55:25.2808512Z adding 'executorch/exir/backend/test/test_passes.py' 2025-06-05T23:55:25.2809193Z adding 'executorch/exir/backend/test/test_to_backend_multi_method.py' 2025-06-05T23:55:25.2810030Z adding 'executorch/exir/backend/test/test_utils.py' 2025-06-05T23:55:25.2810708Z adding 'executorch/exir/backend/test/demos/test_delegate_aten_mode.py' 2025-06-05T23:55:25.2811503Z adding 'executorch/exir/backend/test/demos/test_xnnpack_qnnpack.py' 2025-06-05T23:55:25.2812524Z adding 'executorch/exir/backend/test/demos/rpc/executor_backend_partitioner.py' 2025-06-05T23:55:25.2813471Z adding 'executorch/exir/backend/test/demos/rpc/executor_backend_preprocess.py' 2025-06-05T23:55:25.2814276Z adding 'executorch/exir/backend/test/demos/rpc/test_rpc.py' 2025-06-05T23:55:25.2814991Z adding 'executorch/exir/capture/__init__.py' 2025-06-05T23:55:25.2815511Z adding 'executorch/exir/capture/_capture.py' 2025-06-05T23:55:25.2816017Z adding 'executorch/exir/capture/_config.py' 2025-06-05T23:55:25.2816526Z adding 'executorch/exir/capture/_unlift.py' 2025-06-05T23:55:25.2817031Z adding 'executorch/exir/dialects/__init__.py' 2025-06-05T23:55:25.2817551Z adding 'executorch/exir/dialects/_ops.py' 2025-06-05T23:55:25.2818101Z adding 'executorch/exir/dialects/backend/_ops.py' 2025-06-05T23:55:25.2818833Z adding 'executorch/exir/dialects/backend/test/test_backend_ops.py' 2025-06-05T23:55:25.2819477Z adding 'executorch/exir/dialects/edge/_ops.py' 2025-06-05T23:55:25.2820054Z adding 'executorch/exir/dialects/edge/edge.yaml' 2025-06-05T23:55:25.2820681Z adding 'executorch/exir/dialects/edge/arg/model.py' 2025-06-05T23:55:25.2821258Z adding 'executorch/exir/dialects/edge/arg/type.py' 2025-06-05T23:55:25.2821832Z adding 'executorch/exir/dialects/edge/dtype/runner.py' 2025-06-05T23:55:25.2822470Z adding 'executorch/exir/dialects/edge/dtype/supported.py' 2025-06-05T23:55:25.2823091Z adding 'executorch/exir/dialects/edge/dtype/utils.py' 2025-06-05T23:55:25.2823666Z adding 'executorch/exir/dialects/edge/op/api.py' 2025-06-05T23:55:25.2824268Z adding 'executorch/exir/dialects/edge/op/sample_input.py' 2025-06-05T23:55:25.2824960Z adding 'executorch/exir/dialects/edge/op/test/test_api.py' 2025-06-05T23:55:25.2825637Z adding 'executorch/exir/dialects/edge/spec/gen.py' 2025-06-05T23:55:25.2826210Z adding 'executorch/exir/dialects/edge/spec/utils.py' 2025-06-05T23:55:25.2826824Z adding 'executorch/exir/dialects/edge/test/test_edge_ops.py' 2025-06-05T23:55:25.2827508Z adding 'executorch/exir/dialects/edge/test/test_edge_yaml.py' 2025-06-05T23:55:25.2828303Z adding 'executorch/exir/dialects/test/test_exir_dialect_ops.py' 2025-06-05T23:55:25.2828927Z adding 'executorch/exir/emit/__init__.py' 2025-06-05T23:55:25.2829425Z adding 'executorch/exir/emit/_emit_program.py' 2025-06-05T23:55:25.2829945Z adding 'executorch/exir/emit/_emitter.py' 2025-06-05T23:55:25.2830450Z adding 'executorch/exir/emit/test/test_emit.py' 2025-06-05T23:55:25.2830984Z adding 'executorch/exir/operator/convert.py' 2025-06-05T23:55:25.2831479Z adding 'executorch/exir/operator/manip.py' 2025-06-05T23:55:25.2831973Z adding 'executorch/exir/operator/util.py' 2025-06-05T23:55:25.2832517Z adding 'executorch/exir/operator/test/test_operator.py' 2025-06-05T23:55:25.2833075Z adding 'executorch/exir/passes/__init__.py' 2025-06-05T23:55:25.2833708Z adding 'executorch/exir/passes/_quant_patterns_and_replacements.py' 2025-06-05T23:55:25.2834377Z adding 'executorch/exir/passes/const_prop_pass.py' 2025-06-05T23:55:25.2834964Z adding 'executorch/exir/passes/constant_prop_pass.py' 2025-06-05T23:55:25.2835598Z adding 'executorch/exir/passes/debug_handle_generator_pass.py' 2025-06-05T23:55:25.2836395Z adding 'executorch/exir/passes/dim_order_ops_registry.py' 2025-06-05T23:55:25.2837088Z adding 'executorch/exir/passes/dynamic_shape_prop_pass.py' 2025-06-05T23:55:25.2837834Z adding 'executorch/exir/passes/executorch_prim_ops_registry.py' 2025-06-05T23:55:25.2838530Z adding 'executorch/exir/passes/external_constants_pass.py' 2025-06-05T23:55:25.2839149Z adding 'executorch/exir/passes/init_mutable_pass.py' 2025-06-05T23:55:25.2839843Z adding 'executorch/exir/passes/insert_write_back_for_buffers_pass.py' 2025-06-05T23:55:25.2840558Z adding 'executorch/exir/passes/memory_format_ops_pass.py' 2025-06-05T23:55:25.2841202Z adding 'executorch/exir/passes/memory_planning_pass.py' 2025-06-05T23:55:25.2841834Z adding 'executorch/exir/passes/normalize_transpose_pass.py' 2025-06-05T23:55:25.2842531Z adding 'executorch/exir/passes/normalize_view_copy_base_pass.py' 2025-06-05T23:55:25.2843167Z adding 'executorch/exir/passes/pass_registry.py' 2025-06-05T23:55:25.2843784Z adding 'executorch/exir/passes/prune_empty_tensors_pass.py' 2025-06-05T23:55:25.2844401Z adding 'executorch/exir/passes/quant_fusion_pass.py' 2025-06-05T23:55:25.2844980Z adding 'executorch/exir/passes/quantize_io_pass.py' 2025-06-05T23:55:25.2845596Z adding 'executorch/exir/passes/remove_graph_asserts_pass.py' 2025-06-05T23:55:25.2846298Z adding 'executorch/exir/passes/remove_mixed_type_operators.py' 2025-06-05T23:55:25.2846933Z adding 'executorch/exir/passes/remove_noop_pass.py' 2025-06-05T23:55:25.2847571Z adding 'executorch/exir/passes/remove_unused_parameters_pass.py' 2025-06-05T23:55:25.2848309Z adding 'executorch/exir/passes/replace_aten_with_edge_pass.py' 2025-06-05T23:55:25.2849082Z adding 'executorch/exir/passes/replace_broken_ops_with_function_ops_pass.py' 2025-06-05T23:55:25.2849912Z adding 'executorch/exir/passes/replace_edge_with_backend_pass.py' 2025-06-05T23:55:25.2850605Z adding 'executorch/exir/passes/replace_sym_size_op_pass.py' 2025-06-05T23:55:25.2851319Z adding 'executorch/exir/passes/replace_view_copy_with_view_pass.py' 2025-06-05T23:55:25.2852009Z adding 'executorch/exir/passes/scalar_to_tensor_pass.py' 2025-06-05T23:55:25.2852593Z adding 'executorch/exir/passes/spec_prop_pass.py' 2025-06-05T23:55:25.2853182Z adding 'executorch/exir/passes/sym_shape_eval_pass.py' 2025-06-05T23:55:25.2853769Z adding 'executorch/exir/passes/sym_to_tensor_pass.py' 2025-06-05T23:55:25.2854387Z adding 'executorch/exir/passes/weights_to_outputs_pass.py' 2025-06-05T23:55:25.2854966Z adding 'executorch/exir/program/__init__.py' 2025-06-05T23:55:25.2855500Z adding 'executorch/exir/program/_fake_program.py' 2025-06-05T23:55:25.2856026Z adding 'executorch/exir/program/_program.py' 2025-06-05T23:55:25.2856566Z adding 'executorch/exir/program/test/__init__.py' 2025-06-05T23:55:25.2857152Z adding 'executorch/exir/program/test/test_fake_program.py' 2025-06-05T23:55:25.2857774Z adding 'executorch/exir/program/test/test_program.py' 2025-06-05T23:55:25.2858308Z adding 'executorch/exir/serde/__init__.py' 2025-06-05T23:55:25.2858829Z adding 'executorch/exir/serde/export_serialize.py' 2025-06-05T23:55:25.2859340Z adding 'executorch/exir/serde/schema.py' 2025-06-05T23:55:25.2859844Z adding 'executorch/exir/serde/schema_check.py' 2025-06-05T23:55:25.2860351Z adding 'executorch/exir/serde/serialize.py' 2025-06-05T23:55:25.2860839Z adding 'executorch/exir/serde/union.py' 2025-06-05T23:55:25.2861316Z adding 'executorch/exir/tests/asr_joiner.py' 2025-06-05T23:55:25.2861813Z adding 'executorch/exir/tests/common.py' 2025-06-05T23:55:25.2862330Z adding 'executorch/exir/tests/control_flow_models.py' 2025-06-05T23:55:25.2862919Z adding 'executorch/exir/tests/dynamic_shape_models.py' 2025-06-05T23:55:25.2863452Z adding 'executorch/exir/tests/models.py' 2025-06-05T23:55:25.2863978Z adding 'executorch/exir/tests/test_arg_validator.py' 2025-06-05T23:55:25.2864516Z adding 'executorch/exir/tests/test_capture.py' 2025-06-05T23:55:25.2865156Z adding 'executorch/exir/tests/test_common.py' 2025-06-05T23:55:25.2865669Z adding 'executorch/exir/tests/test_delegate.py' 2025-06-05T23:55:25.2866233Z adding 'executorch/exir/tests/test_dim_order_utils.py' 2025-06-05T23:55:25.2866979Z adding 'executorch/exir/tests/test_dynamic_shape_propagation.py' 2025-06-05T23:55:25.2867597Z adding 'executorch/exir/tests/test_error.py' 2025-06-05T23:55:25.2868234Z adding 'executorch/exir/tests/test_joint_graph.py' 2025-06-05T23:55:25.2868844Z adding 'executorch/exir/tests/test_memory_format_ops_pass.py' 2025-06-05T23:55:25.2869565Z adding 'executorch/exir/tests/test_memory_format_ops_pass_aten.py' 2025-06-05T23:55:25.2870315Z adding 'executorch/exir/tests/test_memory_format_ops_pass_utils.py' 2025-06-05T23:55:25.2871005Z adding 'executorch/exir/tests/test_memory_planning.py' 2025-06-05T23:55:25.2871571Z adding 'executorch/exir/tests/test_op_convert.py' 2025-06-05T23:55:25.2872122Z adding 'executorch/exir/tests/test_pass_infra.py' 2025-06-05T23:55:25.2872652Z adding 'executorch/exir/tests/test_passes.py' 2025-06-05T23:55:25.2873204Z adding 'executorch/exir/tests/test_print_program.py' 2025-06-05T23:55:25.2873830Z adding 'executorch/exir/tests/test_prune_empty_tensors_pass.py' 2025-06-05T23:55:25.2874506Z adding 'executorch/exir/tests/test_quant_fusion_pass.py' 2025-06-05T23:55:25.2875092Z adding 'executorch/exir/tests/test_quantization.py' 2025-06-05T23:55:25.2875683Z adding 'executorch/exir/tests/test_quantize_io_pass.py' 2025-06-05T23:55:25.2876360Z adding 'executorch/exir/tests/test_remove_unused_parameters_pass.py' 2025-06-05T23:55:25.2877060Z adding 'executorch/exir/tests/test_remove_view_copy.py' 2025-06-05T23:55:25.2877607Z adding 'executorch/exir/tests/test_serde.py' 2025-06-05T23:55:25.2878122Z adding 'executorch/exir/tests/test_tensor.py' 2025-06-05T23:55:25.2878624Z adding 'executorch/exir/tests/test_tracer.py' 2025-06-05T23:55:25.2879170Z adding 'executorch/exir/tests/test_verification.py' 2025-06-05T23:55:25.2879712Z adding 'executorch/exir/tests/test_warnings.py' 2025-06-05T23:55:25.2880243Z adding 'executorch/exir/tests/transformer.py' 2025-06-05T23:55:25.2880796Z adding 'executorch/exir/verification/arg_validator.py' 2025-06-05T23:55:25.2881377Z adding 'executorch/exir/verification/dev_html.py' 2025-06-05T23:55:25.2881938Z adding 'executorch/exir/verification/interpreter.py' 2025-06-05T23:55:25.2882509Z adding 'executorch/exir/verification/verifier.py' 2025-06-05T23:55:25.2883103Z adding 'executorch/exir/verification/test/test_verifier.py' 2025-06-05T23:55:25.2883735Z adding 'executorch/extension/export_util/__init__.py' 2025-06-05T23:55:25.2884295Z adding 'executorch/extension/export_util/utils.py' 2025-06-05T23:55:25.2884857Z adding 'executorch/extension/flat_tensor/__init__.py' 2025-06-05T23:55:25.2885733Z adding 'executorch/extension/flat_tensor/serialize/__init__.py' 2025-06-05T23:55:25.2886464Z adding 'executorch/extension/flat_tensor/serialize/flat_tensor.fbs' 2025-06-05T23:55:25.2887278Z adding 'executorch/extension/flat_tensor/serialize/flat_tensor_schema.py' 2025-06-05T23:55:26.0143871Z adding 'executorch/extension/flat_tensor/serialize/scalar_type.fbs' 2025-06-05T23:55:26.0145358Z adding 'executorch/extension/flat_tensor/serialize/serialize.py' 2025-06-05T23:55:26.0146628Z adding 'executorch/extension/flat_tensor/test/test_serialize.py' 2025-06-05T23:55:26.0147782Z adding 'executorch/extension/gguf_util/convert_main.py' 2025-06-05T23:55:26.0148911Z adding 'executorch/extension/gguf_util/converter.py' 2025-06-05T23:55:26.0149890Z adding 'executorch/extension/gguf_util/load_gguf.py' 2025-06-05T23:55:26.0151081Z adding 'executorch/extension/gguf_util/converters/llama_converter.py' 2025-06-05T23:55:26.0152364Z adding 'executorch/extension/llm/custom_ops/__init__.py' 2025-06-05T23:55:26.0153444Z adding 'executorch/extension/llm/custom_ops/custom_ops.py' 2025-06-05T23:55:26.0154711Z adding 'executorch/extension/llm/custom_ops/libcustom_ops_aot_lib.so' 2025-06-05T23:55:26.0156243Z adding 'executorch/extension/llm/custom_ops/model_sharding.py' 2025-06-05T23:55:26.0157483Z adding 'executorch/extension/llm/custom_ops/op_tile_crop_aot.py' 2025-06-05T23:55:26.0159008Z adding 'executorch/extension/llm/custom_ops/preprocess_custom_ops.py' 2025-06-05T23:55:26.0160451Z adding 'executorch/extension/llm/custom_ops/test_preprocess_custom_ops.py' 2025-06-05T23:55:26.0161841Z adding 'executorch/extension/llm/custom_ops/test_quantized_sdpa.py' 2025-06-05T23:55:26.0163210Z adding 'executorch/extension/llm/custom_ops/test_sdpa_with_kv_cache.py' 2025-06-05T23:55:26.0164510Z adding 'executorch/extension/llm/custom_ops/test_update_cache.py' 2025-06-05T23:55:26.0166001Z adding 'executorch/extension/llm/custom_ops/spinquant/special_hadamard_code_gen.py' 2025-06-05T23:55:26.0167645Z adding 'executorch/extension/llm/custom_ops/spinquant/third-party/FFHT/example.py' 2025-06-05T23:55:26.0169259Z adding 'executorch/extension/llm/custom_ops/spinquant/third-party/FFHT/gen.py' 2025-06-05T23:55:26.0170554Z adding 'executorch/extension/llm/export/__init__.py' 2025-06-05T23:55:26.0171514Z adding 'executorch/extension/llm/export/builder.py' 2025-06-05T23:55:26.0172546Z adding 'executorch/extension/llm/export/export_passes.py' 2025-06-05T23:55:26.0173686Z adding 'executorch/extension/llm/export/partitioner_lib.py' 2025-06-05T23:55:26.0174803Z adding 'executorch/extension/llm/export/quantizer_lib.py' 2025-06-05T23:55:26.0175968Z adding 'executorch/extension/llm/export/test_export_passes.py' 2025-06-05T23:55:26.0177133Z adding 'executorch/extension/llm/export/test/__init__.py' 2025-06-05T23:55:26.0178264Z adding 'executorch/extension/llm/export/test/test_builder.py' 2025-06-05T23:55:26.0179369Z adding 'executorch/extension/llm/modules/__init__.py' 2025-06-05T23:55:26.0180529Z adding 'executorch/extension/llm/modules/_position_embeddings.py' 2025-06-05T23:55:26.0181675Z adding 'executorch/extension/llm/modules/attention.py' 2025-06-05T23:55:26.0182732Z adding 'executorch/extension/llm/modules/kv_cache.py' 2025-06-05T23:55:26.0183808Z adding 'executorch/extension/llm/modules/test/__init__.py' 2025-06-05T23:55:26.0185039Z adding 'executorch/extension/llm/modules/test/test_attention.py' 2025-06-05T23:55:26.0186550Z adding 'executorch/extension/llm/modules/test/test_kv_cache.py' 2025-06-05T23:55:26.0187972Z adding 'executorch/extension/llm/modules/test/test_position_embeddings.py' 2025-06-05T23:55:26.0189253Z adding 'executorch/extension/llm/tokenizers/setup.py' 2025-06-05T23:55:26.0190681Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/__init__.py' 2025-06-05T23:55:26.0192445Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/constants.py' 2025-06-05T23:55:26.0194309Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/hf_tokenizer.py' 2025-06-05T23:55:26.0196153Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/llama2c.py' 2025-06-05T23:55:26.0197970Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tiktoken.py' 2025-06-05T23:55:26.0199849Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/__init__.py' 2025-06-05T23:55:26.0201891Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/llama2c/__init__.py' 2025-06-05T23:55:26.0204030Z adding 'executorch/extension/llm/tokenizers/build/lib/pytorch_tokenizers/tools/llama2c/convert.py' 2025-06-05T23:55:26.0205869Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/__init__.py' 2025-06-05T23:55:26.0207408Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/constants.py' 2025-06-05T23:55:26.0209001Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/hf_tokenizer.py' 2025-06-05T23:55:26.0210553Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/llama2c.py' 2025-06-05T23:55:26.0212121Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/tiktoken.py' 2025-06-05T23:55:26.0214024Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/__init__.py' 2025-06-05T23:55:26.0215759Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/llama2c/__init__.py' 2025-06-05T23:55:26.0217814Z adding 'executorch/extension/llm/tokenizers/pytorch_tokenizers/tools/llama2c/convert.py' 2025-06-05T23:55:26.0219403Z adding 'executorch/extension/llm/tokenizers/test/test_tiktoken.py' 2025-06-05T23:55:26.0220855Z adding 'executorch/extension/llm/tokenizers/third-party/abseil-cpp/conanfile.py' 2025-06-05T23:55:26.0222546Z adding 'executorch/extension/llm/tokenizers/third-party/abseil-cpp/create_lts.py' 2025-06-05T23:55:26.0224405Z adding 'executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/abseil.podspec.gen.py' 2025-06-05T23:55:26.0226311Z adding 'executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/copts/copts.py' 2025-06-05T23:55:26.0228333Z adding 'executorch/extension/llm/tokenizers/third-party/abseil-cpp/absl/copts/generate_copts.py' 2025-06-05T23:55:26.0230436Z adding 'executorch/extension/llm/tokenizers/third-party/json/docs/mkdocs/scripts/check_structure.py' 2025-06-05T23:55:26.0232533Z adding 'executorch/extension/llm/tokenizers/third-party/json/tests/thirdparty/imapdl/filterbr.py' 2025-06-05T23:55:26.0234562Z adding 'executorch/extension/llm/tokenizers/third-party/json/tools/amalgamate/amalgamate.py' 2025-06-05T23:55:26.0236662Z adding 'executorch/extension/llm/tokenizers/third-party/json/tools/gdb_pretty_printer/nlohmann-json.py' 2025-06-05T23:55:26.0238877Z adding 'executorch/extension/llm/tokenizers/third-party/json/tools/generate_natvis/generate_natvis.py' 2025-06-05T23:55:26.0240994Z adding 'executorch/extension/llm/tokenizers/third-party/json/tools/serve_header/serve_header.py' 2025-06-05T23:55:26.0242904Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateCommon.py' 2025-06-05T23:55:26.0244726Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateTest.py' 2025-06-05T23:55:26.0246486Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateUcd.py' 2025-06-05T23:55:26.0248339Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateUcpHeader.py' 2025-06-05T23:55:26.0250266Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/GenerateUcpTables.py' 2025-06-05T23:55:26.0252124Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/UpdateCommon.py' 2025-06-05T23:55:26.0253900Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/UpdateDates.py' 2025-06-05T23:55:26.0255668Z adding 'executorch/extension/llm/tokenizers/third-party/pcre2/maint/UpdateRelease.py' 2025-06-05T23:55:26.0257434Z adding 'executorch/extension/llm/tokenizers/third-party/re2/benchlog/benchplot.py' 2025-06-05T23:55:26.0259067Z adding 'executorch/extension/llm/tokenizers/third-party/re2/python/re2.py' 2025-06-05T23:55:26.0260652Z adding 'executorch/extension/llm/tokenizers/third-party/re2/python/re2_test.py' 2025-06-05T23:55:26.0262279Z adding 'executorch/extension/llm/tokenizers/third-party/re2/python/setup.py' 2025-06-05T23:55:26.0264017Z adding 'executorch/extension/llm/tokenizers/third-party/re2/python/toolchains/generate.py' 2025-06-05T23:55:26.0265942Z adding 'executorch/extension/llm/tokenizers/third-party/re2/re2/make_unicode_casefold.py' 2025-06-05T23:55:26.0267791Z adding 'executorch/extension/llm/tokenizers/third-party/re2/re2/make_unicode_groups.py' 2025-06-05T23:55:26.0269551Z adding 'executorch/extension/llm/tokenizers/third-party/re2/re2/unicode.py' 2025-06-05T23:55:26.0271216Z adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/setup.py' 2025-06-05T23:55:26.0273272Z adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece/__init__.py' 2025-06-05T23:55:26.0275611Z adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece/_version.py' 2025-06-05T23:55:26.0278238Z adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece/sentencepiece_model_pb2.py' 2025-06-05T23:55:26.0281100Z adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/src/sentencepiece/sentencepiece_pb2.py' 2025-06-05T23:55:26.0283468Z adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/test/__init__.py' 2025-06-05T23:55:26.0285732Z adding 'executorch/extension/llm/tokenizers/third-party/sentencepiece/python/test/sentencepiece_test.py' 2025-06-05T23:55:26.0287614Z adding 'executorch/extension/module/test/resources/gen_bundled_program.py' 2025-06-05T23:55:26.0289220Z adding 'executorch/extension/pybindings/_portable_lib.cpython-310-x86_64-linux-gnu.so' 2025-06-05T23:55:26.0290653Z adding 'executorch/extension/pybindings/portable_lib.py' 2025-06-05T23:55:26.0291711Z adding 'executorch/extension/pybindings/pybindings.pyi' 2025-06-05T23:55:26.0292832Z adding 'executorch/extension/pybindings/test/make_test.py' 2025-06-05T23:55:26.0294126Z adding 'executorch/extension/pybindings/test/test_backend_pybinding.py' 2025-06-05T23:55:26.0295497Z adding 'executorch/extension/pybindings/test/test_pybindings.py' 2025-06-05T23:55:26.0296571Z adding 'executorch/extension/pytree/__init__.py' 2025-06-05T23:55:26.0297527Z adding 'executorch/extension/pytree/test/test.py' 2025-06-05T23:55:26.0298457Z adding 'executorch/extension/training/__init__.py' 2025-06-05T23:55:26.0299630Z adding 'executorch/extension/training/examples/XOR/export_model.py' 2025-06-05T23:55:26.0300898Z adding 'executorch/extension/training/examples/XOR/model.py' 2025-06-05T23:55:26.0302162Z adding 'executorch/extension/training/examples/XOR/test/test_export.py' 2025-06-05T23:55:26.0303516Z adding 'executorch/extension/training/pybindings/_training_lib.pyi' 2025-06-05T23:55:26.0304877Z adding 'executorch/extension/training/pybindings/_training_module.py' 2025-06-05T23:55:26.0306186Z adding 'executorch/extension/training/pybindings/test/test.py' 2025-06-05T23:55:26.7368756Z adding 'executorch/include/executorch/extension/kernel_util/make_boxed_from_unboxed_functor.h' 2025-06-05T23:55:26.7370015Z adding 'executorch/include/executorch/extension/kernel_util/meta_programming.h' 2025-06-05T23:55:26.7371026Z adding 'executorch/include/executorch/extension/kernel_util/type_list.h' 2025-06-05T23:55:26.7371884Z adding 'executorch/include/executorch/extension/tensor/tensor.h' 2025-06-05T23:55:26.7372751Z adding 'executorch/include/executorch/extension/tensor/tensor_accessor.h' 2025-06-05T23:55:26.7373695Z adding 'executorch/include/executorch/extension/tensor/tensor_ptr.h' 2025-06-05T23:55:26.7374594Z adding 'executorch/include/executorch/extension/tensor/tensor_ptr_maker.h' 2025-06-05T23:55:26.7375534Z adding 'executorch/include/executorch/extension/threadpool/cpuinfo_utils.h' 2025-06-05T23:55:26.7376473Z adding 'executorch/include/executorch/extension/threadpool/threadpool.h' 2025-06-05T23:55:26.7377422Z adding 'executorch/include/executorch/extension/threadpool/threadpool_guard.h' 2025-06-05T23:55:26.7378390Z adding 'executorch/include/executorch/runtime/core/array_ref.h' 2025-06-05T23:55:26.7379224Z adding 'executorch/include/executorch/runtime/core/data_loader.h' 2025-06-05T23:55:26.7380005Z adding 'executorch/include/executorch/runtime/core/defines.h' 2025-06-05T23:55:26.7380750Z adding 'executorch/include/executorch/runtime/core/error.h' 2025-06-05T23:55:26.7381479Z adding 'executorch/include/executorch/runtime/core/evalue.h' 2025-06-05T23:55:26.7382268Z adding 'executorch/include/executorch/runtime/core/event_tracer.h' 2025-06-05T23:55:26.7383121Z adding 'executorch/include/executorch/runtime/core/event_tracer_hooks.h' 2025-06-05T23:55:26.7384090Z adding 'executorch/include/executorch/runtime/core/event_tracer_hooks_delegate.h' 2025-06-05T23:55:26.7385016Z adding 'executorch/include/executorch/runtime/core/freeable_buffer.h' 2025-06-05T23:55:26.7386311Z adding 'executorch/include/executorch/runtime/core/function_ref.h' 2025-06-05T23:55:26.7387539Z adding 'executorch/include/executorch/runtime/core/hierarchical_allocator.h' 2025-06-05T23:55:26.7388596Z adding 'executorch/include/executorch/runtime/core/memory_allocator.h' 2025-06-05T23:55:26.7389571Z adding 'executorch/include/executorch/runtime/core/named_data_map.h' 2025-06-05T23:55:26.7390371Z adding 'executorch/include/executorch/runtime/core/result.h' 2025-06-05T23:55:26.7391095Z adding 'executorch/include/executorch/runtime/core/span.h' 2025-06-05T23:55:26.7391808Z adding 'executorch/include/executorch/runtime/core/tag.h' 2025-06-05T23:55:26.7392569Z adding 'executorch/include/executorch/runtime/core/tensor_layout.h' 2025-06-05T23:55:26.7393464Z adding 'executorch/include/executorch/runtime/core/tensor_shape_dynamism.h' 2025-06-05T23:55:26.7394392Z adding 'executorch/include/executorch/runtime/core/exec_aten/exec_aten.h' 2025-06-05T23:55:26.7395500Z adding 'executorch/include/executorch/runtime/core/exec_aten/testing_util/tensor_factory.h' 2025-06-05T23:55:26.7396636Z adding 'executorch/include/executorch/runtime/core/exec_aten/testing_util/tensor_util.h' 2025-06-05T23:55:26.7397781Z adding 'executorch/include/executorch/runtime/core/exec_aten/util/dim_order_util.h' 2025-06-05T23:55:26.7398846Z adding 'executorch/include/executorch/runtime/core/exec_aten/util/scalar_type_util.h' 2025-06-05T23:55:26.7400026Z adding 'executorch/include/executorch/runtime/core/exec_aten/util/tensor_dimension_limit.h' 2025-06-05T23:55:26.7401196Z adding 'executorch/include/executorch/runtime/core/exec_aten/util/tensor_shape_to_c_string.h' 2025-06-05T23:55:26.7402357Z adding 'executorch/include/executorch/runtime/core/exec_aten/util/tensor_util.h' 2025-06-05T23:55:26.7403348Z adding 'executorch/include/executorch/runtime/core/portable_type/bfloat16.h' 2025-06-05T23:55:26.7404365Z adding 'executorch/include/executorch/runtime/core/portable_type/bfloat16_math.h' 2025-06-05T23:55:26.7405389Z adding 'executorch/include/executorch/runtime/core/portable_type/bits_types.h' 2025-06-05T23:55:26.7406410Z adding 'executorch/include/executorch/runtime/core/portable_type/complex.h' 2025-06-05T23:55:26.7407346Z adding 'executorch/include/executorch/runtime/core/portable_type/device.h' 2025-06-05T23:55:26.7408221Z adding 'executorch/include/executorch/runtime/core/portable_type/half.h' 2025-06-05T23:55:26.7409144Z adding 'executorch/include/executorch/runtime/core/portable_type/optional.h' 2025-06-05T23:55:26.7410061Z adding 'executorch/include/executorch/runtime/core/portable_type/qint_types.h' 2025-06-05T23:55:26.7411014Z adding 'executorch/include/executorch/runtime/core/portable_type/scalar.h' 2025-06-05T23:55:26.7411929Z adding 'executorch/include/executorch/runtime/core/portable_type/scalar_type.h' 2025-06-05T23:55:26.7412863Z adding 'executorch/include/executorch/runtime/core/portable_type/string_view.h' 2025-06-05T23:55:26.7413776Z adding 'executorch/include/executorch/runtime/core/portable_type/tensor.h' 2025-06-05T23:55:26.7414735Z adding 'executorch/include/executorch/runtime/core/portable_type/tensor_impl.h' 2025-06-05T23:55:26.7415708Z adding 'executorch/include/executorch/runtime/core/portable_type/tensor_options.h' 2025-06-05T23:55:26.7416729Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/macros/Export.h' 2025-06-05T23:55:26.7417800Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/macros/Macros.h' 2025-06-05T23:55:26.7418891Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16-inl.h' 2025-06-05T23:55:26.7420021Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16-math.h' 2025-06-05T23:55:26.7421115Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16.h' 2025-06-05T23:55:26.7422246Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/Half-inl.h' 2025-06-05T23:55:26.7423270Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/Half.h' 2025-06-05T23:55:26.7424497Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/TypeSafeSignMath.h' 2025-06-05T23:55:26.7425615Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/bit_cast.h' 2025-06-05T23:55:26.7426767Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/complex.h' 2025-06-05T23:55:26.7427920Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/complex_math.h' 2025-06-05T23:55:26.7429056Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/complex_utils.h' 2025-06-05T23:55:26.7430239Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/floating_point_utils.h' 2025-06-05T23:55:26.7431389Z adding 'executorch/include/executorch/runtime/core/portable_type/c10/c10/util/irange.h' 2025-06-05T23:55:26.7432328Z adding 'executorch/include/executorch/runtime/kernel/kernel_includes.h' 2025-06-05T23:55:26.7433219Z adding 'executorch/include/executorch/runtime/kernel/kernel_runtime_context.h' 2025-06-05T23:55:26.7434115Z adding 'executorch/include/executorch/runtime/kernel/operator_registry.h' 2025-06-05T23:55:26.7435106Z adding 'executorch/include/executorch/runtime/kernel/thread_parallel_interface.h' 2025-06-05T23:55:26.7435994Z adding 'executorch/include/executorch/runtime/kernel/test/test_util.h' 2025-06-05T23:55:26.7436776Z adding 'executorch/include/executorch/runtime/platform/abort.h' 2025-06-05T23:55:26.7437499Z adding 'executorch/include/executorch/runtime/platform/assert.h' 2025-06-05T23:55:26.7438238Z adding 'executorch/include/executorch/runtime/platform/clock.h' 2025-06-05T23:55:26.7439007Z adding 'executorch/include/executorch/runtime/platform/compat_unistd.h' 2025-06-05T23:55:26.7439818Z adding 'executorch/include/executorch/runtime/platform/compiler.h' 2025-06-05T23:55:26.7440544Z adding 'executorch/include/executorch/runtime/platform/log.h' 2025-06-05T23:55:26.7441280Z adding 'executorch/include/executorch/runtime/platform/platform.h' 2025-06-05T23:55:26.7442040Z adding 'executorch/include/executorch/runtime/platform/profiler.h' 2025-06-05T23:55:26.7442798Z adding 'executorch/include/executorch/runtime/platform/runtime.h' 2025-06-05T23:55:26.7443540Z adding 'executorch/include/executorch/runtime/platform/system.h' 2025-06-05T23:55:26.7444273Z adding 'executorch/include/executorch/runtime/platform/types.h' 2025-06-05T23:55:26.7445032Z adding 'executorch/include/executorch/runtime/platform/test/pal_spy.h' 2025-06-05T23:55:26.7445896Z adding 'executorch/include/executorch/runtime/platform/test/stub_platform.h' 2025-06-05T23:55:26.7446621Z adding 'executorch/kernels/quantized/__init__.py' 2025-06-05T23:55:26.7447276Z adding 'executorch/kernels/quantized/libquantized_ops_aot_lib.so' 2025-06-05T23:55:26.7447944Z adding 'executorch/kernels/quantized/quantized.yaml' 2025-06-05T23:55:26.7448646Z adding 'executorch/kernels/quantized/test/supported_features_def.yaml' 2025-06-05T23:55:26.7449413Z adding 'executorch/kernels/quantized/test/test_out_variants.py' 2025-06-05T23:55:26.7450206Z adding 'executorch/kernels/quantized/test/test_quant_dequant_per_token.py' 2025-06-05T23:55:26.7450880Z adding 'executorch/runtime/__init__.py' 2025-06-05T23:55:26.7451432Z adding 'executorch/runtime/kernel/test/functions.yaml' 2025-06-05T23:55:26.7452008Z adding 'executorch/runtime/test/test_runtime.py' 2025-06-05T23:55:26.7452528Z adding 'executorch/schema/program.fbs' 2025-06-05T23:55:26.7453000Z adding 'executorch/schema/scalar_type.fbs' 2025-06-05T23:55:26.7453557Z adding 'executorch/share/cmake/executorch-config.cmake' 2025-06-05T23:55:26.7454187Z adding 'executorch/util/activation_memory_profiler.py' 2025-06-05T23:55:26.7454725Z adding 'executorch/util/collect_env.py' 2025-06-05T23:55:26.7455226Z adding 'executorch/util/python_profiler.py' 2025-06-05T23:55:26.7455822Z adding 'executorch-0.7.0a0+bd57234.dist-info/licenses/LICENSE' 2025-06-05T23:55:26.7456495Z adding 'executorch-0.7.0a0+bd57234.dist-info/METADATA' 2025-06-05T23:55:26.7457186Z adding 'executorch-0.7.0a0+bd57234.dist-info/WHEEL' 2025-06-05T23:55:26.7457830Z adding 'executorch-0.7.0a0+bd57234.dist-info/entry_points.txt' 2025-06-05T23:55:26.7458586Z adding 'executorch-0.7.0a0+bd57234.dist-info/top_level.txt' 2025-06-05T23:55:26.7459231Z adding 'executorch-0.7.0a0+bd57234.dist-info/RECORD' 2025-06-05T23:55:26.7459772Z removing pip-out/bdist.linux-x86_64/wheel 2025-06-05T23:55:26.7460743Z Building wheel for executorch (pyproject.toml) ... [?25l[?25hdone 2025-06-05T23:55:26.7462258Z Created wheel for executorch: filename=executorch-0.7.0a0+bd57234-cp310-cp310-linux_x86_64.whl size=9987128 sha256=8230c9c8762a96b0dea03cccfe81d5e9e1546b95ab0839aebb7f6e78e363066b 2025-06-05T23:55:26.7464098Z Stored in directory: /tmp/pip-ephem-wheel-cache-yr3d152n/wheels/9e/f0/2b/6a778c77421b91e006bef425e288a1e5c7c35b04c51317756b 2025-06-05T23:55:26.7465097Z Successfully built executorch 2025-06-05T23:55:31.3786508Z Installing collected packages: flatbuffers, tabulate, pyaml, protobuf, execnet, pytest, cattrs, pytest-xdist, pytest-rerunfailures, coremltools, executorch 2025-06-05T23:55:31.3787961Z [?25l 2025-06-05T23:55:31.3788487Z  changing mode of /opt/conda/envs/py_3.10/bin/tabulate to 755 2025-06-05T23:55:31.3788935Z 2025-06-05T23:55:31.3789272Z  changing mode of /opt/conda/envs/py_3.10/bin/pyaml to 755 2025-06-05T23:55:31.3789683Z 2025-06-05T23:55:31.3790121Z  ━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  3/11 [protobuf] 2025-06-05T23:55:31.3790792Z  Attempting uninstall: pytest 2025-06-05T23:55:31.3791465Z ━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  3/11 [protobuf] 2025-06-05T23:55:31.3792152Z  Found existing installation: pytest 7.2.0 2025-06-05T23:55:31.3792877Z ━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  3/11 [protobuf] 2025-06-05T23:55:31.3793519Z  Uninstalling pytest-7.2.0: 2025-06-05T23:55:31.3794202Z ━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  3/11 [protobuf] 2025-06-05T23:55:31.3795026Z  ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:55:31.3795831Z  Removing file or directory /opt/conda/envs/py_3.10/bin/py.test 2025-06-05T23:55:31.3796657Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:55:31.3797425Z  Removing file or directory /opt/conda/envs/py_3.10/bin/pytest 2025-06-05T23:55:31.3798246Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:55:31.3799346Z  Removing file or directory /opt/conda/envs/py_3.10/lib/python3.10/site-packages/__pycache__/py.cpython-310.pyc 2025-06-05T23:55:31.3800461Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:55:31.3801397Z  Removing file or directory /opt/conda/envs/py_3.10/lib/python3.10/site-packages/_pytest/ 2025-06-05T23:55:31.3802384Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:55:31.3803326Z  Removing file or directory /opt/conda/envs/py_3.10/lib/python3.10/site-packages/py.py 2025-06-05T23:55:31.3804278Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:55:31.3805327Z  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:31.3806372Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:55:31.3807311Z  Removing file or directory /opt/conda/envs/py_3.10/lib/python3.10/site-packages/pytest/ 2025-06-05T23:55:31.3808265Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:55:31.3808933Z  Successfully uninstalled pytest-7.2.0 2025-06-05T23:55:31.3809881Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:55:31.3810695Z  ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:55:31.3811636Z  ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:55:31.3812410Z  changing mode of /opt/conda/envs/py_3.10/bin/py.test to 755 2025-06-05T23:55:31.3813194Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:55:31.3813952Z  changing mode of /opt/conda/envs/py_3.10/bin/pytest to 755 2025-06-05T23:55:31.3814758Z ━━━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━  5/11 [pytest] 2025-06-05T23:55:31.3815592Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:55:31.3816421Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:55:31.3817277Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:55:31.3818118Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:55:31.3818947Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:55:31.3819762Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:55:31.3820588Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:55:31.3821404Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:55:31.3822230Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━  9/11 [coremltools] 2025-06-05T23:55:31.3823123Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:31.3823934Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:31.3824802Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:31.3825617Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:31.3826416Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:31.3827224Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:31.3828133Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:31.3828945Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:31.3829789Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:31.3830616Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:31.3831426Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:31.3832222Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:33.1729703Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:33.1731287Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:33.1732806Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:33.1734174Z  changing mode of /opt/conda/envs/py_3.10/bin/flatc to 755 2025-06-05T23:55:33.1735706Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 10/11 [executorch] 2025-06-05T23:55:33.1737174Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 11/11 [executorch] 2025-06-05T23:55:33.1738182Z [?25h 2025-06-05T23:55:33.1741016Z 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:33.1743782Z + pip list 2025-06-05T23:55:33.1744537Z Package Version Build Editable project location 2025-06-05T23:55:33.1745776Z ----------------------------- ------------------ ----- ----------------------------------- 2025-06-05T23:55:33.1746822Z aiohappyeyeballs 2.6.1 2025-06-05T23:55:33.1747592Z aiohttp 3.12.9 2025-06-05T23:55:33.1748408Z aiosignal 1.3.2 2025-06-05T23:55:33.1749491Z alabaster 0.7.16 2025-06-05T23:55:33.1750271Z antlr4-python3-runtime 4.9.3 2025-06-05T23:55:33.1751046Z async-timeout 5.0.1 2025-06-05T23:55:33.1751781Z attrs 25.3.0 2025-06-05T23:55:33.1752668Z babel 2.17.0 2025-06-05T23:55:33.1753437Z beautifulsoup4 4.13.4 2025-06-05T23:55:33.1754173Z blobfile 3.0.0 2025-06-05T23:55:33.1754911Z breathe 4.34.0 2025-06-05T23:55:33.1755632Z bs4 0.0.2 2025-06-05T23:55:33.1756350Z cattrs 25.1.1 2025-06-05T23:55:33.1757081Z certifi 2025.4.26 2025-06-05T23:55:33.1757882Z charset-normalizer 3.4.2 2025-06-05T23:55:33.1758617Z cmake 3.31.6 2025-06-05T23:55:33.1759339Z contourpy 1.3.2 2025-06-05T23:55:33.1760066Z coremltools 8.3.0 2025-06-05T23:55:33.1760794Z coverage 7.8.2 2025-06-05T23:55:33.1761514Z cycler 0.12.1 2025-06-05T23:55:33.1762250Z datasets 3.6.0 2025-06-05T23:55:33.1762961Z dill 0.3.8 2025-06-05T23:55:33.1763667Z docutils 0.16 2025-06-05T23:55:33.1764431Z exceptiongroup 1.3.0 2025-06-05T23:55:33.1765171Z execnet 2.1.1 2025-06-05T23:55:33.1765958Z executorch 0.7.0a0+bd57234 2025-06-05T23:55:33.1766751Z exhale 0.2.3 2025-06-05T23:55:33.1767489Z expecttest 0.1.6 2025-06-05T23:55:33.1768214Z filelock 3.18.0 2025-06-05T23:55:33.1768972Z flatbuffers 25.2.10 2025-06-05T23:55:33.1769708Z fonttools 4.58.1 2025-06-05T23:55:33.1770457Z frozenlist 1.6.2 2025-06-05T23:55:33.1771179Z fsspec 2025.3.0 2025-06-05T23:55:33.1771938Z hf_transfer 0.1.9 2025-06-05T23:55:33.1772668Z hf-xet 1.1.3 2025-06-05T23:55:33.1773407Z huggingface-hub 0.32.4 2025-06-05T23:55:33.1774156Z hypothesis 6.84.2 2025-06-05T23:55:33.1774903Z idna 3.10 2025-06-05T23:55:33.1775603Z imagesize 1.4.1 2025-06-05T23:55:33.1776324Z iniconfig 2.1.0 2025-06-05T23:55:33.1777057Z Jinja2 3.1.6 2025-06-05T23:55:33.1777767Z kagglehub 0.3.12 2025-06-05T23:55:33.1778507Z kiwisolver 1.4.8 2025-06-05T23:55:33.1779225Z lxml 5.4.0 2025-06-05T23:55:33.1779957Z markdown-it-py 2.2.0 2025-06-05T23:55:33.1780697Z MarkupSafe 3.0.2 2025-06-05T23:55:33.1781455Z matplotlib 3.10.3 2025-06-05T23:55:33.1782209Z mdit-py-plugins 0.3.5 2025-06-05T23:55:33.1782949Z mdurl 0.1.2 2025-06-05T23:55:33.1783655Z mpmath 1.3.0 2025-06-05T23:55:33.1784395Z multidict 6.4.4 2025-06-05T23:55:33.1785344Z multiprocess 0.70.16 2025-06-05T23:55:33.1786128Z myst-parser 0.18.1 2025-06-05T23:55:33.1786862Z networkx 3.4.2 2025-06-05T23:55:33.1787584Z numpy 2.2.6 2025-06-05T23:55:33.1788410Z nvidia-cublas-cu12 12.1.3.1 2025-06-05T23:55:33.1789217Z nvidia-cuda-cupti-cu12 12.1.105 2025-06-05T23:55:33.1790055Z nvidia-cuda-nvrtc-cu12 12.1.105 2025-06-05T23:55:33.1790841Z nvidia-cuda-runtime-cu12 12.1.105 2025-06-05T23:55:33.1791658Z nvidia-cudnn-cu12 9.1.0.70 2025-06-05T23:55:33.1792432Z nvidia-cufft-cu12 11.0.2.54 2025-06-05T23:55:33.1793251Z nvidia-curand-cu12 10.3.2.106 2025-06-05T23:55:33.1794075Z nvidia-cusolver-cu12 11.4.5.107 2025-06-05T23:55:33.1794907Z nvidia-cusparse-cu12 12.1.0.106 2025-06-05T23:55:33.1795714Z nvidia-nccl-cu12 2.20.5 2025-06-05T23:55:33.1796719Z nvidia-nvjitlink-cu12 12.9.41 2025-06-05T23:55:33.1797541Z nvidia-nvtx-cu12 12.1.105 2025-06-05T23:55:33.1798294Z omegaconf 2.3.0 2025-06-05T23:55:33.1799004Z packaging 25.0 2025-06-05T23:55:33.1799844Z pandas 2.2.3 2025-06-05T23:55:33.1800526Z parameterized 0.9.0 2025-06-05T23:55:33.1801226Z pillow 11.2.1 2025-06-05T23:55:33.1801891Z pip 25.1 2025-06-05T23:55:33.1802565Z pluggy 1.6.0 2025-06-05T23:55:33.1803245Z propcache 0.3.1 2025-06-05T23:55:33.1803884Z protobuf 6.31.1 2025-06-05T23:55:33.1804565Z psutil 7.0.0 2025-06-05T23:55:33.1805214Z pyaml 25.5.0 2025-06-05T23:55:33.1805904Z pyarrow 20.0.0 2025-06-05T23:55:33.1806652Z pycryptodomex 3.23.0 2025-06-05T23:55:33.1807351Z Pygments 2.19.1 2025-06-05T23:55:33.1808086Z pyparsing 3.2.3 2025-06-05T23:55:33.1808774Z pytest 8.4.0 2025-06-05T23:55:33.1809475Z pytest-cov 4.1.0 2025-06-05T23:55:33.1810147Z pytest-rerunfailures 15.1 2025-06-05T23:55:33.1810884Z pytest-xdist 3.7.0 2025-06-05T23:55:33.1811593Z python-dateutil 2.9.0.post0 2025-06-05T23:55:33.1812684Z pytorch_sphinx_theme 0.0.24 /opt/conda/src/pytorch-sphinx-theme 2025-06-05T23:55:33.1813830Z pytorch_tokenizers 0.1.0 2025-06-05T23:55:33.1814528Z pytz 2025.2 2025-06-05T23:55:33.1815193Z PyYAML 6.0.1 2025-06-05T23:55:33.1815851Z regex 2024.11.6 2025-06-05T23:55:33.1816597Z requests 2.32.3 2025-06-05T23:55:33.1817318Z ruamel.yaml 0.17.32 2025-06-05T23:55:33.1818089Z ruamel.yaml.clib 0.2.12 2025-06-05T23:55:33.1818836Z safetensors 0.5.3 2025-06-05T23:55:33.1819609Z sentencepiece 0.2.0 2025-06-05T23:55:33.1820361Z setuptools 78.1.1 2025-06-05T23:55:33.1821099Z six 1.17.0 2025-06-05T23:55:33.1821855Z snowballstemmer 3.0.1 2025-06-05T23:55:33.1822645Z sortedcontainers 2.4.0 2025-06-05T23:55:33.1823395Z soupsieve 2.7 2025-06-05T23:55:33.1824136Z Sphinx 5.3.0 2025-06-05T23:55:33.1824881Z sphinx-copybutton 0.5.0 2025-06-05T23:55:33.1825606Z sphinx_design 0.4.1 2025-06-05T23:55:33.1826382Z sphinx-gallery 0.14.0 2025-06-05T23:55:33.1827136Z sphinx_reredirects 0.1.4 2025-06-05T23:55:33.1828031Z sphinxcontrib-applehelp 2.0.0 2025-06-05T23:55:33.1828847Z sphinxcontrib-devhelp 2.0.0 2025-06-05T23:55:33.1829677Z sphinxcontrib-htmlhelp 2.1.0 2025-06-05T23:55:33.1830494Z sphinxcontrib-jsmath 1.0.1 2025-06-05T23:55:33.1831325Z sphinxcontrib-qthelp 2.0.0 2025-06-05T23:55:33.1832131Z sphinxcontrib-serializinghtml 2.0.0 2025-06-05T23:55:33.1832960Z sympy 1.14.0 2025-06-05T23:55:33.1833696Z tabulate 0.9.0 2025-06-05T23:55:33.1834459Z tiktoken 0.9.0 2025-06-05T23:55:33.1835199Z timm 1.0.7 2025-06-05T23:55:33.1835958Z tokenizers 0.21.1 2025-06-05T23:55:33.1836707Z tomli 2.0.1 2025-06-05T23:55:33.1837522Z torch 2.8.0a0+git5616fa4 2025-06-05T23:55:33.1838407Z torchao 0.12.0+gitbc68b11 2025-06-05T23:55:33.1839299Z torchaudio 2.6.0a0+1a8f621 2025-06-05T23:55:33.1840140Z torchdata 0.11.0 2025-06-05T23:55:33.1840889Z torchsr 1.0.4 2025-06-05T23:55:33.1841639Z torchtune 0.6.1 2025-06-05T23:55:33.1842425Z torchvision 0.22.0a0+966da7e 2025-06-05T23:55:33.1843444Z tqdm 4.67.1 2025-06-05T23:55:33.1844165Z transformers 4.47.1 2025-06-05T23:55:33.1844950Z triton 3.0.0 1 2025-06-05T23:55:33.1845785Z typing_extensions 4.14.0 2025-06-05T23:55:33.1846632Z tzdata 2025.2 2025-06-05T23:55:33.1847350Z urllib3 2.4.0 2025-06-05T23:55:33.1848081Z wheel 0.45.1 2025-06-05T23:55:33.1848794Z xxhash 3.5.0 2025-06-05T23:55:33.1849516Z yarl 1.20.0 2025-06-05T23:55:33.1850226Z zstd 1.5.5.1 2025-06-05T23:55:33.1851007Z + build_executorch_runner cmake Release 2025-06-05T23:55:33.1851776Z + [[ cmake == \b\u\c\k\2 ]] 2025-06-05T23:55:33.1852430Z + [[ cmake == \c\m\a\k\e ]] 2025-06-05T23:55:33.1853133Z + build_executorch_runner_cmake Release 2025-06-05T23:55:33.1853924Z + CMAKE_OUTPUT_DIR=cmake-out 2025-06-05T23:55:33.1867738Z + clean_executorch_install_folders 2025-06-05T23:55:33.1868816Z + ./install_executorch.sh --clean 2025-06-05T23:55:33.1869574Z Cleaning build artifacts... 2025-06-05T23:55:33.1870267Z Cleaning pip-out/... 2025-06-05T23:55:33.1870921Z Done cleaning build artifacts. 2025-06-05T23:55:33.1871605Z + mkdir cmake-out 2025-06-05T23:55:33.1872161Z + pushd cmake-out 2025-06-05T23:55:33.1872820Z /pytorch/executorch/cmake-out /pytorch/executorch 2025-06-05T23:55:33.1873711Z + [[ Release == \D\e\b\u\g ]] 2025-06-05T23:55:33.1874359Z + CXXFLAGS= 2025-06-05T23:55:33.1874882Z + CXXFLAGS= 2025-06-05T23:55:33.1875730Z + retry cmake -DPYTHON_EXECUTABLE=python -DCMAKE_BUILD_TYPE=Release .. 2025-06-05T23:55:33.1877025Z + cmake -DPYTHON_EXECUTABLE=python -DCMAKE_BUILD_TYPE=Release .. 2025-06-05T23:55:33.1878109Z -- The C compiler identification is Clang 12.0.1 2025-06-05T23:55:33.1879082Z -- The CXX compiler identification is Clang 12.0.1 2025-06-05T23:55:33.1879972Z -- Detecting C compiler ABI info 2025-06-05T23:55:33.1880749Z -- Detecting C compiler ABI info - done 2025-06-05T23:55:33.1881730Z -- Check for working C compiler: /opt/cache/bin/cc - skipped 2025-06-05T23:55:33.1882722Z -- Detecting C compile features 2025-06-05T23:55:33.1883483Z -- Detecting C compile features - done 2025-06-05T23:55:33.1884283Z -- Detecting CXX compiler ABI info 2025-06-05T23:55:33.1885546Z -- Detecting CXX compiler ABI info - done 2025-06-05T23:55:33.1886571Z -- Check for working CXX compiler: /opt/cache/bin/c++ - skipped 2025-06-05T23:55:33.1887605Z -- Detecting CXX compile features 2025-06-05T23:55:33.1888382Z -- Detecting CXX compile features - done 2025-06-05T23:55:33.1889215Z -- --- Configured Options --- 2025-06-05T23:55:33.1889685Z 2025-06-05T23:55:33.1889999Z -- CMAKE_CXX_STANDARD : 17 2025-06-05T23:55:33.1890892Z -- CMAKE_SYSTEM_PROCESSOR : x86_64 2025-06-05T23:55:33.1891827Z -- CMAKE_BUILD_TYPE : Release 2025-06-05T23:55:33.1892748Z -- PYTHON_EXECUTABLE : python 2025-06-05T23:55:33.1893705Z -- CMAKE_CXX_COMPILER_ID : Clang 2025-06-05T23:55:33.1894625Z -- CMAKE_TOOLCHAIN_FILE x (unset) 2025-06-05T23:55:33.1895533Z -- BUCK2 x (unset) 2025-06-05T23:55:33.1896422Z -- EXECUTORCH_ENABLE_LOGGING : OFF 2025-06-05T23:55:33.1897337Z -- EXECUTORCH_BUILD_COREML : OFF 2025-06-05T23:55:33.1898264Z -- EXECUTORCH_FLATBUFFERS_MAX_ALIGNMENT : 1024 2025-06-05T23:55:37.8862891Z -- EXECUTORCH_PAL_DEFAULT : posix 2025-06-05T23:55:37.8864362Z -- EXECUTORCH_PAL_DEFAULT_FILE_PATH : /pytorch/executorch/runtime/platform/default/posix.cpp 2025-06-05T23:55:37.8865770Z -- EXECUTORCH_LOG_LEVEL : Info 2025-06-05T23:55:37.8866706Z -- EXECUTORCH_ENABLE_PROGRAM_VERIFICATION : OFF 2025-06-05T23:55:37.8867655Z -- EXECUTORCH_ENABLE_EVENT_TRACER : OFF 2025-06-05T23:55:37.8868620Z -- EXECUTORCH_OPTIMIZE_SIZE : OFF 2025-06-05T23:55:37.8869510Z -- EXECUTORCH_BUILD_ARM_BAREMETAL : OFF 2025-06-05T23:55:37.8870751Z -- EXECUTORCH_BUILD_KERNELS_CUSTOM : OFF 2025-06-05T23:55:37.8871664Z -- EXECUTORCH_BUILD_KERNELS_CUSTOM_AOT : OFF 2025-06-05T23:55:37.8872578Z -- EXECUTORCH_BUILD_KERNELS_QUANTIZED_AOT : OFF 2025-06-05T23:55:37.8873741Z -- EXECUTORCH_BUILD_EXTENSION_DATA_LOADER : OFF 2025-06-05T23:55:37.8874690Z -- EXECUTORCH_BUILD_EXTENSION_FLAT_TENSOR : OFF 2025-06-05T23:55:37.8875590Z -- EXECUTORCH_BUILD_EXTENSION_LLM : OFF 2025-06-05T23:55:37.8876499Z -- EXECUTORCH_BUILD_EXTENSION_MODULE : OFF 2025-06-05T23:55:37.8877412Z -- EXECUTORCH_BUILD_EXTENSION_RUNNER_UTIL : OFF 2025-06-05T23:55:37.8878336Z -- EXECUTORCH_BUILD_EXTENSION_TENSOR : OFF 2025-06-05T23:55:37.8879208Z -- EXECUTORCH_BUILD_EXTENSION_TRAINING : OFF 2025-06-05T23:55:37.8880118Z -- EXECUTORCH_BUILD_EXTENSION_APPLE : OFF 2025-06-05T23:55:37.8880955Z -- EXECUTORCH_BUILD_MPS : OFF 2025-06-05T23:55:37.8881856Z -- EXECUTORCH_BUILD_NEURON : OFF 2025-06-05T23:55:37.8882785Z -- EXECUTORCH_BUILD_OPENVINO : OFF 2025-06-05T23:55:37.8883692Z -- EXECUTORCH_BUILD_PYBIND : OFF 2025-06-05T23:55:37.8884499Z -- EXECUTORCH_BUILD_QNN : OFF 2025-06-05T23:55:37.8885575Z -- EXECUTORCH_BUILD_KERNELS_OPTIMIZED : OFF 2025-06-05T23:55:37.8886438Z -- EXECUTORCH_BUILD_KERNELS_QUANTIZED : OFF 2025-06-05T23:55:37.8887359Z -- EXECUTORCH_BUILD_DEVTOOLS : OFF 2025-06-05T23:55:37.8888244Z -- EXECUTORCH_BUILD_TESTS : OFF 2025-06-05T23:55:37.8889100Z -- EXECUTORCH_NNLIB_OPT : OFF 2025-06-05T23:55:37.8890067Z -- EXECUTORCH_CADENCE_CPU_RUNNER : OFF 2025-06-05T23:55:37.8890949Z -- EXECUTORCH_BUILD_SIZE_TEST : OFF 2025-06-05T23:55:37.8891856Z -- EXECUTORCH_BUILD_XNNPACK : OFF 2025-06-05T23:55:37.8892776Z -- EXECUTORCH_BUILD_VULKAN : OFF 2025-06-05T23:55:37.8893710Z -- EXECUTORCH_BUILD_PORTABLE_OPS : ON 2025-06-05T23:55:37.8894654Z -- EXECUTORCH_USE_DL : ON 2025-06-05T23:55:37.8895576Z -- EXECUTORCH_BUILD_CADENCE : OFF 2025-06-05T23:55:37.8896505Z -- EXECUTORCH_BUILD_CORTEX_M : OFF 2025-06-05T23:55:37.8897456Z -- EXECUTORCH_BUILD_GFLAGS : ON 2025-06-05T23:55:37.8898261Z -- EXECUTORCH_COREML_BUILD_EXECUTOR_RUNNER : OFF 2025-06-05T23:55:37.8899145Z -- EXECUTORCH_BUILD_PTHREADPOOL : ON 2025-06-05T23:55:37.8900006Z -- EXECUTORCH_BUILD_CPUINFO : ON 2025-06-05T23:55:37.8900900Z -- EXECUTORCH_BUILD_EXECUTOR_RUNNER : ON 2025-06-05T23:55:37.8901719Z -- EXECUTORCH_XNNPACK_SHARED_WORKSPACE : ON 2025-06-05T23:55:37.8902560Z -- EXECUTORCH_XNNPACK_ENABLE_KLEIDI : OFF 2025-06-05T23:55:37.8903387Z -- EXECUTORCH_XNNPACK_ENABLE_WEIGHT_CACHE : OFF 2025-06-05T23:55:37.8904193Z -- -------------------------- 2025-06-05T23:55:37.8905224Z -- Using the multi-header code from /pytorch/executorch/third-party/json/include/ 2025-06-05T23:55:37.8907360Z CMake Deprecation Warning at third-party/flatcc/CMakeLists.txt:2 (cmake_minimum_required): 2025-06-05T23:55:37.8909121Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:55:37.8910207Z CMake. 2025-06-05T23:55:37.8910504Z 2025-06-05T23:55:37.8911060Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:55:37.8912523Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:55:37.8913800Z to work with policies introduced by or earlier. 2025-06-05T23:55:37.8914480Z 2025-06-05T23:55:37.8914776Z  2025-06-05T23:55:37.8915497Z -- dist install dir /pytorch/executorch/third-party/flatcc 2025-06-05T23:55:37.8916677Z -- lib install dir /pytorch/executorch/third-party/flatcc/lib 2025-06-05T23:55:37.8917728Z -- Setting Clang compiler options 2025-06-05T23:55:37.8919541Z -- Configured C_FLAGS: -DFLATCC_REFLECTION=0 -Wstrict-prototypes -Wsign-conversion -Wconversion -std=c11 -pedantic -Wall -Wextra -Werror 2025-06-05T23:55:37.8922516Z CMake Deprecation Warning at backends/xnnpack/third-party/FXdiv/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:55:37.8924452Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:55:37.8925509Z CMake. 2025-06-05T23:55:37.8925795Z 2025-06-05T23:55:37.8926325Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:55:37.8927686Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:55:37.8928879Z to work with policies introduced by or earlier. 2025-06-05T23:55:37.8929520Z 2025-06-05T23:55:37.8929850Z  2025-06-05T23:55:37.8931350Z CMake Deprecation Warning at backends/xnnpack/third-party/cpuinfo/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:55:37.8933180Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:55:37.8934218Z CMake. 2025-06-05T23:55:37.8934534Z 2025-06-05T23:55:37.8935086Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:55:37.8936466Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:55:37.8937685Z to work with policies introduced by or earlier. 2025-06-05T23:55:37.8938306Z 2025-06-05T23:55:37.8938593Z  2025-06-05T23:55:37.8939132Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD 2025-06-05T23:55:37.8940065Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success 2025-06-05T23:55:37.8940921Z -- Found Threads: TRUE 2025-06-05T23:55:37.8942607Z CMake Deprecation Warning at backends/xnnpack/third-party/pthreadpool/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:55:37.8944439Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:55:37.8945465Z CMake. 2025-06-05T23:55:37.8945743Z 2025-06-05T23:55:37.8946274Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:55:37.8947686Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:55:37.8949004Z to work with policies introduced by or earlier. 2025-06-05T23:55:37.8949631Z 2025-06-05T23:55:37.8949951Z  2025-06-05T23:55:37.8950486Z -- Resolved buck2 as buck2. 2025-06-05T23:55:37.8951156Z -- Killing buck2 daemon 2025-06-05T23:55:37.8951785Z 'buck2 killall' 2025-06-05T23:55:37.8952378Z -- executorch: Generating source lists 2025-06-05T23:55:37.8953706Z -- executorch: Generating source file list /pytorch/executorch/cmake-out/executorch_srcs.cmake 2025-06-05T23:55:37.8955453Z -- executorch: Using sources file /pytorch/executorch/cmake-out/executorch_srcs.cmake 2025-06-05T23:55:37.8956705Z -- Generating operator lib: 2025-06-05T23:55:37.8957375Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:55:37.8958375Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/portable/functions.yaml 2025-06-05T23:55:37.8959456Z -- ROOT_OPS: 2025-06-05T23:55:37.8960033Z -- INCLUDE_ALL_OPS: 2025-06-05T23:55:37.8963218Z 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:37.8966301Z -- Generating kernel bindings: 2025-06-05T23:55:37.8967037Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:55:37.8968063Z -- FUNCTIONS_YAML: /pytorch/executorch/kernels/portable/functions.yaml 2025-06-05T23:55:37.8969120Z -- CUSTOM_OPS_YAML: 2025-06-05T23:55:37.8969773Z -- ADD_EXCEPTION_BOUNDARY: FALSE 2025-06-05T23:55:37.8974139Z 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:37.8978028Z -- Generating operator lib: 2025-06-05T23:55:37.8978662Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:55:37.8979568Z -- KERNEL_LIBS: portable_kernels 2025-06-05T23:55:37.8980274Z -- DEPS: executorch_core 2025-06-05T23:55:37.8981712Z CMake Deprecation Warning at third-party/gflags/CMakeLists.txt:73 (cmake_minimum_required): 2025-06-05T23:55:37.8983517Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:55:37.8984592Z CMake. 2025-06-05T23:55:37.8984889Z 2025-06-05T23:55:37.8985634Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:55:37.8987084Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:55:37.8988414Z to work with policies introduced by or earlier. 2025-06-05T23:55:37.8989031Z 2025-06-05T23:55:37.8989336Z  2025-06-05T23:55:37.8989874Z -- Looking for C++ include unistd.h 2025-06-05T23:55:37.8990697Z -- Looking for C++ include unistd.h - found 2025-06-05T23:55:37.8991516Z -- Looking for C++ include stdint.h 2025-06-05T23:55:37.8992333Z -- Looking for C++ include stdint.h - found 2025-06-05T23:55:37.8993184Z -- Looking for C++ include inttypes.h 2025-06-05T23:55:37.8994042Z -- Looking for C++ include inttypes.h - found 2025-06-05T23:55:37.8994899Z -- Looking for C++ include sys/types.h 2025-06-05T23:55:37.8995764Z -- Looking for C++ include sys/types.h - found 2025-06-05T23:55:37.8996629Z -- Looking for C++ include sys/stat.h 2025-06-05T23:55:37.8997429Z -- Looking for C++ include sys/stat.h - found 2025-06-05T23:55:37.8998236Z -- Looking for C++ include fnmatch.h 2025-06-05T23:55:37.8999051Z -- Looking for C++ include fnmatch.h - found 2025-06-05T23:55:37.8999874Z -- Looking for C++ include stddef.h 2025-06-05T23:55:37.9000631Z -- Looking for C++ include stddef.h - found 2025-06-05T23:55:37.9001429Z -- Check size of uint32_t 2025-06-05T23:55:37.9002081Z -- Check size of uint32_t - done 2025-06-05T23:55:37.9002806Z -- Looking for strtoll 2025-06-05T23:55:37.9003448Z -- Looking for strtoll - found 2025-06-05T23:55:37.9004170Z -- Configuring done (5.2s) 2025-06-05T23:55:37.9004865Z -- Generating done (0.1s) 2025-06-05T23:55:37.9005793Z -- Build files have been written to: /pytorch/executorch/cmake-out 2025-06-05T23:55:37.9006781Z + popd 2025-06-05T23:55:37.9007312Z /pytorch/executorch 2025-06-05T23:55:37.9007888Z ++ uname 2025-06-05T23:55:37.9008420Z + '[' Linux == Darwin ']' 2025-06-05T23:55:37.9009032Z ++ nproc 2025-06-05T23:55:37.9009549Z + CMAKE_JOBS=7 2025-06-05T23:55:37.9010142Z + cmake --build cmake-out -j 7 2025-06-05T23:55:37.9011322Z [ 1%] Creating directories for 'flatbuffers_external_project' 2025-06-05T23:55:37.9013434Z [ 1%] Building CXX object third-party/gflags/CMakeFiles/gflags_nothreads_static.dir/src/gflags_reporting.cc.o 2025-06-05T23:55:37.9015941Z [ 1%] Building CXX object third-party/gflags/CMakeFiles/gflags_nothreads_static.dir/src/gflags.cc.o 2025-06-05T23:55:37.9017855Z [ 1%] Creating directories for 'flatcc_external_project' 2025-06-05T23:55:37.9019968Z [ 1%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/legacy-api.c.o 2025-06-05T23:55:37.9022517Z [ 1%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/api.c.o 2025-06-05T23:55:37.9025474Z [ 2%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/api.c.o 2025-06-05T23:55:37.9027450Z [ 2%] No download step for 'flatbuffers_external_project' 2025-06-05T23:55:37.9028901Z [ 2%] No download step for 'flatcc_external_project' 2025-06-05T23:55:37.9030189Z [ 2%] No update step for 'flatbuffers_external_project' 2025-06-05T23:55:37.9031468Z [ 3%] No update step for 'flatcc_external_project' 2025-06-05T23:55:37.9032642Z [ 3%] No patch step for 'flatbuffers_external_project' 2025-06-05T23:55:37.9033859Z [ 3%] No patch step for 'flatcc_external_project' 2025-06-05T23:55:38.7424131Z [ 4%] Performing configure step for 'flatbuffers_external_project' 2025-06-05T23:55:38.7426092Z [ 4%] Performing configure step for 'flatcc_external_project' 2025-06-05T23:55:38.7427221Z CMake Warning: 2025-06-05T23:55:38.7428281Z Ignoring empty string ("") provided on the command line. 2025-06-05T23:55:38.7429048Z 2025-06-05T23:55:38.7429313Z  2025-06-05T23:55:38.7429960Z fatal: No names found, cannot describe anything. 2025-06-05T23:55:38.7431071Z CMake Warning at CMake/Version.cmake:32 (message): 2025-06-05T23:55:38.7431967Z git describe failed with exit code: 128 2025-06-05T23:55:38.7432511Z 2025-06-05T23:55:38.7432902Z Make sure you cloned with tags or run 'git fetch --tags'. 2025-06-05T23:55:38.7433812Z Call Stack (most recent call first): 2025-06-05T23:55:38.7434562Z CMakeLists.txt:5 (include) 2025-06-05T23:55:38.7435001Z 2025-06-05T23:55:38.7435288Z  2025-06-05T23:55:38.7435847Z -- Proceeding with version: 24.3.25.0 2025-06-05T23:55:38.7436661Z CMake Warning: 2025-06-05T23:55:38.7437433Z Ignoring empty string ("") provided on the command line. 2025-06-05T23:55:38.7438139Z 2025-06-05T23:55:38.7438394Z  2025-06-05T23:55:38.7439318Z CMake Deprecation Warning at CMakeLists.txt:2 (cmake_minimum_required): 2025-06-05T23:55:38.7440658Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:55:38.7441641Z CMake. 2025-06-05T23:55:38.7441914Z 2025-06-05T23:55:38.7442472Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:55:38.7443850Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:55:38.7445019Z to work with policies introduced by or earlier. 2025-06-05T23:55:38.7445662Z 2025-06-05T23:55:38.7445943Z  2025-06-05T23:55:38.7447463Z [ 4%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/cache.c.o 2025-06-05T23:55:38.7449838Z [ 4%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/cache.c.o 2025-06-05T23:55:38.7452376Z [ 4%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/portable-api.c.o 2025-06-05T23:55:38.7455007Z [ 5%] Building CXX object third-party/gflags/CMakeFiles/gflags_nothreads_static.dir/src/gflags_completions.cc.o 2025-06-05T23:55:38.7457561Z [ 6%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/memory.c.o 2025-06-05T23:55:38.7459198Z -- The C compiler identification is Clang 12.0.1 2025-06-05T23:55:38.7461009Z [ 6%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/init.c.o 2025-06-05T23:55:38.7462559Z -- Detecting C compiler ABI info 2025-06-05T23:55:38.7464098Z [ 7%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/init.c.o 2025-06-05T23:55:38.7466524Z [ 7%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/pthreads.c.o 2025-06-05T23:55:38.7468279Z -- The CXX compiler identification is Clang 12.0.1 2025-06-05T23:55:38.7470160Z [ 7%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/fastpath.c.o 2025-06-05T23:55:38.7473104Z [ 8%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/log.c.o 2025-06-05T23:55:38.7474963Z -- Detecting CXX compiler ABI info 2025-06-05T23:55:38.7476527Z [ 8%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/log.c.o 2025-06-05T23:55:38.7478269Z [ 8%] Linking CXX static library libgflags_nothreads.a 2025-06-05T23:55:38.7480232Z [ 8%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/init.c.o 2025-06-05T23:55:38.7481853Z [ 8%] Built target gflags_nothreads_static 2025-06-05T23:55:38.7483646Z [ 8%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/info.c.o 2025-06-05T23:55:38.7486490Z [ 9%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/vendor.c.o 2025-06-05T23:55:38.7488934Z [ 9%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/init.c.o 2025-06-05T23:55:38.7490427Z -- Detecting C compiler ABI info - done 2025-06-05T23:55:38.7491487Z [ 10%] Linking C static library libpthreadpool.a 2025-06-05T23:55:38.7492406Z [ 10%] Built target pthreadpool 2025-06-05T23:55:38.7493256Z -- Check for working C compiler: /opt/cache/bin/cc - skipped 2025-06-05T23:55:38.7495046Z [ 11%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/info.c.o 2025-06-05T23:55:38.7496411Z -- Detecting C compile features 2025-06-05T23:55:38.7497105Z -- Detecting C compile features - done 2025-06-05T23:55:38.7498756Z [ 11%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/vendor.c.o 2025-06-05T23:55:38.7500415Z -- dist install dir /pytorch/executorch/third-party/flatcc 2025-06-05T23:55:38.7501511Z -- lib install dir /pytorch/executorch/third-party/flatcc/lib 2025-06-05T23:55:38.7502482Z -- Setting Clang compiler options 2025-06-05T23:55:38.7504180Z -- Configured C_FLAGS: -DFLATCC_REFLECTION=0 -Wstrict-prototypes -Wsign-conversion -Wconversion -std=c11 -pedantic -Wall -Wextra -Werror 2025-06-05T23:55:38.7506984Z [ 11%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/uarch.c.o 2025-06-05T23:55:38.7508655Z -- Configuring done (0.3s) 2025-06-05T23:55:38.7509330Z -- Generating done (0.0s) 2025-06-05T23:55:38.7510953Z -- Build files have been written to: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/src/flatcc_external_project-build 2025-06-05T23:55:38.7513735Z [ 11%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/name.c.o 2025-06-05T23:55:38.7515674Z [ 12%] Performing build step for 'flatcc_external_project' 2025-06-05T23:55:38.7517563Z [ 12%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/uarch.c.o 2025-06-05T23:55:38.7519545Z [ 3%] Building C object src/runtime/CMakeFiles/flatccrt.dir/builder.c.o 2025-06-05T23:55:38.7521392Z [ 6%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/__/external/hash/str_set.c.o 2025-06-05T23:55:38.7523205Z [ 9%] Building C object src/runtime/CMakeFiles/flatccrt.dir/emitter.c.o 2025-06-05T23:55:38.7525415Z [ 12%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/topology.c.o 2025-06-05T23:55:38.7527084Z -- Detecting CXX compiler ABI info - done 2025-06-05T23:55:38.7528775Z [ 13%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/name.c.o 2025-06-05T23:55:38.7531143Z [ 13%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/topology.c.o 2025-06-05T23:55:38.7532840Z -- Check for working CXX compiler: /opt/cache/bin/c++ - skipped 2025-06-05T23:55:38.7533827Z -- Detecting CXX compile features 2025-06-05T23:55:38.7534608Z -- Detecting CXX compile features - done 2025-06-05T23:55:38.7536403Z [ 14%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/isa.c.o 2025-06-05T23:55:38.7538456Z [ 12%] Building C object src/runtime/CMakeFiles/flatccrt.dir/refmap.c.o 2025-06-05T23:55:38.7540272Z [ 15%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/__/external/hash/ptr_set.c.o 2025-06-05T23:55:38.7541593Z -- Looking for strtof_l 2025-06-05T23:55:38.7543291Z [ 14%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/cache/init.c.o 2025-06-05T23:55:38.7545993Z [ 14%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/cache/descriptor.c.o 2025-06-05T23:55:38.7548777Z [ 14%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/isa.c.o 2025-06-05T23:55:38.7551319Z [ 15%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/init.c.o 2025-06-05T23:55:38.7553354Z [ 18%] Building C object src/runtime/CMakeFiles/flatccrt.dir/verifier.c.o 2025-06-05T23:55:38.7555201Z [ 21%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/symbol_table.c.o 2025-06-05T23:55:38.7557183Z [ 24%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/scope_table.c.o 2025-06-05T23:55:38.7559720Z [ 16%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/cache/deterministic.c.o 2025-06-05T23:55:38.7562031Z [ 27%] Building C object src/runtime/CMakeFiles/flatccrt.dir/json_parser.c.o 2025-06-05T23:55:38.7563762Z [ 30%] Building C object src/runtime/CMakeFiles/flatccrt.dir/json_printer.c.o 2025-06-05T23:55:38.7565628Z [ 33%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/name_table.c.o 2025-06-05T23:55:38.7567969Z [ 16%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/descriptor.c.o 2025-06-05T23:55:38.7570267Z [ 36%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/schema_table.c.o 2025-06-05T23:55:38.7571582Z -- Looking for strtof_l - found 2025-06-05T23:55:38.7572281Z -- Looking for strtoull_l 2025-06-05T23:55:38.7574037Z [ 16%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/linux/init.c.o 2025-06-05T23:55:38.7576797Z [ 16%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/deterministic.c.o 2025-06-05T23:55:38.7579156Z [ 39%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatccrt.a 2025-06-05T23:55:38.7581621Z [ 16%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/linux/cpuinfo.c.o 2025-06-05T23:55:38.7584412Z [ 17%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/smallfile.c.o 2025-06-05T23:55:38.7587311Z [ 39%] Built target flatccrt 2025-06-05T23:55:38.7589200Z [ 17%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/multiline.c.o 2025-06-05T23:55:38.7591500Z [ 42%] Building C object src/compiler/CMakeFiles/flatcc.dir/hash_tables/value_set.c.o 2025-06-05T23:55:38.7593738Z [ 17%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/linux/init.c.o 2025-06-05T23:55:38.7596197Z [ 18%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/linux/cpuinfo.c.o 2025-06-05T23:55:39.4820042Z [ 18%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/cpulist.c.o 2025-06-05T23:55:39.4822348Z [ 45%] Building C object src/compiler/CMakeFiles/flatcc.dir/fileio.c.o 2025-06-05T23:55:39.4824751Z [ 19%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/processors.c.o 2025-06-05T23:55:39.4827009Z [ 48%] Building C object src/compiler/CMakeFiles/flatcc.dir/parser.c.o 2025-06-05T23:55:39.4828749Z [ 51%] Building C object src/compiler/CMakeFiles/flatcc.dir/semantics.c.o 2025-06-05T23:55:39.4830971Z [ 19%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/smallfile.c.o 2025-06-05T23:55:39.4832614Z -- Looking for strtoull_l - found 2025-06-05T23:55:39.4833355Z -- Looking for realpath 2025-06-05T23:55:39.4835013Z [ 19%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/multiline.c.o 2025-06-05T23:55:39.4837163Z [ 54%] Building C object src/compiler/CMakeFiles/flatcc.dir/coerce.c.o 2025-06-05T23:55:39.4838951Z [ 19%] Linking C static library libcpuinfo_internals.a 2025-06-05T23:55:39.4841126Z [ 20%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/cpulist.c.o 2025-06-05T23:55:39.4843238Z [ 57%] Building C object src/compiler/CMakeFiles/flatcc.dir/flatcc.c.o 2025-06-05T23:55:39.4844937Z [ 60%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c.c.o 2025-06-05T23:55:39.4846273Z [ 20%] Built target cpuinfo_internals 2025-06-05T23:55:39.4848125Z [ 20%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/processors.c.o 2025-06-05T23:55:39.4850388Z [ 63%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_reader.c.o 2025-06-05T23:55:39.4852280Z [ 66%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_sort.c.o 2025-06-05T23:55:39.4854143Z [ 69%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_builder.c.o 2025-06-05T23:55:39.4856116Z [ 72%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_verifier.c.o 2025-06-05T23:55:39.4858038Z [ 75%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_sorter.c.o 2025-06-05T23:55:39.4859511Z [ 20%] Linking C static library libcpuinfo.a 2025-06-05T23:55:39.4860384Z [ 20%] Built target cpuinfo 2025-06-05T23:55:39.4861775Z [ 78%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_json_parser.c.o 2025-06-05T23:55:39.4863803Z [ 81%] Building C object src/compiler/CMakeFiles/flatcc.dir/codegen_c_json_printer.c.o 2025-06-05T23:55:39.4865764Z [ 84%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/builder.c.o 2025-06-05T23:55:39.4867042Z -- Looking for realpath - found 2025-06-05T23:55:39.4867985Z -- CMAKE_CXX_FLAGS: "-DFLATBUFFERS_MAX_ALIGNMENT=1024" 2025-06-05T23:55:39.4869517Z [ 87%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/refmap.c.o 2025-06-05T23:55:39.4871476Z [ 90%] Building C object src/compiler/CMakeFiles/flatcc.dir/__/runtime/emitter.c.o 2025-06-05T23:55:39.4872753Z -- Configuring done (1.1s) 2025-06-05T23:55:39.4873483Z -- Generating done (0.0s) 2025-06-05T23:55:39.4875293Z -- Build files have been written to: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/src/flatbuffers_external_project-build 2025-06-05T23:55:39.4877680Z [ 20%] Performing build step for 'flatbuffers_external_project' 2025-06-05T23:55:39.4879188Z [ 2%] Building CXX object CMakeFiles/flatc.dir/src/idl_parser.cpp.o 2025-06-05T23:55:39.4880740Z [ 5%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_text.cpp.o 2025-06-05T23:55:39.4882293Z [ 7%] Building CXX object CMakeFiles/flatc.dir/src/reflection.cpp.o 2025-06-05T23:55:39.4883807Z [ 10%] Building CXX object CMakeFiles/flatc.dir/src/util.cpp.o 2025-06-05T23:55:39.4893049Z [ 13%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_binary.cpp.o 2025-06-05T23:55:39.4894186Z [ 15%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_cpp.cpp.o 2025-06-05T23:55:39.4895230Z [ 93%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatcc.a 2025-06-05T23:55:39.4895981Z [ 93%] Built target flatcc 2025-06-05T23:55:39.4896636Z [ 96%] Building C object src/cli/CMakeFiles/flatcc_cli.dir/flatcc_cli.c.o 2025-06-05T23:55:39.4897576Z [ 18%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_csharp.cpp.o 2025-06-05T23:55:39.4898475Z [ 21%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_dart.cpp.o 2025-06-05T23:55:39.4899458Z [100%] Linking C executable /pytorch/executorch/third-party/flatcc/bin/flatcc 2025-06-05T23:55:39.4900430Z [ 23%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_kotlin.cpp.o 2025-06-05T23:55:39.4901384Z [ 26%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_kotlin_kmp.cpp.o 2025-06-05T23:55:39.4902485Z [ 28%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_go.cpp.o 2025-06-05T23:55:39.4903121Z [100%] Built target flatcc_cli 2025-06-05T23:55:39.4903877Z [ 31%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_java.cpp.o 2025-06-05T23:55:39.4904745Z [ 21%] Performing install step for 'flatcc_external_project' 2025-06-05T23:55:39.4905336Z [ 21%] Built target flatccrt 2025-06-05T23:55:39.4905717Z [ 93%] Built target flatcc 2025-06-05T23:55:39.4906097Z [100%] Built target flatcc_cli 2025-06-05T23:55:39.4906535Z Install the project... 2025-06-05T23:55:39.4906947Z -- Install configuration: "" 2025-06-05T23:55:39.4907671Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc 2025-06-05T23:55:39.4908942Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc.h 2025-06-05T23:55:39.4910231Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_accessors.h 2025-06-05T23:55:39.4911574Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_alloc.h 2025-06-05T23:55:39.4912877Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_assert.h 2025-06-05T23:55:39.4914199Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_builder.h 2025-06-05T23:55:39.4915515Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_emitter.h 2025-06-05T23:55:39.4916838Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_endian.h 2025-06-05T23:55:39.4918172Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_epilogue.h 2025-06-05T23:55:39.4919764Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_flatbuffers.h 2025-06-05T23:55:39.4922134Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_identifier.h 2025-06-05T23:55:39.4924328Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_iov.h 2025-06-05T23:55:39.4926612Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_json_parser.h 2025-06-05T23:55:39.4929075Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_json_printer.h 2025-06-05T23:55:39.4930521Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_portable.h 2025-06-05T23:55:39.4932346Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_prologue.h 2025-06-05T23:55:39.4934295Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_refmap.h 2025-06-05T23:55:39.4936550Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_rtconfig.h 2025-06-05T23:55:39.4938890Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_types.h 2025-06-05T23:55:39.4941053Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_unaligned.h 2025-06-05T23:55:39.4942475Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_verifier.h 2025-06-05T23:55:39.4943808Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/flatcc_version.h 2025-06-05T23:55:39.4945083Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable 2025-06-05T23:55:39.4946347Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/LICENSE 2025-06-05T23:55:39.4947910Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/README.md 2025-06-05T23:55:39.4949392Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/grisu3_math.h 2025-06-05T23:55:39.4950811Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/grisu3_parse.h 2025-06-05T23:55:39.4952293Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/grisu3_print.h 2025-06-05T23:55:39.4953653Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include 2025-06-05T23:55:39.4955031Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/README 2025-06-05T23:55:39.4956423Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/linux 2025-06-05T23:55:39.4957927Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/linux/endian.h 2025-06-05T23:55:39.4959377Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/std 2025-06-05T23:55:39.4960858Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/std/inttypes.h 2025-06-05T23:55:40.2154918Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/std/stdalign.h 2025-06-05T23:55:40.2157757Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/std/stdbool.h 2025-06-05T23:55:40.2160427Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/include/std/stdint.h 2025-06-05T23:55:40.2163040Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/paligned_alloc.h 2025-06-05T23:55:40.2165672Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pattributes.h 2025-06-05T23:55:40.2168189Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pbase64.h 2025-06-05T23:55:40.2170628Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pcrt.h 2025-06-05T23:55:40.2173100Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pdiagnostic.h 2025-06-05T23:55:40.2175711Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pdiagnostic_pop.h 2025-06-05T23:55:40.2178365Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pdiagnostic_push.h 2025-06-05T23:55:40.2180968Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pendian.h 2025-06-05T23:55:40.2183448Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pendian_detect.h 2025-06-05T23:55:40.2186675Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pinline.h 2025-06-05T23:55:40.2189193Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pinttypes.h 2025-06-05T23:55:40.2191728Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pmemaccess.h 2025-06-05T23:55:40.2194236Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/portable.h 2025-06-05T23:55:40.2196804Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/portable_basic.h 2025-06-05T23:55:40.2199363Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pparsefp.h 2025-06-05T23:55:40.2202155Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pparseint.h 2025-06-05T23:55:40.2204804Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pprintfp.h 2025-06-05T23:55:40.2207252Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pprintint.h 2025-06-05T23:55:40.2209697Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/prestrict.h 2025-06-05T23:55:40.2212251Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pstatic_assert.h 2025-06-05T23:55:40.2214966Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pstatic_assert_scope.h 2025-06-05T23:55:40.2217598Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pstdalign.h 2025-06-05T23:55:40.2220105Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pstdbool.h 2025-06-05T23:55:40.2222586Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pstdint.h 2025-06-05T23:55:40.2225098Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/punaligned.h 2025-06-05T23:55:40.2227592Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pversion.h 2025-06-05T23:55:40.2230128Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/portable/pwarnings.h 2025-06-05T23:55:40.2232493Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection 2025-06-05T23:55:40.2234772Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/README 2025-06-05T23:55:40.2237473Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/flatbuffers_common_builder.h 2025-06-05T23:55:40.2240835Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/flatbuffers_common_reader.h 2025-06-05T23:55:40.2243937Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/reflection_builder.h 2025-06-05T23:55:40.2246749Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/reflection_reader.h 2025-06-05T23:55:40.2249457Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/reflection/reflection_verifier.h 2025-06-05T23:55:40.2251972Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/support 2025-06-05T23:55:40.2254199Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/support/README 2025-06-05T23:55:40.2256540Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/support/cdump.h 2025-06-05T23:55:40.2258972Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/support/elapsed.h 2025-06-05T23:55:40.2261429Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/support/hexdump.h 2025-06-05T23:55:40.2263880Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/include/flatcc/support/readfile.h 2025-06-05T23:55:40.2266166Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/lib/libflatccrt.a 2025-06-05T23:55:40.2268306Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/lib/libflatcc.a 2025-06-05T23:55:40.2270216Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatcc_external_project/bin/flatcc 2025-06-05T23:55:40.2272178Z [ 21%] Completed 'flatcc_external_project' 2025-06-05T23:55:40.2273562Z [ 34%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_ts.cpp.o 2025-06-05T23:55:40.2274835Z [ 21%] Built target flatcc_external_project 2025-06-05T23:55:40.2276155Z [ 36%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_php.cpp.o 2025-06-05T23:55:40.2278078Z [ 21%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/builder.c.o 2025-06-05T23:55:40.2280286Z [ 21%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/emitter.c.o 2025-06-05T23:55:40.2282227Z [ 39%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_python.cpp.o 2025-06-05T23:55:40.2284178Z [ 22%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/refmap.c.o 2025-06-05T23:55:40.2286200Z [ 42%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_lobster.cpp.o 2025-06-05T23:55:40.2288209Z [ 22%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/verifier.c.o 2025-06-05T23:55:40.2290475Z [ 22%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/json_parser.c.o 2025-06-05T23:55:40.2292812Z [ 22%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/json_printer.c.o 2025-06-05T23:55:40.2294793Z [ 44%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_rust.cpp.o 2025-06-05T23:55:40.2296426Z [ 47%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_fbs.cpp.o 2025-06-05T23:55:40.2298046Z [ 50%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_grpc.cpp.o 2025-06-05T23:55:40.2299785Z [ 52%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_json_schema.cpp.o 2025-06-05T23:55:40.2302558Z [ 23%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatccrt.a 2025-06-05T23:55:40.2303921Z [ 23%] Built target flatccrt 2025-06-05T23:55:40.2305171Z [ 55%] Building CXX object CMakeFiles/flatc.dir/src/idl_gen_swift.cpp.o 2025-06-05T23:55:40.2307281Z [ 57%] Building CXX object CMakeFiles/flatc.dir/src/file_name_saving_file_manager.cpp.o 2025-06-05T23:55:40.2309276Z [ 60%] Building CXX object CMakeFiles/flatc.dir/src/file_binary_writer.cpp.o 2025-06-05T23:55:40.2310898Z [ 63%] Building CXX object CMakeFiles/flatc.dir/src/flatc.cpp.o 2025-06-05T23:55:40.2312442Z [ 65%] Building CXX object CMakeFiles/flatc.dir/src/file_writer.cpp.o 2025-06-05T23:55:40.2314126Z [ 68%] Building CXX object CMakeFiles/flatc.dir/src/binary_annotator.cpp.o 2025-06-05T23:55:40.2315783Z [ 71%] Building CXX object CMakeFiles/flatc.dir/src/flatc_main.cpp.o 2025-06-05T23:55:40.2317556Z [ 73%] Building CXX object CMakeFiles/flatc.dir/src/annotated_binary_text_gen.cpp.o 2025-06-05T23:55:40.2319289Z [ 76%] Building CXX object CMakeFiles/flatc.dir/src/bfbs_gen_lua.cpp.o 2025-06-05T23:55:40.2320907Z [ 78%] Building CXX object CMakeFiles/flatc.dir/src/bfbs_gen_nim.cpp.o 2025-06-05T23:55:40.2322571Z [ 81%] Building CXX object CMakeFiles/flatc.dir/src/code_generators.cpp.o 2025-06-05T23:55:40.2324445Z [ 84%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/cpp_generator.cc.o 2025-06-05T23:55:40.2326389Z [ 86%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/go_generator.cc.o 2025-06-05T23:55:40.2328372Z [ 89%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/java_generator.cc.o 2025-06-05T23:55:42.0037246Z [ 92%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/python_generator.cc.o 2025-06-05T23:55:42.0041429Z [ 94%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/swift_generator.cc.o 2025-06-05T23:55:42.0043321Z [ 97%] Building CXX object CMakeFiles/flatc.dir/grpc/src/compiler/ts_generator.cc.o 2025-06-05T23:55:42.0045905Z [100%] Linking CXX executable flatc 2025-06-05T23:55:42.0047330Z [100%] Built target flatc 2025-06-05T23:55:42.0048511Z [ 23%] Performing install step for 'flatbuffers_external_project' 2025-06-05T23:55:42.0049559Z [100%] Built target flatc 2025-06-05T23:55:42.0050528Z Install the project... 2025-06-05T23:55:42.0051231Z -- Install configuration: "" 2025-06-05T23:55:42.0052578Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers 2025-06-05T23:55:42.0054851Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/allocator.h 2025-06-05T23:55:42.0057369Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/array.h 2025-06-05T23:55:42.0059805Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/base.h 2025-06-05T23:55:42.0062211Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/buffer.h 2025-06-05T23:55:42.0064685Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/buffer_ref.h 2025-06-05T23:55:42.0067228Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/code_generator.h 2025-06-05T23:55:42.0069817Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/code_generators.h 2025-06-05T23:55:42.0072504Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/default_allocator.h 2025-06-05T23:55:42.0075196Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/detached_buffer.h 2025-06-05T23:55:42.0077808Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/file_manager.h 2025-06-05T23:55:42.0080505Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/flatbuffer_builder.h 2025-06-05T23:55:42.0083166Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/flatbuffers.h 2025-06-05T23:55:42.0085784Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/flatc.h 2025-06-05T23:55:42.0088198Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/flex_flat_util.h 2025-06-05T23:55:42.0090720Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/flexbuffers.h 2025-06-05T23:55:42.0093140Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/grpc.h 2025-06-05T23:55:42.0095602Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/hash.h 2025-06-05T23:55:42.0097987Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/idl.h 2025-06-05T23:55:42.0100446Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/minireflect.h 2025-06-05T23:55:42.0102864Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/pch 2025-06-05T23:55:42.0105198Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/pch/flatc_pch.h 2025-06-05T23:55:42.0107633Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/pch/pch.h 2025-06-05T23:55:42.0110038Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/reflection.h 2025-06-05T23:55:42.0112655Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/reflection_generated.h 2025-06-05T23:55:42.0115121Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/registry.h 2025-06-05T23:55:42.0117855Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/stl_emulation.h 2025-06-05T23:55:42.0120424Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/string.h 2025-06-05T23:55:42.0122718Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/struct.h 2025-06-05T23:55:42.0124924Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/table.h 2025-06-05T23:55:42.0126936Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/util.h 2025-06-05T23:55:42.0128774Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/vector.h 2025-06-05T23:55:42.0130682Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/vector_downward.h 2025-06-05T23:55:42.0132587Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/include/flatbuffers/verifier.h 2025-06-05T23:55:42.0134620Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/flatbuffers-config.cmake 2025-06-05T23:55:42.0136817Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/BuildFlatBuffers.cmake 2025-06-05T23:55:42.0139079Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/flatbuffers-config-version.cmake 2025-06-05T23:55:42.0140978Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/bin/flatc 2025-06-05T23:55:42.0142723Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/FlatcTargets.cmake 2025-06-05T23:55:42.0144912Z -- Installing: /pytorch/executorch/cmake-out/third-party/flatbuffers_external_project/lib/cmake/flatbuffers/FlatcTargets-noconfig.cmake 2025-06-05T23:55:42.0146666Z [ 23%] Completed 'flatbuffers_external_project' 2025-06-05T23:55:42.0147441Z [ 23%] Built target flatbuffers_external_project 2025-06-05T23:55:42.0148334Z [ 23%] Generating common_schema headers 2025-06-05T23:55:42.0149009Z [ 23%] Built target common_schema 2025-06-05T23:55:42.0149725Z [ 24%] Generating program_schema headers 2025-06-05T23:55:42.0150373Z [ 24%] Built target program_schema 2025-06-05T23:55:42.0151474Z [ 25%] Building CXX object CMakeFiles/executorch_core.dir/runtime/backend/interface.cpp.o 2025-06-05T23:55:42.0153095Z [ 25%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/evalue.cpp.o 2025-06-05T23:55:42.0154846Z [ 25%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/exec_aten/util/tensor_shape_to_c_string.cpp.o 2025-06-05T23:55:42.0157110Z [ 26%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/exec_aten/util/tensor_util_portable.cpp.o 2025-06-05T23:55:42.0159306Z [ 26%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/portable_type/tensor_impl.cpp.o 2025-06-05T23:55:42.0161001Z [ 26%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/tag.cpp.o 2025-06-05T23:55:42.0162238Z [ 26%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/tensor_layout.cpp.o 2025-06-05T23:55:42.0164041Z [ 27%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/method.cpp.o 2025-06-05T23:55:42.0165786Z [ 27%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/method_meta.cpp.o 2025-06-05T23:55:42.0167608Z [ 27%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/program.cpp.o 2025-06-05T23:55:42.0168818Z [ 28%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/pte_data_map.cpp.o 2025-06-05T23:55:42.0170244Z [ 28%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/tensor_parser_exec_aten.cpp.o 2025-06-05T23:55:42.0171660Z [ 28%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/tensor_parser_portable.cpp.o 2025-06-05T23:55:42.0172959Z [ 29%] Building CXX object CMakeFiles/executorch_core.dir/runtime/kernel/operator_registry.cpp.o 2025-06-05T23:55:42.0174129Z [ 29%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/abort.cpp.o 2025-06-05T23:55:42.0175236Z [ 29%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/log.cpp.o 2025-06-05T23:55:42.0176343Z [ 30%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/platform.cpp.o 2025-06-05T23:55:42.0177496Z [ 30%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/profiler.cpp.o 2025-06-05T23:55:42.0178629Z [ 30%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/runtime.cpp.o 2025-06-05T23:55:42.0179765Z [ 30%] Building CXX object CMakeFiles/executorch_core.dir/schema/extended_header.cpp.o 2025-06-05T23:55:42.0180930Z [ 31%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/default/posix.cpp.o 2025-06-05T23:55:42.0181905Z [ 31%] Linking CXX static library libexecutorch_core.a 2025-06-05T23:55:42.0182464Z [ 31%] Built target executorch_core 2025-06-05T23:55:42.0183298Z [ 31%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/et_copy_index.cpp.o 2025-06-05T23:55:42.0184402Z [ 32%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/et_view.cpp.o 2025-06-05T23:55:42.0186449Z [ 32%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/register_prim_ops.cpp.o 2025-06-05T23:55:44.4643490Z [ 32%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/threadpool.cpp.o 2025-06-05T23:55:44.4646113Z [ 33%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/threadpool_guard.cpp.o 2025-06-05T23:55:44.4649097Z [ 33%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/activation_ops_util.cpp.o 2025-06-05T23:55:44.4651910Z [ 33%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/thread_parallel.cpp.o 2025-06-05T23:55:44.4654521Z [ 33%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/cpuinfo_utils.cpp.o 2025-06-05T23:55:44.4657680Z [ 34%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/advanced_index_util.cpp.o 2025-06-05T23:55:44.4660726Z [ 34%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/broadcast_util.cpp.o 2025-06-05T23:55:44.4663528Z [ 34%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/copy_ops_util.cpp.o 2025-06-05T23:55:44.4666456Z [ 35%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/delinearize_index.cpp.o 2025-06-05T23:55:44.4669523Z [ 35%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/distance_util.cpp.o 2025-06-05T23:55:44.4672210Z [ 35%] Linking CXX static library libexecutorch.a 2025-06-05T23:55:44.4673281Z [ 35%] Built target executorch 2025-06-05T23:55:44.4675100Z [ 35%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/dtype_util.cpp.o 2025-06-05T23:55:44.4677275Z [ 36%] Linking CXX static library libextension_threadpool.a 2025-06-05T23:55:44.4678449Z [ 36%] Built target extension_threadpool 2025-06-05T23:55:44.4680369Z [ 37%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/index_util.cpp.o 2025-06-05T23:55:44.4683130Z [ 37%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/kernel_ops_util.cpp.o 2025-06-05T23:55:44.4686566Z [ 37%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/matmul_ops_util.cpp.o 2025-06-05T23:55:44.4689676Z [ 37%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/normalization_ops_util.cpp.o 2025-06-05T23:55:44.4692638Z [ 38%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/padding_util.cpp.o 2025-06-05T23:55:44.4695387Z [ 38%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/reduce_util.cpp.o 2025-06-05T23:55:44.4698092Z [ 38%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/repeat_util.cpp.o 2025-06-05T23:55:44.4700916Z [ 39%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/select_copy_util.cpp.o 2025-06-05T23:55:44.4703662Z [ 39%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/slice_util.cpp.o 2025-06-05T23:55:44.4706430Z [ 39%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/upsample_util.cpp.o 2025-06-05T23:55:44.4709517Z [ 40%] Linking CXX static library libkernels_util_all_deps.a 2025-06-05T23:55:44.4710628Z [ 40%] Built target kernels_util_all_deps 2025-06-05T23:55:44.4712374Z [ 40%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op__empty_dim_order.cpp.o 2025-06-05T23:55:44.4714950Z [ 40%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op__to_dim_order_copy.cpp.o 2025-06-05T23:55:44.4717378Z [ 40%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_acos.cpp.o 2025-06-05T23:55:44.4719639Z [ 41%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_abs.cpp.o 2025-06-05T23:55:44.4721880Z [ 41%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_acosh.cpp.o 2025-06-05T23:55:44.4724151Z [ 41%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_add.cpp.o 2025-06-05T23:55:44.4726430Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_addmm.cpp.o 2025-06-05T23:55:44.4728727Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_alias_copy.cpp.o 2025-06-05T23:55:44.4731077Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_allclose.cpp.o 2025-06-05T23:55:44.4733387Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_amax.cpp.o 2025-06-05T23:55:44.4735647Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_amin.cpp.o 2025-06-05T23:55:44.4737889Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_any.cpp.o 2025-06-05T23:55:44.4740161Z [ 44%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_arange.cpp.o 2025-06-05T23:55:44.4742471Z [ 44%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_argmax.cpp.o 2025-06-05T23:55:44.4744819Z [ 44%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_argmin.cpp.o 2025-06-05T23:55:44.4747202Z [ 45%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_as_strided_copy.cpp.o 2025-06-05T23:55:44.4749667Z [ 45%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_asin.cpp.o 2025-06-05T23:55:44.4751900Z [ 45%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_asinh.cpp.o 2025-06-05T23:55:44.4754022Z [ 46%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_atan.cpp.o 2025-06-05T23:55:44.4756090Z [ 46%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_atan2.cpp.o 2025-06-05T23:55:44.4758588Z [ 46%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_atanh.cpp.o 2025-06-05T23:55:44.4760805Z [ 46%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_avg_pool2d.cpp.o 2025-06-05T23:55:44.4763393Z [ 47%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_and.cpp.o 2025-06-05T23:55:44.4765815Z [ 47%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_not.cpp.o 2025-06-05T23:55:44.4768143Z [ 47%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_or.cpp.o 2025-06-05T23:55:44.4770570Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_xor.cpp.o 2025-06-05T23:55:44.4772890Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bmm.cpp.o 2025-06-05T23:55:44.4775118Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cat.cpp.o 2025-06-05T23:55:44.4777444Z [ 49%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cdist_forward.cpp.o 2025-06-05T23:55:44.4779812Z [ 49%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ceil.cpp.o 2025-06-05T23:55:44.4782065Z [ 49%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_clamp.cpp.o 2025-06-05T23:55:44.4784352Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_clone.cpp.o 2025-06-05T23:55:44.4788259Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_constant_pad_nd.cpp.o 2025-06-05T23:55:44.4790749Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_convolution.cpp.o 2025-06-05T23:55:44.4793295Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_convolution_backward.cpp.o 2025-06-05T23:55:44.4795752Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_copy.cpp.o 2025-06-05T23:55:44.4797963Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cos.cpp.o 2025-06-05T23:55:44.4800193Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cosh.cpp.o 2025-06-05T23:55:44.4802458Z [ 52%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cumsum.cpp.o 2025-06-05T23:55:44.4804820Z [ 52%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_detach_copy.cpp.o 2025-06-05T23:55:44.4807242Z [ 52%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_diagonal_copy.cpp.o 2025-06-05T23:55:44.4809544Z [ 53%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_div.cpp.o 2025-06-05T23:55:44.4811748Z [ 53%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_elu.cpp.o 2025-06-05T23:55:44.4814047Z [ 53%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_embedding.cpp.o 2025-06-05T23:55:44.4816350Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_empty.cpp.o 2025-06-05T23:55:44.4818569Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_eq.cpp.o 2025-06-05T23:55:44.4820765Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_erf.cpp.o 2025-06-05T23:55:44.4822960Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_exp.cpp.o 2025-06-05T23:55:44.4825248Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_expand_copy.cpp.o 2025-06-05T23:55:44.4827606Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_expm1.cpp.o 2025-06-05T23:55:46.9888026Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_fill.cpp.o 2025-06-05T23:55:46.9890339Z [ 56%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_flip.cpp.o 2025-06-05T23:55:46.9906260Z [ 56%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_floor.cpp.o 2025-06-05T23:55:46.9907999Z [ 56%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_floor_divide.cpp.o 2025-06-05T23:55:46.9910063Z [ 57%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_fmod.cpp.o 2025-06-05T23:55:46.9911961Z [ 57%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_full.cpp.o 2025-06-05T23:55:46.9914032Z [ 57%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_full_like.cpp.o 2025-06-05T23:55:46.9915857Z [ 58%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_gather.cpp.o 2025-06-05T23:55:46.9917119Z [ 58%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ge.cpp.o 2025-06-05T23:55:46.9918382Z [ 58%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_gelu.cpp.o 2025-06-05T23:55:46.9920687Z [ 59%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_glu.cpp.o 2025-06-05T23:55:46.9922814Z [ 59%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_gt.cpp.o 2025-06-05T23:55:46.9925069Z [ 59%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_hardtanh.cpp.o 2025-06-05T23:55:46.9926765Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_index.cpp.o 2025-06-05T23:55:46.9928170Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_index_put.cpp.o 2025-06-05T23:55:46.9929885Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_index_select.cpp.o 2025-06-05T23:55:46.9931692Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_isinf.cpp.o 2025-06-05T23:55:46.9933011Z [ 61%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_isnan.cpp.o 2025-06-05T23:55:46.9934249Z [ 61%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_le.cpp.o 2025-06-05T23:55:46.9935504Z [ 61%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_leaky_relu.cpp.o 2025-06-05T23:55:46.9936922Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_lift_fresh_copy.cpp.o 2025-06-05T23:55:46.9938368Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_linear_scratch_example.cpp.o 2025-06-05T23:55:46.9939769Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log.cpp.o 2025-06-05T23:55:46.9941005Z [ 63%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log10.cpp.o 2025-06-05T23:55:46.9942252Z [ 63%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log1p.cpp.o 2025-06-05T23:55:46.9943499Z [ 63%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log2.cpp.o 2025-06-05T23:55:46.9944783Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log_softmax.cpp.o 2025-06-05T23:55:46.9946098Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_and.cpp.o 2025-06-05T23:55:46.9947966Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_not.cpp.o 2025-06-05T23:55:46.9949500Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_or.cpp.o 2025-06-05T23:55:46.9950830Z [ 65%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_xor.cpp.o 2025-06-05T23:55:46.9952377Z [ 65%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logit.cpp.o 2025-06-05T23:55:46.9953699Z [ 65%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_lt.cpp.o 2025-06-05T23:55:46.9954962Z [ 66%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_masked_fill.cpp.o 2025-06-05T23:55:46.9956317Z [ 66%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_masked_scatter.cpp.o 2025-06-05T23:55:46.9957908Z [ 66%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_masked_select.cpp.o 2025-06-05T23:55:46.9960057Z [ 67%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_max.cpp.o 2025-06-05T23:55:46.9961838Z [ 67%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_max_pool2d_with_indices.cpp.o 2025-06-05T23:55:46.9963427Z [ 67%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_max_pool2d_with_indices_backward.cpp.o 2025-06-05T23:55:46.9964857Z [ 68%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_maximum.cpp.o 2025-06-05T23:55:46.9966122Z [ 68%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_mean.cpp.o 2025-06-05T23:55:46.9967335Z [ 68%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_min.cpp.o 2025-06-05T23:55:46.9968663Z [ 69%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_minimum.cpp.o 2025-06-05T23:55:46.9969974Z [ 69%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_mm.cpp.o 2025-06-05T23:55:46.9971303Z [ 69%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_mul.cpp.o 2025-06-05T23:55:46.9973173Z [ 69%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_narrow_copy.cpp.o 2025-06-05T23:55:46.9975460Z [ 70%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_batch_norm.cpp.o 2025-06-05T23:55:46.9977605Z [ 70%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_dropout.cpp.o 2025-06-05T23:55:46.9979727Z [ 70%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_group_norm.cpp.o 2025-06-05T23:55:46.9981824Z [ 71%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_layer_norm.cpp.o 2025-06-05T23:55:46.9983774Z [ 71%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ne.cpp.o 2025-06-05T23:55:46.9985717Z [ 71%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_neg.cpp.o 2025-06-05T23:55:46.9987439Z [ 72%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_nonzero.cpp.o 2025-06-05T23:55:46.9989386Z [ 72%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ones.cpp.o 2025-06-05T23:55:46.9991216Z [ 72%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pdist_forward.cpp.o 2025-06-05T23:55:46.9993198Z [ 73%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_permute_copy.cpp.o 2025-06-05T23:55:46.9995220Z [ 73%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pixel_shuffle.cpp.o 2025-06-05T23:55:46.9997295Z [ 73%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pixel_unshuffle.cpp.o 2025-06-05T23:55:46.9999396Z [ 73%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pow.cpp.o 2025-06-05T23:55:47.0001285Z [ 74%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_prod.cpp.o 2025-06-05T23:55:47.0003221Z [ 74%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_rand.cpp.o 2025-06-05T23:55:47.0005363Z [ 74%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_randn.cpp.o 2025-06-05T23:55:47.0007528Z [ 75%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reciprocal.cpp.o 2025-06-05T23:55:47.0009654Z [ 75%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reflection_pad1d.cpp.o 2025-06-05T23:55:47.0011989Z [ 75%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reflection_pad2d.cpp.o 2025-06-05T23:55:47.0014272Z [ 76%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reflection_pad3d.cpp.o 2025-06-05T23:55:47.0016546Z [ 76%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_relu.cpp.o 2025-06-05T23:55:47.0018883Z [ 76%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_remainder.cpp.o 2025-06-05T23:55:47.0021321Z [ 77%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_repeat.cpp.o 2025-06-05T23:55:47.0023755Z [ 77%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_repeat_interleave.cpp.o 2025-06-05T23:55:47.0026337Z [ 77%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_replication_pad1d.cpp.o 2025-06-05T23:55:47.0028913Z [ 78%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_replication_pad2d.cpp.o 2025-06-05T23:55:47.0031296Z [ 78%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_replication_pad3d.cpp.o 2025-06-05T23:55:47.0033472Z [ 78%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_roll.cpp.o 2025-06-05T23:55:47.0035568Z [ 78%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_round.cpp.o 2025-06-05T23:55:51.9182620Z [ 79%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_rsqrt.cpp.o 2025-06-05T23:55:51.9183976Z [ 79%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_rsub.cpp.o 2025-06-05T23:55:51.9185479Z [ 79%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_scalar_tensor.cpp.o 2025-06-05T23:55:51.9186826Z [ 80%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_scatter.cpp.o 2025-06-05T23:55:51.9188225Z [ 80%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_scatter_add.cpp.o 2025-06-05T23:55:51.9189558Z [ 80%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_select_copy.cpp.o 2025-06-05T23:55:51.9190914Z [ 81%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_select_scatter.cpp.o 2025-06-05T23:55:51.9192232Z [ 81%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sigmoid.cpp.o 2025-06-05T23:55:51.9193492Z [ 81%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sign.cpp.o 2025-06-05T23:55:51.9194719Z [ 82%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sin.cpp.o 2025-06-05T23:55:51.9195972Z [ 82%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sinh.cpp.o 2025-06-05T23:55:51.9197234Z [ 82%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_slice_copy.cpp.o 2025-06-05T23:55:51.9198571Z [ 82%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_slice_scatter.cpp.o 2025-06-05T23:55:51.9199884Z [ 83%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_softmax.cpp.o 2025-06-05T23:55:51.9201189Z [ 83%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_split_copy.cpp.o 2025-06-05T23:55:51.9202585Z [ 83%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_split_with_sizes_copy.cpp.o 2025-06-05T23:55:51.9204190Z [ 84%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sqrt.cpp.o 2025-06-05T23:55:51.9205589Z [ 84%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_squeeze_copy.cpp.o 2025-06-05T23:55:51.9206871Z [ 84%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_stack.cpp.o 2025-06-05T23:55:51.9208105Z [ 85%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sub.cpp.o 2025-06-05T23:55:51.9209310Z [ 85%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sum.cpp.o 2025-06-05T23:55:51.9210563Z [ 85%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_t_copy.cpp.o 2025-06-05T23:55:51.9211791Z [ 86%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_tan.cpp.o 2025-06-05T23:55:51.9213023Z [ 86%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_tanh.cpp.o 2025-06-05T23:55:51.9214273Z [ 86%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_to_copy.cpp.o 2025-06-05T23:55:51.9215628Z [ 87%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_topk.cpp.o 2025-06-05T23:55:51.9216993Z [ 87%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_transpose_copy.cpp.o 2025-06-05T23:55:51.9218292Z [ 87%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_tril.cpp.o 2025-06-05T23:55:51.9219516Z [ 87%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_trunc.cpp.o 2025-06-05T23:55:51.9220810Z [ 88%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_unbind_copy.cpp.o 2025-06-05T23:55:51.9222130Z [ 88%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_unfold_copy.cpp.o 2025-06-05T23:55:51.9223488Z [ 88%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_unsqueeze_copy.cpp.o 2025-06-05T23:55:51.9224895Z [ 89%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_upsample_bilinear2d.cpp.o 2025-06-05T23:55:51.9226350Z [ 89%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_upsample_nearest2d.cpp.o 2025-06-05T23:55:51.9227658Z [ 89%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_var.cpp.o 2025-06-05T23:55:51.9229063Z [ 90%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_view_as_real_copy.cpp.o 2025-06-05T23:55:51.9230437Z [ 90%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_view_copy.cpp.o 2025-06-05T23:55:51.9231707Z [ 90%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_where.cpp.o 2025-06-05T23:55:51.9232969Z [ 91%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_zeros.cpp.o 2025-06-05T23:55:51.9234420Z [ 91%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/pattern/unary_ufunc_realhb_to_bool.cpp.o 2025-06-05T23:55:51.9236130Z [ 91%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/pattern/unary_ufunc_realhbbf16_to_floathbf16.cpp.o 2025-06-05T23:55:51.9237771Z [ 91%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/pattern/unary_ufunc_realhbf16.cpp.o 2025-06-05T23:55:51.9239271Z [ 92%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/activation_ops_util.cpp.o 2025-06-05T23:55:51.9240721Z [ 92%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/advanced_index_util.cpp.o 2025-06-05T23:55:51.9242150Z [ 92%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/broadcast_util.cpp.o 2025-06-05T23:55:51.9243648Z [ 93%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/copy_ops_util.cpp.o 2025-06-05T23:55:51.9245146Z [ 93%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/delinearize_index.cpp.o 2025-06-05T23:55:51.9246551Z [ 93%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/distance_util.cpp.o 2025-06-05T23:55:51.9247911Z [ 94%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/dtype_util.cpp.o 2025-06-05T23:55:51.9249241Z [ 94%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/index_util.cpp.o 2025-06-05T23:55:51.9250621Z [ 95%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/matmul_ops_util.cpp.o 2025-06-05T23:55:51.9252026Z [ 95%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/kernel_ops_util.cpp.o 2025-06-05T23:55:51.9253498Z [ 95%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/normalization_ops_util.cpp.o 2025-06-05T23:55:51.9254923Z [ 95%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/padding_util.cpp.o 2025-06-05T23:55:51.9256278Z [ 96%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/reduce_util.cpp.o 2025-06-05T23:55:51.9257633Z [ 96%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/repeat_util.cpp.o 2025-06-05T23:55:51.9259014Z [ 96%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/select_copy_util.cpp.o 2025-06-05T23:55:51.9260396Z [ 96%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/slice_util.cpp.o 2025-06-05T23:55:51.9261750Z [ 97%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/upsample_util.cpp.o 2025-06-05T23:55:51.9262926Z [ 97%] Linking CXX static library libportable_kernels.a 2025-06-05T23:55:51.9263495Z [ 97%] Built target portable_kernels 2025-06-05T23:55:51.9264181Z [ 98%] Generating selected_operators.yaml for portable_ops_lib 2025-06-05T23:55:51.9264939Z [ 98%] Generating code for kernel registration 2025-06-05T23:55:51.9266259Z [ 98%] Building CXX object kernels/portable/CMakeFiles/portable_ops_lib.dir/portable_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp.o 2025-06-05T23:55:51.9267575Z [ 98%] Linking CXX static library libportable_ops_lib.a 2025-06-05T23:55:51.9268237Z [ 98%] Built target portable_ops_lib 2025-06-05T23:55:51.9269252Z [ 98%] Building CXX object CMakeFiles/executor_runner.dir/examples/portable/executor_runner/executor_runner.cpp.o 2025-06-05T23:55:51.9270672Z [ 98%] Building CXX object CMakeFiles/executor_runner.dir/extension/data_loader/file_data_loader.cpp.o 2025-06-05T23:55:51.9271977Z [ 99%] Building CXX object CMakeFiles/executor_runner.dir/extension/evalue_util/print_evalue.cpp.o 2025-06-05T23:55:51.9273218Z [ 99%] Building CXX object CMakeFiles/executor_runner.dir/extension/runner_util/inputs.cpp.o 2025-06-05T23:55:51.9274477Z [ 99%] Building CXX object CMakeFiles/executor_runner.dir/extension/runner_util/inputs_portable.cpp.o 2025-06-05T23:55:51.9275888Z [100%] Building CXX object CMakeFiles/executor_runner.dir/runtime/executor/test/test_backend_compiler_lib.cpp.o 2025-06-05T23:55:51.9276926Z [100%] Linking CXX executable executor_runner 2025-06-05T23:55:51.9277460Z [100%] Built target executor_runner 2025-06-05T23:55:51.9277865Z + [[ '' == *main* ]] 2025-06-05T23:55:51.9278205Z + [[ '' == *gh* ]] 2025-06-05T23:55:51.9278550Z + PYTHON_EXECUTABLE=python 2025-06-05T23:55:52.2755131Z + cmake -DPYTHON_EXECUTABLE=python -DCMAKE_INSTALL_PREFIX=cmake-out -DEXECUTORCH_ENABLE_LOGGING=1 -DCMAKE_BUILD_TYPE=Release -DEXECUTORCH_BUILD_EXTENSION_DATA_LOADER=ON -DEXECUTORCH_BUILD_EXTENSION_MODULE=ON -DEXECUTORCH_BUILD_EXTENSION_TENSOR=ON -DEXECUTORCH_BUILD_XNNPACK=ON -DEXECUTORCH_BUILD_KERNELS_QUANTIZED=ON -DEXECUTORCH_BUILD_KERNELS_OPTIMIZED=ON -DEXECUTORCH_BUILD_KERNELS_CUSTOM=ON -DEXECUTORCH_BUILD_DEVTOOLS=ON -DEXECUTORCH_ENABLE_EVENT_TRACER=ON -Bcmake-out . 2025-06-05T23:55:52.2758687Z -- --- Configured Options --- 2025-06-05T23:55:52.2758966Z 2025-06-05T23:55:52.2759150Z -- CMAKE_CXX_STANDARD : 17 2025-06-05T23:55:52.2759733Z -- CMAKE_SYSTEM_PROCESSOR : x86_64 2025-06-05T23:55:52.2760328Z -- CMAKE_BUILD_TYPE : Release 2025-06-05T23:55:52.2760908Z -- PYTHON_EXECUTABLE : python 2025-06-05T23:55:52.2761437Z -- CMAKE_CXX_COMPILER_ID : Clang 2025-06-05T23:55:52.2762016Z -- CMAKE_TOOLCHAIN_FILE x (unset) 2025-06-05T23:55:52.2762591Z -- BUCK2 x (unset) 2025-06-05T23:55:52.2763087Z -- EXECUTORCH_ENABLE_LOGGING : 1 2025-06-05T23:55:52.2763644Z -- EXECUTORCH_BUILD_COREML : OFF 2025-06-05T23:55:52.2764174Z -- EXECUTORCH_FLATBUFFERS_MAX_ALIGNMENT : 1024 2025-06-05T23:55:52.2764763Z -- EXECUTORCH_PAL_DEFAULT : posix 2025-06-05T23:55:52.2765549Z -- EXECUTORCH_PAL_DEFAULT_FILE_PATH : /pytorch/executorch/runtime/platform/default/posix.cpp 2025-06-05T23:55:52.2766324Z -- EXECUTORCH_LOG_LEVEL : Info 2025-06-05T23:55:52.2766901Z -- EXECUTORCH_ENABLE_PROGRAM_VERIFICATION : OFF 2025-06-05T23:55:52.2767437Z -- EXECUTORCH_ENABLE_EVENT_TRACER : ON 2025-06-05T23:55:52.2767956Z -- EXECUTORCH_OPTIMIZE_SIZE : OFF 2025-06-05T23:55:52.2768464Z -- EXECUTORCH_BUILD_ARM_BAREMETAL : OFF 2025-06-05T23:55:52.2768985Z -- EXECUTORCH_BUILD_KERNELS_CUSTOM : ON 2025-06-05T23:55:52.2769496Z -- EXECUTORCH_BUILD_KERNELS_CUSTOM_AOT : OFF 2025-06-05T23:55:52.2770026Z -- EXECUTORCH_BUILD_KERNELS_QUANTIZED_AOT : OFF 2025-06-05T23:55:52.2770548Z -- EXECUTORCH_BUILD_EXTENSION_DATA_LOADER : ON 2025-06-05T23:55:52.2771143Z -- EXECUTORCH_BUILD_EXTENSION_FLAT_TENSOR : OFF 2025-06-05T23:55:52.2771655Z -- EXECUTORCH_BUILD_EXTENSION_LLM : OFF 2025-06-05T23:55:52.2772184Z -- EXECUTORCH_BUILD_EXTENSION_MODULE : ON 2025-06-05T23:55:52.2772739Z -- EXECUTORCH_BUILD_EXTENSION_RUNNER_UTIL : OFF 2025-06-05T23:55:52.2773266Z -- EXECUTORCH_BUILD_EXTENSION_TENSOR : ON 2025-06-05T23:55:52.2773779Z -- EXECUTORCH_BUILD_EXTENSION_TRAINING : OFF 2025-06-05T23:55:52.2774311Z -- EXECUTORCH_BUILD_EXTENSION_APPLE : OFF 2025-06-05T23:55:52.2774812Z -- EXECUTORCH_BUILD_MPS : OFF 2025-06-05T23:55:52.2775319Z -- EXECUTORCH_BUILD_NEURON : OFF 2025-06-05T23:55:52.2775815Z -- EXECUTORCH_BUILD_OPENVINO : OFF 2025-06-05T23:55:52.2776326Z -- EXECUTORCH_BUILD_PYBIND : OFF 2025-06-05T23:55:52.2776820Z -- EXECUTORCH_BUILD_QNN : OFF 2025-06-05T23:55:52.2777342Z -- EXECUTORCH_BUILD_KERNELS_OPTIMIZED : ON 2025-06-05T23:55:52.2777908Z -- EXECUTORCH_BUILD_KERNELS_QUANTIZED : ON 2025-06-05T23:55:52.2778424Z -- EXECUTORCH_BUILD_DEVTOOLS : ON 2025-06-05T23:55:52.2778930Z -- EXECUTORCH_BUILD_TESTS : OFF 2025-06-05T23:55:52.2779442Z -- EXECUTORCH_NNLIB_OPT : OFF 2025-06-05T23:55:52.2779939Z -- EXECUTORCH_CADENCE_CPU_RUNNER : OFF 2025-06-05T23:55:52.2780453Z -- EXECUTORCH_BUILD_SIZE_TEST : OFF 2025-06-05T23:55:52.2780950Z -- EXECUTORCH_BUILD_XNNPACK : ON 2025-06-05T23:55:52.2781454Z -- EXECUTORCH_BUILD_VULKAN : OFF 2025-06-05T23:55:52.2781951Z -- EXECUTORCH_BUILD_PORTABLE_OPS : ON 2025-06-05T23:55:52.2782456Z -- EXECUTORCH_USE_DL : ON 2025-06-05T23:55:52.2782945Z -- EXECUTORCH_BUILD_CADENCE : OFF 2025-06-05T23:55:52.2783457Z -- EXECUTORCH_BUILD_CORTEX_M : OFF 2025-06-05T23:55:52.2784082Z -- EXECUTORCH_BUILD_GFLAGS : ON 2025-06-05T23:55:52.2784593Z -- EXECUTORCH_COREML_BUILD_EXECUTOR_RUNNER : OFF 2025-06-05T23:55:52.2785358Z -- EXECUTORCH_BUILD_PTHREADPOOL : ON 2025-06-05T23:55:52.2786022Z -- EXECUTORCH_BUILD_CPUINFO : ON 2025-06-05T23:55:52.2786543Z -- EXECUTORCH_BUILD_EXECUTOR_RUNNER : ON 2025-06-05T23:55:52.2787053Z -- EXECUTORCH_XNNPACK_SHARED_WORKSPACE : ON 2025-06-05T23:55:52.2787578Z -- EXECUTORCH_XNNPACK_ENABLE_KLEIDI : OFF 2025-06-05T23:55:52.2788090Z -- EXECUTORCH_XNNPACK_ENABLE_WEIGHT_CACHE : OFF 2025-06-05T23:55:52.2788644Z -- -------------------------- 2025-06-05T23:55:52.2789242Z -- Using the multi-header code from /pytorch/executorch/third-party/json/include/ 2025-06-05T23:55:52.2790527Z CMake Deprecation Warning at third-party/flatcc/CMakeLists.txt:2 (cmake_minimum_required): 2025-06-05T23:55:52.2791548Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:55:52.2792169Z CMake. 2025-06-05T23:55:52.2792337Z 2025-06-05T23:55:52.2792644Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:55:52.2793449Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:55:52.2794136Z to work with policies introduced by or earlier. 2025-06-05T23:55:52.2794506Z 2025-06-05T23:55:52.2794664Z  2025-06-05T23:55:52.2795050Z -- dist install dir /pytorch/executorch/third-party/flatcc 2025-06-05T23:55:52.2795694Z -- lib install dir /pytorch/executorch/third-party/flatcc/lib 2025-06-05T23:55:52.2796249Z -- Setting Clang compiler options 2025-06-05T23:55:52.2797241Z -- Configured C_FLAGS: -DFLATCC_REFLECTION=0 -Wstrict-prototypes -Wsign-conversion -Wconversion -std=c11 -pedantic -Wall -Wextra -Werror 2025-06-05T23:55:52.2798784Z CMake Deprecation Warning at backends/xnnpack/third-party/FXdiv/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:55:52.2799835Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:55:52.2800440Z CMake. 2025-06-05T23:55:52.2800606Z 2025-06-05T23:55:52.2800929Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:55:52.2801724Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:55:52.2802422Z to work with policies introduced by or earlier. 2025-06-05T23:55:52.2802794Z 2025-06-05T23:55:52.2802931Z  2025-06-05T23:55:52.2803782Z CMake Deprecation Warning at backends/xnnpack/third-party/cpuinfo/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:55:52.2804832Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:55:52.2805440Z CMake. 2025-06-05T23:55:52.2805606Z 2025-06-05T23:55:52.2805914Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:55:52.2806712Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:55:52.2807397Z to work with policies introduced by or earlier. 2025-06-05T23:55:52.2807771Z 2025-06-05T23:55:52.2807918Z  2025-06-05T23:55:52.2808781Z CMake Deprecation Warning at backends/xnnpack/third-party/pthreadpool/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-06-05T23:55:52.2809885Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:55:52.2810478Z CMake. 2025-06-05T23:55:52.2810644Z 2025-06-05T23:55:52.2810961Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:55:52.2811746Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:55:52.2812438Z to work with policies introduced by or earlier. 2025-06-05T23:55:52.2812808Z 2025-06-05T23:55:52.2812942Z  2025-06-05T23:55:52.2813240Z -- Resolved buck2 as buck2. 2025-06-05T23:55:52.2813617Z -- Killing buck2 daemon 2025-06-05T23:55:52.2813966Z 'buck2 killall' 2025-06-05T23:55:52.2814304Z -- executorch: Generating source lists 2025-06-05T23:55:52.2815169Z -- executorch: Using source file list /pytorch/executorch/cmake-out/executorch_srcs.cmake 2025-06-05T23:55:52.2816114Z -- executorch: Using sources file /pytorch/executorch/cmake-out/executorch_srcs.cmake 2025-06-05T23:55:52.2817285Z 'python' '-c' 'import importlib.util; print(importlib.util.find_spec('torch').submodule_search_locations[0])' 2025-06-05T23:55:52.2818156Z -- Generating operator lib: 2025-06-05T23:55:52.2818564Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:55:52.2819125Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/portable/functions.yaml 2025-06-05T23:55:52.2819739Z -- ROOT_OPS: 2025-06-05T23:55:52.2820063Z -- INCLUDE_ALL_OPS: 2025-06-05T23:55:52.2821817Z 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.2823461Z -- Generating kernel bindings: 2025-06-05T23:55:52.2823884Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:55:52.2824441Z -- FUNCTIONS_YAML: /pytorch/executorch/kernels/portable/functions.yaml 2025-06-05T23:55:52.2825046Z -- CUSTOM_OPS_YAML: 2025-06-05T23:55:52.2825427Z -- ADD_EXCEPTION_BOUNDARY: FALSE 2025-06-05T23:55:52.2827809Z 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.2830055Z -- Generating operator lib: 2025-06-05T23:55:52.2830466Z -- LIB_NAME: portable_ops_lib 2025-06-05T23:55:52.2830875Z -- KERNEL_LIBS: portable_kernels 2025-06-05T23:55:52.2831296Z -- DEPS: executorch_core 2025-06-05T23:55:52.2831697Z -- Generating operator lib: 2025-06-05T23:55:52.2832083Z -- LIB_NAME: optimized_ops_lib 2025-06-05T23:55:52.2832660Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/optimized/optimized.yaml 2025-06-05T23:55:52.2833272Z -- ROOT_OPS: 2025-06-05T23:55:52.2833596Z -- INCLUDE_ALL_OPS: 2025-06-05T23:55:52.2835349Z Command - python;-m;codegen.tools.gen_oplist;--output_path=/pytorch/executorch/cmake-out/kernels/optimized/optimized_ops_lib/selected_operators.yaml;--ops_schema_yaml_path="/pytorch/executorch/kernels/optimized/optimized.yaml" 2025-06-05T23:55:52.2836995Z -- Generating kernel bindings: 2025-06-05T23:55:52.2837399Z -- LIB_NAME: optimized_ops_lib 2025-06-05T23:55:52.2837984Z -- FUNCTIONS_YAML: /pytorch/executorch/kernels/optimized/optimized.yaml 2025-06-05T23:55:52.2838596Z -- CUSTOM_OPS_YAML: 2025-06-05T23:55:52.2838967Z -- ADD_EXCEPTION_BOUNDARY: TRUE 2025-06-05T23:55:52.2841447Z Generated files /pytorch/executorch/cmake-out/kernels/optimized/optimized_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp;/pytorch/executorch/cmake-out/kernels/optimized/optimized_ops_lib/Functions.h;/pytorch/executorch/cmake-out/kernels/optimized/optimized_ops_lib/NativeFunctions.h 2025-06-05T23:55:52.2843665Z -- Generating operator lib: 2025-06-05T23:55:52.2844088Z -- LIB_NAME: optimized_ops_lib 2025-06-05T23:55:52.2844502Z -- KERNEL_LIBS: optimized_kernels 2025-06-05T23:55:52.2844940Z -- DEPS: executorch_core 2025-06-05T23:55:52.2845328Z -- Merging kernel yaml files: 2025-06-05T23:55:52.2846011Z -- FUNCTIONS_YAML: /pytorch/executorch/configurations/../kernels/optimized/optimized.yaml 2025-06-05T23:55:52.2847034Z -- FALLBACK_YAML: /pytorch/executorch/configurations/../kernels/portable/functions.yaml 2025-06-05T23:55:52.2847858Z -- OUTPUT_DIR: /pytorch/executorch/cmake-out/configurations 2025-06-05T23:55:52.2848414Z -- Generating operator lib: 2025-06-05T23:55:52.2848827Z -- LIB_NAME: optimized_native_cpu_ops_lib 2025-06-05T23:55:52.2849490Z -- OPS_SCHEMA_YAML: /pytorch/executorch/cmake-out/configurations/merged.yaml 2025-06-05T23:55:52.2850119Z -- ROOT_OPS: 2025-06-05T23:55:52.2850457Z -- INCLUDE_ALL_OPS: 2025-06-05T23:55:57.1597812Z Command - python;-m;codegen.tools.gen_oplist;--output_path=/pytorch/executorch/cmake-out/configurations/optimized_native_cpu_ops_lib/selected_operators.yaml;--ops_schema_yaml_path="/pytorch/executorch/cmake-out/configurations/merged.yaml" 2025-06-05T23:55:57.1601554Z -- Generating kernel bindings: 2025-06-05T23:55:57.1602376Z -- LIB_NAME: optimized_native_cpu_ops_lib 2025-06-05T23:55:57.1603508Z -- FUNCTIONS_YAML: /pytorch/executorch/cmake-out/configurations/merged.yaml 2025-06-05T23:55:57.1604623Z -- CUSTOM_OPS_YAML: 2025-06-05T23:55:57.1605258Z -- ADD_EXCEPTION_BOUNDARY: TRUE 2025-06-05T23:55:57.1610043Z Generated files /pytorch/executorch/cmake-out/configurations/optimized_native_cpu_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp;/pytorch/executorch/cmake-out/configurations/optimized_native_cpu_ops_lib/Functions.h;/pytorch/executorch/cmake-out/configurations/optimized_native_cpu_ops_lib/NativeFunctions.h 2025-06-05T23:55:57.1614249Z -- Generating operator lib: 2025-06-05T23:55:57.1615017Z -- LIB_NAME: optimized_native_cpu_ops_lib 2025-06-05T23:55:57.1616006Z -- KERNEL_LIBS: optimized_kernels;optimized_portable_kernels 2025-06-05T23:55:57.1616934Z -- DEPS: executorch_core 2025-06-05T23:55:57.1618450Z CMake Deprecation Warning at third-party/gflags/CMakeLists.txt:73 (cmake_minimum_required): 2025-06-05T23:55:57.1620114Z Compatibility with CMake < 3.10 will be removed from a future version of 2025-06-05T23:55:57.1621197Z CMake. 2025-06-05T23:55:57.1621501Z 2025-06-05T23:55:57.1622048Z Update the VERSION argument value. Or, use the ... syntax 2025-06-05T23:55:57.1623470Z to tell CMake that the project requires at least but has been updated 2025-06-05T23:55:57.1624703Z to work with policies introduced by or earlier. 2025-06-05T23:55:57.1625372Z 2025-06-05T23:55:57.1625647Z  2025-06-05T23:55:57.1626460Z -- The ASM compiler identification is Clang with GNU-like command-line 2025-06-05T23:55:57.1627576Z -- Found assembler: /opt/cache/bin/cc 2025-06-05T23:55:57.1628528Z -- Building for XNNPACK_TARGET_PROCESSOR: x86_64 2025-06-05T23:55:57.1630092Z -- Found Python: /opt/conda/envs/py_3.10/bin/python3.10 (found version "3.10.16") found components: Interpreter 2025-06-05T23:55:57.1631596Z -- Generating microkernels.cmake 2025-06-05T23:55:57.1632429Z No microkernel found in src/reference/binary-elementwise.cc 2025-06-05T23:55:57.1633381Z No microkernel found in src/reference/packing.cc 2025-06-05T23:55:57.1634337Z No microkernel found in src/reference/unary-elementwise.cc 2025-06-05T23:55:57.1636060Z -- executorch: Using source file list /pytorch/executorch/cmake-out/extension/llm/custom_ops/../../../executorch_srcs.cmake 2025-06-05T23:55:57.1637712Z -- Generating operator lib: 2025-06-05T23:55:57.1638254Z -- LIB_NAME: quantized_ops_lib 2025-06-05T23:55:57.1639211Z -- OPS_SCHEMA_YAML: /pytorch/executorch/kernels/quantized/quantized.yaml 2025-06-05T23:55:57.1640206Z -- ROOT_OPS: 2025-06-05T23:55:57.1640741Z -- INCLUDE_ALL_OPS: 2025-06-05T23:55:57.1643787Z Command - python;-m;codegen.tools.gen_oplist;--output_path=/pytorch/executorch/cmake-out/kernels/quantized/quantized_ops_lib/selected_operators.yaml;--ops_schema_yaml_path="/pytorch/executorch/kernels/quantized/quantized.yaml" 2025-06-05T23:55:57.1646603Z -- Generating kernel bindings: 2025-06-05T23:55:57.1647260Z -- LIB_NAME: quantized_ops_lib 2025-06-05T23:55:57.1647856Z -- FUNCTIONS_YAML: 2025-06-05T23:55:57.1648663Z -- CUSTOM_OPS_YAML: /pytorch/executorch/kernels/quantized/quantized.yaml 2025-06-05T23:55:57.1649617Z -- ADD_EXCEPTION_BOUNDARY: FALSE 2025-06-05T23:55:57.1657051Z Generated files /pytorch/executorch/cmake-out/kernels/quantized/quantized_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp;/pytorch/executorch/cmake-out/kernels/quantized/quantized_ops_lib/Functions.h;/pytorch/executorch/cmake-out/kernels/quantized/quantized_ops_lib/NativeFunctions.h;/pytorch/executorch/cmake-out/kernels/quantized/quantized_ops_lib/RegisterCPUCustomOps.cpp;/pytorch/executorch/cmake-out/kernels/quantized/quantized_ops_lib/RegisterSchema.cpp;/pytorch/executorch/cmake-out/kernels/quantized/quantized_ops_lib/CustomOpsNativeFunctions.h 2025-06-05T23:55:57.1664422Z -- Generating operator lib: 2025-06-05T23:55:57.1665311Z -- LIB_NAME: quantized_ops_lib 2025-06-05T23:55:57.1666042Z -- KERNEL_LIBS: quantized_kernels 2025-06-05T23:55:57.1666767Z -- DEPS: executorch_core 2025-06-05T23:55:57.1667438Z -- Configuring done (4.1s) 2025-06-05T23:55:57.1668117Z -- Generating done (0.4s) 2025-06-05T23:55:57.1668989Z -- Build files have been written to: /pytorch/executorch/cmake-out 2025-06-05T23:55:57.1670190Z + cmake --build cmake-out -j16 --target install --config Release 2025-06-05T23:55:57.1671226Z [ 1%] Built target flatcc_external_project 2025-06-05T23:55:57.1672749Z [ 1%] Building C object extension/llm/custom_ops/spinquant/third-party/FFHT/CMakeFiles/dumb_fht.dir/dumb_fht.c.o 2025-06-05T23:55:57.1674327Z [ 1%] Built target flatbuffers_external_project 2025-06-05T23:55:57.1676103Z [ 1%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/single.cpp.o 2025-06-05T23:55:57.1678763Z [ 1%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/portable-api.c.o 2025-06-05T23:55:57.1681260Z [ 1%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/double.cpp.o 2025-06-05T23:55:57.1683764Z [ 1%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/legacy-api.c.o 2025-06-05T23:55:57.1686263Z [ 1%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/complex_single.cpp.o 2025-06-05T23:55:57.1688965Z [ 1%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/complex_double.cpp.o 2025-06-05T23:55:57.1691198Z [ 1%] Building CXX object third-party/gflags/CMakeFiles/gflags_nothreads_static.dir/src/gflags.cc.o 2025-06-05T23:55:57.1693645Z [ 1%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/pthreads.c.o 2025-06-05T23:55:57.1696061Z [ 1%] Building CXX object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/xerbla.cpp.o 2025-06-05T23:55:57.1698344Z [ 1%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/fastpath.c.o 2025-06-05T23:55:57.1700829Z [ 2%] Building CXX object third-party/gflags/CMakeFiles/gflags_nothreads_static.dir/src/gflags_reporting.cc.o 2025-06-05T23:55:57.1703291Z [ 3%] Building C object backends/xnnpack/third-party/pthreadpool/CMakeFiles/pthreadpool.dir/src/memory.c.o 2025-06-05T23:55:57.1705763Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/api.c.o 2025-06-05T23:55:57.1708328Z [ 3%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/api.c.o 2025-06-05T23:55:57.1710821Z [ 3%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/builder.c.o 2025-06-05T23:55:57.1712393Z [ 4%] Linking C static library libdumb_fht.a 2025-06-05T23:55:57.1713123Z [ 4%] Built target dumb_fht 2025-06-05T23:55:57.1714626Z [ 4%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/cache.c.o 2025-06-05T23:55:57.1716062Z [ 4%] Built target common_schema 2025-06-05T23:55:57.1717534Z [ 4%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/srotm.c.o 2025-06-05T23:55:57.1719099Z [ 5%] Generating xnnpack_schema headers 2025-06-05T23:55:57.1720508Z [ 5%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/emitter.c.o 2025-06-05T23:55:57.1722407Z [ 5%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/cache.c.o 2025-06-05T23:55:57.1724564Z [ 5%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/init.c.o 2025-06-05T23:55:57.1727222Z [ 5%] Building CXX object third-party/gflags/CMakeFiles/gflags_nothreads_static.dir/src/gflags_completions.cc.o 2025-06-05T23:55:57.1728990Z [ 5%] Built target xnnpack_schema 2025-06-05T23:55:57.1730630Z [ 5%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/srotmg.c.o 2025-06-05T23:55:57.1732992Z [ 5%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/log.c.o 2025-06-05T23:55:57.1743680Z [ 5%] Linking C static library libpthreadpool.a 2025-06-05T23:55:57.1744935Z [ 5%] Generating scalar_type_schema headers 2025-06-05T23:55:57.1746630Z [ 5%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/init.c.o 2025-06-05T23:55:57.1749123Z [ 5%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/drotm.c.o 2025-06-05T23:55:57.1751742Z [ 5%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/init.c.o 2025-06-05T23:55:57.1754229Z [ 5%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/log.c.o 2025-06-05T23:55:57.1755654Z [ 5%] Built target scalar_type_schema 2025-06-05T23:55:57.1756443Z [ 5%] Built target program_schema 2025-06-05T23:55:57.1757997Z [ 5%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/refmap.c.o 2025-06-05T23:55:57.1759361Z [ 5%] Built target pthreadpool 2025-06-05T23:55:57.1760325Z [ 5%] Generating flat_tensor_schema headers 2025-06-05T23:55:57.1761988Z [ 5%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/verifier.c.o 2025-06-05T23:55:57.1764356Z [ 5%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/drotmg.c.o 2025-06-05T23:55:57.1765947Z [ 5%] Built target flat_tensor_schema 2025-06-05T23:55:57.1767831Z [ 5%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/info.c.o 2025-06-05T23:55:57.1770342Z [ 5%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/json_parser.c.o 2025-06-05T23:55:57.1772746Z [ 5%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/lsame.c.o 2025-06-05T23:55:57.1775322Z [ 5%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/vendor.c.o 2025-06-05T23:55:57.1777799Z [ 5%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/init.c.o 2025-06-05T23:55:57.8230783Z [ 5%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/dspmv.c.o 2025-06-05T23:55:57.8232998Z [ 6%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/info.c.o 2025-06-05T23:55:57.8234909Z [ 6%] Building CXX object CMakeFiles/executorch_core.dir/runtime/backend/interface.cpp.o 2025-06-05T23:55:57.8236874Z [ 6%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/uarch.c.o 2025-06-05T23:55:57.8239060Z [ 6%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/allocation-type.c.o 2025-06-05T23:55:57.8241163Z [ 6%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/vendor.c.o 2025-06-05T23:55:57.8243092Z [ 6%] Building C object third-party/flatcc/src/runtime/CMakeFiles/flatccrt.dir/json_printer.c.o 2025-06-05T23:55:57.8244681Z [ 6%] Linking CXX static library libgflags_nothreads.a 2025-06-05T23:55:57.8246409Z [ 6%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/name.c.o 2025-06-05T23:55:57.8248463Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/ssbmv.c.o 2025-06-05T23:55:57.8250760Z [ 6%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/chbmv.c.o 2025-06-05T23:55:57.8253450Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-avgpool/f16-avgpool-9p8x-minmax-f16c-c8.c.o 2025-06-05T23:55:57.8255964Z [ 7%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/topology.c.o 2025-06-05T23:55:57.8258667Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-avgpool/f16-avgpool-9x-minmax-f16c-c8.c.o 2025-06-05T23:55:57.8261134Z [ 7%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/sspmv.c.o 2025-06-05T23:55:57.8263244Z [ 7%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/isa.c.o 2025-06-05T23:55:57.8265536Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/datatype-strings.c.o 2025-06-05T23:55:57.8267767Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/indirection.dir/src/indirection.c.o 2025-06-05T23:55:57.8269158Z [ 7%] Built target gflags_nothreads_static 2025-06-05T23:55:57.8270701Z [ 7%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microparams-init.dir/src/microparams-init.c.o 2025-06-05T23:55:57.8273093Z [ 7%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/cache/init.c.o 2025-06-05T23:55:57.8275430Z [ 7%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/uarch.c.o 2025-06-05T23:55:57.8277391Z [ 7%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/name.c.o 2025-06-05T23:55:57.8279181Z [ 7%] Linking C static library /pytorch/executorch/third-party/flatcc/lib/libflatccrt.a 2025-06-05T23:55:57.8281023Z [ 8%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/zhbmv.c.o 2025-06-05T23:55:57.8282305Z [ 8%] Built target flatccrt 2025-06-05T23:55:57.8283967Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/normalization.dir/src/normalization.c.o 2025-06-05T23:55:57.8288461Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/datatype.dir/src/datatype.c.o 2025-06-05T23:55:57.8291326Z [ 8%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/cache/descriptor.c.o 2025-06-05T23:55:57.8294007Z [ 8%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/chpmv.c.o 2025-06-05T23:55:57.8297151Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-25p8c-minmax-fma3-acc2.c.o 2025-06-05T23:55:57.8300346Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/microkernel-type.c.o 2025-06-05T23:55:57.8302781Z [ 8%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/node-type.c.o 2025-06-05T23:55:57.8304841Z [ 8%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/evalue.cpp.o 2025-06-05T23:55:57.8306910Z [ 8%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/dsbmv.c.o 2025-06-05T23:55:57.8308391Z [ 8%] Built target microparams-init 2025-06-05T23:55:57.8310341Z [ 8%] Building CXX object backends/xnnpack/third-party/XNNPACK/CMakeFiles/reference-ukernels.dir/src/reference/unary-elementwise.cc.o 2025-06-05T23:55:57.8312967Z [ 8%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/zhpmv.c.o 2025-06-05T23:55:57.8314629Z [ 8%] Built target indirection 2025-06-05T23:55:57.8316252Z [ 8%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/dtbmv.c.o 2025-06-05T23:55:57.8319288Z [ 8%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/cache/deterministic.c.o 2025-06-05T23:55:57.8322106Z [ 8%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/stbmv.c.o 2025-06-05T23:55:57.8323678Z [ 8%] Built target normalization 2025-06-05T23:55:57.8325547Z [ 9%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/linux/init.c.o 2025-06-05T23:55:57.8328561Z [ 9%] Building CXX object backends/xnnpack/third-party/XNNPACK/CMakeFiles/reference-ukernels.dir/src/reference/binary-elementwise.cc.o 2025-06-05T23:55:57.8331475Z [ 9%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/topology.c.o 2025-06-05T23:55:57.8333051Z [ 9%] Built target datatype 2025-06-05T23:55:57.8334959Z [ 9%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/linux/cpuinfo.c.o 2025-06-05T23:55:57.8337645Z [ 9%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/ctbmv.c.o 2025-06-05T23:55:57.8340715Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-3p16c-minmax-fma3.c.o 2025-06-05T23:55:57.8343818Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/enums/operator-type.c.o 2025-06-05T23:55:57.8346391Z [ 9%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/ztbmv.c.o 2025-06-05T23:55:57.8349034Z [ 9%] Building C object kernels/optimized/CMakeFiles/eigen_blas.dir/third-party/eigen/blas/f2c/complexdots.c.o 2025-06-05T23:55:57.8351488Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/logging.dir/src/log.c.o 2025-06-05T23:55:57.8353896Z [ 9%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/exec_aten/util/tensor_shape_to_c_string.cpp.o 2025-06-05T23:55:57.8356599Z [ 9%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/multiline.c.o 2025-06-05T23:55:57.8359319Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-4p16c-minmax-fma3.c.o 2025-06-05T23:55:57.8362026Z [ 9%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/exec_aten/util/tensor_util_portable.cpp.o 2025-06-05T23:55:57.8364206Z [ 9%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/smallfile.c.o 2025-06-05T23:55:57.8367395Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-9p16c-minmax-fma3.c.o 2025-06-05T23:55:57.8370607Z [ 9%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/cpulist.c.o 2025-06-05T23:55:57.8374313Z [ 9%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-avx-int16-u16.c.o 2025-06-05T23:55:57.8377348Z [ 10%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/portable_type/tensor_impl.cpp.o 2025-06-05T23:55:57.8379630Z [ 10%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/isa.c.o 2025-06-05T23:55:57.8382147Z [ 10%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/processors.c.o 2025-06-05T23:55:57.8383755Z [ 10%] Built target reference-ukernels 2025-06-05T23:55:57.8385022Z [ 10%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/tag.cpp.o 2025-06-05T23:55:57.8387443Z [ 10%] Building CXX object CMakeFiles/executorch_core.dir/runtime/core/tensor_layout.cpp.o 2025-06-05T23:55:57.8389004Z [ 10%] Linking CXX static library libeigen_blas.a 2025-06-05T23:55:57.8391525Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-avx512skx-u16.c.o 2025-06-05T23:55:57.8394317Z [ 10%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/init.c.o 2025-06-05T23:55:57.8397105Z [ 10%] 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:55:57.8398918Z [ 10%] Built target logging 2025-06-05T23:55:58.7967700Z [ 10%] 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:55:58.7971452Z [ 10%] 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:55:58.7974662Z [ 10%] Building CXX object backends/xnnpack/third-party/XNNPACK/CMakeFiles/packing.dir/src/reference/packing.cc.o 2025-06-05T23:55:58.7976687Z [ 10%] Linking C static library libcpuinfo_internals.a 2025-06-05T23:55:58.7979284Z [ 10%] 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:55:58.7981384Z [ 10%] Built target eigen_blas 2025-06-05T23:55:58.7983218Z [ 10%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/descriptor.c.o 2025-06-05T23:55:58.7985974Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/allocator.dir/src/allocator.c.o 2025-06-05T23:55:58.7988301Z [ 10%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/method.cpp.o 2025-06-05T23:55:58.7989693Z [ 10%] Built target cpuinfo_internals 2025-06-05T23:55:58.7992142Z [ 10%] 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:55:58.7996189Z [ 10%] 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:55:58.7999451Z [ 10%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/cache.dir/src/cache.c.o 2025-06-05T23:55:58.8001714Z [ 10%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/method_meta.cpp.o 2025-06-05T23:55:58.8004303Z [ 10%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/deterministic.c.o 2025-06-05T23:55:58.8007979Z [ 11%] 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:55:58.8012316Z [ 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:55:58.8016589Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-igemm/gen/f16-f32acc-igemm-4x16-minmax-avx2-broadcast.c.o 2025-06-05T23:55:58.8019753Z [ 11%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/program.cpp.o 2025-06-05T23:55:58.8022932Z [ 11%] 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:55:58.8026241Z [ 11%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/linux/init.c.o 2025-06-05T23:55:58.8028257Z [ 11%] Built target allocator 2025-06-05T23:55:58.8029701Z [ 11%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/pte_data_map.cpp.o 2025-06-05T23:55:58.8031030Z [ 11%] Built target packing 2025-06-05T23:55:58.8031654Z [ 11%] Built target cache 2025-06-05T23:55:58.8034103Z [ 11%] 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:55:58.8037804Z [ 11%] 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:55:58.8040960Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/memory.dir/src/memory.c.o 2025-06-05T23:55:58.8043305Z [ 11%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/linux/cpuinfo.c.o 2025-06-05T23:55:58.8046048Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernel-utils.dir/src/microkernel-utils.c.o 2025-06-05T23:55:58.8048551Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/mutex.dir/src/mutex.c.o 2025-06-05T23:55:58.8050919Z [ 11%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/smallfile.c.o 2025-06-05T23:55:58.8054084Z [ 11%] 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:55:58.8057602Z [ 11%] 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:55:58.8061110Z [ 11%] 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:55:58.8064223Z [ 11%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/multiline.c.o 2025-06-05T23:55:58.8067472Z [ 11%] 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:55:58.8070579Z [ 11%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/tensor_parser_exec_aten.cpp.o 2025-06-05T23:55:58.8072048Z [ 11%] Built target memory 2025-06-05T23:55:58.8072646Z [ 11%] Built target mutex 2025-06-05T23:55:58.8073275Z [ 11%] Built target microkernel-utils 2025-06-05T23:55:58.8075596Z [ 11%] 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:55:58.8078460Z [ 11%] Building CXX object CMakeFiles/executorch_core.dir/runtime/executor/tensor_parser_portable.cpp.o 2025-06-05T23:55:58.8081558Z [ 11%] 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:55:58.8084681Z [ 11%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/cpulist.c.o 2025-06-05T23:55:58.8087557Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operator-utils.dir/src/operator-utils.c.o 2025-06-05T23:55:58.8090110Z [ 11%] Building CXX object CMakeFiles/executorch_core.dir/runtime/kernel/operator_registry.cpp.o 2025-06-05T23:55:58.8092572Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operator-run.dir/src/operator-run.c.o 2025-06-05T23:55:58.8096046Z [ 11%] 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:55:58.8099644Z [ 11%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/f16-rmax-f16c-u32.c.o 2025-06-05T23:55:58.8102533Z [ 11%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/abort.cpp.o 2025-06-05T23:55:58.8105604Z [ 11%] 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:55:58.8109276Z [ 11%] 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:55:58.8111915Z [ 11%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/log.cpp.o 2025-06-05T23:55:58.8113838Z [ 11%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/platform.cpp.o 2025-06-05T23:55:58.8116035Z [ 11%] Building C object backends/xnnpack/third-party/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/processors.c.o 2025-06-05T23:55:58.8117588Z [ 11%] Built target operator-utils 2025-06-05T23:55:58.8119783Z [ 12%] 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:55:58.8122472Z [ 12%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/profiler.cpp.o 2025-06-05T23:55:58.8124363Z [ 12%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/runtime.cpp.o 2025-06-05T23:55:58.8125599Z [ 12%] Built target operator-run 2025-06-05T23:55:58.8127368Z [ 12%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operator-delete.c.o 2025-06-05T23:55:58.8130021Z [ 13%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/argmax-pooling-nhwc.c.o 2025-06-05T23:55:58.8132350Z [ 14%] Building CXX object CMakeFiles/executorch_core.dir/schema/extended_header.cpp.o 2025-06-05T23:55:58.8134893Z [ 14%] 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:55:58.8138147Z [ 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:55:58.8141105Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/average-pooling-nhwc.c.o 2025-06-05T23:55:58.8143631Z [ 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:55:58.8145678Z [ 14%] Building CXX object CMakeFiles/executorch_core.dir/runtime/platform/default/posix.cpp.o 2025-06-05T23:55:59.8329532Z [ 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:55:59.8332922Z [ 14%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/batch-matrix-multiply-nc.c.o 2025-06-05T23:55:59.8335093Z [ 15%] Linking C static library libcpuinfo.a 2025-06-05T23:55:59.8337192Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/binary-elementwise-nd.c.o 2025-06-05T23:55:59.8340559Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vdivc-f16c-u8.c.o 2025-06-05T23:55:59.8343974Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmax-f16c-u16.c.o 2025-06-05T23:55:59.8347137Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/channel-shuffle-nc.c.o 2025-06-05T23:55:59.8350457Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmaxc-f16c-u16.c.o 2025-06-05T23:55:59.8353675Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/constant-pad-nd.c.o 2025-06-05T23:55:59.8355755Z [ 15%] Built target cpuinfo 2025-06-05T23:55:59.8357692Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/convolution-nchw.c.o 2025-06-05T23:55:59.8360766Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmin-f16c-u16.c.o 2025-06-05T23:55:59.8364021Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/hardware-config.dir/src/configs/hardware-config.c.o 2025-06-05T23:55:59.8367307Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vminc-f16c-u16.c.o 2025-06-05T23:55:59.8370695Z [ 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:55:59.8372974Z [ 15%] Linking CXX static library libexecutorch_core.a 2025-06-05T23:55:59.8375084Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/convolution-nhwc.c.o 2025-06-05T23:55:59.8378123Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/deconvolution-nhwc.c.o 2025-06-05T23:55:59.8381342Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/dynamic-fully-connected-nc.c.o 2025-06-05T23:55:59.8384736Z [ 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:55:59.8387952Z [ 15%] Built target executorch_core 2025-06-05T23:55:59.8390023Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/fully-connected-nc.c.o 2025-06-05T23:55:59.8393282Z [ 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:55:59.8396706Z [ 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:55:59.8400149Z [ 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:55:59.8402137Z [ 15%] Built target hardware-config 2025-06-05T23:55:59.8403648Z [ 15%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/et_copy_index.cpp.o 2025-06-05T23:55:59.8406175Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/max-pooling-nhwc.c.o 2025-06-05T23:55:59.8409044Z [ 15%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/pack-lh.c.o 2025-06-05T23:55:59.8411497Z [ 15%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/register_prim_ops.cpp.o 2025-06-05T23:55:59.8414351Z [ 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:55:59.8417436Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/reduce-nd.c.o 2025-06-05T23:55:59.8419763Z [ 16%] Building CXX object CMakeFiles/executorch.dir/kernels/prim_ops/et_view.cpp.o 2025-06-05T23:55:59.8422526Z [ 16%] 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:55:59.8425655Z [ 16%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/activation_ops_util.cpp.o 2025-06-05T23:55:59.8428886Z [ 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:55:59.8432228Z [ 16%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/advanced_index_util.cpp.o 2025-06-05T23:55:59.8435034Z [ 16%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/threadpool.cpp.o 2025-06-05T23:55:59.8437989Z [ 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:55:59.8441300Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/resize-bilinear-nchw.c.o 2025-06-05T23:55:59.8444010Z [ 16%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/broadcast_util.cpp.o 2025-06-05T23:55:59.8446443Z [ 16%] Building CXX object extension/data_loader/CMakeFiles/extension_data_loader.dir/file_data_loader.cpp.o 2025-06-05T23:55:59.8449466Z [ 16%] 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:55:59.8452856Z [ 16%] 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:55:59.8456130Z [ 16%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/resize-bilinear-nhwc.c.o 2025-06-05T23:55:59.8459467Z [ 16%] 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:55:59.8462943Z [ 16%] 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:55:59.8466282Z [ 16%] 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:55:59.8469405Z [ 16%] Building CXX object extension/data_loader/CMakeFiles/extension_data_loader.dir/mmap_data_loader.cpp.o 2025-06-05T23:55:59.8472045Z [ 16%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/copy_ops_util.cpp.o 2025-06-05T23:55:59.8474828Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/rope-nthc.c.o 2025-06-05T23:55:59.8476777Z [ 17%] Linking CXX static library libexecutorch.a 2025-06-05T23:55:59.8478856Z [ 17%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/delinearize_index.cpp.o 2025-06-05T23:55:59.8481554Z [ 17%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/threadpool_guard.cpp.o 2025-06-05T23:55:59.8484570Z [ 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:55:59.8487736Z [ 17%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/distance_util.cpp.o 2025-06-05T23:55:59.8491034Z [ 17%] 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:55:59.8493186Z [ 17%] Built target executorch 2025-06-05T23:55:59.8495431Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/scaled-dot-product-attention-nhtc.c.o 2025-06-05T23:55:59.8498471Z [ 17%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/dtype_util.cpp.o 2025-06-05T23:55:59.8501122Z [ 17%] Building CXX object extension/flat_tensor/CMakeFiles/extension_flat_tensor.dir/flat_tensor_data_map.cpp.o 2025-06-05T23:55:59.8504152Z [ 17%] 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:55:59.8506523Z [ 17%] Linking CXX static library libextension_data_loader.a 2025-06-05T23:55:59.8508769Z [ 17%] Building CXX object extension/tensor/CMakeFiles/extension_tensor.dir/tensor_ptr.cpp.o 2025-06-05T23:55:59.8511786Z [ 17%] 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:55:59.8515162Z [ 17%] 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:01.0335585Z [ 17%] Built target extension_data_loader 2025-06-05T23:56:01.0337780Z [ 17%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/thread_parallel.cpp.o 2025-06-05T23:56:01.0339327Z [ 17%] Generating etdump headers 2025-06-05T23:56:01.0341327Z [ 17%] 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:01.0344097Z [ 17%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/slice-nd.c.o 2025-06-05T23:56:01.0347067Z [ 17%] 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:01.0349807Z [ 17%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/etdump_flatcc.cpp.o 2025-06-05T23:56:01.0352587Z [ 18%] 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:01.0356082Z [ 18%] 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:01.0358912Z [ 18%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/index_util.cpp.o 2025-06-05T23:56:01.0361407Z [ 18%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/kernel_ops_util.cpp.o 2025-06-05T23:56:01.0364654Z [ 18%] 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:01.0367819Z [ 18%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/matmul_ops_util.cpp.o 2025-06-05T23:56:01.0370277Z [ 19%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/normalization_ops_util.cpp.o 2025-06-05T23:56:01.0372783Z [ 19%] Building CXX object extension/threadpool/CMakeFiles/extension_threadpool.dir/cpuinfo_utils.cpp.o 2025-06-05T23:56:01.0375380Z [ 19%] Building CXX object extension/flat_tensor/CMakeFiles/extension_flat_tensor.dir/serialize/flat_tensor_header.cpp.o 2025-06-05T23:56:01.0377998Z [ 19%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/padding_util.cpp.o 2025-06-05T23:56:01.0380548Z [ 19%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/softmax-nc.c.o 2025-06-05T23:56:01.0382839Z [ 19%] Building CXX object extension/tensor/CMakeFiles/extension_tensor.dir/tensor_ptr_maker.cpp.o 2025-06-05T23:56:01.0384827Z [ 19%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/reduce_util.cpp.o 2025-06-05T23:56:01.0388157Z [ 19%] 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:01.0407631Z [ 19%] 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:01.0409984Z [ 19%] Generating bundled_program headers 2025-06-05T23:56:01.0411489Z [ 19%] Building CXX object devtools/bundled_program/CMakeFiles/bundled_program.dir/bundled_program.cpp.o 2025-06-05T23:56:01.0414494Z [ 19%] 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:01.0417408Z [ 19%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/repeat_util.cpp.o 2025-06-05T23:56:01.0419271Z [ 19%] Linking CXX static library libextension_flat_tensor.a 2025-06-05T23:56:01.0421537Z [ 19%] 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:01.0423897Z [ 19%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/emitter.cpp.o 2025-06-05T23:56:01.0425975Z [ 19%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/transpose-nd.c.o 2025-06-05T23:56:01.0428573Z [ 19%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/slice_util.cpp.o 2025-06-05T23:56:01.0431094Z [ 19%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/select_copy_util.cpp.o 2025-06-05T23:56:01.0432966Z [ 19%] Linking CXX static library libextension_threadpool.a 2025-06-05T23:56:01.0434071Z [ 19%] Built target extension_flat_tensor 2025-06-05T23:56:01.0436451Z [ 19%] 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:01.0439085Z [ 19%] Building CXX object extension/module/CMakeFiles/extension_module.dir/module.cpp.o 2025-06-05T23:56:01.0440444Z [ 19%] Built target extension_threadpool 2025-06-05T23:56:01.0442084Z [ 19%] Building CXX object extension/module/CMakeFiles/extension_module_static.dir/module.cpp.o 2025-06-05T23:56:01.0444557Z [ 19%] Building CXX object kernels/portable/cpu/util/CMakeFiles/kernels_util_all_deps.dir/upsample_util.cpp.o 2025-06-05T23:56:01.0447638Z [ 19%] 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:01.0450136Z [ 20%] Linking CXX static library libextension_tensor.a 2025-06-05T23:56:01.0452698Z [ 20%] 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:01.0456400Z [ 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:01.0459842Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/unary-elementwise-nc.c.o 2025-06-05T23:56:01.0463322Z [ 20%] 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:01.0466632Z [ 20%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/operators.dir/src/operators/unpooling-nhwc.c.o 2025-06-05T23:56:01.0469704Z [ 20%] 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:01.0473222Z [ 20%] 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:01.0475575Z [ 20%] Linking CXX static library libbundled_program.a 2025-06-05T23:56:01.0476576Z [ 20%] Built target extension_tensor 2025-06-05T23:56:01.0478820Z [ 20%] 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:01.0482355Z [ 21%] 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:01.0485927Z [ 21%] 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:01.0489103Z [ 21%] Building CXX object kernels/optimized/CMakeFiles/cpublas.dir/blas/BlasKernel.cpp.o 2025-06-05T23:56:01.0491704Z [ 21%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op__empty_dim_order.cpp.o 2025-06-05T23:56:01.0493391Z [ 21%] Built target bundled_program 2025-06-05T23:56:01.0495820Z [ 21%] 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:01.0498905Z [ 21%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/data_sinks/buffer_data_sink.cpp.o 2025-06-05T23:56:01.0501062Z [ 21%] Building CXX object kernels/optimized/CMakeFiles/cpublas.dir/blas/CPUBlas.cpp.o 2025-06-05T23:56:01.0503197Z [ 21%] Building CXX object devtools/etdump/CMakeFiles/etdump.dir/data_sinks/file_data_sink.cpp.o 2025-06-05T23:56:01.0506317Z [ 21%] 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:01.0510212Z [ 21%] 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:01.0513961Z [ 21%] 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:01.0517557Z [ 21%] 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:01.0519619Z [ 21%] Built target operators 2025-06-05T23:56:01.0520706Z [ 21%] Linking CXX static library libkernels_util_all_deps.a 2025-06-05T23:56:01.0522193Z [ 21%] Linking CXX static library libextension_module_static.a 2025-06-05T23:56:01.0524765Z [ 21%] 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:01.0527224Z [ 21%] Linking CXX shared library libextension_module.so 2025-06-05T23:56:01.0529174Z [ 21%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/memory-planner.c.o 2025-06-05T23:56:02.6648478Z [ 21%] 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:02.6652071Z [ 21%] 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:02.6654106Z [ 21%] Built target extension_module_static 2025-06-05T23:56:02.6655793Z [ 21%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/runtime.c.o 2025-06-05T23:56:02.6658950Z [ 21%] 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:02.6661227Z [ 21%] Built target kernels_util_all_deps 2025-06-05T23:56:02.6663519Z [ 21%] 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:02.6666978Z [ 21%] 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:02.6670575Z [ 21%] 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:02.6672834Z [ 22%] Linking CXX static library libetdump.a 2025-06-05T23:56:02.6675281Z [ 22%] 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:02.6678563Z [ 22%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/embeddingxb.cpp.o 2025-06-05T23:56:02.6681792Z [ 22%] 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:02.6683859Z [ 22%] Built target extension_module 2025-06-05T23:56:02.6686334Z [ 23%] 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:02.6689386Z [ 23%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op__to_dim_order_copy.cpp.o 2025-06-05T23:56:02.6691601Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph.c.o 2025-06-05T23:56:02.6694180Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/argmax-pooling-2d.c.o 2025-06-05T23:56:02.6696070Z [ 23%] Linking CXX static library libcpublas.a 2025-06-05T23:56:02.6696937Z [ 23%] Built target etdump 2025-06-05T23:56:02.6698335Z [ 23%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_add.cpp.o 2025-06-05T23:56:02.6701268Z [ 23%] 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:02.6704343Z [ 23%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_abs.cpp.o 2025-06-05T23:56:02.6707557Z [ 23%] 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:02.6709845Z [ 23%] Built target cpublas 2025-06-05T23:56:02.6712019Z [ 23%] 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:02.6714789Z [ 23%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_acos.cpp.o 2025-06-05T23:56:02.6717625Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-minmax-scalar-acc2.c.o 2025-06-05T23:56:02.6720531Z [ 23%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_acosh.cpp.o 2025-06-05T23:56:02.6723380Z [ 23%] 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:02.6726761Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-scalar-acc2.c.o 2025-06-05T23:56:02.6729529Z [ 23%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/binary_ops.cpp.o 2025-06-05T23:56:02.6732130Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/average-pooling-2d.c.o 2025-06-05T23:56:02.6735013Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/batch-matrix-multiply.c.o 2025-06-05T23:56:02.6737809Z [ 23%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_choose_qparams.cpp.o 2025-06-05T23:56:02.6740100Z [ 23%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_add.cpp.o 2025-06-05T23:56:02.6742320Z [ 23%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_bmm.cpp.o 2025-06-05T23:56:02.6745525Z [ 23%] 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:02.6749073Z [ 23%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_div.cpp.o 2025-06-05T23:56:02.6751663Z [ 23%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_add.cpp.o 2025-06-05T23:56:02.6754122Z [ 23%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_dequantize.cpp.o 2025-06-05T23:56:02.6757305Z [ 23%] 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:02.6760487Z [ 23%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op__empty_dim_order.cpp.o 2025-06-05T23:56:02.6763702Z [ 23%] 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:02.6767611Z [ 23%] 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:02.6770804Z [ 23%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op__to_dim_order_copy.cpp.o 2025-06-05T23:56:02.6773439Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/binary.c.o 2025-06-05T23:56:02.6776006Z [ 23%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_addmm.cpp.o 2025-06-05T23:56:02.6779087Z [ 23%] 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:02.6782141Z [ 23%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_embedding.cpp.o 2025-06-05T23:56:02.6785384Z [ 23%] 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:02.6788457Z [ 23%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_elu.cpp.o 2025-06-05T23:56:02.6790867Z [ 23%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_embedding2b.cpp.o 2025-06-05T23:56:02.6793459Z [ 23%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_alias_copy.cpp.o 2025-06-05T23:56:02.6796025Z [ 23%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_embedding4b.cpp.o 2025-06-05T23:56:02.6799179Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-fma3.c.o 2025-06-05T23:56:02.6802967Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-minmax-scalar-acc2.c.o 2025-06-05T23:56:02.6806015Z [ 23%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_exp.cpp.o 2025-06-05T23:56:02.6808612Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/concatenate.c.o 2025-06-05T23:56:02.6811373Z [ 23%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_fft_c2r.cpp.o 2025-06-05T23:56:02.6814068Z [ 23%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/convolution-2d.c.o 2025-06-05T23:56:02.6816619Z [ 23%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_abs.cpp.o 2025-06-05T23:56:02.6819025Z [ 23%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_allclose.cpp.o 2025-06-05T23:56:02.6822146Z [ 24%] 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:02.6825201Z [ 24%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_amax.cpp.o 2025-06-05T23:56:02.6828109Z [ 25%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/copy.c.o 2025-06-05T23:56:04.8023509Z [ 26%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_amin.cpp.o 2025-06-05T23:56:04.8026762Z [ 26%] 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:04.8030090Z [ 26%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_mixed_linear.cpp.o 2025-06-05T23:56:04.8032582Z [ 26%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_mixed_mm.cpp.o 2025-06-05T23:56:04.8035010Z [ 26%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_fft_r2c.cpp.o 2025-06-05T23:56:04.8037382Z [ 27%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_gelu.cpp.o 2025-06-05T23:56:04.8040583Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/deconvolution-2d.c.o 2025-06-05T23:56:04.8043496Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/deprecated.c.o 2025-06-05T23:56:04.8046437Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/depth-to-space-2d.c.o 2025-06-05T23:56:04.8049055Z [ 27%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_le.cpp.o 2025-06-05T23:56:04.8051337Z [ 27%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_acos.cpp.o 2025-06-05T23:56:04.8053689Z [ 27%] Building CXX object kernels/quantized/CMakeFiles/quantized_kernels.dir/cpu/op_quantize.cpp.o 2025-06-05T23:56:04.8056176Z [ 27%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_any.cpp.o 2025-06-05T23:56:04.8059723Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-2x1-acc2.c.o 2025-06-05T23:56:04.8062996Z [ 27%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_acosh.cpp.o 2025-06-05T23:56:04.8065430Z [ 27%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_arange.cpp.o 2025-06-05T23:56:04.8069017Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-4x1.c.o 2025-06-05T23:56:04.8072756Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/depthwise-convolution-2d.c.o 2025-06-05T23:56:04.8076535Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-sse-2x4-acc2.c.o 2025-06-05T23:56:04.8081199Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-ssse3-2x4-acc2.c.o 2025-06-05T23:56:04.8084751Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/even-split.c.o 2025-06-05T23:56:04.8088541Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-1x1-acc2.c.o 2025-06-05T23:56:04.8091812Z [ 27%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_add.cpp.o 2025-06-05T23:56:04.8094091Z [ 27%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_addmm.cpp.o 2025-06-05T23:56:04.8096420Z [ 27%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_linear.cpp.o 2025-06-05T23:56:04.8098684Z [ 27%] Linking CXX static library libquantized_kernels.a 2025-06-05T23:56:04.8099699Z [ 27%] Built target quantized_kernels 2025-06-05T23:56:04.8101133Z [ 27%] Generating selected_operators.yaml for quantized_ops_lib 2025-06-05T23:56:04.8104227Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-2x1-acc2.c.o 2025-06-05T23:56:04.8108768Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-sse-1x4-acc3.c.o 2025-06-05T23:56:04.8112096Z [ 27%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_alias_copy.cpp.o 2025-06-05T23:56:04.8114919Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/fully-connected-sparse.c.o 2025-06-05T23:56:04.8117774Z [ 27%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_argmax.cpp.o 2025-06-05T23:56:04.8121230Z [ 27%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/fully-connected.c.o 2025-06-05T23:56:04.8124946Z [ 27%] 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:04.8128298Z [ 28%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_allclose.cpp.o 2025-06-05T23:56:04.8131735Z [ 28%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-2x1-acc2.c.o 2025-06-05T23:56:04.8135333Z [ 28%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/max-pooling-2d.c.o 2025-06-05T23:56:04.8138104Z [ 28%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_argmin.cpp.o 2025-06-05T23:56:04.8139952Z [ 29%] Generating code for kernel registration 2025-06-05T23:56:04.8141712Z [ 29%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_amax.cpp.o 2025-06-05T23:56:04.8144955Z [ 29%] 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:04.8148204Z [ 29%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_amin.cpp.o 2025-06-05T23:56:04.8150360Z [ 29%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/pack-lh.c.o 2025-06-05T23:56:04.8152911Z [ 29%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/reshape-helpers.c.o 2025-06-05T23:56:04.8155213Z [ 29%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_log_softmax.cpp.o 2025-06-05T23:56:04.8157497Z [ 29%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_any.cpp.o 2025-06-05T23:56:04.8160299Z [ 29%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/scaled-dot-product-attention.c.o 2025-06-05T23:56:04.8164229Z [ 29%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1-acc5.c.o 2025-06-05T23:56:04.8167738Z [ 29%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/softmax.c.o 2025-06-05T23:56:04.8170483Z [ 29%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_as_strided_copy.cpp.o 2025-06-05T23:56:04.8173411Z [ 29%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/space-to-depth-2d.c.o 2025-06-05T23:56:04.8176298Z [ 29%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_arange.cpp.o 2025-06-05T23:56:04.8178756Z [ 29%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_argmax.cpp.o 2025-06-05T23:56:04.8181176Z [ 29%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_asin.cpp.o 2025-06-05T23:56:04.8183989Z [ 29%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-constant-pad.c.o 2025-06-05T23:56:04.8187335Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-reduce.c.o 2025-06-05T23:56:04.8190993Z [ 30%] 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:04.8194439Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_asinh.cpp.o 2025-06-05T23:56:04.8196983Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_atan.cpp.o 2025-06-05T23:56:04.8199866Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-resize-bilinear-2d.c.o 2025-06-05T23:56:04.8203598Z [ 30%] 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:04.8206777Z [ 30%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_argmin.cpp.o 2025-06-05T23:56:04.8209387Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-slice.c.o 2025-06-05T23:56:04.8212087Z [ 30%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_as_strided_copy.cpp.o 2025-06-05T23:56:08.1293573Z [ 30%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_mm.cpp.o 2025-06-05T23:56:08.1295984Z [ 30%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_atan2.cpp.o 2025-06-05T23:56:08.1299123Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-avx-u24.c.o 2025-06-05T23:56:08.1302307Z [ 30%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-transpose.c.o 2025-06-05T23:56:08.1305583Z [ 31%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-avx512skx-u16.c.o 2025-06-05T23:56:08.1308622Z [ 31%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_atanh.cpp.o 2025-06-05T23:56:08.1311593Z [ 31%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-f16c-u16.c.o 2025-06-05T23:56:08.1314445Z [ 31%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_asin.cpp.o 2025-06-05T23:56:08.1316902Z [ 31%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/unpooling-2d.c.o 2025-06-05T23:56:08.1319587Z [ 31%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_avg_pool2d.cpp.o 2025-06-05T23:56:08.1322004Z [ 31%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_asinh.cpp.o 2025-06-05T23:56:08.1324469Z [ 31%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_and.cpp.o 2025-06-05T23:56:08.1326813Z [ 31%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_atan.cpp.o 2025-06-05T23:56:08.1330254Z [ 31%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-u4.c.o 2025-06-05T23:56:08.1333298Z [ 31%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_atan2.cpp.o 2025-06-05T23:56:08.1336262Z [ 31%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-u2.c.o 2025-06-05T23:56:08.1339353Z [ 31%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_not.cpp.o 2025-06-05T23:56:08.1341898Z [ 31%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/unary.c.o 2025-06-05T23:56:08.1344495Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_or.cpp.o 2025-06-05T23:56:08.1347052Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bitwise_xor.cpp.o 2025-06-05T23:56:08.1349782Z [ 32%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/validation.c.o 2025-06-05T23:56:08.1352957Z [ 32%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-sse2-u16.c.o 2025-06-05T23:56:08.1355810Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_bmm.cpp.o 2025-06-05T23:56:08.1358194Z [ 32%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/subgraph.dir/src/tensor.c.o 2025-06-05T23:56:08.1360626Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cat.cpp.o 2025-06-05T23:56:08.1362938Z [ 32%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_atanh.cpp.o 2025-06-05T23:56:08.1365388Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cdist_forward.cpp.o 2025-06-05T23:56:08.1368464Z [ 32%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-sse41-u8.c.o 2025-06-05T23:56:08.1371285Z [ 32%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_avg_pool2d.cpp.o 2025-06-05T23:56:08.1373682Z [ 32%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_and.cpp.o 2025-06-05T23:56:08.1376040Z [ 32%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ceil.cpp.o 2025-06-05T23:56:08.1378363Z [ 33%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_not.cpp.o 2025-06-05T23:56:08.1379882Z [ 33%] Built target subgraph 2025-06-05T23:56:08.1381480Z [ 33%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_or.cpp.o 2025-06-05T23:56:08.1383838Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_clamp.cpp.o 2025-06-05T23:56:08.1386578Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_clone.cpp.o 2025-06-05T23:56:08.1389327Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_constant_pad_nd.cpp.o 2025-06-05T23:56:08.1392602Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x16-minmax-avx-broadcast.c.o 2025-06-05T23:56:08.1395468Z [ 33%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_mul.cpp.o 2025-06-05T23:56:08.1397881Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_convolution.cpp.o 2025-06-05T23:56:08.1400636Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_convolution_backward.cpp.o 2025-06-05T23:56:08.1403528Z [ 33%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bitwise_xor.cpp.o 2025-06-05T23:56:08.1406131Z [ 33%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_native_layer_norm.cpp.o 2025-06-05T23:56:08.1408533Z [ 33%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_neg.cpp.o 2025-06-05T23:56:08.1410894Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_copy.cpp.o 2025-06-05T23:56:08.1413167Z [ 33%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_bmm.cpp.o 2025-06-05T23:56:08.1415528Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cos.cpp.o 2025-06-05T23:56:08.1417940Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cosh.cpp.o 2025-06-05T23:56:08.1420443Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_cumsum.cpp.o 2025-06-05T23:56:08.1423545Z [ 33%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x16-minmax-fma3-broadcast.c.o 2025-06-05T23:56:08.1427116Z [ 33%] Building CXX object kernels/quantized/CMakeFiles/quantized_ops_lib.dir/quantized_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp.o 2025-06-05T23:56:08.1430244Z [ 33%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_detach_copy.cpp.o 2025-06-05T23:56:08.1432594Z [ 33%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cat.cpp.o 2025-06-05T23:56:08.1434993Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_diagonal_copy.cpp.o 2025-06-05T23:56:08.1437535Z [ 34%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cdist_forward.cpp.o 2025-06-05T23:56:08.1439897Z [ 34%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_sigmoid.cpp.o 2025-06-05T23:56:08.1442245Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_div.cpp.o 2025-06-05T23:56:08.1444548Z [ 34%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_sub.cpp.o 2025-06-05T23:56:08.1446793Z [ 34%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ceil.cpp.o 2025-06-05T23:56:08.1449047Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_elu.cpp.o 2025-06-05T23:56:08.1451533Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_embedding.cpp.o 2025-06-05T23:56:08.1454707Z [ 34%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x16s4-minmax-fma3-broadcast.c.o 2025-06-05T23:56:08.1457271Z [ 34%] Linking CXX static library libquantized_ops_lib.a 2025-06-05T23:56:08.1459164Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_empty.cpp.o 2025-06-05T23:56:08.1460697Z [ 34%] Built target quantized_ops_lib 2025-06-05T23:56:08.1463067Z [ 34%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x32-minmax-avx512f-broadcast.c.o 2025-06-05T23:56:08.1466191Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_eq.cpp.o 2025-06-05T23:56:08.1468636Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_erf.cpp.o 2025-06-05T23:56:08.1470897Z [ 34%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_clamp.cpp.o 2025-06-05T23:56:12.6620114Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_exp.cpp.o 2025-06-05T23:56:12.6623801Z [ 34%] 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:12.6626987Z [ 34%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_clone.cpp.o 2025-06-05T23:56:12.6629930Z [ 34%] 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:12.6632853Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_expand_copy.cpp.o 2025-06-05T23:56:12.6635228Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_expm1.cpp.o 2025-06-05T23:56:12.6637919Z [ 34%] 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:12.6640602Z [ 34%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_constant_pad_nd.cpp.o 2025-06-05T23:56:12.6642795Z [ 34%] Building CXX object kernels/optimized/CMakeFiles/optimized_kernels.dir/cpu/op_where.cpp.o 2025-06-05T23:56:12.6645580Z [ 34%] 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:12.6648319Z [ 34%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_convolution.cpp.o 2025-06-05T23:56:12.6650570Z [ 34%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_fill.cpp.o 2025-06-05T23:56:12.6653343Z [ 34%] 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:12.6656546Z [ 35%] 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:12.6659332Z [ 35%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_convolution_backward.cpp.o 2025-06-05T23:56:12.6661651Z [ 35%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_flip.cpp.o 2025-06-05T23:56:12.6664604Z [ 35%] 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:12.6667376Z [ 35%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_copy.cpp.o 2025-06-05T23:56:12.6670612Z [ 35%] 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:12.6673619Z [ 35%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cos.cpp.o 2025-06-05T23:56:12.6675871Z [ 35%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cosh.cpp.o 2025-06-05T23:56:12.6678816Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-scalar.c.o 2025-06-05T23:56:12.6681779Z [ 35%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_cumsum.cpp.o 2025-06-05T23:56:12.6684614Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-scalar.c.o 2025-06-05T23:56:12.6688131Z [ 35%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2c4-minmax-sse.c.o 2025-06-05T23:56:12.6690957Z [ 36%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_floor.cpp.o 2025-06-05T23:56:12.6693268Z [ 36%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_detach_copy.cpp.o 2025-06-05T23:56:12.6695918Z [ 36%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_floor_divide.cpp.o 2025-06-05T23:56:12.6699015Z [ 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:12.6701770Z [ 36%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_fmod.cpp.o 2025-06-05T23:56:12.6704060Z [ 36%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_diagonal_copy.cpp.o 2025-06-05T23:56:12.6706332Z [ 36%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_full.cpp.o 2025-06-05T23:56:12.6709420Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_full_like.cpp.o 2025-06-05T23:56:12.6712534Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x4-relu-scalar.c.o 2025-06-05T23:56:12.6721955Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_gather.cpp.o 2025-06-05T23:56:12.6724422Z [ 37%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_div.cpp.o 2025-06-05T23:56:12.6726825Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ge.cpp.o 2025-06-05T23:56:12.6729131Z [ 37%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_elu.cpp.o 2025-06-05T23:56:12.6731904Z [ 37%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x4-scalar.c.o 2025-06-05T23:56:12.6734614Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_gelu.cpp.o 2025-06-05T23:56:12.6736972Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_glu.cpp.o 2025-06-05T23:56:12.6739368Z [ 37%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_embedding.cpp.o 2025-06-05T23:56:12.6741809Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_gt.cpp.o 2025-06-05T23:56:12.6744684Z [ 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:12.6747320Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_hardtanh.cpp.o 2025-06-05T23:56:12.6749758Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_index.cpp.o 2025-06-05T23:56:12.6751965Z [ 37%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_empty.cpp.o 2025-06-05T23:56:12.6754068Z [ 37%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_eq.cpp.o 2025-06-05T23:56:12.6756387Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_index_put.cpp.o 2025-06-05T23:56:12.6759119Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_index_select.cpp.o 2025-06-05T23:56:12.6762530Z [ 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:12.6766302Z [ 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:12.6769351Z [ 37%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_erf.cpp.o 2025-06-05T23:56:12.6772103Z [ 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:12.6775427Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_isinf.cpp.o 2025-06-05T23:56:12.6778806Z [ 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:12.6781996Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_isnan.cpp.o 2025-06-05T23:56:12.6784339Z [ 37%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_exp.cpp.o 2025-06-05T23:56:12.6889707Z [ 37%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_expand_copy.cpp.o 2025-06-05T23:56:12.6892189Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_le.cpp.o 2025-06-05T23:56:12.6894762Z [ 37%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_leaky_relu.cpp.o 2025-06-05T23:56:12.6898036Z [ 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:12.6902031Z [ 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:12.6904989Z [ 38%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_expm1.cpp.o 2025-06-05T23:56:12.6908025Z [ 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:15.6029652Z [ 38%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_lift_fresh_copy.cpp.o 2025-06-05T23:56:15.6032917Z [ 38%] 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:15.6035925Z [ 38%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_fill.cpp.o 2025-06-05T23:56:15.6038557Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_linear_scratch_example.cpp.o 2025-06-05T23:56:15.6041207Z [ 39%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_flip.cpp.o 2025-06-05T23:56:15.6044298Z [ 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:15.6047426Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log.cpp.o 2025-06-05T23:56:15.6050716Z [ 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:15.6053905Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log10.cpp.o 2025-06-05T23:56:15.6056331Z [ 39%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_floor.cpp.o 2025-06-05T23:56:15.6059587Z [ 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:15.6062835Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log1p.cpp.o 2025-06-05T23:56:15.6065375Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log2.cpp.o 2025-06-05T23:56:15.6068166Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_log_softmax.cpp.o 2025-06-05T23:56:15.6070690Z [ 39%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_floor_divide.cpp.o 2025-06-05T23:56:15.6073678Z [ 39%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_and.cpp.o 2025-06-05T23:56:15.6076396Z [ 40%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_fmod.cpp.o 2025-06-05T23:56:15.6080878Z [ 40%] 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:15.6084010Z [ 40%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_full.cpp.o 2025-06-05T23:56:15.6086710Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_not.cpp.o 2025-06-05T23:56:15.6089841Z [ 40%] 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:15.6092958Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_or.cpp.o 2025-06-05T23:56:15.6096083Z [ 40%] 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:15.6099262Z [ 40%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_full_like.cpp.o 2025-06-05T23:56:15.6101855Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logical_xor.cpp.o 2025-06-05T23:56:15.6106248Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_logit.cpp.o 2025-06-05T23:56:15.6109424Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-sse-load1.c.o 2025-06-05T23:56:15.6113144Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-2x4-minmax-scalar.c.o 2025-06-05T23:56:15.6116130Z [ 40%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_gather.cpp.o 2025-06-05T23:56:15.6119169Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-2x4-relu-scalar.c.o 2025-06-05T23:56:15.6122185Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_lt.cpp.o 2025-06-05T23:56:15.6125219Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-2x4-scalar.c.o 2025-06-05T23:56:15.6127647Z [ 40%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ge.cpp.o 2025-06-05T23:56:15.6129810Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_masked_fill.cpp.o 2025-06-05T23:56:15.6132123Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_masked_scatter.cpp.o 2025-06-05T23:56:15.6134653Z [ 40%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_gelu.cpp.o 2025-06-05T23:56:15.6137828Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x16s4-minmax-fma3-broadcast.c.o 2025-06-05T23:56:15.6141619Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-scalar.c.o 2025-06-05T23:56:15.6144711Z [ 40%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_masked_select.cpp.o 2025-06-05T23:56:15.6147223Z [ 40%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_glu.cpp.o 2025-06-05T23:56:15.6153896Z [ 40%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-scalar.c.o 2025-06-05T23:56:15.6157280Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_max.cpp.o 2025-06-05T23:56:15.6159644Z [ 41%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_gt.cpp.o 2025-06-05T23:56:15.6163350Z [ 41%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_hardtanh.cpp.o 2025-06-05T23:56:15.6166033Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_max_pool2d_with_indices.cpp.o 2025-06-05T23:56:15.6168681Z [ 41%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_index.cpp.o 2025-06-05T23:56:15.6171008Z [ 41%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_index_put.cpp.o 2025-06-05T23:56:15.6173487Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_maximum.cpp.o 2025-06-05T23:56:15.6176324Z [ 41%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_max_pool2d_with_indices_backward.cpp.o 2025-06-05T23:56:15.6179315Z [ 41%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_index_select.cpp.o 2025-06-05T23:56:15.6182408Z [ 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:15.6186261Z [ 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:15.6189368Z [ 42%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_mean.cpp.o 2025-06-05T23:56:15.6191894Z [ 42%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_min.cpp.o 2025-06-05T23:56:15.6194295Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_isinf.cpp.o 2025-06-05T23:56:15.6196759Z [ 42%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_minimum.cpp.o 2025-06-05T23:56:15.6199205Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_isnan.cpp.o 2025-06-05T23:56:15.6201477Z [ 42%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_le.cpp.o 2025-06-05T23:56:15.6203829Z [ 42%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_mm.cpp.o 2025-06-05T23:56:15.6206738Z [ 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:15.6209287Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_leaky_relu.cpp.o 2025-06-05T23:56:15.6211890Z [ 43%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x4-scalar.c.o 2025-06-05T23:56:15.6214565Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_lift_fresh_copy.cpp.o 2025-06-05T23:56:15.6216750Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_mul.cpp.o 2025-06-05T23:56:15.6219049Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_linear_scratch_example.cpp.o 2025-06-05T23:56:17.3453974Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_narrow_copy.cpp.o 2025-06-05T23:56:17.3457304Z [ 43%] 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:17.3460490Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_batch_norm.cpp.o 2025-06-05T23:56:17.3462974Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log.cpp.o 2025-06-05T23:56:17.3465867Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_dropout.cpp.o 2025-06-05T23:56:17.3469626Z [ 43%] 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:17.3473663Z [ 43%] 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:17.3476786Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log10.cpp.o 2025-06-05T23:56:17.3479050Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log1p.cpp.o 2025-06-05T23:56:17.3482139Z [ 43%] 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:17.3485430Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log2.cpp.o 2025-06-05T23:56:17.3488591Z [ 43%] 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:17.3491676Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_log_softmax.cpp.o 2025-06-05T23:56:17.3494764Z [ 43%] 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:17.3497985Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_group_norm.cpp.o 2025-06-05T23:56:17.3501364Z [ 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:17.3504693Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_native_layer_norm.cpp.o 2025-06-05T23:56:17.3507341Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_and.cpp.o 2025-06-05T23:56:17.3510629Z [ 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:17.3513726Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ne.cpp.o 2025-06-05T23:56:17.3516182Z [ 43%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_not.cpp.o 2025-06-05T23:56:17.3519368Z [ 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:17.3522468Z [ 43%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_neg.cpp.o 2025-06-05T23:56:17.3525597Z [ 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:17.3529418Z [ 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:17.3533508Z [ 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:17.3536751Z [ 44%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_or.cpp.o 2025-06-05T23:56:17.3539297Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_nonzero.cpp.o 2025-06-05T23:56:17.3542715Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x16-minmax-fma3-broadcast.c.o 2025-06-05T23:56:17.3546093Z [ 45%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logical_xor.cpp.o 2025-06-05T23:56:17.3549554Z [ 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:17.3552707Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_ones.cpp.o 2025-06-05T23:56:17.3555333Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pdist_forward.cpp.o 2025-06-05T23:56:17.3558587Z [ 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:17.3561595Z [ 45%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_logit.cpp.o 2025-06-05T23:56:17.3564100Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_permute_copy.cpp.o 2025-06-05T23:56:17.3567692Z [ 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:17.3571092Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pixel_shuffle.cpp.o 2025-06-05T23:56:17.3573441Z [ 45%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_lt.cpp.o 2025-06-05T23:56:17.3576593Z [ 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:17.3580655Z [ 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:17.3584643Z [ 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:17.3591134Z [ 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:17.3594480Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pixel_unshuffle.cpp.o 2025-06-05T23:56:17.3598053Z [ 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:17.3601360Z [ 45%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_masked_fill.cpp.o 2025-06-05T23:56:17.3603845Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_pow.cpp.o 2025-06-05T23:56:17.3607175Z [ 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:17.3611358Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x16-minmax-avx-broadcast.c.o 2025-06-05T23:56:17.3614499Z [ 45%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_prod.cpp.o 2025-06-05T23:56:17.3617865Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x16-minmax-avx2-broadcast.c.o 2025-06-05T23:56:17.3621110Z [ 45%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_masked_scatter.cpp.o 2025-06-05T23:56:17.3624525Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x32-minmax-avx512skx-broadcast.c.o 2025-06-05T23:56:17.3629205Z [ 45%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x16-minmax-fma3-broadcast.c.o 2025-06-05T23:56:17.3632478Z [ 46%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_masked_select.cpp.o 2025-06-05T23:56:17.3635691Z [ 47%] 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:17.3638671Z [ 47%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_max.cpp.o 2025-06-05T23:56:17.3641024Z [ 47%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_max_pool2d_with_indices.cpp.o 2025-06-05T23:56:17.3644390Z [ 47%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-sse41-dup.c.o 2025-06-05T23:56:19.0169666Z [ 47%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_rand.cpp.o 2025-06-05T23:56:19.0173248Z [ 47%] 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:19.0177120Z [ 47%] 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:19.0181036Z [ 47%] 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:19.0184420Z [ 47%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_randn.cpp.o 2025-06-05T23:56:19.0187423Z [ 47%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_max_pool2d_with_indices_backward.cpp.o 2025-06-05T23:56:19.0190204Z [ 47%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_maximum.cpp.o 2025-06-05T23:56:19.0193497Z [ 47%] 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:19.0197659Z [ 47%] 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:19.0201875Z [ 47%] 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:19.0205080Z [ 47%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_mean.cpp.o 2025-06-05T23:56:19.0207578Z [ 47%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reciprocal.cpp.o 2025-06-05T23:56:19.0210765Z [ 47%] 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:19.0214331Z [ 47%] 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:19.0217956Z [ 47%] 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:19.0220925Z [ 47%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_min.cpp.o 2025-06-05T23:56:19.0223231Z [ 47%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_minimum.cpp.o 2025-06-05T23:56:19.0225848Z [ 47%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reflection_pad1d.cpp.o 2025-06-05T23:56:19.0229493Z [ 47%] 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:19.0233444Z [ 47%] 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:19.0236740Z [ 47%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reflection_pad2d.cpp.o 2025-06-05T23:56:19.0239246Z [ 47%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_mm.cpp.o 2025-06-05T23:56:19.0242295Z [ 47%] 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:19.0245274Z [ 47%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_mul.cpp.o 2025-06-05T23:56:19.0248226Z [ 47%] 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:19.0251451Z [ 47%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_reflection_pad3d.cpp.o 2025-06-05T23:56:19.0254608Z [ 47%] 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:19.0258118Z [ 48%] 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:19.0261632Z [ 48%] 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:19.0264630Z [ 48%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_relu.cpp.o 2025-06-05T23:56:19.0267130Z [ 48%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_narrow_copy.cpp.o 2025-06-05T23:56:19.0270302Z [ 48%] 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:19.0273396Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_remainder.cpp.o 2025-06-05T23:56:19.0276014Z [ 49%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_batch_norm.cpp.o 2025-06-05T23:56:19.0279249Z [ 49%] 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:19.0282356Z [ 49%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_dropout.cpp.o 2025-06-05T23:56:19.0284899Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_repeat.cpp.o 2025-06-05T23:56:19.0288256Z [ 49%] 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:19.0292063Z [ 49%] 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:19.0295154Z [ 49%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_group_norm.cpp.o 2025-06-05T23:56:19.0297876Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_repeat_interleave.cpp.o 2025-06-05T23:56:19.0301074Z [ 49%] 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:19.0304083Z [ 49%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_replication_pad1d.cpp.o 2025-06-05T23:56:19.0306975Z [ 49%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_native_layer_norm.cpp.o 2025-06-05T23:56:19.0310977Z [ 49%] 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:19.0315606Z [ 49%] 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:19.0318949Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ne.cpp.o 2025-06-05T23:56:19.0322388Z [ 50%] 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:19.0326084Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_replication_pad2d.cpp.o 2025-06-05T23:56:19.0328657Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_neg.cpp.o 2025-06-05T23:56:19.0332364Z [ 50%] 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:19.0336506Z [ 50%] 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:19.0339768Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_replication_pad3d.cpp.o 2025-06-05T23:56:19.0343168Z [ 50%] 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:19.0346334Z [ 50%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_roll.cpp.o 2025-06-05T23:56:19.0348898Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_nonzero.cpp.o 2025-06-05T23:56:19.0351960Z [ 50%] 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:19.0355672Z [ 50%] 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:19.0358435Z [ 50%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_ones.cpp.o 2025-06-05T23:56:20.7350851Z [ 51%] 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:20.7353870Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pdist_forward.cpp.o 2025-06-05T23:56:20.7356357Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_round.cpp.o 2025-06-05T23:56:20.7359436Z [ 51%] 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:20.7363007Z [ 51%] 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:20.7366547Z [ 51%] 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:20.7368881Z [ 51%] Linking CXX static library liboptimized_kernels.a 2025-06-05T23:56:20.7371436Z [ 51%] 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:20.7374384Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_permute_copy.cpp.o 2025-06-05T23:56:20.7377182Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_rsqrt.cpp.o 2025-06-05T23:56:20.7379921Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_rsub.cpp.o 2025-06-05T23:56:20.7382424Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pixel_shuffle.cpp.o 2025-06-05T23:56:20.7385006Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_scalar_tensor.cpp.o 2025-06-05T23:56:20.7387850Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pixel_unshuffle.cpp.o 2025-06-05T23:56:20.7390996Z [ 51%] 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:20.7393912Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_pow.cpp.o 2025-06-05T23:56:20.7395500Z [ 51%] Built target optimized_kernels 2025-06-05T23:56:20.7397790Z [ 51%] 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:20.7400692Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_prod.cpp.o 2025-06-05T23:56:20.7402555Z [ 51%] Generating selected_operators.yaml for optimized_ops_lib 2025-06-05T23:56:20.7405140Z [ 51%] 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:20.7407989Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_rand.cpp.o 2025-06-05T23:56:20.7410824Z [ 51%] 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:20.7413597Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_randn.cpp.o 2025-06-05T23:56:20.7415975Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reciprocal.cpp.o 2025-06-05T23:56:20.7418432Z [ 51%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reflection_pad1d.cpp.o 2025-06-05T23:56:20.7421450Z [ 51%] 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:20.7423745Z [ 51%] Generating code for kernel registration 2025-06-05T23:56:20.7425669Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_scatter.cpp.o 2025-06-05T23:56:20.7428456Z [ 51%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_scatter_add.cpp.o 2025-06-05T23:56:20.7430957Z [ 52%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reflection_pad3d.cpp.o 2025-06-05T23:56:20.7433553Z [ 52%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_select_copy.cpp.o 2025-06-05T23:56:20.7436580Z [ 52%] 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:20.7439617Z [ 52%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_reflection_pad2d.cpp.o 2025-06-05T23:56:20.7442275Z [ 52%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_select_scatter.cpp.o 2025-06-05T23:56:20.7445397Z [ 52%] 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:20.7448362Z [ 53%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sigmoid.cpp.o 2025-06-05T23:56:20.7451657Z [ 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:20.7454708Z [ 53%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_relu.cpp.o 2025-06-05T23:56:20.7457045Z [ 53%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_remainder.cpp.o 2025-06-05T23:56:20.7459810Z [ 53%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_repeat.cpp.o 2025-06-05T23:56:20.7462771Z [ 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:20.7466358Z [ 53%] 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:20.7469534Z [ 53%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_repeat_interleave.cpp.o 2025-06-05T23:56:20.7472266Z [ 53%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_replication_pad1d.cpp.o 2025-06-05T23:56:20.7475394Z [ 54%] 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:20.7478426Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sign.cpp.o 2025-06-05T23:56:20.7480904Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sin.cpp.o 2025-06-05T23:56:20.7483472Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_replication_pad2d.cpp.o 2025-06-05T23:56:20.7486019Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sinh.cpp.o 2025-06-05T23:56:20.7488893Z [ 54%] 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:20.7491910Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_slice_copy.cpp.o 2025-06-05T23:56:20.7494980Z [ 54%] 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:20.7498919Z [ 54%] 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:20.7501981Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_slice_scatter.cpp.o 2025-06-05T23:56:20.7521107Z [ 54%] 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:20.7523989Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_replication_pad3d.cpp.o 2025-06-05T23:56:20.7526409Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_roll.cpp.o 2025-06-05T23:56:20.7528687Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_rsqrt.cpp.o 2025-06-05T23:56:20.7530960Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_round.cpp.o 2025-06-05T23:56:20.7533420Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_softmax.cpp.o 2025-06-05T23:56:20.7536411Z [ 54%] 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:20.7539828Z [ 54%] 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:20.7543496Z [ 54%] 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:20.7546513Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_rsub.cpp.o 2025-06-05T23:56:20.7549115Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_split_copy.cpp.o 2025-06-05T23:56:22.6505205Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_split_with_sizes_copy.cpp.o 2025-06-05T23:56:22.6508547Z [ 54%] 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:22.6511972Z [ 54%] 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:22.6514859Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sqrt.cpp.o 2025-06-05T23:56:22.6518194Z [ 54%] 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:22.6521159Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_scalar_tensor.cpp.o 2025-06-05T23:56:22.6523578Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_scatter.cpp.o 2025-06-05T23:56:22.6526475Z [ 54%] 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:22.6529493Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_squeeze_copy.cpp.o 2025-06-05T23:56:22.6532027Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_scatter_add.cpp.o 2025-06-05T23:56:22.6534932Z [ 54%] 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:22.6537878Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_stack.cpp.o 2025-06-05T23:56:22.6540400Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sub.cpp.o 2025-06-05T23:56:22.6543315Z [ 54%] 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:22.6546768Z [ 54%] 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:22.6549818Z [ 54%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_select_copy.cpp.o 2025-06-05T23:56:22.6552817Z [ 54%] 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:22.6555700Z [ 54%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_sum.cpp.o 2025-06-05T23:56:22.6558235Z [ 55%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_t_copy.cpp.o 2025-06-05T23:56:22.6560769Z [ 55%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_select_scatter.cpp.o 2025-06-05T23:56:22.6563740Z [ 56%] 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:22.6567131Z [ 56%] 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:22.6569974Z [ 56%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sigmoid.cpp.o 2025-06-05T23:56:22.6572526Z [ 56%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sign.cpp.o 2025-06-05T23:56:22.6575353Z [ 56%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_tan.cpp.o 2025-06-05T23:56:22.6578000Z [ 56%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sin.cpp.o 2025-06-05T23:56:22.6580397Z [ 57%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_tanh.cpp.o 2025-06-05T23:56:22.6583439Z [ 57%] 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:22.6586475Z [ 57%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_to_copy.cpp.o 2025-06-05T23:56:22.6589617Z [ 57%] 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:22.6688527Z [ 57%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_topk.cpp.o 2025-06-05T23:56:22.6691242Z [ 57%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sinh.cpp.o 2025-06-05T23:56:22.6694549Z [ 57%] 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:22.6697840Z [ 57%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_transpose_copy.cpp.o 2025-06-05T23:56:22.6700905Z [ 57%] 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:22.6703843Z [ 57%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_tril.cpp.o 2025-06-05T23:56:22.6706300Z [ 57%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_slice_copy.cpp.o 2025-06-05T23:56:22.6708861Z [ 57%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_trunc.cpp.o 2025-06-05T23:56:22.6711487Z [ 57%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_unbind_copy.cpp.o 2025-06-05T23:56:22.6714594Z [ 57%] 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:22.6717480Z [ 57%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_softmax.cpp.o 2025-06-05T23:56:22.6719884Z [ 57%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_slice_scatter.cpp.o 2025-06-05T23:56:22.6722896Z [ 57%] 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:22.6725958Z [ 57%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_unfold_copy.cpp.o 2025-06-05T23:56:22.6728978Z [ 57%] 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:22.6732043Z [ 57%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_unsqueeze_copy.cpp.o 2025-06-05T23:56:22.6734611Z [ 57%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_split_copy.cpp.o 2025-06-05T23:56:22.6737216Z [ 57%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_upsample_bilinear2d.cpp.o 2025-06-05T23:56:22.6740360Z [ 57%] 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:22.6743490Z [ 57%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_upsample_nearest2d.cpp.o 2025-06-05T23:56:22.6746353Z [ 57%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_var.cpp.o 2025-06-05T23:56:22.6749227Z [ 57%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_view_as_real_copy.cpp.o 2025-06-05T23:56:22.6752391Z [ 57%] 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:22.6755429Z [ 57%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_view_copy.cpp.o 2025-06-05T23:56:22.6758460Z [ 57%] 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:22.6761875Z [ 57%] 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:22.6764870Z [ 57%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_split_with_sizes_copy.cpp.o 2025-06-05T23:56:22.6767557Z [ 57%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_where.cpp.o 2025-06-05T23:56:22.6770102Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/op_zeros.cpp.o 2025-06-05T23:56:22.6772403Z [ 58%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sqrt.cpp.o 2025-06-05T23:56:22.6775070Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/pattern/unary_ufunc_realhb_to_bool.cpp.o 2025-06-05T23:56:22.6778367Z [ 58%] 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:22.6781830Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/pattern/unary_ufunc_realhbbf16_to_floathbf16.cpp.o 2025-06-05T23:56:22.6785482Z [ 58%] 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:24.2442166Z [ 58%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/pattern/unary_ufunc_realhbf16.cpp.o 2025-06-05T23:56:24.2445636Z [ 58%] Building CXX object kernels/optimized/CMakeFiles/optimized_ops_lib.dir/optimized_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp.o 2025-06-05T23:56:24.2449204Z [ 59%] 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:24.2452637Z [ 59%] 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:24.2455571Z [ 59%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_squeeze_copy.cpp.o 2025-06-05T23:56:24.2458300Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/activation_ops_util.cpp.o 2025-06-05T23:56:24.2461261Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/advanced_index_util.cpp.o 2025-06-05T23:56:24.2464105Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/broadcast_util.cpp.o 2025-06-05T23:56:24.2467262Z [ 59%] 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:24.2470434Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/copy_ops_util.cpp.o 2025-06-05T23:56:24.2473638Z [ 59%] 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:24.2477439Z [ 59%] 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:24.2480500Z [ 59%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_stack.cpp.o 2025-06-05T23:56:24.2483355Z [ 59%] 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:24.2486861Z [ 59%] 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:24.2489623Z [ 59%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sub.cpp.o 2025-06-05T23:56:24.2492228Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/delinearize_index.cpp.o 2025-06-05T23:56:24.2495076Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/distance_util.cpp.o 2025-06-05T23:56:24.2497083Z [ 59%] Linking CXX static library liboptimized_ops_lib.a 2025-06-05T23:56:24.2499309Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/dtype_util.cpp.o 2025-06-05T23:56:24.2502467Z [ 59%] 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:24.2505571Z [ 59%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/index_util.cpp.o 2025-06-05T23:56:24.2507223Z [ 59%] Built target optimized_ops_lib 2025-06-05T23:56:24.2508925Z [ 59%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_sum.cpp.o 2025-06-05T23:56:24.2511028Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_t_copy.cpp.o 2025-06-05T23:56:24.2513501Z [ 60%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/kernel_ops_util.cpp.o 2025-06-05T23:56:24.2516686Z [ 60%] 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:24.2519485Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_tan.cpp.o 2025-06-05T23:56:24.2522345Z [ 60%] 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:24.2525400Z [ 60%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/matmul_ops_util.cpp.o 2025-06-05T23:56:24.2528604Z [ 60%] 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:24.2532104Z [ 60%] 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:24.2534941Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_tanh.cpp.o 2025-06-05T23:56:24.2537851Z [ 60%] 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:24.2541065Z [ 60%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/normalization_ops_util.cpp.o 2025-06-05T23:56:24.2544344Z [ 60%] 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:24.2547476Z [ 60%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/padding_util.cpp.o 2025-06-05T23:56:24.2550156Z [ 60%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_to_copy.cpp.o 2025-06-05T23:56:24.2552735Z [ 61%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/reduce_util.cpp.o 2025-06-05T23:56:24.2556290Z [ 61%] 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:24.2559400Z [ 61%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/repeat_util.cpp.o 2025-06-05T23:56:24.2562255Z [ 61%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/select_copy_util.cpp.o 2025-06-05T23:56:24.2565558Z [ 62%] 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:24.2568439Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_topk.cpp.o 2025-06-05T23:56:24.2571296Z [ 62%] 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:24.2574886Z [ 62%] 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:24.2578543Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_transpose_copy.cpp.o 2025-06-05T23:56:24.2581314Z [ 62%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/slice_util.cpp.o 2025-06-05T23:56:24.2584691Z [ 62%] 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:24.2588169Z [ 62%] Building CXX object kernels/portable/CMakeFiles/optimized_portable_kernels.dir/cpu/util/upsample_util.cpp.o 2025-06-05T23:56:24.2590617Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_tril.cpp.o 2025-06-05T23:56:24.2592926Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_trunc.cpp.o 2025-06-05T23:56:24.2595929Z [ 62%] 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:24.2599509Z [ 62%] 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:24.2602507Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_unbind_copy.cpp.o 2025-06-05T23:56:24.2605501Z [ 62%] 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:24.2608465Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_unsqueeze_copy.cpp.o 2025-06-05T23:56:24.2610970Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_unfold_copy.cpp.o 2025-06-05T23:56:24.2614050Z [ 62%] 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:24.2617643Z [ 62%] 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:24.2621284Z [ 62%] 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:24.2624875Z [ 62%] 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:24.2628453Z [ 62%] 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:25.7010167Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_upsample_nearest2d.cpp.o 2025-06-05T23:56:25.7013148Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_upsample_bilinear2d.cpp.o 2025-06-05T23:56:25.7015747Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_var.cpp.o 2025-06-05T23:56:25.7018627Z [ 62%] 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:25.7021642Z [ 62%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_view_as_real_copy.cpp.o 2025-06-05T23:56:25.7023669Z [ 62%] Linking CXX static library liboptimized_portable_kernels.a 2025-06-05T23:56:25.7025681Z [ 63%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_view_copy.cpp.o 2025-06-05T23:56:25.7028047Z [ 63%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_where.cpp.o 2025-06-05T23:56:25.7031013Z [ 63%] 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:25.7034636Z [ 63%] 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:25.7038102Z [ 63%] 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:25.7041656Z [ 64%] 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:25.7045212Z [ 64%] 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:25.7048446Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/pattern/unary_ufunc_realhb_to_bool.cpp.o 2025-06-05T23:56:25.7051530Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/pattern/unary_ufunc_realhbbf16_to_floathbf16.cpp.o 2025-06-05T23:56:25.7054259Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/op_zeros.cpp.o 2025-06-05T23:56:25.7056760Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/pattern/unary_ufunc_realhbf16.cpp.o 2025-06-05T23:56:25.7060549Z [ 64%] 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:25.7064109Z [ 64%] 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:25.7067160Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/activation_ops_util.cpp.o 2025-06-05T23:56:25.7070467Z [ 64%] 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:25.7073563Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/advanced_index_util.cpp.o 2025-06-05T23:56:25.7076116Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/broadcast_util.cpp.o 2025-06-05T23:56:25.7077717Z [ 64%] Built target optimized_portable_kernels 2025-06-05T23:56:25.7078718Z [ 64%] Merging kernel yaml files 2025-06-05T23:56:25.7081049Z [ 64%] 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:25.7084503Z [ 64%] 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:25.7087505Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/copy_ops_util.cpp.o 2025-06-05T23:56:25.7090755Z [ 64%] 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:25.7093963Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/delinearize_index.cpp.o 2025-06-05T23:56:25.7097002Z [ 64%] 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:25.7100419Z [ 64%] 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:25.7103378Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/distance_util.cpp.o 2025-06-05T23:56:25.7105839Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/dtype_util.cpp.o 2025-06-05T23:56:25.7108404Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/index_util.cpp.o 2025-06-05T23:56:25.7111518Z [ 64%] 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:25.7114872Z [ 64%] 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:25.7117774Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/kernel_ops_util.cpp.o 2025-06-05T23:56:25.7120288Z [ 64%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/matmul_ops_util.cpp.o 2025-06-05T23:56:25.7122905Z [ 65%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/normalization_ops_util.cpp.o 2025-06-05T23:56:25.7125153Z [ 65%] Generating selected_operators.yaml for optimized_native_cpu_ops_lib 2025-06-05T23:56:25.7127930Z [ 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:25.7131440Z [ 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:25.7134878Z [ 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:25.7137805Z [ 65%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/padding_util.cpp.o 2025-06-05T23:56:25.7140797Z [ 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:25.7143683Z [ 66%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/reduce_util.cpp.o 2025-06-05T23:56:25.7146736Z [ 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:25.7150362Z [ 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:25.7153368Z [ 66%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/select_copy_util.cpp.o 2025-06-05T23:56:25.7155887Z [ 66%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/slice_util.cpp.o 2025-06-05T23:56:25.7158291Z [ 66%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/repeat_util.cpp.o 2025-06-05T23:56:25.7169022Z [ 66%] Building CXX object kernels/portable/CMakeFiles/portable_kernels.dir/cpu/util/upsample_util.cpp.o 2025-06-05T23:56:25.7172348Z [ 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:25.7175895Z [ 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:25.7179456Z [ 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:25.7181702Z [ 66%] Generating code for kernel registration 2025-06-05T23:56:25.7184060Z [ 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:25.7187669Z [ 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:25.7191129Z [ 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:25.7194695Z [ 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:25.7198408Z [ 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:25.7201984Z [ 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:25.7205489Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-avx.c.o 2025-06-05T23:56:26.6652386Z [ 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:26.6655871Z [ 66%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-avx512f.c.o 2025-06-05T23:56:26.6659285Z [ 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:26.6662658Z [ 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:26.6666302Z [ 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:26.6670045Z [ 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:26.6673665Z [ 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:26.6677455Z [ 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:26.6681164Z [ 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:26.6684896Z [ 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:26.6688854Z [ 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:26.6692517Z [ 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:26.6696168Z [ 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:26.6698924Z [ 67%] Linking CXX static library libportable_kernels.a 2025-06-05T23:56:26.6701596Z [ 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:26.6705163Z [ 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:26.6709012Z [ 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:26.6712797Z [ 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:26.6716539Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-scalar-rational-12-10-div.c.o 2025-06-05T23:56:26.6720066Z [ 67%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-avx-u16.c.o 2025-06-05T23:56:26.6723678Z [ 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:26.6727035Z [ 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:26.6730284Z [ 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:26.6733520Z [ 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:26.6736703Z [ 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:26.6739988Z [ 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:26.6743402Z [ 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:26.6746791Z [ 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:26.6750244Z [ 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:26.6753890Z [ 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:26.6757428Z [ 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:26.6760860Z [ 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:26.6764251Z [ 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:26.6767586Z [ 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:26.6771213Z [ 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:26.6774762Z [ 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:26.6776758Z [ 69%] Built target portable_kernels 2025-06-05T23:56:26.6779219Z [ 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:26.6782532Z [ 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:26.6785902Z [ 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:26.6788611Z [ 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:26.6791291Z [ 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:26.6794008Z [ 69%] Building CXX object kernels/portable/CMakeFiles/portable_ops_lib.dir/portable_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp.o 2025-06-05T23:56:26.6796891Z [ 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:26.6799770Z [ 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:26.6802699Z [ 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:26.6805653Z [ 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:26.6808658Z [ 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:26.6811710Z [ 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:26.6814896Z [ 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:26.6817872Z [ 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:26.6820790Z [ 69%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-avx-u16.c.o 2025-06-05T23:56:26.6823751Z [ 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:26.6826934Z [ 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:26.6830211Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-u1.c.o 2025-06-05T23:56:27.6338634Z [ 70%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-u4.c.o 2025-06-05T23:56:27.6342204Z [ 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:27.6345530Z [ 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:27.6348982Z [ 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:27.6352410Z [ 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:27.6356148Z [ 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:27.6359933Z [ 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:27.6363389Z [ 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:27.6366748Z [ 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:27.6370201Z [ 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:27.6373833Z [ 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:27.6376490Z [ 70%] Linking CXX static library libportable_ops_lib.a 2025-06-05T23:56:27.6379034Z [ 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:27.6382653Z [ 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:27.6388684Z [ 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:27.6390695Z [ 71%] Built target portable_ops_lib 2025-06-05T23:56:27.6392994Z [ 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:27.6396548Z [ 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:27.6400524Z [ 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:27.6404472Z [ 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:27.6408820Z [ 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:27.6412847Z [ 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:27.6416908Z [ 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:27.6420725Z [ 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:27.6424280Z [ 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:27.6427966Z [ 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:27.6431554Z [ 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:27.6435082Z [ 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:27.6438973Z [ 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:27.6442916Z [ 72%] 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:27.6446658Z [ 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:27.6450781Z [ 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:27.6454973Z [ 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:27.6458847Z [ 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:27.6462683Z [ 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:27.6466344Z [ 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:27.6470056Z [ 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:27.6473689Z [ 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:27.6489080Z [ 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:27.6492586Z [ 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:27.6495539Z [ 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:27.6498274Z [ 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:27.6500989Z [ 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:27.6503755Z [ 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:27.6506896Z [ 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:27.6510071Z [ 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:27.6513443Z [ 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:27.6516731Z [ 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:27.6590655Z [ 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:27.6594244Z [ 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:27.6597731Z [ 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:27.6602580Z [ 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:27.6606050Z [ 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:27.6609713Z [ 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:28.6292425Z [ 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:28.6296623Z [ 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:28.6301076Z [ 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:28.6305215Z [ 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:28.6309458Z [ 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:28.6313446Z [ 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:28.6317600Z [ 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:28.6321739Z [ 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:28.6325831Z [ 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:28.6329959Z [ 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:28.6334227Z [ 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:28.6338664Z [ 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:28.6343072Z [ 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:28.6347265Z [ 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:28.6351504Z [ 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:28.6355763Z [ 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:28.6360003Z [ 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:28.6364482Z [ 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:28.6368623Z [ 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:28.6372818Z [ 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:28.6377103Z [ 74%] 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:28.6381457Z [ 74%] 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:28.6386158Z [ 75%] 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:28.6390703Z [ 75%] 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:28.6395069Z [ 75%] 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:28.6399430Z [ 75%] 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:28.6403540Z [ 75%] 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:28.6407605Z [ 75%] 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:28.6411743Z [ 75%] 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:28.6415808Z [ 75%] 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:28.6419930Z [ 75%] 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:28.6423945Z [ 75%] 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:28.6428116Z [ 75%] 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:28.6432042Z [ 75%] 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:28.6436263Z [ 75%] 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:28.6440549Z [ 75%] 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:28.6444717Z [ 75%] 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:28.6449288Z [ 76%] 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:28.6453712Z [ 76%] 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:28.6457967Z [ 76%] 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:28.6462201Z [ 76%] 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:28.6466335Z [ 76%] 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:28.6470767Z [ 76%] 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:28.6474992Z [ 76%] 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:28.6479177Z [ 76%] 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:28.6483289Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x8c8-minmax-avx2.c.o 2025-06-05T23:56:29.4466176Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x4-minmax-scalar.c.o 2025-06-05T23:56:29.4471137Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x4c8-minmax-sse2-ld64.c.o 2025-06-05T23:56:29.4475737Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x4c8-minmax-sse41-ld64.c.o 2025-06-05T23:56:29.4480021Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x8c8-minmax-avx2.c.o 2025-06-05T23:56:29.4484668Z [ 76%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-8x16c8-minmax-avx512skx-prfm.c.o 2025-06-05T23:56:29.4489345Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-avx2-mul32.c.o 2025-06-05T23:56:29.4494927Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-avx-mul16-add16.c.o 2025-06-05T23:56:29.4499129Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:56:29.4503203Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.o 2025-06-05T23:56:29.4507403Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o 2025-06-05T23:56:29.4511490Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:56:29.4516226Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-sse2-mul16-add16.c.o 2025-06-05T23:56:29.4520489Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-sse41-mul16-add16.c.o 2025-06-05T23:56:29.4524729Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-avx-mul16-add16.c.o 2025-06-05T23:56:29.4528827Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:56:29.4533340Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-avx2-mul32.c.o 2025-06-05T23:56:29.4537464Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o 2025-06-05T23:56:29.4541807Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p32c-minmax-fp32-avx512skx-mul32.c.o 2025-06-05T23:56:29.4545938Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:56:29.4550153Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-sse2-mul16-add16.c.o 2025-06-05T23:56:29.4554417Z [ 77%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-sse41-mul16-add16.c.o 2025-06-05T23:56:29.4558346Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f16-vcvt/gen/qs8-f16-vcvt-avx2-u16.c.o 2025-06-05T23:56:29.4561929Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx2-u16.c.o 2025-06-05T23:56:29.4565452Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx-u32.c.o 2025-06-05T23:56:29.4569107Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx512skx-u32.c.o 2025-06-05T23:56:29.4572754Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-u4.c.o 2025-06-05T23:56:29.4576662Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-u1.c.o 2025-06-05T23:56:29.4580340Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-sse2-u32.c.o 2025-06-05T23:56:29.4583899Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-sse41-u16.c.o 2025-06-05T23:56:29.4589461Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p16c-minmax-fp32-avx-mul16-add16.c.o 2025-06-05T23:56:29.4597613Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-packw/gen/qs8-packw-x16c8-gemm-goi-scalar.c.o 2025-06-05T23:56:29.4602405Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p16c-minmax-fp32-avx2-mul32.c.o 2025-06-05T23:56:29.4606727Z [ 78%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-packw/gen/qs8-packw-x64c4-gemm-goi-scalar.c.o 2025-06-05T23:56:29.4610831Z [ 79%] Building CXX object configurations/CMakeFiles/optimized_native_cpu_ops_lib.dir/optimized_native_cpu_ops_lib/RegisterCodegenUnboxedKernelsEverything.cpp.o 2025-06-05T23:56:29.4615083Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o 2025-06-05T23:56:29.4619456Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:56:29.4623909Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.o 2025-06-05T23:56:29.4628505Z [ 79%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:56:29.4632966Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p8c-minmax-fp32-sse2-mul16.c.o 2025-06-05T23:56:29.4637435Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p8c-minmax-fp32-sse41-mul16.c.o 2025-06-05T23:56:29.4641466Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p16c-minmax-fp32-avx-mul16-add16.c.o 2025-06-05T23:56:29.4645442Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p16c-minmax-fp32-avx2-mul32.c.o 2025-06-05T23:56:29.4649362Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p2c-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:56:29.4653658Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p1c-minmax-fp32-scalar-fmagic.c.o 2025-06-05T23:56:29.4658005Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p2c-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:56:29.4662460Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p32c-minmax-fp32-avx512skx-mul32.c.o 2025-06-05T23:56:29.4666835Z [ 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:29.4671298Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p16c-minmax-fp32-avx2-mul32.c.o 2025-06-05T23:56:30.2586095Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p8c-minmax-fp32-sse41-mul16.c.o 2025-06-05T23:56:30.2589972Z [ 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:30.2593949Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o 2025-06-05T23:56:30.2597952Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:56:30.2602718Z [ 80%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:56:30.2606802Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p32c-minmax-fp32-avx512skx-mul32.c.o 2025-06-05T23:56:30.2610811Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p8c-minmax-fp32-sse2-mul16.c.o 2025-06-05T23:56:30.2614818Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p8c-minmax-fp32-sse41-mul16.c.o 2025-06-05T23:56:30.2617411Z [ 81%] Linking CXX static library liboptimized_native_cpu_ops_lib.a 2025-06-05T23:56:30.2620182Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-06-05T23:56:30.2624397Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:56:30.2628584Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x16c8-minmax-fp32-avx512vnni-prfm.c.o 2025-06-05T23:56:30.2632458Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:56:30.2636018Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x4c8-minmax-fp32-avx-ld128.c.o 2025-06-05T23:56:30.2639575Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x4c8-minmax-fp32-sse2-ld64.c.o 2025-06-05T23:56:30.2641870Z [ 81%] Built target optimized_native_cpu_ops_lib 2025-06-05T23:56:30.2644600Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x4c8-minmax-fp32-sse41-ld64.c.o 2025-06-05T23:56:30.2648559Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c8-minmax-fp32-avx2.c.o 2025-06-05T23:56:30.2652956Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:56:30.2656802Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x4c8-minmax-fp32-avx-ld128.c.o 2025-06-05T23:56:30.2660885Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:56:30.2664879Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x4c8-minmax-fp32-sse2-ld64.c.o 2025-06-05T23:56:30.2669895Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-7x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-06-05T23:56:30.2674569Z [ 81%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x8c8-minmax-fp32-avx2.c.o 2025-06-05T23:56:30.2679173Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x4c8-minmax-fp32-sse41-ld64.c.o 2025-06-05T23:56:30.2684111Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-7x16c8-minmax-fp32-avx512vnni-prfm.c.o 2025-06-05T23:56:30.2691540Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:56:30.2695092Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-06-05T23:56:30.2698566Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:56:30.2701985Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:56:30.2705278Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x4c8-minmax-fp32-avx-ld128.c.o 2025-06-05T23:56:30.2708851Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x4c8-minmax-fp32-sse2-ld64.c.o 2025-06-05T23:56:30.2712217Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x4c8-minmax-fp32-sse41-ld64.c.o 2025-06-05T23:56:30.2715813Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c8-minmax-fp32-avx2.c.o 2025-06-05T23:56:30.2719449Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x4c8-minmax-fp32-avx-ld128.c.o 2025-06-05T23:56:30.2723490Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x2-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:56:30.2727283Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:56:30.2731154Z [ 82%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x8c8-minmax-fp32-avx2.c.o 2025-06-05T23:56:30.2735201Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x4c8-minmax-fp32-sse41-ld64.c.o 2025-06-05T23:56:30.2739346Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x4c8-minmax-fp32-sse2-ld64.c.o 2025-06-05T23:56:30.2743541Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-7x16c8-minmax-avx512vnni-prfm.c.o 2025-06-05T23:56:30.2747667Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-7x16c8-minmax-fp32-avx512skx-prfm.c.o 2025-06-05T23:56:30.2751728Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qu8-packw/gen/qs8-qu8-packw-x16c8-gemm-goi-scalar.c.o 2025-06-05T23:56:30.2755445Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rdsum/gen/qs8-rdsum-7p7x-minmax-fp32-avx2-c64.c.o 2025-06-05T23:56:30.2759210Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rdsum/gen/qs8-rdsum-7p7x-minmax-fp32-avx512skx-c64.c.o 2025-06-05T23:56:30.2763046Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rdsum/gen/qs8-rdsum-7p7x-minmax-fp32-sse41-c64.c.o 2025-06-05T23:56:30.2766933Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rdsum/gen/qs8-rdsum-minmax-fp32-scalar-u1-acc1.c.o 2025-06-05T23:56:30.2770489Z [ 83%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-avx2-u64-acc2.c.o 2025-06-05T23:56:30.9941526Z [ 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:30.9945425Z [ 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:30.9949068Z [ 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:30.9952913Z [ 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:30.9956566Z [ 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:30.9960323Z [ 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:30.9963695Z [ 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:30.9966949Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx512skx-mul32-ld128-u16.c.o 2025-06-05T23:56:30.9970296Z [ 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:30.9973948Z [ 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:30.9977726Z [ 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:30.9981486Z [ 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:30.9985532Z [ 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:30.9989453Z [ 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:30.9993027Z [ 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:30.9996351Z [ 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:30.9999798Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse41-mul16-ld64-u8.c.o 2025-06-05T23:56:31.0003364Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse2-mul16-ld64-u8.c.o 2025-06-05T23:56:31.0006594Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-avx-u32.c.o 2025-06-05T23:56:31.0009833Z [ 84%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-avx2-u32.c.o 2025-06-05T23:56:31.0013042Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-u1.c.o 2025-06-05T23:56:31.0016074Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-sse2-u32.c.o 2025-06-05T23:56:31.0019196Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-u4.c.o 2025-06-05T23:56:31.0022541Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-sse41-u32.c.o 2025-06-05T23:56:31.0025890Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-ssse3-u32.c.o 2025-06-05T23:56:31.0029334Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-avx-u32.c.o 2025-06-05T23:56:31.0032954Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-avx2-u32.c.o 2025-06-05T23:56:31.0036426Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-select-u4.c.o 2025-06-05T23:56:31.0040206Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-andxor-u4.c.o 2025-06-05T23:56:31.0043534Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-sse2-u32.c.o 2025-06-05T23:56:31.0046793Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-sse41-u32.c.o 2025-06-05T23:56:31.0050000Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-ssse3-u32.c.o 2025-06-05T23:56:31.0053256Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-avx-mul16-ld64-u16.c.o 2025-06-05T23:56:31.0056797Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-scalar-u4.c.o 2025-06-05T23:56:31.0060256Z [ 85%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-sse2-mul16-ld64-u8.c.o 2025-06-05T23:56:31.0063960Z [ 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:31.0067677Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-avx-mul16-ld64-u16.c.o 2025-06-05T23:56:31.0071382Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-scalar-u4.c.o 2025-06-05T23:56:31.0074964Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-sse41-mul16-ld64-u16.c.o 2025-06-05T23:56:31.0078847Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9p8x-minmax-fp32-scalar-imagic-c1.c.o 2025-06-05T23:56:31.0082803Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9p8x-minmax-fp32-sse2-c8.c.o 2025-06-05T23:56:31.0086772Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-sse2-mul16-ld64-u8.c.o 2025-06-05T23:56:31.0091106Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9x-minmax-fp32-scalar-imagic-c1.c.o 2025-06-05T23:56:31.0094871Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9x-minmax-fp32-sse2-c8.c.o 2025-06-05T23:56:31.0098545Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-avx-mul16.c.o 2025-06-05T23:56:31.0102220Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-avx2-mul32.c.o 2025-06-05T23:56:31.0106088Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o 2025-06-05T23:56:31.0110520Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o 2025-06-05T23:56:31.0114466Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o 2025-06-05T23:56:31.0118320Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.o 2025-06-05T23:56:31.0121942Z [ 86%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-sse2-mul16.c.o 2025-06-05T23:56:31.8065985Z [ 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:31.8070210Z [ 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:31.8074304Z [ 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:31.8078408Z [ 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:31.8082554Z [ 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:31.8086811Z [ 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:31.8090975Z [ 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:31.8095060Z [ 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:31.8098850Z [ 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:31.8102491Z [ 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:31.8106303Z [ 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:31.8110022Z [ 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:31.8114054Z [ 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:31.8117633Z [ 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:31.8121174Z [ 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:31.8124721Z [ 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:31.8128479Z [ 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:31.8132434Z [ 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:31.8136478Z [ 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:31.8140463Z [ 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:31.8144387Z [ 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:31.8148364Z [ 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:31.8152197Z [ 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:31.8156090Z [ 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:31.8160021Z [ 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:31.8163920Z [ 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:31.8167771Z [ 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:31.8171691Z [ 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:31.8175648Z [ 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:31.8179540Z [ 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:31.8183494Z [ 89%] 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:31.8288654Z [ 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:31.8292741Z [ 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:31.8296894Z [ 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:31.8301038Z [ 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:31.8305026Z [ 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:31.8308908Z [ 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:31.8312802Z [ 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:31.8316743Z [ 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:31.8320909Z [ 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:31.8324886Z [ 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:31.8328846Z [ 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:31.8332684Z [ 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:31.8336680Z [ 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:31.8340573Z [ 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:31.8344028Z [ 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:31.8347465Z [ 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:31.8350963Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rsum/gen/qu8-rsum-scalar-u4.c.o 2025-06-05T23:56:31.8354605Z [ 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:31.8358292Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rsum/gen/qu8-rsum-sse2-u32-acc2.c.o 2025-06-05T23:56:32.5269977Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-avx-mul32-ld32-u8.c.o 2025-06-05T23:56:32.5274011Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-avx512skx-mul32-ld128-u16.c.o 2025-06-05T23:56:32.5277786Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-u1.c.o 2025-06-05T23:56:32.5281541Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-sse41-mul16-ld64-u8.c.o 2025-06-05T23:56:32.5288639Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-sse2-mul16-ld64-u8.c.o 2025-06-05T23:56:32.5292886Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-avx-mul32-ld32-u8.c.o 2025-06-05T23:56:32.5296640Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-u4.c.o 2025-06-05T23:56:32.5300338Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-avx2-mul32-ld64-u16.c.o 2025-06-05T23:56:32.5304116Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-u1.c.o 2025-06-05T23:56:32.5307810Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-u4.c.o 2025-06-05T23:56:32.5311751Z [ 90%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-avx512skx-mul32-ld128-u16.c.o 2025-06-05T23:56:32.5315882Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-sse2-mul16-ld64-u8.c.o 2025-06-05T23:56:32.5319813Z [ 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:32.5323431Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-avx-u32.c.o 2025-06-05T23:56:32.5326771Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-avx2-u32.c.o 2025-06-05T23:56:32.5330161Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-u4.c.o 2025-06-05T23:56:32.5333548Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-u1.c.o 2025-06-05T23:56:32.5336935Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-sse2-u32.c.o 2025-06-05T23:56:32.5340240Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-sse41-u32.c.o 2025-06-05T23:56:32.5343533Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-ssse3-u32.c.o 2025-06-05T23:56:32.5346938Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-avx-u32.c.o 2025-06-05T23:56:32.5350482Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-avx2-u32.c.o 2025-06-05T23:56:32.5354107Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-andxor-u4.c.o 2025-06-05T23:56:32.5357652Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-sse2-u32.c.o 2025-06-05T23:56:32.5361284Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-select-u4.c.o 2025-06-05T23:56:32.5364882Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-sse41-u32.c.o 2025-06-05T23:56:32.5368243Z [ 91%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-ssse3-u32.c.o 2025-06-05T23:56:32.5371899Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-avx-mul16-ld64-u16.c.o 2025-06-05T23:56:32.5376008Z [ 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:32.5379859Z [ 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:32.5383998Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-sse41-mul16-ld64-u16.c.o 2025-06-05T23:56:32.5387989Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-avx-mul16-ld64-u16.c.o 2025-06-05T23:56:32.5391877Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-scalar-u4.c.o 2025-06-05T23:56:32.5395946Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-sse41-mul16-ld64-u16.c.o 2025-06-05T23:56:32.5400068Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-sse2-mul16-ld64-u8.c.o 2025-06-05T23:56:32.5403805Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s32-f32-vcvt/gen/s32-f32-vcvt-avx2.c.o 2025-06-05T23:56:32.5407271Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s32-f32-vcvt/gen/s32-f32-vcvt-avx512f.c.o 2025-06-05T23:56:32.5410817Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-ibilinear/gen/s8-ibilinear-scalar-c1.c.o 2025-06-05T23:56:32.5414378Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s32-f32-vcvt/gen/s32-f32-vcvt-scalar.c.o 2025-06-05T23:56:32.5417938Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-ibilinear/gen/s8-ibilinear-sse2-c8.c.o 2025-06-05T23:56:32.5421531Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-ibilinear/gen/s8-ibilinear-sse41-c16.c.o 2025-06-05T23:56:32.5425188Z [ 92%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-maxpool/s8-maxpool-9p8x-minmax-scalar-c1.c.o 2025-06-05T23:56:32.5429018Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-maxpool/s8-maxpool-9p8x-minmax-sse2-c16.c.o 2025-06-05T23:56:32.5445140Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-vclamp/s8-vclamp-avx2-u128.c.o 2025-06-05T23:56:32.5448844Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-maxpool/s8-maxpool-9p8x-minmax-sse41-c16.c.o 2025-06-05T23:56:32.5452489Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-vclamp/s8-vclamp-avx512skx-u256.c.o 2025-06-05T23:56:32.5455906Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-vclamp/s8-vclamp-scalar-u4.c.o 2025-06-05T23:56:32.5459160Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-vclamp/s8-vclamp-sse2-u64.c.o 2025-06-05T23:56:32.5462483Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-vclamp/s8-vclamp-sse41-u64.c.o 2025-06-05T23:56:32.5465953Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-ibilinear/gen/u8-ibilinear-scalar-c1.c.o 2025-06-05T23:56:32.5469725Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-ibilinear/gen/u8-ibilinear-sse2-c8.c.o 2025-06-05T23:56:32.5473247Z [ 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:32.5476820Z [ 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:33.1766109Z [ 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:33.1769829Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-maxpool/u8-maxpool-9p8x-minmax-sse2-c16.c.o 2025-06-05T23:56:33.1773317Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-vclamp/u8-vclamp-avx2-u128.c.o 2025-06-05T23:56:33.1776880Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-rmax/u8-rmax-sse2-u16.c.o 2025-06-05T23:56:33.1780120Z [ 93%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-rmax/u8-rmax-scalar-u2.c.o 2025-06-05T23:56:33.1783502Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-vclamp/u8-vclamp-avx512skx-u256.c.o 2025-06-05T23:56:33.1787067Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-vclamp/u8-vclamp-scalar-u4.c.o 2025-06-05T23:56:33.1790263Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-packw/gen/x16-packw-x16-gemm-goi-avx2-u16-prfm.c.o 2025-06-05T23:56:33.1793613Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-vclamp/u8-vclamp-sse2-u64.c.o 2025-06-05T23:56:33.1797288Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-packw/gen/x16-packw-x64-gemm-goi-scalar-int-u4.c.o 2025-06-05T23:56:33.1801166Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-transposec/gen/x16-transposec-2x4-scalar-int.c.o 2025-06-05T23:56:33.1805136Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-multi-sse2.c.o 2025-06-05T23:56:33.1809236Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-transposec/gen/x16-transposec-16x16-reuse-switch-avx2.c.o 2025-06-05T23:56:33.1813176Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x24-transposec/gen/x24-transposec-1x2-scalar.c.o 2025-06-05T23:56:33.1816823Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x24-transposec/x24-transposec-4x4-ssse3.c.o 2025-06-05T23:56:33.1820490Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x16-gemm-goi-avx-u4.c.o 2025-06-05T23:56:33.1824220Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x16s4-gemm-goi-avx-u4.c.o 2025-06-05T23:56:33.1828172Z [ 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:33.1832028Z [ 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:33.1836108Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x32-gemm-goi-avx512f-u4-prfm.c.o 2025-06-05T23:56:33.1840031Z [ 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:33.1843846Z [ 94%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-transposec/x32-transposec-4x4-sse.c.o 2025-06-05T23:56:33.1847657Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x4-gemm-goi-scalar-float-u4.c.o 2025-06-05T23:56:33.1851590Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-transposec/gen/x32-transposec-2x4-scalar-int.c.o 2025-06-05T23:56:33.1855817Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-transposec/gen/x32-transposec-8x8-reuse-multi-avx.c.o 2025-06-05T23:56:33.1859659Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-unpool/x32-unpool-scalar.c.o 2025-06-05T23:56:33.1862922Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-unpool/x32-unpool-sse2.c.o 2025-06-05T23:56:33.1866058Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x2-scalar.c.o 2025-06-05T23:56:33.1869320Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x2-sse2.c.o 2025-06-05T23:56:33.1872461Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x3-scalar.c.o 2025-06-05T23:56:33.1875668Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x3-sse2.c.o 2025-06-05T23:56:33.1878889Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x4-scalar.c.o 2025-06-05T23:56:33.1882134Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-xm-scalar.c.o 2025-06-05T23:56:33.1885575Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x4-sse2.c.o 2025-06-05T23:56:33.1888731Z [ 95%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-xm-sse2.c.o 2025-06-05T23:56:33.1892314Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-mov-sse2.c.o 2025-06-05T23:56:33.1896206Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x64-transposec/gen/x64-transposec-4x2-scalar-int.c.o 2025-06-05T23:56:33.1900218Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x64-transposec/gen/x64-transposec-4x4-reuse-multi-avx.c.o 2025-06-05T23:56:33.1903731Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-lut/gen/x8-lut-avx-u64.c.o 2025-06-05T23:56:33.1906963Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-lut/gen/x8-lut-avx2-u128.c.o 2025-06-05T23:56:33.1910502Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-lut/gen/x8-lut-avx512skx-vpshufb-u64.c.o 2025-06-05T23:56:33.1913857Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-lut/gen/x8-lut-scalar-u4.c.o 2025-06-05T23:56:33.1917336Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x16-gemm-goi-scalar-u2.c.o 2025-06-05T23:56:33.1921302Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packq/x8-packq-scalar-f32qp8-u1.c.o 2025-06-05T23:56:33.1924848Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-lut/gen/x8-lut-avx512vbmi-vpermx2b-u128.c.o 2025-06-05T23:56:33.1928548Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x32-gemm-goi-scalar-u2.c.o 2025-06-05T23:56:33.1932271Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x4-gemm-goi-scalar-u2.c.o 2025-06-05T23:56:33.1935941Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x8-gemm-goi-scalar-u2.c.o 2025-06-05T23:56:33.1939682Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-transposec/gen/x8-transposec-2x4-scalar-int.c.o 2025-06-05T23:56:33.1943689Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-transposec/gen/x8-transposec-16x16-reuse-mov-sse2.c.o 2025-06-05T23:56:33.1947674Z [ 96%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-transposec/gen/x8-transposec-32x32-reuse-switch-avx2.c.o 2025-06-05T23:56:33.1951318Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x2-scalar.c.o 2025-06-05T23:56:33.1954604Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x3-scalar.c.o 2025-06-05T23:56:33.1957654Z [ 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:35.0840461Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x3-sse2.c.o 2025-06-05T23:56:35.0843308Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x4-scalar.c.o 2025-06-05T23:56:35.0846296Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x4-sse2.c.o 2025-06-05T23:56:35.0849371Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-xm-scalar.c.o 2025-06-05T23:56:35.0851338Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-fill/xx-fill-scalar-u16.c.o 2025-06-05T23:56:35.0853149Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-copy/xx-copy-scalar-memcpy.c.o 2025-06-05T23:56:35.0854938Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-xm-sse2.c.o 2025-06-05T23:56:35.0857463Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-fill/xx-fill-sse2-u64.c.o 2025-06-05T23:56:35.0860555Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-pad/xx-pad-p16-sse2-u16.c.o 2025-06-05T23:56:35.0863705Z [ 97%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-pad/xx-pad-p4-scalar-u16.c.o 2025-06-05T23:56:35.0867119Z [ 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:35.0870613Z [ 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:35.0874009Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2-k-over-2048.c.o 2025-06-05T23:56:35.0877383Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-4.c.o 2025-06-05T23:56:35.0880511Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-16.c.o 2025-06-05T23:56:35.0883725Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-8.c.o 2025-06-05T23:56:35.0887303Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-32.c.o 2025-06-05T23:56:35.0890668Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-64.c.o 2025-06-05T23:56:35.0893423Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/vlog.c.o 2025-06-05T23:56:35.0895729Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-2048.c.o 2025-06-05T23:56:35.0897894Z [ 98%] Linking C static library libmicrokernels-prod.a 2025-06-05T23:56:35.0898877Z [ 98%] Built target microkernels-prod 2025-06-05T23:56:35.0899795Z [ 98%] Generating build_identifier.c 2025-06-05T23:56:35.0901838Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/argmaxpool-config.c.o 2025-06-05T23:56:35.0904732Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/avgpool-config.c.o 2025-06-05T23:56:35.0907809Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/binary-elementwise-config.c.o 2025-06-05T23:56:35.0910739Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/cmul-config.c.o 2025-06-05T23:56:35.0913483Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/conv-hwc2chw-config.c.o 2025-06-05T23:56:35.0916205Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/dwconv-config.c.o 2025-06-05T23:56:35.0918952Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/dwconv2d-chw-config.c.o 2025-06-05T23:56:35.0921702Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/gemm-config.c.o 2025-06-05T23:56:35.0924344Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/ibilinear-chw-config.c.o 2025-06-05T23:56:35.0926448Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/experiments-config.c.o 2025-06-05T23:56:35.0928062Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/ibilinear-config.c.o 2025-06-05T23:56:35.0929650Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/maxpool-config.c.o 2025-06-05T23:56:35.0931215Z [ 98%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/lut32norm-config.c.o 2025-06-05T23:56:35.0932786Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/pack-lh-config.c.o 2025-06-05T23:56:35.0934340Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/pavgpool-config.c.o 2025-06-05T23:56:35.0936026Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/raddstoreexpminusmax-config.c.o 2025-06-05T23:56:35.0937830Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/reduce-config.c.o 2025-06-05T23:56:35.0939486Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/rmax-config.c.o 2025-06-05T23:56:35.0941002Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/spmm-config.c.o 2025-06-05T23:56:35.0942544Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/transpose-config.c.o 2025-06-05T23:56:35.0944120Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/unpool-config.c.o 2025-06-05T23:56:35.0945749Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/unary-elementwise-config.c.o 2025-06-05T23:56:35.0947407Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/vmulcaddc-config.c.o 2025-06-05T23:56:35.0949061Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/xx-fill-config.c.o 2025-06-05T23:56:35.0950661Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/xx-pad-config.c.o 2025-06-05T23:56:35.0952171Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/zip-config.c.o 2025-06-05T23:56:35.0953562Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/init.c.o 2025-06-05T23:56:35.0954974Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/x8-lut-config.c.o 2025-06-05T23:56:35.0956396Z [ 99%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/src/params.c.o 2025-06-05T23:56:35.0958110Z [100%] Building C object backends/xnnpack/third-party/XNNPACK/CMakeFiles/XNNPACK.dir/build_identifier.c.o 2025-06-05T23:56:35.0959324Z [100%] Linking CXX static library libXNNPACK.a 2025-06-05T23:56:35.0959848Z [100%] Built target XNNPACK 2025-06-05T23:56:35.0960758Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNCompiler.cpp.o 2025-06-05T23:56:35.0962105Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNExecutor.cpp.o 2025-06-05T23:56:35.0963490Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNPACKBackend.cpp.o 2025-06-05T23:56:35.0964836Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNHeader.cpp.o 2025-06-05T23:56:35.0966249Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/profiling/XNNProfiler.cpp.o 2025-06-05T23:56:35.0967702Z [100%] Building CXX object backends/xnnpack/CMakeFiles/xnnpack_backend.dir/runtime/XNNWeightsCache.cpp.o 2025-06-05T23:56:35.0968765Z [100%] Linking CXX static library libxnnpack_backend.a 2025-06-05T23:56:35.0969340Z [100%] Built target xnnpack_backend 2025-06-05T23:56:35.0970211Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops.dir/op_fallback.cpp.o 2025-06-05T23:56:35.0971585Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops.dir/op_fast_hadamard_transform.cpp.o 2025-06-05T23:56:35.0972953Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops.dir/op_update_cache.cpp.o 2025-06-05T23:56:35.0974202Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops.dir/op_sdpa.cpp.o 2025-06-05T23:56:35.0975579Z [100%] Building CXX object extension/llm/custom_ops/CMakeFiles/custom_ops.dir/spinquant/fast_hadamard_transform.cpp.o 2025-06-05T23:56:36.4044684Z [100%] Building C object extension/llm/custom_ops/CMakeFiles/custom_ops.dir/spinquant/third-party/FFHT/fht_avx.c.o 2025-06-05T23:56:36.4047729Z [100%] Linking CXX static library libcustom_ops.a 2025-06-05T23:56:36.4048303Z [100%] Built target custom_ops 2025-06-05T23:56:36.4049864Z [100%] Building CXX object CMakeFiles/executor_runner.dir/examples/portable/executor_runner/executor_runner.cpp.o 2025-06-05T23:56:36.4051830Z [100%] Building CXX object CMakeFiles/executor_runner.dir/extension/data_loader/file_data_loader.cpp.o 2025-06-05T23:56:36.4053423Z [100%] Building CXX object CMakeFiles/executor_runner.dir/extension/evalue_util/print_evalue.cpp.o 2025-06-05T23:56:36.4055092Z [100%] Building CXX object CMakeFiles/executor_runner.dir/extension/runner_util/inputs.cpp.o 2025-06-05T23:56:36.4056765Z [100%] Building CXX object CMakeFiles/executor_runner.dir/extension/runner_util/inputs_portable.cpp.o 2025-06-05T23:56:36.4058503Z [100%] Building CXX object CMakeFiles/executor_runner.dir/runtime/executor/test/test_backend_compiler_lib.cpp.o 2025-06-05T23:56:36.4059825Z [100%] Linking CXX executable executor_runner 2025-06-05T23:56:36.4060722Z [100%] Built target executor_runner 2025-06-05T23:56:36.4061250Z Install the project... 2025-06-05T23:56:36.4061925Z -- Install configuration: "Release" 2025-06-05T23:56:36.4062547Z -- Installing: /pytorch/executorch/cmake-out/lib/libflatccrt.a 2025-06-05T23:56:36.4063395Z -- Installing: /pytorch/executorch/cmake-out/include/fxdiv.h 2025-06-05T23:56:36.4064171Z -- Installing: /pytorch/executorch/cmake-out/share/cpuinfo/cpuinfo-config.cmake 2025-06-05T23:56:36.4065174Z -- Installing: /pytorch/executorch/cmake-out/lib/libcpuinfo.a 2025-06-05T23:56:36.4066162Z -- Installing: /pytorch/executorch/cmake-out/include/cpuinfo.h 2025-06-05T23:56:36.4067074Z -- Installing: /pytorch/executorch/cmake-out/share/cpuinfo/cpuinfo-targets.cmake 2025-06-05T23:56:36.4068399Z -- Installing: /pytorch/executorch/cmake-out/share/cpuinfo/cpuinfo-targets-release.cmake 2025-06-05T23:56:36.4069533Z -- Installing: /pytorch/executorch/cmake-out/lib/pkgconfig/libcpuinfo.pc 2025-06-05T23:56:36.4070513Z -- Installing: /pytorch/executorch/cmake-out/include/pthreadpool.h 2025-06-05T23:56:36.4071273Z -- Installing: /pytorch/executorch/cmake-out/lib/libpthreadpool.a 2025-06-05T23:56:36.4072314Z -- Installing: /pytorch/executorch/cmake-out/lib/liboptimized_portable_kernels.a 2025-06-05T23:56:36.4073419Z -- Installing: /pytorch/executorch/cmake-out/lib/libportable_kernels.a 2025-06-05T23:56:36.4074189Z -- Installing: /pytorch/executorch/cmake-out/lib/libportable_ops_lib.a 2025-06-05T23:56:36.4075385Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/kernels/portable/Functions.h 2025-06-05T23:56:36.4076864Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/kernels/portable/NativeFunctions.h 2025-06-05T23:56:36.4078050Z -- Installing: /pytorch/executorch/cmake-out/lib/libeigen_blas.a 2025-06-05T23:56:36.4078787Z -- Installing: /pytorch/executorch/cmake-out/lib/libcpublas.a 2025-06-05T23:56:36.4079573Z -- Installing: /pytorch/executorch/cmake-out/lib/liboptimized_kernels.a 2025-06-05T23:56:36.4080488Z -- Installing: /pytorch/executorch/cmake-out/lib/liboptimized_ops_lib.a 2025-06-05T23:56:36.4081639Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/kernels/optimized/Functions.h 2025-06-05T23:56:36.4083169Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/kernels/optimized/NativeFunctions.h 2025-06-05T23:56:36.4084287Z -- Up-to-date: /pytorch/executorch/cmake-out/lib/libcpublas.a 2025-06-05T23:56:36.4085427Z -- Installing: /pytorch/executorch/cmake-out/lib/liboptimized_native_cpu_ops_lib.a 2025-06-05T23:56:36.4086341Z -- Installing: /pytorch/executorch/cmake-out/lib/Functions.h 2025-06-05T23:56:36.4087139Z -- Installing: /pytorch/executorch/cmake-out/lib/NativeFunctions.h 2025-06-05T23:56:36.4088159Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core 2025-06-05T23:56:36.4089424Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/array_ref.h 2025-06-05T23:56:36.4090762Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/data_loader.h 2025-06-05T23:56:36.4092099Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/defines.h 2025-06-05T23:56:36.4093166Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/error.h 2025-06-05T23:56:36.4094267Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/evalue.h 2025-06-05T23:56:36.4095448Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/event_tracer.h 2025-06-05T23:56:36.4096697Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/event_tracer_hooks.h 2025-06-05T23:56:36.4098153Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/event_tracer_hooks_delegate.h 2025-06-05T23:56:36.4102420Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten 2025-06-05T23:56:36.4103841Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/exec_aten.h 2025-06-05T23:56:36.4105484Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/testing_util 2025-06-05T23:56:36.4106990Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/testing_util/tensor_factory.h 2025-06-05T23:56:36.4108668Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/testing_util/tensor_util.h 2025-06-05T23:56:36.4110336Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/testing_util/test 2025-06-05T23:56:36.4111710Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/util 2025-06-05T23:56:36.4113043Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/util/dim_order_util.h 2025-06-05T23:56:36.4114531Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/util/scalar_type_util.h 2025-06-05T23:56:36.4115980Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/util/tensor_dimension_limit.h 2025-06-05T23:56:36.4117586Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/util/tensor_shape_to_c_string.h 2025-06-05T23:56:36.4119083Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/util/tensor_util.h 2025-06-05T23:56:36.4120454Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/exec_aten/util/test 2025-06-05T23:56:36.4121611Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/freeable_buffer.h 2025-06-05T23:56:36.4122779Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/function_ref.h 2025-06-05T23:56:36.4124073Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/hierarchical_allocator.h 2025-06-05T23:56:36.4125429Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/memory_allocator.h 2025-06-05T23:56:36.4127060Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/named_data_map.h 2025-06-05T23:56:36.4128153Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type 2025-06-05T23:56:36.4129392Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/bfloat16.h 2025-06-05T23:56:36.4130778Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/bfloat16_math.h 2025-06-05T23:56:36.4132022Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/bits_types.h 2025-06-05T23:56:36.4133187Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10 2025-06-05T23:56:36.4134303Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10 2025-06-05T23:56:36.4135601Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/macros 2025-06-05T23:56:36.4137012Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/macros/Export.h 2025-06-05T23:56:36.4138459Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/macros/Macros.h 2025-06-05T23:56:36.4139835Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util 2025-06-05T23:56:36.4141175Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16-inl.h 2025-06-05T23:56:36.4142701Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16-math.h 2025-06-05T23:56:36.4144114Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/BFloat16.h 2025-06-05T23:56:36.4145637Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/Half-inl.h 2025-06-05T23:56:36.4146989Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/Half.h 2025-06-05T23:56:36.4148574Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/TypeSafeSignMath.h 2025-06-05T23:56:36.4150012Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/bit_cast.h 2025-06-05T23:56:36.4151688Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/complex.h 2025-06-05T23:56:36.4153367Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/complex_math.h 2025-06-05T23:56:36.4154819Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/complex_utils.h 2025-06-05T23:56:36.4156616Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/floating_point_utils.h 2025-06-05T23:56:36.4158079Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/c10/c10/util/irange.h 2025-06-05T23:56:36.4159581Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/complex.h 2025-06-05T23:56:36.9490723Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/device.h 2025-06-05T23:56:36.9492728Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/half.h 2025-06-05T23:56:36.9494707Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/optional.h 2025-06-05T23:56:36.9496719Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/qint_types.h 2025-06-05T23:56:36.9498724Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/scalar.h 2025-06-05T23:56:36.9500824Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/scalar_type.h 2025-06-05T23:56:36.9502829Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/string_view.h 2025-06-05T23:56:36.9504773Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/tensor.h 2025-06-05T23:56:36.9506610Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/tensor_impl.h 2025-06-05T23:56:36.9508185Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/tensor_options.h 2025-06-05T23:56:36.9509403Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/portable_type/test 2025-06-05T23:56:36.9510429Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/result.h 2025-06-05T23:56:36.9511396Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/span.h 2025-06-05T23:56:36.9512608Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/tag.h 2025-06-05T23:56:36.9513607Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/tensor_layout.h 2025-06-05T23:56:36.9514797Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/tensor_shape_dynamism.h 2025-06-05T23:56:36.9515851Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/core/test 2025-06-05T23:56:36.9516751Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/kernel 2025-06-05T23:56:36.9517737Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/kernel/kernel_includes.h 2025-06-05T23:56:36.9518912Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/kernel/kernel_runtime_context.h 2025-06-05T23:56:36.9520091Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/kernel/operator_registry.h 2025-06-05T23:56:36.9521244Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/kernel/test 2025-06-05T23:56:36.9522263Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/kernel/test/test_util.h 2025-06-05T23:56:36.9523552Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/kernel/thread_parallel_interface.h 2025-06-05T23:56:36.9524632Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform 2025-06-05T23:56:36.9525588Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/abort.h 2025-06-05T23:56:36.9526854Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/assert.h 2025-06-05T23:56:36.9528561Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/clock.h 2025-06-05T23:56:36.9530367Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/compat_unistd.h 2025-06-05T23:56:36.9532089Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/compiler.h 2025-06-05T23:56:36.9533711Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/default 2025-06-05T23:56:36.9535349Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/log.h 2025-06-05T23:56:36.9536980Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/platform.h 2025-06-05T23:56:36.9538791Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/profiler.h 2025-06-05T23:56:36.9540626Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/runtime.h 2025-06-05T23:56:36.9542391Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/system.h 2025-06-05T23:56:36.9543958Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/test 2025-06-05T23:56:36.9545689Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/test/pal_spy.h 2025-06-05T23:56:36.9547420Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/test/stub_platform.h 2025-06-05T23:56:36.9548653Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/runtime/platform/types.h 2025-06-05T23:56:36.9549658Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/kernel_util 2025-06-05T23:56:36.9550878Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/kernel_util/make_boxed_from_unboxed_functor.h 2025-06-05T23:56:36.9552221Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/kernel_util/meta_programming.h 2025-06-05T23:56:36.9553373Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/kernel_util/test 2025-06-05T23:56:36.9554462Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/kernel_util/type_list.h 2025-06-05T23:56:36.9555500Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/tensor 2025-06-05T23:56:36.9556670Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/tensor/tensor.h 2025-06-05T23:56:36.9557904Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/tensor/tensor_accessor.h 2025-06-05T23:56:36.9559019Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/tensor/tensor_ptr.h 2025-06-05T23:56:36.9560200Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/tensor/tensor_ptr_maker.h 2025-06-05T23:56:36.9561262Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/tensor/test 2025-06-05T23:56:36.9562234Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/threadpool 2025-06-05T23:56:36.9563301Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/threadpool/cpuinfo_utils.h 2025-06-05T23:56:36.9564413Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/threadpool/test 2025-06-05T23:56:36.9565494Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/threadpool/threadpool.h 2025-06-05T23:56:36.9566734Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/extension/threadpool/threadpool_guard.h 2025-06-05T23:56:36.9567783Z -- Installing: /pytorch/executorch/cmake-out/lib/libexecutorch.a 2025-06-05T23:56:36.9568908Z -- Installing: /pytorch/executorch/cmake-out/lib/libexecutorch_core.a 2025-06-05T23:56:36.9570346Z -- Installing: /pytorch/executorch/cmake-out/lib/cmake/ExecuTorch/executorch-config.cmake 2025-06-05T23:56:36.9571750Z -- Installing: /pytorch/executorch/cmake-out/lib/libXNNPACK.a 2025-06-05T23:56:36.9572546Z -- Installing: /pytorch/executorch/cmake-out/include/xnnpack.h 2025-06-05T23:56:36.9573307Z -- Installing: /pytorch/executorch/cmake-out/include/experiments-config.h 2025-06-05T23:56:36.9574118Z -- Installing: /pytorch/executorch/cmake-out/lib/libmicrokernels-prod.a 2025-06-05T23:56:36.9574921Z -- Up-to-date: /pytorch/executorch/cmake-out/lib/libmicrokernels-prod.a 2025-06-05T23:56:36.9575693Z -- Installing: /pytorch/executorch/cmake-out/lib/libxnnpack_backend.a 2025-06-05T23:56:36.9576432Z -- Installing: /pytorch/executorch/cmake-out/lib/libetdump.a 2025-06-05T23:56:36.9577125Z -- Installing: /pytorch/executorch/cmake-out/lib/libbundled_program.a 2025-06-05T23:56:36.9577939Z -- Installing: /pytorch/executorch/cmake-out/lib/libextension_data_loader.a 2025-06-05T23:56:36.9578763Z -- Installing: /pytorch/executorch/cmake-out/lib/libextension_flat_tensor.a 2025-06-05T23:56:36.9579575Z -- Installing: /pytorch/executorch/cmake-out/lib/libextension_module.so 2025-06-05T23:56:36.9580386Z -- Installing: /pytorch/executorch/cmake-out/lib/libextension_module_static.a 2025-06-05T23:56:36.9581296Z -- Installing: /pytorch/executorch/cmake-out/lib/libextension_tensor.a 2025-06-05T23:56:36.9582251Z -- Installing: /pytorch/executorch/cmake-out/lib/libextension_threadpool.a 2025-06-05T23:56:36.9583022Z -- Installing: /pytorch/executorch/cmake-out/lib/libcustom_ops.a 2025-06-05T23:56:36.9583759Z -- Installing: /pytorch/executorch/cmake-out/lib/libquantized_kernels.a 2025-06-05T23:56:36.9584554Z -- Installing: /pytorch/executorch/cmake-out/lib/libquantized_ops_lib.a 2025-06-05T23:56:36.9585779Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/kernels/quantized/Functions.h 2025-06-05T23:56:36.9586930Z -- Installing: /pytorch/executorch/cmake-out/include/executorch/kernels/quantized/NativeFunctions.h 2025-06-05T23:56:36.9587848Z + echo ::endgroup:: 2025-06-05T23:56:36.9588658Z ##[endgroup] 2025-06-05T23:56:36.9588986Z + echo '::group::Set up Hugging Face' 2025-06-05T23:56:36.9589660Z ##[group]Set up Hugging Face 2025-06-05T23:56:36.9590078Z + pip install -U 'huggingface_hub[cli]' 2025-06-05T23:56:36.9590956Z Requirement already satisfied: huggingface_hub[cli] in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (0.32.4) 2025-06-05T23:56:36.9592761Z Requirement already satisfied: filelock in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface_hub[cli]) (3.18.0) 2025-06-05T23:56:36.9595267Z Requirement already satisfied: fsspec>=2023.5.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface_hub[cli]) (2025.3.0) 2025-06-05T23:56:36.9598046Z Requirement already satisfied: packaging>=20.9 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface_hub[cli]) (25.0) 2025-06-05T23:56:36.9600741Z Requirement already satisfied: pyyaml>=5.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface_hub[cli]) (6.0.1) 2025-06-05T23:56:36.9603416Z Requirement already satisfied: requests in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface_hub[cli]) (2.32.3) 2025-06-05T23:56:36.9606069Z Requirement already satisfied: tqdm>=4.42.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface_hub[cli]) (4.67.1) 2025-06-05T23:56:36.9608892Z 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:38.6294610Z 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:38.6295837Z Collecting InquirerPy==0.3.4 (from huggingface_hub[cli]) 2025-06-05T23:56:38.6296624Z Downloading InquirerPy-0.3.4-py3-none-any.whl.metadata (8.1 kB) 2025-06-05T23:56:38.6297418Z Collecting pfzy<0.4.0,>=0.3.1 (from InquirerPy==0.3.4->huggingface_hub[cli]) 2025-06-05T23:56:38.6298189Z Downloading pfzy-0.3.4-py3-none-any.whl.metadata (4.9 kB) 2025-06-05T23:56:38.6298983Z Collecting prompt-toolkit<4.0.0,>=3.0.1 (from InquirerPy==0.3.4->huggingface_hub[cli]) 2025-06-05T23:56:38.6299880Z Downloading prompt_toolkit-3.0.51-py3-none-any.whl.metadata (6.4 kB) 2025-06-05T23:56:38.6300804Z Collecting wcwidth (from prompt-toolkit<4.0.0,>=3.0.1->InquirerPy==0.3.4->huggingface_hub[cli]) 2025-06-05T23:56:38.6301703Z Downloading wcwidth-0.2.13-py2.py3-none-any.whl.metadata (14 kB) 2025-06-05T23:56:38.6303145Z Requirement already satisfied: charset-normalizer<4,>=2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from requests->huggingface_hub[cli]) (3.4.2) 2025-06-05T23:56:38.6304833Z Requirement already satisfied: idna<4,>=2.5 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from requests->huggingface_hub[cli]) (3.10) 2025-06-05T23:56:38.6306507Z Requirement already satisfied: urllib3<3,>=1.21.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from requests->huggingface_hub[cli]) (2.4.0) 2025-06-05T23:56:38.6308318Z Requirement already satisfied: certifi>=2017.4.17 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from requests->huggingface_hub[cli]) (2025.4.26) 2025-06-05T23:56:38.6309516Z Downloading InquirerPy-0.3.4-py3-none-any.whl (67 kB) 2025-06-05T23:56:38.6310155Z Downloading pfzy-0.3.4-py3-none-any.whl (8.5 kB) 2025-06-05T23:56:38.6310767Z Downloading prompt_toolkit-3.0.51-py3-none-any.whl (387 kB) 2025-06-05T23:56:38.6311434Z Downloading wcwidth-0.2.13-py2.py3-none-any.whl (34 kB) 2025-06-05T23:56:38.6312154Z Installing collected packages: wcwidth, prompt-toolkit, pfzy, InquirerPy 2025-06-05T23:56:38.6312989Z [?25l 2025-06-05T23:56:38.6313649Z  ━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1/4 [prompt-toolkit] 2025-06-05T23:56:38.6314686Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━ 3/4 [InquirerPy] 2025-06-05T23:56:38.6315503Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4/4 [InquirerPy] 2025-06-05T23:56:38.6316126Z [?25h 2025-06-05T23:56:38.6316879Z Successfully installed InquirerPy-0.3.4 pfzy-0.3.4 prompt-toolkit-3.0.51 wcwidth-0.2.13 2025-06-05T23:56:38.6318053Z + huggingface-cli login --token *** 2025-06-05T23:56:38.6319551Z The token has not been saved to the git credentials helper. Pass `add_to_git_credential=True` in this function directly or `--add-to-git-credential` if using via `huggingface-cli` if you want to set the git credential as well. 2025-06-05T23:56:38.6321169Z Token is valid (permission: read). 2025-06-05T23:56:38.6321916Z The token `EexecuTorch_CI` has been saved to /var/lib/ci-user/.cache/huggingface/stored_tokens 2025-06-05T23:56:38.6323018Z Your token has been saved to /var/lib/ci-user/.cache/huggingface/token 2025-06-05T23:56:38.6323681Z Login successful. 2025-06-05T23:56:38.6324161Z The current active token is: `EexecuTorch_CI` 2025-06-05T23:56:38.6324909Z + git clone https://github.com/huggingface/optimum-executorch 2025-06-05T23:56:38.6325546Z Cloning into 'optimum-executorch'... 2025-06-05T23:56:38.6326097Z remote: Enumerating objects: 692, done. 2025-06-05T23:56:38.6326731Z remote: Counting objects: 0% (1/272) 2025-06-05T23:56:38.6327293Z remote: Counting objects: 1% (3/272) 2025-06-05T23:56:38.6327898Z remote: Counting objects: 2% (6/272) 2025-06-05T23:56:38.6328486Z remote: Counting objects: 3% (9/272) 2025-06-05T23:56:38.6329116Z remote: Counting objects: 4% (11/272) 2025-06-05T23:56:38.6329684Z remote: Counting objects: 5% (14/272) 2025-06-05T23:56:38.6330290Z remote: Counting objects: 6% (17/272) 2025-06-05T23:56:38.6331068Z remote: Counting objects: 7% (20/272) 2025-06-05T23:56:38.6331701Z remote: Counting objects: 8% (22/272) 2025-06-05T23:56:38.6332336Z remote: Counting objects: 9% (25/272) 2025-06-05T23:56:38.6332933Z remote: Counting objects: 10% (28/272) 2025-06-05T23:56:38.6333470Z remote: Counting objects: 11% (30/272) 2025-06-05T23:56:38.6334059Z remote: Counting objects: 12% (33/272) 2025-06-05T23:56:38.6334679Z remote: Counting objects: 13% (36/272) 2025-06-05T23:56:38.6335234Z remote: Counting objects: 14% (39/272) 2025-06-05T23:56:38.6335875Z remote: Counting objects: 15% (41/272) 2025-06-05T23:56:38.6336407Z remote: Counting objects: 16% (44/272) 2025-06-05T23:56:38.6336928Z remote: Counting objects: 17% (47/272) 2025-06-05T23:56:38.6337464Z remote: Counting objects: 18% (49/272) 2025-06-05T23:56:38.6337981Z remote: Counting objects: 19% (52/272) 2025-06-05T23:56:38.6338494Z remote: Counting objects: 20% (55/272) 2025-06-05T23:56:38.6339092Z remote: Counting objects: 21% (58/272) 2025-06-05T23:56:38.6339733Z remote: Counting objects: 22% (60/272) 2025-06-05T23:56:38.6340498Z remote: Counting objects: 23% (63/272) 2025-06-05T23:56:38.6341353Z remote: Counting objects: 24% (66/272) 2025-06-05T23:56:38.6342323Z remote: Counting objects: 25% (68/272) 2025-06-05T23:56:38.6343004Z remote: Counting objects: 26% (71/272) 2025-06-05T23:56:38.6343534Z remote: Counting objects: 27% (74/272) 2025-06-05T23:56:38.6344046Z remote: Counting objects: 28% (77/272) 2025-06-05T23:56:38.6344574Z remote: Counting objects: 29% (79/272) 2025-06-05T23:56:38.6345086Z remote: Counting objects: 30% (82/272) 2025-06-05T23:56:38.6345610Z remote: Counting objects: 31% (85/272) 2025-06-05T23:56:38.6346209Z remote: Counting objects: 32% (88/272) 2025-06-05T23:56:38.6346835Z remote: Counting objects: 33% (90/272) 2025-06-05T23:56:38.6347407Z remote: Counting objects: 34% (93/272) 2025-06-05T23:56:38.6348126Z remote: Counting objects: 35% (96/272) 2025-06-05T23:56:38.6348655Z remote: Counting objects: 36% (98/272) 2025-06-05T23:56:38.6349191Z remote: Counting objects: 37% (101/272) 2025-06-05T23:56:38.6349825Z remote: Counting objects: 38% (104/272) 2025-06-05T23:56:38.6350441Z remote: Counting objects: 39% (107/272) 2025-06-05T23:56:38.6350966Z remote: Counting objects: 40% (109/272) 2025-06-05T23:56:38.6351490Z remote: Counting objects: 41% (112/272) 2025-06-05T23:56:38.6352098Z remote: Counting objects: 42% (115/272) 2025-06-05T23:56:38.6352714Z remote: Counting objects: 43% (117/272) 2025-06-05T23:56:38.6353249Z remote: Counting objects: 44% (120/272) 2025-06-05T23:56:38.6353771Z remote: Counting objects: 45% (123/272) 2025-06-05T23:56:38.6354406Z remote: Counting objects: 46% (126/272) 2025-06-05T23:56:38.6355047Z remote: Counting objects: 47% (128/272) 2025-06-05T23:56:38.6355585Z remote: Counting objects: 48% (131/272) 2025-06-05T23:56:38.6356121Z remote: Counting objects: 49% (134/272) 2025-06-05T23:56:38.6356950Z remote: Counting objects: 50% (136/272) 2025-06-05T23:56:38.6357486Z remote: Counting objects: 51% (139/272) 2025-06-05T23:56:38.6358032Z remote: Counting objects: 52% (142/272) 2025-06-05T23:56:38.6358653Z remote: Counting objects: 53% (145/272) 2025-06-05T23:56:38.6359202Z remote: Counting objects: 54% (147/272) 2025-06-05T23:56:38.6359730Z remote: Counting objects: 55% (150/272) 2025-06-05T23:56:38.6360296Z remote: Counting objects: 56% (153/272) 2025-06-05T23:56:38.6360962Z remote: Counting objects: 57% (156/272) 2025-06-05T23:56:38.6361610Z remote: Counting objects: 58% (158/272) 2025-06-05T23:56:38.6362140Z remote: Counting objects: 59% (161/272) 2025-06-05T23:56:38.6362778Z remote: Counting objects: 60% (164/272) 2025-06-05T23:56:38.6363532Z remote: Counting objects: 61% (166/272) 2025-06-05T23:56:38.6364131Z remote: Counting objects: 62% (169/272) 2025-06-05T23:56:38.6364775Z remote: Counting objects: 63% (172/272) 2025-06-05T23:56:38.6365480Z remote: Counting objects: 64% (175/272) 2025-06-05T23:56:38.6366028Z remote: Counting objects: 65% (177/272) 2025-06-05T23:56:38.6366598Z remote: Counting objects: 66% (180/272) 2025-06-05T23:56:38.6367220Z remote: Counting objects: 67% (183/272) 2025-06-05T23:56:38.6367835Z remote: Counting objects: 68% (185/272) 2025-06-05T23:56:38.6368534Z remote: Counting objects: 69% (188/272) 2025-06-05T23:56:38.6369315Z remote: Counting objects: 70% (191/272) 2025-06-05T23:56:38.6370058Z remote: Counting objects: 71% (194/272) 2025-06-05T23:56:38.6370631Z remote: Counting objects: 72% (196/272) 2025-06-05T23:56:38.6371232Z remote: Counting objects: 73% (199/272) 2025-06-05T23:56:38.6371869Z remote: Counting objects: 74% (202/272) 2025-06-05T23:56:38.6372467Z remote: Counting objects: 75% (204/272) 2025-06-05T23:56:38.6373040Z remote: Counting objects: 76% (207/272) 2025-06-05T23:56:38.6373609Z remote: Counting objects: 77% (210/272) 2025-06-05T23:56:38.6374254Z remote: Counting objects: 78% (213/272) 2025-06-05T23:56:38.6374784Z remote: Counting objects: 79% (215/272) 2025-06-05T23:56:38.6375469Z remote: Counting objects: 80% (218/272) 2025-06-05T23:56:38.6376261Z remote: Counting objects: 81% (221/272) 2025-06-05T23:56:38.6376808Z remote: Counting objects: 82% (224/272) 2025-06-05T23:56:38.6377331Z remote: Counting objects: 83% (226/272) 2025-06-05T23:56:38.6378026Z remote: Counting objects: 84% (229/272) 2025-06-05T23:56:38.6378655Z remote: Counting objects: 85% (232/272) 2025-06-05T23:56:38.6379481Z remote: Counting objects: 86% (234/272) 2025-06-05T23:56:38.6380049Z remote: Counting objects: 87% (237/272) 2025-06-05T23:56:38.6380893Z remote: Counting objects: 88% (240/272) 2025-06-05T23:56:38.6381606Z remote: Counting objects: 89% (243/272) 2025-06-05T23:56:38.6382397Z remote: Counting objects: 90% (245/272) 2025-06-05T23:56:38.6383234Z remote: Counting objects: 91% (248/272) 2025-06-05T23:56:38.6384145Z remote: Counting objects: 92% (251/272) 2025-06-05T23:56:38.6384950Z remote: Counting objects: 93% (253/272) 2025-06-05T23:56:38.6385864Z remote: Counting objects: 94% (256/272) 2025-06-05T23:56:38.6386612Z remote: Counting objects: 95% (259/272) 2025-06-05T23:56:38.6387428Z remote: Counting objects: 96% (262/272) 2025-06-05T23:56:38.6388258Z remote: Counting objects: 97% (264/272) 2025-06-05T23:56:38.6388978Z remote: Counting objects: 98% (267/272) 2025-06-05T23:56:38.6389658Z remote: Counting objects: 99% (270/272) 2025-06-05T23:56:38.6390368Z remote: Counting objects: 100% (272/272) 2025-06-05T23:56:38.6391135Z remote: Counting objects: 100% (272/272), done. 2025-06-05T23:56:38.6391986Z remote: Compressing objects: 1% (1/79) 2025-06-05T23:56:38.6392826Z remote: Compressing objects: 2% (2/79) 2025-06-05T23:56:38.6393576Z remote: Compressing objects: 3% (3/79) 2025-06-05T23:56:38.6394349Z remote: Compressing objects: 5% (4/79) 2025-06-05T23:56:38.6395198Z remote: Compressing objects: 6% (5/79) 2025-06-05T23:56:38.6395742Z remote: Compressing objects: 7% (6/79) 2025-06-05T23:56:38.6396276Z remote: Compressing objects: 8% (7/79) 2025-06-05T23:56:38.6396960Z remote: Compressing objects: 10% (8/79) 2025-06-05T23:56:38.6397639Z remote: Compressing objects: 11% (9/79) 2025-06-05T23:56:38.6398324Z remote: Compressing objects: 12% (10/79) 2025-06-05T23:56:38.6399056Z remote: Compressing objects: 13% (11/79) 2025-06-05T23:56:38.6399659Z remote: Compressing objects: 15% (12/79) 2025-06-05T23:56:38.6400362Z remote: Compressing objects: 16% (13/79) 2025-06-05T23:56:38.6401010Z remote: Compressing objects: 17% (14/79) 2025-06-05T23:56:38.6401645Z remote: Compressing objects: 18% (15/79) 2025-06-05T23:56:38.6402335Z remote: Compressing objects: 20% (16/79) 2025-06-05T23:56:38.6403070Z remote: Compressing objects: 21% (17/79) 2025-06-05T23:56:38.6458487Z remote: Compressing objects: 22% (18/79) 2025-06-05T23:56:38.6459540Z remote: Compressing objects: 24% (19/79) 2025-06-05T23:56:38.6460367Z remote: Compressing objects: 25% (20/79) 2025-06-05T23:56:38.6461162Z remote: Compressing objects: 26% (21/79) 2025-06-05T23:56:38.6461835Z remote: Compressing objects: 27% (22/79) 2025-06-05T23:56:38.6462388Z remote: Compressing objects: 29% (23/79) 2025-06-05T23:56:38.6463046Z remote: Compressing objects: 30% (24/79) 2025-06-05T23:56:38.6463939Z remote: Compressing objects: 31% (25/79) 2025-06-05T23:56:38.6464791Z remote: Compressing objects: 32% (26/79) 2025-06-05T23:56:38.6465596Z remote: Compressing objects: 34% (27/79) 2025-06-05T23:56:38.6466398Z remote: Compressing objects: 35% (28/79) 2025-06-05T23:56:38.6467241Z remote: Compressing objects: 36% (29/79) 2025-06-05T23:56:38.6468230Z remote: Compressing objects: 37% (30/79) 2025-06-05T23:56:38.6469182Z remote: Compressing objects: 39% (31/79) 2025-06-05T23:56:38.6470094Z remote: Compressing objects: 40% (32/79) 2025-06-05T23:56:38.6470792Z remote: Compressing objects: 41% (33/79) 2025-06-05T23:56:38.6471480Z remote: Compressing objects: 43% (34/79) 2025-06-05T23:56:38.6472252Z remote: Compressing objects: 44% (35/79) 2025-06-05T23:56:38.6472943Z remote: Compressing objects: 45% (36/79) 2025-06-05T23:56:38.6473565Z remote: Compressing objects: 46% (37/79) 2025-06-05T23:56:38.6474378Z remote: Compressing objects: 48% (38/79) 2025-06-05T23:56:38.6475171Z remote: Compressing objects: 49% (39/79) 2025-06-05T23:56:38.6475725Z remote: Compressing objects: 50% (40/79) 2025-06-05T23:56:38.6476476Z remote: Compressing objects: 51% (41/79) 2025-06-05T23:56:38.6477246Z remote: Compressing objects: 53% (42/79) 2025-06-05T23:56:38.6477787Z remote: Compressing objects: 54% (43/79) 2025-06-05T23:56:38.6478339Z remote: Compressing objects: 55% (44/79) 2025-06-05T23:56:38.6478965Z remote: Compressing objects: 56% (45/79) 2025-06-05T23:56:38.6479753Z remote: Compressing objects: 58% (46/79) 2025-06-05T23:56:38.6480454Z remote: Compressing objects: 59% (47/79) 2025-06-05T23:56:38.6481264Z remote: Compressing objects: 60% (48/79) 2025-06-05T23:56:38.6482153Z remote: Compressing objects: 62% (49/79) 2025-06-05T23:56:38.6483015Z remote: Compressing objects: 63% (50/79) 2025-06-05T23:56:38.6483870Z remote: Compressing objects: 64% (51/79) 2025-06-05T23:56:38.6484529Z remote: Compressing objects: 65% (52/79) 2025-06-05T23:56:38.6485304Z remote: Compressing objects: 67% (53/79) 2025-06-05T23:56:38.6486214Z remote: Compressing objects: 68% (54/79) 2025-06-05T23:56:38.6487087Z remote: Compressing objects: 69% (55/79) 2025-06-05T23:56:38.6487829Z remote: Compressing objects: 70% (56/79) 2025-06-05T23:56:38.6488681Z remote: Compressing objects: 72% (57/79) 2025-06-05T23:56:38.6489479Z remote: Compressing objects: 73% (58/79) 2025-06-05T23:56:38.6490264Z remote: Compressing objects: 74% (59/79) 2025-06-05T23:56:38.6491132Z remote: Compressing objects: 75% (60/79) 2025-06-05T23:56:38.6491830Z remote: Compressing objects: 77% (61/79) 2025-06-05T23:56:38.6492518Z remote: Compressing objects: 78% (62/79) 2025-06-05T23:56:38.6493081Z remote: Compressing objects: 79% (63/79) 2025-06-05T23:56:38.6493708Z remote: Compressing objects: 81% (64/79) 2025-06-05T23:56:38.6494272Z remote: Compressing objects: 82% (65/79) 2025-06-05T23:56:38.6494822Z remote: Compressing objects: 83% (66/79) 2025-06-05T23:56:38.6495360Z remote: Compressing objects: 84% (67/79) 2025-06-05T23:56:38.6495912Z remote: Compressing objects: 86% (68/79) 2025-06-05T23:56:38.6496446Z remote: Compressing objects: 87% (69/79) 2025-06-05T23:56:38.6496992Z remote: Compressing objects: 88% (70/79) 2025-06-05T23:56:38.6497621Z remote: Compressing objects: 89% (71/79) 2025-06-05T23:56:38.6498172Z remote: Compressing objects: 91% (72/79) 2025-06-05T23:56:38.6498706Z remote: Compressing objects: 92% (73/79) 2025-06-05T23:56:38.6499344Z remote: Compressing objects: 93% (74/79) 2025-06-05T23:56:38.6499888Z remote: Compressing objects: 94% (75/79) 2025-06-05T23:56:38.6500489Z remote: Compressing objects: 96% (76/79) 2025-06-05T23:56:38.6501026Z remote: Compressing objects: 97% (77/79) 2025-06-05T23:56:38.6501575Z remote: Compressing objects: 98% (78/79) 2025-06-05T23:56:38.6502111Z remote: Compressing objects: 100% (79/79) 2025-06-05T23:56:38.6502695Z remote: Compressing objects: 100% (79/79), done. 2025-06-05T23:56:38.6503184Z Receiving objects: 0% (1/692) 2025-06-05T23:56:38.6503587Z Receiving objects: 1% (7/692) 2025-06-05T23:56:38.6503980Z Receiving objects: 2% (14/692) 2025-06-05T23:56:38.6504398Z Receiving objects: 3% (21/692) 2025-06-05T23:56:38.6504793Z Receiving objects: 4% (28/692) 2025-06-05T23:56:38.6505542Z Receiving objects: 5% (35/692) 2025-06-05T23:56:38.6505951Z Receiving objects: 6% (42/692) 2025-06-05T23:56:38.6506353Z Receiving objects: 7% (49/692) 2025-06-05T23:56:38.6506771Z Receiving objects: 8% (56/692) 2025-06-05T23:56:38.6507161Z Receiving objects: 9% (63/692) 2025-06-05T23:56:38.6507558Z Receiving objects: 10% (70/692) 2025-06-05T23:56:38.6508108Z Receiving objects: 11% (77/692) 2025-06-05T23:56:38.6508708Z Receiving objects: 12% (84/692) 2025-06-05T23:56:38.6509109Z Receiving objects: 13% (90/692) 2025-06-05T23:56:38.6509536Z Receiving objects: 14% (97/692) 2025-06-05T23:56:38.6509935Z Receiving objects: 15% (104/692) 2025-06-05T23:56:38.6510358Z Receiving objects: 16% (111/692) 2025-06-05T23:56:38.6510761Z Receiving objects: 17% (118/692) 2025-06-05T23:56:38.6511185Z Receiving objects: 18% (125/692) 2025-06-05T23:56:38.6511587Z Receiving objects: 19% (132/692) 2025-06-05T23:56:38.6511992Z Receiving objects: 20% (139/692) 2025-06-05T23:56:38.6512410Z Receiving objects: 21% (146/692) 2025-06-05T23:56:38.6512816Z Receiving objects: 22% (153/692) 2025-06-05T23:56:38.6513235Z Receiving objects: 23% (160/692) 2025-06-05T23:56:38.6513642Z Receiving objects: 24% (167/692) 2025-06-05T23:56:38.6514063Z Receiving objects: 25% (173/692) 2025-06-05T23:56:38.6514462Z Receiving objects: 26% (180/692) 2025-06-05T23:56:38.6514888Z Receiving objects: 27% (187/692) 2025-06-05T23:56:38.6515290Z Receiving objects: 28% (194/692) 2025-06-05T23:56:38.6515709Z Receiving objects: 29% (201/692) 2025-06-05T23:56:38.6516112Z Receiving objects: 30% (208/692) 2025-06-05T23:56:38.6516521Z Receiving objects: 31% (215/692) 2025-06-05T23:56:38.6516917Z Receiving objects: 32% (222/692) 2025-06-05T23:56:38.6517523Z Receiving objects: 33% (229/692) 2025-06-05T23:56:38.6518031Z Receiving objects: 34% (236/692) 2025-06-05T23:56:38.6518427Z Receiving objects: 35% (243/692) 2025-06-05T23:56:38.6518841Z Receiving objects: 36% (250/692) 2025-06-05T23:56:38.6519242Z Receiving objects: 37% (257/692) 2025-06-05T23:56:38.6519656Z Receiving objects: 38% (263/692) 2025-06-05T23:56:38.6520056Z Receiving objects: 39% (270/692) 2025-06-05T23:56:38.6520467Z Receiving objects: 40% (277/692) 2025-06-05T23:56:38.6520960Z Receiving objects: 41% (284/692) 2025-06-05T23:56:38.6521379Z Receiving objects: 42% (291/692) 2025-06-05T23:56:38.6521780Z Receiving objects: 43% (298/692) 2025-06-05T23:56:38.6522193Z Receiving objects: 44% (305/692) 2025-06-05T23:56:38.6522654Z Receiving objects: 45% (312/692) 2025-06-05T23:56:38.6523069Z Receiving objects: 46% (319/692) 2025-06-05T23:56:38.6523466Z Receiving objects: 47% (326/692) 2025-06-05T23:56:38.6523882Z Receiving objects: 48% (333/692) 2025-06-05T23:56:38.6524281Z Receiving objects: 49% (340/692) 2025-06-05T23:56:38.6524701Z Receiving objects: 50% (346/692) 2025-06-05T23:56:38.6525106Z Receiving objects: 51% (353/692) 2025-06-05T23:56:38.6525507Z Receiving objects: 52% (360/692) 2025-06-05T23:56:38.6525918Z Receiving objects: 53% (367/692) 2025-06-05T23:56:38.6526319Z Receiving objects: 54% (374/692) 2025-06-05T23:56:38.6526731Z Receiving objects: 55% (381/692) 2025-06-05T23:56:38.6527128Z Receiving objects: 56% (388/692) 2025-06-05T23:56:38.6529114Z Receiving objects: 57% (395/692) 2025-06-05T23:56:38.6529532Z Receiving objects: 58% (402/692) 2025-06-05T23:56:38.6529983Z Receiving objects: 59% (409/692) 2025-06-05T23:56:38.6530382Z Receiving objects: 60% (416/692) 2025-06-05T23:56:38.6530794Z Receiving objects: 61% (423/692) 2025-06-05T23:56:38.6531188Z Receiving objects: 62% (430/692) 2025-06-05T23:56:38.6531597Z Receiving objects: 63% (436/692) 2025-06-05T23:56:38.6531996Z Receiving objects: 64% (443/692) 2025-06-05T23:56:38.6532408Z Receiving objects: 65% (450/692) 2025-06-05T23:56:38.6532804Z Receiving objects: 66% (457/692) 2025-06-05T23:56:38.6533203Z Receiving objects: 67% (464/692) 2025-06-05T23:56:38.6533614Z Receiving objects: 68% (471/692) 2025-06-05T23:56:38.6534014Z Receiving objects: 69% (478/692) 2025-06-05T23:56:38.6534423Z Receiving objects: 70% (485/692) 2025-06-05T23:56:38.6534823Z Receiving objects: 71% (492/692) 2025-06-05T23:56:38.6535238Z Receiving objects: 72% (499/692) 2025-06-05T23:56:38.6535638Z Receiving objects: 73% (506/692) 2025-06-05T23:56:38.6536050Z Receiving objects: 74% (513/692) 2025-06-05T23:56:38.6536828Z remote: Total 692 (delta 226), reused 198 (delta 191), pack-reused 420 (from 1) 2025-06-05T23:56:38.6537491Z Receiving objects: 75% (519/692) 2025-06-05T23:56:38.6537899Z Receiving objects: 76% (526/692) 2025-06-05T23:56:38.6538321Z Receiving objects: 77% (533/692) 2025-06-05T23:56:38.6538725Z Receiving objects: 78% (540/692) 2025-06-05T23:56:38.6539140Z Receiving objects: 79% (547/692) 2025-06-05T23:56:38.6539537Z Receiving objects: 80% (554/692) 2025-06-05T23:56:38.6539945Z Receiving objects: 81% (561/692) 2025-06-05T23:56:38.6551067Z Receiving objects: 82% (568/692) 2025-06-05T23:56:38.6551610Z Receiving objects: 83% (575/692) 2025-06-05T23:56:38.6552042Z Receiving objects: 84% (582/692) 2025-06-05T23:56:38.6552449Z Receiving objects: 85% (589/692) 2025-06-05T23:56:38.6552866Z Receiving objects: 86% (596/692) 2025-06-05T23:56:38.6553269Z Receiving objects: 87% (603/692) 2025-06-05T23:56:38.6553697Z Receiving objects: 88% (609/692) 2025-06-05T23:56:38.6554096Z Receiving objects: 89% (616/692) 2025-06-05T23:56:38.6554515Z Receiving objects: 90% (623/692) 2025-06-05T23:56:38.6555422Z Receiving objects: 91% (630/692) 2025-06-05T23:56:38.6555848Z Receiving objects: 92% (637/692) 2025-06-05T23:56:38.6556252Z Receiving objects: 93% (644/692) 2025-06-05T23:56:38.6556667Z Receiving objects: 94% (651/692) 2025-06-05T23:56:38.6557072Z Receiving objects: 95% (658/692) 2025-06-05T23:56:38.6557489Z Receiving objects: 96% (665/692) 2025-06-05T23:56:38.6557894Z Receiving objects: 97% (672/692) 2025-06-05T23:56:38.6558296Z Receiving objects: 98% (679/692) 2025-06-05T23:56:38.6558712Z Receiving objects: 99% (686/692) 2025-06-05T23:56:38.6559110Z Receiving objects: 100% (692/692) 2025-06-05T23:56:38.6559646Z Receiving objects: 100% (692/692), 188.41 KiB | 23.55 MiB/s, done. 2025-06-05T23:56:38.6560215Z Resolving deltas: 0% (0/389) 2025-06-05T23:56:38.6560785Z Resolving deltas: 1% (4/389) 2025-06-05T23:56:38.6561259Z Resolving deltas: 2% (8/389) 2025-06-05T23:56:38.6561658Z Resolving deltas: 3% (12/389) 2025-06-05T23:56:38.6562051Z Resolving deltas: 4% (16/389) 2025-06-05T23:56:38.6562454Z Resolving deltas: 5% (20/389) 2025-06-05T23:56:38.6562876Z Resolving deltas: 6% (24/389) 2025-06-05T23:56:38.6563274Z Resolving deltas: 7% (28/389) 2025-06-05T23:56:38.6563650Z Resolving deltas: 8% (32/389) 2025-06-05T23:56:38.6564046Z Resolving deltas: 9% (36/389) 2025-06-05T23:56:38.6564425Z Resolving deltas: 10% (40/389) 2025-06-05T23:56:38.6564818Z Resolving deltas: 11% (43/389) 2025-06-05T23:56:38.6565202Z Resolving deltas: 12% (47/389) 2025-06-05T23:56:38.6565586Z Resolving deltas: 13% (51/389) 2025-06-05T23:56:38.6565979Z Resolving deltas: 14% (55/389) 2025-06-05T23:56:38.6566361Z Resolving deltas: 15% (59/389) 2025-06-05T23:56:38.6566759Z Resolving deltas: 16% (64/389) 2025-06-05T23:56:38.6567140Z Resolving deltas: 17% (67/389) 2025-06-05T23:56:38.6567584Z Resolving deltas: 18% (71/389) 2025-06-05T23:56:38.6567972Z Resolving deltas: 19% (74/389) 2025-06-05T23:56:38.6568361Z Resolving deltas: 20% (78/389) 2025-06-05T23:56:38.6568780Z Resolving deltas: 21% (82/389) 2025-06-05T23:56:38.6569171Z Resolving deltas: 22% (86/389) 2025-06-05T23:56:38.6569550Z Resolving deltas: 23% (90/389) 2025-06-05T23:56:38.6569943Z Resolving deltas: 24% (94/389) 2025-06-05T23:56:38.6570331Z Resolving deltas: 25% (99/389) 2025-06-05T23:56:38.6570726Z Resolving deltas: 26% (102/389) 2025-06-05T23:56:38.6571139Z Resolving deltas: 27% (106/389) 2025-06-05T23:56:38.6571536Z Resolving deltas: 28% (109/389) 2025-06-05T23:56:38.6571942Z Resolving deltas: 29% (113/389) 2025-06-05T23:56:38.6572334Z Resolving deltas: 30% (117/389) 2025-06-05T23:56:38.6572738Z Resolving deltas: 31% (121/389) 2025-06-05T23:56:38.6573125Z Resolving deltas: 32% (125/389) 2025-06-05T23:56:38.6573527Z Resolving deltas: 33% (129/389) 2025-06-05T23:56:38.6573916Z Resolving deltas: 34% (133/389) 2025-06-05T23:56:38.6574326Z Resolving deltas: 35% (137/389) 2025-06-05T23:56:38.6574714Z Resolving deltas: 36% (141/389) 2025-06-05T23:56:38.6575117Z Resolving deltas: 37% (144/389) 2025-06-05T23:56:38.6575505Z Resolving deltas: 38% (148/389) 2025-06-05T23:56:38.6575912Z Resolving deltas: 39% (152/389) 2025-06-05T23:56:38.6576301Z Resolving deltas: 40% (156/389) 2025-06-05T23:56:38.6576693Z Resolving deltas: 41% (160/389) 2025-06-05T23:56:38.6577098Z Resolving deltas: 42% (164/389) 2025-06-05T23:56:38.6577488Z Resolving deltas: 43% (168/389) 2025-06-05T23:56:38.6577885Z Resolving deltas: 44% (172/389) 2025-06-05T23:56:38.6578274Z Resolving deltas: 45% (176/389) 2025-06-05T23:56:38.6578675Z Resolving deltas: 46% (179/389) 2025-06-05T23:56:38.6579063Z Resolving deltas: 47% (183/389) 2025-06-05T23:56:38.6579466Z Resolving deltas: 48% (187/389) 2025-06-05T23:56:38.6579855Z Resolving deltas: 49% (191/389) 2025-06-05T23:56:38.6580260Z Resolving deltas: 50% (195/389) 2025-06-05T23:56:38.6580651Z Resolving deltas: 51% (199/389) 2025-06-05T23:56:38.6581057Z Resolving deltas: 52% (204/389) 2025-06-05T23:56:38.6581450Z Resolving deltas: 53% (207/389) 2025-06-05T23:56:41.6022813Z Resolving deltas: 54% (211/389) 2025-06-05T23:56:41.6023501Z Resolving deltas: 55% (214/389) 2025-06-05T23:56:41.6023940Z Resolving deltas: 56% (218/389) 2025-06-05T23:56:41.6024337Z Resolving deltas: 57% (222/389) 2025-06-05T23:56:41.6024729Z Resolving deltas: 58% (226/389) 2025-06-05T23:56:41.6025143Z Resolving deltas: 59% (231/389) 2025-06-05T23:56:41.6025663Z Resolving deltas: 60% (234/389) 2025-06-05T23:56:41.6026078Z Resolving deltas: 61% (238/389) 2025-06-05T23:56:41.6026470Z Resolving deltas: 62% (242/389) 2025-06-05T23:56:41.6026871Z Resolving deltas: 63% (246/389) 2025-06-05T23:56:41.6027261Z Resolving deltas: 64% (249/389) 2025-06-05T23:56:41.6027734Z Resolving deltas: 65% (253/389) 2025-06-05T23:56:41.6028126Z Resolving deltas: 66% (257/389) 2025-06-05T23:56:41.6028529Z Resolving deltas: 67% (261/389) 2025-06-05T23:56:41.6029596Z Resolving deltas: 68% (265/389) 2025-06-05T23:56:41.6030002Z Resolving deltas: 69% (269/389) 2025-06-05T23:56:41.6030399Z Resolving deltas: 70% (273/389) 2025-06-05T23:56:41.6030802Z Resolving deltas: 71% (277/389) 2025-06-05T23:56:41.6031277Z Resolving deltas: 72% (281/389) 2025-06-05T23:56:41.6031674Z Resolving deltas: 73% (284/389) 2025-06-05T23:56:41.6032082Z Resolving deltas: 74% (288/389) 2025-06-05T23:56:41.6032479Z Resolving deltas: 75% (292/389) 2025-06-05T23:56:41.6032882Z Resolving deltas: 76% (296/389) 2025-06-05T23:56:41.6033277Z Resolving deltas: 77% (300/389) 2025-06-05T23:56:41.6033678Z Resolving deltas: 78% (304/389) 2025-06-05T23:56:41.6034068Z Resolving deltas: 79% (308/389) 2025-06-05T23:56:41.6034469Z Resolving deltas: 80% (312/389) 2025-06-05T23:56:41.6034856Z Resolving deltas: 81% (316/389) 2025-06-05T23:56:41.6035258Z Resolving deltas: 82% (319/389) 2025-06-05T23:56:41.6035646Z Resolving deltas: 83% (323/389) 2025-06-05T23:56:41.6036278Z Resolving deltas: 84% (327/389) 2025-06-05T23:56:41.6036752Z Resolving deltas: 85% (331/389) 2025-06-05T23:56:41.6037243Z Resolving deltas: 86% (335/389) 2025-06-05T23:56:41.6037716Z Resolving deltas: 87% (339/389) 2025-06-05T23:56:41.6038109Z Resolving deltas: 88% (343/389) 2025-06-05T23:56:41.6038524Z Resolving deltas: 89% (347/389) 2025-06-05T23:56:41.6039027Z Resolving deltas: 90% (351/389) 2025-06-05T23:56:41.6039429Z Resolving deltas: 91% (354/389) 2025-06-05T23:56:41.6039869Z Resolving deltas: 92% (358/389) 2025-06-05T23:56:41.6040262Z Resolving deltas: 93% (362/389) 2025-06-05T23:56:41.6040667Z Resolving deltas: 94% (366/389) 2025-06-05T23:56:41.6041059Z Resolving deltas: 95% (370/389) 2025-06-05T23:56:41.6041447Z Resolving deltas: 96% (374/389) 2025-06-05T23:56:41.6041851Z Resolving deltas: 97% (378/389) 2025-06-05T23:56:41.6042242Z Resolving deltas: 98% (382/389) 2025-06-05T23:56:41.6042646Z Resolving deltas: 99% (386/389) 2025-06-05T23:56:41.6043033Z Resolving deltas: 100% (389/389) 2025-06-05T23:56:41.6043453Z Resolving deltas: 100% (389/389), done. 2025-06-05T23:56:41.6043898Z + pushd optimum-executorch 2025-06-05T23:56:41.6044409Z /pytorch/executorch/optimum-executorch /pytorch/executorch 2025-06-05T23:56:41.6045051Z + git checkout da80c9e35b3db5c7eea8731b7d660482fb4870a8 2025-06-05T23:56:41.6045693Z Note: switching to 'da80c9e35b3db5c7eea8731b7d660482fb4870a8'. 2025-06-05T23:56:41.6046111Z 2025-06-05T23:56:41.6046416Z You are in 'detached HEAD' state. You can look around, make experimental 2025-06-05T23:56:41.6047201Z changes and commit them, and you can discard any commits you make in this 2025-06-05T23:56:41.6047970Z state without impacting any branches by switching back to a branch. 2025-06-05T23:56:41.6048431Z 2025-06-05T23:56:41.6048727Z If you want to create a new branch to retain commits you create, you may 2025-06-05T23:56:41.6049429Z do so (now or later) by using -c with the switch command. Example: 2025-06-05T23:56:41.6049847Z 2025-06-05T23:56:41.6050007Z git switch -c 2025-06-05T23:56:41.6050297Z 2025-06-05T23:56:41.6050439Z Or undo this operation with: 2025-06-05T23:56:41.6050697Z 2025-06-05T23:56:41.6050835Z git switch - 2025-06-05T23:56:41.6051021Z 2025-06-05T23:56:41.6051346Z Turn off this advice by setting config variable advice.detachedHead to false 2025-06-05T23:56:41.6051848Z 2025-06-05T23:56:41.6052065Z HEAD is now at da80c9e TorchAO version bump in CI (#68) 2025-06-05T23:56:41.6052568Z + pip install '.[tests]' 2025-06-05T23:56:41.6053017Z Processing /pytorch/executorch/optimum-executorch 2025-06-05T23:56:41.6053874Z Installing build dependencies ... [?25l- \ done 2025-06-05T23:56:41.6054556Z [?25h Getting requirements to build wheel ... [?25l- done 2025-06-05T23:56:41.6055282Z [?25h Preparing metadata (pyproject.toml) ... [?25l- done 2025-06-05T23:56:41.6056048Z [?25hCollecting optimum~=1.24 (from optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:41.6056796Z Downloading optimum-1.25.3-py3-none-any.whl.metadata (16 kB) 2025-06-05T23:56:41.6058319Z Requirement already satisfied: executorch>=0.6.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from optimum-executorch==0.0.0.dev0) (0.7.0a0+bd57234) 2025-06-05T23:56:41.6059648Z Collecting transformers==4.51.0 (from optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:41.6060496Z Downloading transformers-4.51.0-py3-none-any.whl.metadata (38 kB) 2025-06-05T23:56:41.6061282Z Collecting accelerate>=0.26.0 (from optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:41.6062029Z Downloading accelerate-1.7.0-py3-none-any.whl.metadata (19 kB) 2025-06-05T23:56:41.6063228Z Requirement already satisfied: datasets in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from optimum-executorch==0.0.0.dev0) (3.6.0) 2025-06-05T23:56:41.6064900Z Requirement already satisfied: parameterized in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from optimum-executorch==0.0.0.dev0) (0.9.0) 2025-06-05T23:56:41.6066623Z Requirement already satisfied: pytest in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from optimum-executorch==0.0.0.dev0) (8.4.0) 2025-06-05T23:56:41.6068497Z Requirement already satisfied: safetensors in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from optimum-executorch==0.0.0.dev0) (0.5.3) 2025-06-05T23:56:41.6070227Z Requirement already satisfied: sentencepiece in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from optimum-executorch==0.0.0.dev0) (0.2.0) 2025-06-05T23:56:41.6071434Z Collecting numba!=0.58.0 (from optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:41.6072457Z Downloading numba-0.61.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.metadata (2.8 kB) 2025-06-05T23:56:41.6073370Z Collecting librosa (from optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:41.6074045Z Downloading librosa-0.11.0-py3-none-any.whl.metadata (8.7 kB) 2025-06-05T23:56:41.6074748Z Collecting soundfile (from optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:41.6075536Z Downloading soundfile-0.13.1-py2.py3-none-manylinux_2_28_x86_64.whl.metadata (16 kB) 2025-06-05T23:56:41.6077126Z Requirement already satisfied: filelock in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.51.0->optimum-executorch==0.0.0.dev0) (3.18.0) 2025-06-05T23:56:41.6079112Z Requirement already satisfied: huggingface-hub<1.0,>=0.30.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.51.0->optimum-executorch==0.0.0.dev0) (0.32.4) 2025-06-05T23:56:41.6081103Z Requirement already satisfied: numpy>=1.17 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.51.0->optimum-executorch==0.0.0.dev0) (2.2.6) 2025-06-05T23:56:41.6083007Z Requirement already satisfied: packaging>=20.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.51.0->optimum-executorch==0.0.0.dev0) (25.0) 2025-06-05T23:56:41.6084925Z Requirement already satisfied: pyyaml>=5.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.51.0->optimum-executorch==0.0.0.dev0) (6.0.1) 2025-06-05T23:56:41.6087101Z Requirement already satisfied: regex!=2019.12.17 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.51.0->optimum-executorch==0.0.0.dev0) (2024.11.6) 2025-06-05T23:56:41.6089057Z Requirement already satisfied: requests in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.51.0->optimum-executorch==0.0.0.dev0) (2.32.3) 2025-06-05T23:56:41.6091009Z Requirement already satisfied: tokenizers<0.22,>=0.21 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.51.0->optimum-executorch==0.0.0.dev0) (0.21.1) 2025-06-05T23:56:41.6092936Z Requirement already satisfied: tqdm>=4.27 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.51.0->optimum-executorch==0.0.0.dev0) (4.67.1) 2025-06-05T23:56:41.6095003Z Requirement already satisfied: fsspec>=2023.5.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface-hub<1.0,>=0.30.0->transformers==4.51.0->optimum-executorch==0.0.0.dev0) (2025.3.0) 2025-06-05T23:56:41.6097421Z Requirement already satisfied: typing-extensions>=3.7.4.3 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface-hub<1.0,>=0.30.0->transformers==4.51.0->optimum-executorch==0.0.0.dev0) (4.14.0) 2025-06-05T23:56:41.6099769Z Requirement already satisfied: hf-xet<2.0.0,>=1.1.2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from huggingface-hub<1.0,>=0.30.0->transformers==4.51.0->optimum-executorch==0.0.0.dev0) (1.1.3) 2025-06-05T23:56:41.6101845Z Requirement already satisfied: torch>=1.11 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from optimum~=1.24->optimum-executorch==0.0.0.dev0) (2.8.0a0+git5616fa4) 2025-06-05T23:56:41.6103719Z Requirement already satisfied: psutil in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from accelerate>=0.26.0->optimum-executorch==0.0.0.dev0) (7.0.0) 2025-06-05T23:56:41.6105654Z Requirement already satisfied: expecttest in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch>=0.6.0->optimum-executorch==0.0.0.dev0) (0.1.6) 2025-06-05T23:56:41.6107562Z Requirement already satisfied: flatbuffers in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch>=0.6.0->optimum-executorch==0.0.0.dev0) (25.2.10) 2025-06-05T23:56:41.6109626Z Requirement already satisfied: hypothesis in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch>=0.6.0->optimum-executorch==0.0.0.dev0) (6.84.2) 2025-06-05T23:56:41.6111507Z Requirement already satisfied: mpmath==1.3.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch>=0.6.0->optimum-executorch==0.0.0.dev0) (1.3.0) 2025-06-05T23:56:41.6113379Z Requirement already satisfied: pandas>=2.2.2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch>=0.6.0->optimum-executorch==0.0.0.dev0) (2.2.3) 2025-06-05T23:56:41.6115260Z Requirement already satisfied: pytest-xdist in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch>=0.6.0->optimum-executorch==0.0.0.dev0) (3.7.0) 2025-06-05T23:56:41.6117237Z Requirement already satisfied: pytest-rerunfailures in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch>=0.6.0->optimum-executorch==0.0.0.dev0) (15.1) 2025-06-05T23:56:41.6119219Z 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:42.7434410Z Requirement already satisfied: sympy in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch>=0.6.0->optimum-executorch==0.0.0.dev0) (1.14.0) 2025-06-05T23:56:42.7436329Z Requirement already satisfied: tabulate in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch>=0.6.0->optimum-executorch==0.0.0.dev0) (0.9.0) 2025-06-05T23:56:42.7438227Z Requirement already satisfied: coremltools==8.3 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from executorch>=0.6.0->optimum-executorch==0.0.0.dev0) (8.3.0) 2025-06-05T23:56:42.7440247Z Requirement already satisfied: protobuf>=3.1.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from coremltools==8.3->executorch>=0.6.0->optimum-executorch==0.0.0.dev0) (6.31.1) 2025-06-05T23:56:42.7442351Z Requirement already satisfied: attrs>=21.3.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from coremltools==8.3->executorch>=0.6.0->optimum-executorch==0.0.0.dev0) (25.3.0) 2025-06-05T23:56:42.7444379Z Requirement already satisfied: cattrs in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from coremltools==8.3->executorch>=0.6.0->optimum-executorch==0.0.0.dev0) (25.1.1) 2025-06-05T23:56:42.7446413Z Requirement already satisfied: pyaml in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from coremltools==8.3->executorch>=0.6.0->optimum-executorch==0.0.0.dev0) (25.5.0) 2025-06-05T23:56:42.7447877Z Collecting llvmlite<0.45,>=0.44.0dev0 (from numba!=0.58.0->optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:42.7448950Z Downloading llvmlite-0.44.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.8 kB) 2025-06-05T23:56:42.7450823Z Requirement already satisfied: python-dateutil>=2.8.2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pandas>=2.2.2->executorch>=0.6.0->optimum-executorch==0.0.0.dev0) (2.9.0.post0) 2025-06-05T23:56:42.7453026Z Requirement already satisfied: pytz>=2020.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pandas>=2.2.2->executorch>=0.6.0->optimum-executorch==0.0.0.dev0) (2025.2) 2025-06-05T23:56:42.7455045Z Requirement already satisfied: tzdata>=2022.7 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pandas>=2.2.2->executorch>=0.6.0->optimum-executorch==0.0.0.dev0) (2025.2) 2025-06-05T23:56:42.7457142Z Requirement already satisfied: six>=1.5 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from python-dateutil>=2.8.2->pandas>=2.2.2->executorch>=0.6.0->optimum-executorch==0.0.0.dev0) (1.17.0) 2025-06-05T23:56:42.7459416Z Requirement already satisfied: networkx in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torch>=1.11->optimum~=1.24->optimum-executorch==0.0.0.dev0) (3.4.2) 2025-06-05T23:56:42.7461318Z Requirement already satisfied: jinja2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from torch>=1.11->optimum~=1.24->optimum-executorch==0.0.0.dev0) (3.1.6) 2025-06-05T23:56:42.7463467Z Requirement already satisfied: exceptiongroup>=1.1.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from cattrs->coremltools==8.3->executorch>=0.6.0->optimum-executorch==0.0.0.dev0) (1.3.0) 2025-06-05T23:56:42.7465498Z Requirement already satisfied: pyarrow>=15.0.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from datasets->optimum-executorch==0.0.0.dev0) (20.0.0) 2025-06-05T23:56:42.7467264Z Requirement already satisfied: dill<0.3.9,>=0.3.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from datasets->optimum-executorch==0.0.0.dev0) (0.3.8) 2025-06-05T23:56:42.7469085Z Requirement already satisfied: xxhash in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from datasets->optimum-executorch==0.0.0.dev0) (3.5.0) 2025-06-05T23:56:42.7470882Z Requirement already satisfied: multiprocess<0.70.17 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from datasets->optimum-executorch==0.0.0.dev0) (0.70.16) 2025-06-05T23:56:42.7472929Z Requirement already satisfied: aiohttp!=4.0.0a0,!=4.0.0a1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from fsspec[http]<=2025.3.0,>=2023.1.0->datasets->optimum-executorch==0.0.0.dev0) (3.12.9) 2025-06-05T23:56:42.7475242Z Requirement already satisfied: aiohappyeyeballs>=2.5.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets->optimum-executorch==0.0.0.dev0) (2.6.1) 2025-06-05T23:56:42.7477670Z Requirement already satisfied: aiosignal>=1.1.2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets->optimum-executorch==0.0.0.dev0) (1.3.2) 2025-06-05T23:56:42.7480061Z Requirement already satisfied: async-timeout<6.0,>=4.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets->optimum-executorch==0.0.0.dev0) (5.0.1) 2025-06-05T23:56:42.7482425Z Requirement already satisfied: frozenlist>=1.1.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets->optimum-executorch==0.0.0.dev0) (1.6.2) 2025-06-05T23:56:42.7484777Z Requirement already satisfied: multidict<7.0,>=4.5 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets->optimum-executorch==0.0.0.dev0) (6.4.4) 2025-06-05T23:56:42.7487366Z Requirement already satisfied: propcache>=0.2.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets->optimum-executorch==0.0.0.dev0) (0.3.1) 2025-06-05T23:56:42.7489679Z Requirement already satisfied: yarl<2.0,>=1.17.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets->optimum-executorch==0.0.0.dev0) (1.20.0) 2025-06-05T23:56:42.7492125Z Requirement already satisfied: idna>=2.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from yarl<2.0,>=1.17.0->aiohttp!=4.0.0a0,!=4.0.0a1->fsspec[http]<=2025.3.0,>=2023.1.0->datasets->optimum-executorch==0.0.0.dev0) (3.10) 2025-06-05T23:56:42.7494415Z Requirement already satisfied: charset-normalizer<4,>=2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from requests->transformers==4.51.0->optimum-executorch==0.0.0.dev0) (3.4.2) 2025-06-05T23:56:42.7496530Z Requirement already satisfied: urllib3<3,>=1.21.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from requests->transformers==4.51.0->optimum-executorch==0.0.0.dev0) (2.4.0) 2025-06-05T23:56:42.7498672Z Requirement already satisfied: certifi>=2017.4.17 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from requests->transformers==4.51.0->optimum-executorch==0.0.0.dev0) (2025.4.26) 2025-06-05T23:56:42.7500825Z Requirement already satisfied: sortedcontainers<3.0.0,>=2.1.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from hypothesis->executorch>=0.6.0->optimum-executorch==0.0.0.dev0) (2.4.0) 2025-06-05T23:56:42.7503021Z Requirement already satisfied: MarkupSafe>=2.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from jinja2->torch>=1.11->optimum~=1.24->optimum-executorch==0.0.0.dev0) (3.0.2) 2025-06-05T23:56:42.7504458Z Collecting audioread>=2.1.9 (from librosa->optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:42.7505261Z Downloading audioread-3.0.1-py3-none-any.whl.metadata (8.4 kB) 2025-06-05T23:56:42.7506011Z Collecting scipy>=1.6.0 (from librosa->optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:42.7506958Z Downloading scipy-1.15.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (61 kB) 2025-06-05T23:56:42.7508021Z Collecting scikit-learn>=1.1.0 (from librosa->optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:42.7509067Z Downloading scikit_learn-1.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (17 kB) 2025-06-05T23:56:42.7510051Z Collecting joblib>=1.0 (from librosa->optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:42.7510803Z Downloading joblib-1.5.1-py3-none-any.whl.metadata (5.6 kB) 2025-06-05T23:56:42.7511553Z Collecting decorator>=4.3.0 (from librosa->optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:42.7512351Z Downloading decorator-5.2.1-py3-none-any.whl.metadata (3.9 kB) 2025-06-05T23:56:42.7513090Z Collecting pooch>=1.1 (from librosa->optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:42.7513811Z Downloading pooch-1.8.2-py3-none-any.whl.metadata (10 kB) 2025-06-05T23:56:42.7514511Z Collecting soxr>=0.3.2 (from librosa->optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:42.7515484Z Downloading soxr-0.5.0.post1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (5.6 kB) 2025-06-05T23:56:42.7516482Z Collecting lazy_loader>=0.1 (from librosa->optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:42.7517262Z Downloading lazy_loader-0.4-py3-none-any.whl.metadata (7.6 kB) 2025-06-05T23:56:42.7518007Z Collecting msgpack>=1.0 (from librosa->optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:42.7518971Z Downloading msgpack-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (8.4 kB) 2025-06-05T23:56:42.7520021Z Collecting platformdirs>=2.5.0 (from pooch>=1.1->librosa->optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:42.7520905Z Downloading platformdirs-4.3.8-py3-none-any.whl.metadata (12 kB) 2025-06-05T23:56:42.7521828Z Collecting threadpoolctl>=3.1.0 (from scikit-learn>=1.1.0->librosa->optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:42.7522777Z Downloading threadpoolctl-3.6.0-py3-none-any.whl.metadata (13 kB) 2025-06-05T23:56:42.7523539Z Collecting cffi>=1.0 (from soundfile->optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:47.0963357Z Downloading cffi-1.17.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.5 kB) 2025-06-05T23:56:47.0964643Z Collecting pycparser (from cffi>=1.0->soundfile->optimum-executorch==0.0.0.dev0) 2025-06-05T23:56:47.0965506Z Downloading pycparser-2.22-py3-none-any.whl.metadata (943 bytes) 2025-06-05T23:56:47.0966862Z Requirement already satisfied: iniconfig>=1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pytest->optimum-executorch==0.0.0.dev0) (2.1.0) 2025-06-05T23:56:47.0968632Z Requirement already satisfied: pluggy<2,>=1.5 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pytest->optimum-executorch==0.0.0.dev0) (1.6.0) 2025-06-05T23:56:47.0970382Z Requirement already satisfied: pygments>=2.7.2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pytest->optimum-executorch==0.0.0.dev0) (2.19.1) 2025-06-05T23:56:47.0972133Z Requirement already satisfied: tomli>=1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pytest->optimum-executorch==0.0.0.dev0) (2.0.1) 2025-06-05T23:56:47.0974060Z Requirement already satisfied: execnet>=2.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from pytest-xdist->executorch>=0.6.0->optimum-executorch==0.0.0.dev0) (2.1.1) 2025-06-05T23:56:47.0976213Z Requirement already satisfied: ruamel.yaml.clib>=0.2.7 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from ruamel.yaml->executorch>=0.6.0->optimum-executorch==0.0.0.dev0) (0.2.12) 2025-06-05T23:56:47.0977647Z Downloading transformers-4.51.0-py3-none-any.whl (10.4 MB) 2025-06-05T23:56:47.0978711Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/10.4 MB ? eta -:--:-- 2025-06-05T23:56:47.0979661Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 10.4/10.4 MB 145.3 MB/s eta 0:00:00 2025-06-05T23:56:47.0980455Z [?25hDownloading optimum-1.25.3-py3-none-any.whl (429 kB) 2025-06-05T23:56:47.0981097Z Downloading accelerate-1.7.0-py3-none-any.whl (362 kB) 2025-06-05T23:56:47.0981920Z Downloading numba-0.61.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (3.8 MB) 2025-06-05T23:56:47.0982973Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/3.8 MB ? eta -:--:-- 2025-06-05T23:56:47.0983878Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.8/3.8 MB 178.3 MB/s eta 0:00:00 2025-06-05T23:56:47.0984995Z [?25hDownloading llvmlite-0.44.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (42.4 MB) 2025-06-05T23:56:47.0986314Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/42.4 MB ? eta -:--:-- 2025-06-05T23:56:47.0987239Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 42.4/42.4 MB 299.1 MB/s eta 0:00:00 2025-06-05T23:56:47.0988100Z [?25hDownloading librosa-0.11.0-py3-none-any.whl (260 kB) 2025-06-05T23:56:47.0988730Z Downloading audioread-3.0.1-py3-none-any.whl (23 kB) 2025-06-05T23:56:47.0989334Z Downloading decorator-5.2.1-py3-none-any.whl (9.2 kB) 2025-06-05T23:56:47.0989940Z Downloading joblib-1.5.1-py3-none-any.whl (307 kB) 2025-06-05T23:56:47.0990615Z Downloading lazy_loader-0.4-py3-none-any.whl (12 kB) 2025-06-05T23:56:47.0991441Z Downloading msgpack-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (378 kB) 2025-06-05T23:56:47.0992319Z Downloading pooch-1.8.2-py3-none-any.whl (64 kB) 2025-06-05T23:56:47.0992929Z Downloading platformdirs-4.3.8-py3-none-any.whl (18 kB) 2025-06-05T23:56:47.0993792Z Downloading scikit_learn-1.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.9 MB) 2025-06-05T23:56:47.0994890Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/12.9 MB ? eta -:--:-- 2025-06-05T23:56:47.0995800Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 12.9/12.9 MB 125.2 MB/s eta 0:00:00 2025-06-05T23:56:47.0996870Z [?25hDownloading scipy-1.15.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (37.7 MB) 2025-06-05T23:56:47.0997929Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/37.7 MB ? eta -:--:-- 2025-06-05T23:56:47.0998911Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸ 37.5/37.7 MB 267.6 MB/s eta 0:00:01 2025-06-05T23:56:47.0999876Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 37.7/37.7 MB 185.5 MB/s eta 0:00:00 2025-06-05T23:56:47.1000845Z [?25hDownloading soundfile-0.13.1-py2.py3-none-manylinux_2_28_x86_64.whl (1.3 MB) 2025-06-05T23:56:47.1001816Z [?25l ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 0.0/1.3 MB ? eta -:--:-- 2025-06-05T23:56:47.1002703Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 157.3 MB/s eta 0:00:00 2025-06-05T23:56:47.1003734Z [?25hDownloading cffi-1.17.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (446 kB) 2025-06-05T23:56:47.1004820Z Downloading soxr-0.5.0.post1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (252 kB) 2025-06-05T23:56:47.1005806Z Downloading threadpoolctl-3.6.0-py3-none-any.whl (18 kB) 2025-06-05T23:56:47.1006453Z Downloading pycparser-2.22-py3-none-any.whl (117 kB) 2025-06-05T23:56:47.1007151Z Building wheels for collected packages: optimum-executorch 2025-06-05T23:56:47.1008000Z Building wheel for optimum-executorch (pyproject.toml) ... [?25l- done 2025-06-05T23:56:47.1009693Z [?25h Created wheel for optimum-executorch: filename=optimum_executorch-0.0.0.dev0-py3-none-any.whl size=46306 sha256=1e7efd9d6ea511a5a1e21b73bf7046ff61091528dc4099fcd6d3e3e22daff6db 2025-06-05T23:56:47.1011463Z Stored in directory: /var/lib/ci-user/.cache/pip/wheels/21/45/32/92f39150ceac4c40476febd5873fe6c89c3ce7bb223d0e07ee 2025-06-05T23:56:47.1012405Z Successfully built optimum-executorch 2025-06-05T23:56:47.1014097Z Installing collected packages: threadpoolctl, soxr, scipy, pycparser, platformdirs, msgpack, llvmlite, lazy_loader, joblib, decorator, audioread, scikit-learn, pooch, numba, cffi, soundfile, accelerate, transformers, librosa, optimum, optimum-executorch 2025-06-05T23:56:47.1015797Z [?25l 2025-06-05T23:56:47.1016372Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:56:47.1017206Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:56:47.1018030Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:56:47.1018939Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:56:47.1019755Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:56:47.1020558Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:56:47.1021381Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:56:47.1022198Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:56:47.1023081Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:56:47.1023953Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:56:47.1024781Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:56:47.1025583Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:56:54.2356881Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:56:54.2357776Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:56:54.2358614Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:56:54.2359627Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:56:54.2360478Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:56:54.2361379Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:56:54.2362198Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:56:54.2363003Z  ━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  2/21 [scipy] 2025-06-05T23:56:54.2363943Z  ━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━  5/21 [msgpack] 2025-06-05T23:56:54.2364769Z  ━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━  6/21 [llvmlite] 2025-06-05T23:56:54.2365692Z  ━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━  6/21 [llvmlite] 2025-06-05T23:56:54.2366531Z  ━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━  6/21 [llvmlite] 2025-06-05T23:56:54.2367464Z  ━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━  6/21 [llvmlite] 2025-06-05T23:56:54.2368363Z  ━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━  8/21 [joblib] 2025-06-05T23:56:54.2369215Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 11/21 [scikit-learn] 2025-06-05T23:56:54.2370060Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 11/21 [scikit-learn] 2025-06-05T23:56:54.2370914Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 11/21 [scikit-learn] 2025-06-05T23:56:54.2371763Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 11/21 [scikit-learn] 2025-06-05T23:56:54.2372600Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 11/21 [scikit-learn] 2025-06-05T23:56:54.2373496Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 11/21 [scikit-learn] 2025-06-05T23:56:54.2374349Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 11/21 [scikit-learn] 2025-06-05T23:56:54.2375254Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 11/21 [scikit-learn] 2025-06-05T23:56:54.2376122Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 11/21 [scikit-learn] 2025-06-05T23:56:54.2376969Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 11/21 [scikit-learn] 2025-06-05T23:56:54.2377807Z  ━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━━━━━ 11/21 [scikit-learn] 2025-06-05T23:56:54.2378640Z  ━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 13/21 [numba] 2025-06-05T23:56:54.2379438Z  ━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 13/21 [numba] 2025-06-05T23:56:54.2380276Z  ━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 13/21 [numba] 2025-06-05T23:56:54.2381078Z  ━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 13/21 [numba] 2025-06-05T23:56:54.2381889Z  ━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 13/21 [numba] 2025-06-05T23:56:54.2382679Z  ━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 13/21 [numba] 2025-06-05T23:56:54.2383478Z  ━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 13/21 [numba] 2025-06-05T23:56:54.2384266Z  ━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 13/21 [numba] 2025-06-05T23:56:54.2385062Z  ━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 13/21 [numba] 2025-06-05T23:56:54.2386007Z  ━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 13/21 [numba] 2025-06-05T23:56:54.2386905Z  ━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 13/21 [numba] 2025-06-05T23:56:54.2387826Z  ━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━━━ 13/21 [numba] 2025-06-05T23:56:54.2388697Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━╸━━━━━━━━━━━━━ 14/21 [cffi] 2025-06-05T23:56:54.2389502Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━ 16/21 [accelerate] 2025-06-05T23:56:54.2390157Z  Attempting uninstall: transformers 2025-06-05T23:56:54.2390848Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━ 16/21 [accelerate] 2025-06-05T23:56:54.2391569Z  Found existing installation: transformers 4.47.1 2025-06-05T23:56:54.2392312Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━━━ 16/21 [accelerate] 2025-06-05T23:56:54.2393198Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:56:54.2393870Z  Uninstalling transformers-4.47.1: 2025-06-05T23:56:54.2394583Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:56:54.2395428Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:01.3724337Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:01.3725257Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:01.3726099Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:01.3726946Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:01.3727680Z  Successfully uninstalled transformers-4.47.1 2025-06-05T23:57:01.3728487Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:01.3729565Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:01.3730539Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:01.3731369Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:01.3732203Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:01.3733026Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:01.3734024Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:01.3734967Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:01.3735938Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:01.3736833Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:01.3737683Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:01.3738512Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:01.3739356Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:01.3740179Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:01.3741013Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:01.3741856Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:01.3742697Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:01.3743554Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:01.3744374Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:01.3745207Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:01.3746031Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:01.3746864Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:01.3747778Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:01.3748640Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:01.3749534Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:01.3750442Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:01.3751268Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:01.3752101Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:01.3752920Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:01.3753759Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:01.3754678Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:01.3755715Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━━━ 17/21 [transformers] 2025-06-05T23:57:01.3756743Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━━━ 18/21 [librosa] 2025-06-05T23:57:01.3757656Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 19/21 [optimum] 2025-06-05T23:57:01.3758505Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╺━━━ 19/21 [optimum] 2025-06-05T23:57:01.3759381Z  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 21/21 [optimum-executorch] 2025-06-05T23:57:01.3759942Z [?25h 2025-06-05T23:57:01.3762755Z 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:01.3765274Z + popd 2025-06-05T23:57:01.3765699Z /pytorch/executorch 2025-06-05T23:57:01.3766242Z + '[' google/gemma-3-1b-it == google/gemma-3-1b-it ']' 2025-06-05T23:57:01.3766997Z + git clone https://github.com/huggingface/transformers.git 2025-06-05T23:57:01.3767559Z Cloning into 'transformers'... 2025-06-05T23:57:01.3768100Z remote: Enumerating objects: 292985, done. 2025-06-05T23:57:01.3768639Z remote: Counting objects: 3% (1/28) 2025-06-05T23:57:01.3769166Z remote: Counting objects: 7% (2/28) 2025-06-05T23:57:01.3769676Z remote: Counting objects: 10% (3/28) 2025-06-05T23:57:01.3770192Z remote: Counting objects: 14% (4/28) 2025-06-05T23:57:08.3649135Z remote: Counting objects: 17% (5/28) 2025-06-05T23:57:08.3649877Z remote: Counting objects: 21% (6/28) 2025-06-05T23:57:08.3650638Z remote: Counting objects: 25% (7/28) 2025-06-05T23:57:08.3651151Z remote: Counting objects: 28% (8/28) 2025-06-05T23:57:08.3651744Z remote: Counting objects: 32% (9/28) 2025-06-05T23:57:08.3652572Z remote: Counting objects: 35% (10/28) 2025-06-05T23:57:08.3653433Z remote: Counting objects: 39% (11/28) 2025-06-05T23:57:08.3654051Z remote: Counting objects: 42% (12/28) 2025-06-05T23:57:08.3654753Z remote: Counting objects: 46% (13/28) 2025-06-05T23:57:08.3655283Z remote: Counting objects: 50% (14/28) 2025-06-05T23:57:08.3655835Z remote: Counting objects: 53% (15/28) 2025-06-05T23:57:08.3656585Z remote: Counting objects: 57% (16/28) 2025-06-05T23:57:08.3657103Z remote: Counting objects: 60% (17/28) 2025-06-05T23:57:08.3657755Z remote: Counting objects: 64% (18/28) 2025-06-05T23:57:08.3658388Z remote: Counting objects: 67% (19/28) 2025-06-05T23:57:08.3658914Z remote: Counting objects: 71% (20/28) 2025-06-05T23:57:08.3659494Z remote: Counting objects: 75% (21/28) 2025-06-05T23:57:08.3660034Z remote: Counting objects: 78% (22/28) 2025-06-05T23:57:08.3661140Z remote: Counting objects: 82% (23/28) 2025-06-05T23:57:08.3661797Z remote: Counting objects: 85% (24/28) 2025-06-05T23:57:08.3662540Z remote: Counting objects: 89% (25/28) 2025-06-05T23:57:08.3663240Z remote: Counting objects: 92% (26/28) 2025-06-05T23:57:08.3663786Z remote: Counting objects: 96% (27/28) 2025-06-05T23:57:08.3664381Z remote: Counting objects: 100% (28/28) 2025-06-05T23:57:08.3664990Z remote: Counting objects: 100% (28/28), done. 2025-06-05T23:57:08.3665614Z remote: Compressing objects: 4% (1/22) 2025-06-05T23:57:08.3666171Z remote: Compressing objects: 9% (2/22) 2025-06-05T23:57:08.3666772Z remote: Compressing objects: 13% (3/22) 2025-06-05T23:57:08.3667382Z remote: Compressing objects: 18% (4/22) 2025-06-05T23:57:08.3668062Z remote: Compressing objects: 22% (5/22) 2025-06-05T23:57:08.3668646Z remote: Compressing objects: 27% (6/22) 2025-06-05T23:57:08.3669454Z remote: Compressing objects: 31% (7/22) 2025-06-05T23:57:08.3670079Z remote: Compressing objects: 36% (8/22) 2025-06-05T23:57:08.3670694Z remote: Compressing objects: 40% (9/22) 2025-06-05T23:57:08.3671280Z remote: Compressing objects: 45% (10/22) 2025-06-05T23:57:08.3671887Z remote: Compressing objects: 50% (11/22) 2025-06-05T23:57:08.3672655Z remote: Compressing objects: 54% (12/22) 2025-06-05T23:57:08.3673265Z remote: Compressing objects: 59% (13/22) 2025-06-05T23:57:08.3673924Z remote: Compressing objects: 63% (14/22) 2025-06-05T23:57:08.3674466Z remote: Compressing objects: 68% (15/22) 2025-06-05T23:57:08.3675088Z remote: Compressing objects: 72% (16/22) 2025-06-05T23:57:08.3675697Z remote: Compressing objects: 77% (17/22) 2025-06-05T23:57:08.3676316Z remote: Compressing objects: 81% (18/22) 2025-06-05T23:57:08.3677002Z remote: Compressing objects: 86% (19/22) 2025-06-05T23:57:08.3677579Z remote: Compressing objects: 90% (20/22) 2025-06-05T23:57:08.3678114Z remote: Compressing objects: 95% (21/22) 2025-06-05T23:57:08.3678667Z remote: Compressing objects: 100% (22/22) 2025-06-05T23:57:08.3679449Z remote: Compressing objects: 100% (22/22), done. 2025-06-05T23:57:08.3680121Z Receiving objects: 0% (1/292985) 2025-06-05T23:57:08.3680645Z Receiving objects: 1% (2930/292985) 2025-06-05T23:57:08.3681239Z Receiving objects: 2% (5860/292985) 2025-06-05T23:57:08.3681669Z Receiving objects: 3% (8790/292985) 2025-06-05T23:57:08.3682172Z Receiving objects: 4% (11720/292985) 2025-06-05T23:57:08.3682641Z Receiving objects: 5% (14650/292985) 2025-06-05T23:57:08.3683112Z Receiving objects: 6% (17580/292985) 2025-06-05T23:57:08.3683600Z Receiving objects: 7% (20509/292985) 2025-06-05T23:57:08.3684028Z Receiving objects: 8% (23439/292985) 2025-06-05T23:57:08.3684527Z Receiving objects: 9% (26369/292985) 2025-06-05T23:57:08.3685291Z Receiving objects: 10% (29299/292985), 15.37 MiB | 30.72 MiB/s 2025-06-05T23:57:08.3686021Z Receiving objects: 11% (32229/292985), 15.37 MiB | 30.72 MiB/s 2025-06-05T23:57:08.3686705Z Receiving objects: 11% (32792/292985), 30.52 MiB | 30.51 MiB/s 2025-06-05T23:57:08.3687372Z Receiving objects: 12% (35159/292985), 30.52 MiB | 30.51 MiB/s 2025-06-05T23:57:08.3688029Z Receiving objects: 13% (38089/292985), 30.52 MiB | 30.51 MiB/s 2025-06-05T23:57:08.3688721Z Receiving objects: 14% (41018/292985), 30.52 MiB | 30.51 MiB/s 2025-06-05T23:57:08.3689354Z Receiving objects: 15% (43948/292985), 46.23 MiB | 30.81 MiB/s 2025-06-05T23:57:08.3690001Z Receiving objects: 16% (46878/292985), 46.23 MiB | 30.81 MiB/s 2025-06-05T23:57:08.3690689Z Receiving objects: 17% (49808/292985), 46.23 MiB | 30.81 MiB/s 2025-06-05T23:57:08.3691338Z Receiving objects: 17% (52698/292985), 46.23 MiB | 30.81 MiB/s 2025-06-05T23:57:08.3691973Z Receiving objects: 18% (52738/292985), 65.05 MiB | 32.52 MiB/s 2025-06-05T23:57:08.3692621Z Receiving objects: 19% (55668/292985), 65.05 MiB | 32.52 MiB/s 2025-06-05T23:57:08.3693523Z Receiving objects: 20% (58597/292985), 65.05 MiB | 32.52 MiB/s 2025-06-05T23:57:08.3694545Z Receiving objects: 21% (61527/292985), 65.05 MiB | 32.52 MiB/s 2025-06-05T23:57:08.3695197Z Receiving objects: 22% (64457/292985), 81.68 MiB | 32.67 MiB/s 2025-06-05T23:57:08.3695901Z Receiving objects: 23% (67387/292985), 81.68 MiB | 32.67 MiB/s 2025-06-05T23:57:08.3696536Z Receiving objects: 24% (70317/292985), 81.68 MiB | 32.67 MiB/s 2025-06-05T23:57:08.3697180Z Receiving objects: 25% (73247/292985), 81.68 MiB | 32.67 MiB/s 2025-06-05T23:57:08.3697814Z Receiving objects: 26% (76177/292985), 81.68 MiB | 32.67 MiB/s 2025-06-05T23:57:08.3698467Z Receiving objects: 26% (77059/292985), 102.82 MiB | 34.27 MiB/s 2025-06-05T23:57:08.3699116Z Receiving objects: 27% (79106/292985), 102.82 MiB | 34.27 MiB/s 2025-06-05T23:57:08.3699775Z Receiving objects: 28% (82036/292985), 102.82 MiB | 34.27 MiB/s 2025-06-05T23:57:08.3700421Z Receiving objects: 29% (84966/292985), 102.82 MiB | 34.27 MiB/s 2025-06-05T23:57:08.3701085Z Receiving objects: 30% (87896/292985), 102.82 MiB | 34.27 MiB/s 2025-06-05T23:57:08.3701809Z Receiving objects: 31% (90826/292985), 102.82 MiB | 34.27 MiB/s 2025-06-05T23:57:08.3702471Z Receiving objects: 32% (93756/292985), 122.52 MiB | 35.00 MiB/s 2025-06-05T23:57:08.3703330Z Receiving objects: 33% (96686/292985), 122.52 MiB | 35.00 MiB/s 2025-06-05T23:57:08.3704060Z Receiving objects: 34% (99615/292985), 122.52 MiB | 35.00 MiB/s 2025-06-05T23:57:08.3704763Z Receiving objects: 35% (102545/292985), 122.52 MiB | 35.00 MiB/s 2025-06-05T23:57:08.3705436Z Receiving objects: 36% (105475/292985), 122.52 MiB | 35.00 MiB/s 2025-06-05T23:57:08.3706090Z Receiving objects: 37% (108405/292985), 122.52 MiB | 35.00 MiB/s 2025-06-05T23:57:08.3706757Z Receiving objects: 37% (108466/292985), 122.52 MiB | 35.00 MiB/s 2025-06-05T23:57:08.3707402Z Receiving objects: 38% (111335/292985), 142.38 MiB | 35.59 MiB/s 2025-06-05T23:57:08.3708144Z Receiving objects: 39% (114265/292985), 142.38 MiB | 35.59 MiB/s 2025-06-05T23:57:08.3708791Z Receiving objects: 40% (117194/292985), 142.38 MiB | 35.59 MiB/s 2025-06-05T23:57:08.3709461Z Receiving objects: 41% (120124/292985), 142.38 MiB | 35.59 MiB/s 2025-06-05T23:57:08.3710195Z Receiving objects: 42% (123054/292985), 142.38 MiB | 35.59 MiB/s 2025-06-05T23:57:08.3710860Z Receiving objects: 43% (125984/292985), 160.74 MiB | 35.72 MiB/s 2025-06-05T23:57:08.3711562Z Receiving objects: 44% (128914/292985), 160.74 MiB | 35.72 MiB/s 2025-06-05T23:57:08.3712219Z Receiving objects: 45% (131844/292985), 160.74 MiB | 35.72 MiB/s 2025-06-05T23:57:08.3712861Z Receiving objects: 46% (134774/292985), 160.74 MiB | 35.72 MiB/s 2025-06-05T23:57:08.3713519Z Receiving objects: 47% (137703/292985), 160.74 MiB | 35.72 MiB/s 2025-06-05T23:57:08.3714172Z Receiving objects: 48% (140633/292985), 160.74 MiB | 35.72 MiB/s 2025-06-05T23:57:08.3714896Z Receiving objects: 48% (142270/292985), 160.74 MiB | 35.72 MiB/s 2025-06-05T23:57:08.3715556Z Receiving objects: 49% (143563/292985), 178.93 MiB | 36.35 MiB/s 2025-06-05T23:57:08.3716204Z Receiving objects: 50% (146493/292985), 178.93 MiB | 36.35 MiB/s 2025-06-05T23:57:08.3716868Z Receiving objects: 51% (149423/292985), 178.93 MiB | 36.35 MiB/s 2025-06-05T23:57:08.3717517Z Receiving objects: 52% (152353/292985), 178.93 MiB | 36.35 MiB/s 2025-06-05T23:57:08.3718179Z Receiving objects: 53% (155283/292985), 178.93 MiB | 36.35 MiB/s 2025-06-05T23:57:08.3718830Z Receiving objects: 54% (158212/292985), 178.93 MiB | 36.35 MiB/s 2025-06-05T23:57:08.3719491Z Receiving objects: 55% (161142/292985), 178.93 MiB | 36.35 MiB/s 2025-06-05T23:57:08.3720138Z Receiving objects: 56% (164072/292985), 178.93 MiB | 36.35 MiB/s 2025-06-05T23:57:08.3720797Z Receiving objects: 57% (167002/292985), 178.93 MiB | 36.35 MiB/s 2025-06-05T23:57:08.3721446Z Receiving objects: 58% (169932/292985), 178.93 MiB | 36.35 MiB/s 2025-06-05T23:57:08.3722105Z Receiving objects: 59% (172862/292985), 178.93 MiB | 36.35 MiB/s 2025-06-05T23:57:08.3722772Z Receiving objects: 60% (175791/292985), 178.93 MiB | 36.35 MiB/s 2025-06-05T23:57:08.3723808Z Receiving objects: 61% (178721/292985), 199.45 MiB | 37.55 MiB/s 2025-06-05T23:57:08.3724466Z Receiving objects: 62% (181651/292985), 199.45 MiB | 37.55 MiB/s 2025-06-05T23:57:08.3725175Z Receiving objects: 63% (184581/292985), 199.45 MiB | 37.55 MiB/s 2025-06-05T23:57:08.3725826Z Receiving objects: 64% (187511/292985), 199.45 MiB | 37.55 MiB/s 2025-06-05T23:57:08.3726483Z Receiving objects: 65% (190441/292985), 199.45 MiB | 37.55 MiB/s 2025-06-05T23:57:08.3727138Z Receiving objects: 66% (193371/292985), 199.45 MiB | 37.55 MiB/s 2025-06-05T23:57:08.3727802Z Receiving objects: 66% (194576/292985), 199.45 MiB | 37.55 MiB/s 2025-06-05T23:57:08.3728445Z Receiving objects: 67% (196300/292985), 219.69 MiB | 38.56 MiB/s 2025-06-05T23:57:08.3729099Z Receiving objects: 68% (199230/292985), 219.69 MiB | 38.56 MiB/s 2025-06-05T23:57:08.3729744Z Receiving objects: 69% (202160/292985), 219.69 MiB | 38.56 MiB/s 2025-06-05T23:57:08.3730400Z Receiving objects: 70% (205090/292985), 219.69 MiB | 38.56 MiB/s 2025-06-05T23:57:08.3731047Z Receiving objects: 71% (208020/292985), 219.69 MiB | 38.56 MiB/s 2025-06-05T23:57:08.3731709Z Receiving objects: 72% (210950/292985), 219.69 MiB | 38.56 MiB/s 2025-06-05T23:57:08.3732449Z Receiving objects: 73% (213880/292985), 219.69 MiB | 38.56 MiB/s 2025-06-05T23:57:08.3733153Z Receiving objects: 74% (216809/292985), 219.69 MiB | 38.56 MiB/s 2025-06-05T23:57:08.3733897Z Receiving objects: 75% (219739/292985), 219.69 MiB | 38.56 MiB/s 2025-06-05T23:57:08.3734563Z Receiving objects: 76% (222669/292985), 238.62 MiB | 38.58 MiB/s 2025-06-05T23:57:08.3735207Z Receiving objects: 77% (225599/292985), 238.62 MiB | 38.58 MiB/s 2025-06-05T23:57:08.3735861Z Receiving objects: 78% (228529/292985), 238.62 MiB | 38.58 MiB/s 2025-06-05T23:57:08.3736507Z Receiving objects: 79% (231459/292985), 238.62 MiB | 38.58 MiB/s 2025-06-05T23:57:08.3737161Z Receiving objects: 80% (234388/292985), 238.62 MiB | 38.58 MiB/s 2025-06-05T23:57:08.3737804Z Receiving objects: 81% (237318/292985), 238.62 MiB | 38.58 MiB/s 2025-06-05T23:57:08.3738468Z Receiving objects: 82% (240248/292985), 238.62 MiB | 38.58 MiB/s 2025-06-05T23:57:08.3739168Z Receiving objects: 83% (243178/292985), 238.62 MiB | 38.58 MiB/s 2025-06-05T23:57:08.3739828Z Receiving objects: 84% (246108/292985), 238.62 MiB | 38.58 MiB/s 2025-06-05T23:57:08.3740513Z Receiving objects: 85% (249038/292985), 238.62 MiB | 38.58 MiB/s 2025-06-05T23:57:08.3741243Z Receiving objects: 86% (251968/292985), 238.62 MiB | 38.58 MiB/s 2025-06-05T23:57:08.3741895Z Receiving objects: 87% (254897/292985), 238.62 MiB | 38.58 MiB/s 2025-06-05T23:57:08.3742560Z Receiving objects: 88% (257827/292985), 238.62 MiB | 38.58 MiB/s 2025-06-05T23:57:08.3743203Z Receiving objects: 89% (260757/292985), 238.62 MiB | 38.58 MiB/s 2025-06-05T23:57:08.3743861Z Receiving objects: 90% (263687/292985), 238.62 MiB | 38.58 MiB/s 2025-06-05T23:57:23.2856084Z Receiving objects: 91% (266617/292985), 238.62 MiB | 38.58 MiB/s 2025-06-05T23:57:23.2857019Z Receiving objects: 92% (269547/292985), 238.62 MiB | 38.58 MiB/s 2025-06-05T23:57:23.2857958Z Receiving objects: 92% (270863/292985), 238.62 MiB | 38.58 MiB/s 2025-06-05T23:57:23.2858620Z Receiving objects: 93% (272477/292985), 260.15 MiB | 39.67 MiB/s 2025-06-05T23:57:23.2859297Z Receiving objects: 94% (275406/292985), 260.15 MiB | 39.67 MiB/s 2025-06-05T23:57:23.2859959Z Receiving objects: 95% (278336/292985), 260.15 MiB | 39.67 MiB/s 2025-06-05T23:57:23.2860626Z Receiving objects: 96% (281266/292985), 277.14 MiB | 38.75 MiB/s 2025-06-05T23:57:23.2861283Z Receiving objects: 97% (284196/292985), 277.14 MiB | 38.75 MiB/s 2025-06-05T23:57:23.2861937Z Receiving objects: 98% (287126/292985), 277.14 MiB | 38.75 MiB/s 2025-06-05T23:57:23.2862604Z Receiving objects: 98% (289541/292985), 277.14 MiB | 38.75 MiB/s 2025-06-05T23:57:23.2863254Z Receiving objects: 99% (290056/292985), 294.21 MiB | 38.16 MiB/s 2025-06-05T23:57:23.2864309Z remote: Total 292985 (delta 14), reused 6 (delta 6), pack-reused 292957 (from 3) 2025-06-05T23:57:23.2865308Z Receiving objects: 100% (292985/292985), 294.21 MiB | 38.16 MiB/s 2025-06-05T23:57:23.2866033Z Receiving objects: 100% (292985/292985), 306.16 MiB | 36.48 MiB/s, done. 2025-06-05T23:57:23.2866702Z Resolving deltas: 0% (0/218716) 2025-06-05T23:57:23.2867121Z Resolving deltas: 1% (2188/218716) 2025-06-05T23:57:23.2867543Z Resolving deltas: 2% (4375/218716) 2025-06-05T23:57:23.2868042Z Resolving deltas: 3% (6562/218716) 2025-06-05T23:57:23.2868463Z Resolving deltas: 4% (8749/218716) 2025-06-05T23:57:23.2868896Z Resolving deltas: 5% (10936/218716) 2025-06-05T23:57:23.2869319Z Resolving deltas: 6% (13123/218716) 2025-06-05T23:57:23.2869757Z Resolving deltas: 7% (15311/218716) 2025-06-05T23:57:23.2870174Z Resolving deltas: 8% (17498/218716) 2025-06-05T23:57:23.2870607Z Resolving deltas: 9% (19685/218716) 2025-06-05T23:57:23.2871026Z Resolving deltas: 10% (21872/218716) 2025-06-05T23:57:23.2871459Z Resolving deltas: 10% (23695/218716) 2025-06-05T23:57:23.2871879Z Resolving deltas: 11% (24059/218716) 2025-06-05T23:57:23.2872313Z Resolving deltas: 12% (26246/218716) 2025-06-05T23:57:23.2872736Z Resolving deltas: 13% (28434/218716) 2025-06-05T23:57:23.2873165Z Resolving deltas: 14% (30621/218716) 2025-06-05T23:57:23.2873582Z Resolving deltas: 15% (32808/218716) 2025-06-05T23:57:23.2874002Z Resolving deltas: 16% (34995/218716) 2025-06-05T23:57:23.2874432Z Resolving deltas: 17% (37182/218716) 2025-06-05T23:57:23.2874847Z Resolving deltas: 18% (39369/218716) 2025-06-05T23:57:23.2875283Z Resolving deltas: 19% (41557/218716) 2025-06-05T23:57:23.2875701Z Resolving deltas: 20% (43744/218716) 2025-06-05T23:57:23.2876132Z Resolving deltas: 21% (45931/218716) 2025-06-05T23:57:23.2876551Z Resolving deltas: 22% (48118/218716) 2025-06-05T23:57:23.2876978Z Resolving deltas: 22% (48248/218716) 2025-06-05T23:57:23.2877395Z Resolving deltas: 23% (50305/218716) 2025-06-05T23:57:23.2877822Z Resolving deltas: 24% (52492/218716) 2025-06-05T23:57:23.2878237Z Resolving deltas: 25% (54679/218716) 2025-06-05T23:57:23.2878674Z Resolving deltas: 26% (56867/218716) 2025-06-05T23:57:23.2879263Z Resolving deltas: 27% (59054/218716) 2025-06-05T23:57:23.2879697Z Resolving deltas: 28% (61241/218716) 2025-06-05T23:57:23.2880122Z Resolving deltas: 29% (63428/218716) 2025-06-05T23:57:23.2880556Z Resolving deltas: 30% (65615/218716) 2025-06-05T23:57:23.2881039Z Resolving deltas: 31% (67802/218716) 2025-06-05T23:57:23.2881474Z Resolving deltas: 32% (69990/218716) 2025-06-05T23:57:23.2881892Z Resolving deltas: 33% (72177/218716) 2025-06-05T23:57:23.2882323Z Resolving deltas: 34% (74364/218716) 2025-06-05T23:57:23.2882743Z Resolving deltas: 34% (75716/218716) 2025-06-05T23:57:23.2883172Z Resolving deltas: 35% (76551/218716) 2025-06-05T23:57:23.2883588Z Resolving deltas: 36% (78738/218716) 2025-06-05T23:57:23.2884019Z Resolving deltas: 37% (80925/218716) 2025-06-05T23:57:23.2884437Z Resolving deltas: 38% (83113/218716) 2025-06-05T23:57:23.2884866Z Resolving deltas: 39% (85300/218716) 2025-06-05T23:57:23.2885542Z Resolving deltas: 40% (87487/218716) 2025-06-05T23:57:23.2885972Z Resolving deltas: 41% (89674/218716) 2025-06-05T23:57:23.2886412Z Resolving deltas: 42% (91861/218716) 2025-06-05T23:57:23.2886832Z Resolving deltas: 43% (94048/218716) 2025-06-05T23:57:23.2887270Z Resolving deltas: 44% (96236/218716) 2025-06-05T23:57:23.2887693Z Resolving deltas: 45% (98423/218716) 2025-06-05T23:57:23.2888127Z Resolving deltas: 46% (100610/218716) 2025-06-05T23:57:23.2888556Z Resolving deltas: 47% (102797/218716) 2025-06-05T23:57:23.2888994Z Resolving deltas: 48% (104984/218716) 2025-06-05T23:57:23.2898999Z Resolving deltas: 49% (107171/218716) 2025-06-05T23:57:23.2899499Z Resolving deltas: 49% (107552/218716) 2025-06-05T23:57:23.2899943Z Resolving deltas: 50% (109358/218716) 2025-06-05T23:57:23.2900374Z Resolving deltas: 51% (111546/218716) 2025-06-05T23:57:23.2900809Z Resolving deltas: 52% (113733/218716) 2025-06-05T23:57:23.2901241Z Resolving deltas: 53% (115920/218716) 2025-06-05T23:57:23.2901677Z Resolving deltas: 54% (118107/218716) 2025-06-05T23:57:23.2902262Z Resolving deltas: 55% (120294/218716) 2025-06-05T23:57:23.2902707Z Resolving deltas: 56% (122481/218716) 2025-06-05T23:57:23.2903187Z Resolving deltas: 57% (124669/218716) 2025-06-05T23:57:23.2903629Z Resolving deltas: 58% (126856/218716) 2025-06-05T23:57:23.2904062Z Resolving deltas: 59% (129043/218716) 2025-06-05T23:57:23.2904508Z Resolving deltas: 60% (131230/218716) 2025-06-05T23:57:23.2904934Z Resolving deltas: 61% (133417/218716) 2025-06-05T23:57:23.2905378Z Resolving deltas: 62% (135604/218716) 2025-06-05T23:57:23.2905809Z Resolving deltas: 63% (137792/218716) 2025-06-05T23:57:23.2906249Z Resolving deltas: 64% (139979/218716) 2025-06-05T23:57:23.2906677Z Resolving deltas: 65% (142166/218716) 2025-06-05T23:57:23.2907119Z Resolving deltas: 66% (144353/218716) 2025-06-05T23:57:23.2907546Z Resolving deltas: 66% (145102/218716) 2025-06-05T23:57:23.2908065Z Resolving deltas: 67% (146540/218716) 2025-06-05T23:57:23.2908513Z Resolving deltas: 68% (148727/218716) 2025-06-05T23:57:23.2908950Z Resolving deltas: 69% (150915/218716) 2025-06-05T23:57:23.2909395Z Resolving deltas: 70% (153102/218716) 2025-06-05T23:57:23.2909825Z Resolving deltas: 71% (155289/218716) 2025-06-05T23:57:23.2910270Z Resolving deltas: 72% (157476/218716) 2025-06-05T23:57:23.2910700Z Resolving deltas: 73% (159663/218716) 2025-06-05T23:57:23.2911134Z Resolving deltas: 74% (161850/218716) 2025-06-05T23:57:23.2911556Z Resolving deltas: 75% (164037/218716) 2025-06-05T23:57:23.2911991Z Resolving deltas: 76% (166225/218716) 2025-06-05T23:57:23.2912419Z Resolving deltas: 77% (168412/218716) 2025-06-05T23:57:23.2912848Z Resolving deltas: 78% (170599/218716) 2025-06-05T23:57:23.2913284Z Resolving deltas: 79% (172786/218716) 2025-06-05T23:57:23.2913821Z Resolving deltas: 80% (174973/218716) 2025-06-05T23:57:23.2914259Z Resolving deltas: 81% (177160/218716) 2025-06-05T23:57:23.2914686Z Resolving deltas: 82% (179348/218716) 2025-06-05T23:57:23.2915131Z Resolving deltas: 83% (181535/218716) 2025-06-05T23:57:23.2915638Z Resolving deltas: 84% (183722/218716) 2025-06-05T23:57:23.2916086Z Resolving deltas: 85% (185909/218716) 2025-06-05T23:57:23.2916519Z Resolving deltas: 86% (188096/218716) 2025-06-05T23:57:23.2916956Z Resolving deltas: 87% (190283/218716) 2025-06-05T23:57:23.2917441Z Resolving deltas: 88% (192471/218716) 2025-06-05T23:57:23.2917879Z Resolving deltas: 89% (194658/218716) 2025-06-05T23:57:23.2918307Z Resolving deltas: 90% (196845/218716) 2025-06-05T23:57:23.2918754Z Resolving deltas: 91% (199032/218716) 2025-06-05T23:57:23.2919182Z Resolving deltas: 92% (201219/218716) 2025-06-05T23:57:23.2919623Z Resolving deltas: 93% (203406/218716) 2025-06-05T23:57:23.2920050Z Resolving deltas: 94% (205594/218716) 2025-06-05T23:57:23.2920488Z Resolving deltas: 95% (207781/218716) 2025-06-05T23:57:23.2920914Z Resolving deltas: 96% (209968/218716) 2025-06-05T23:57:23.2921339Z Resolving deltas: 97% (212155/218716) 2025-06-05T23:57:23.2921778Z Resolving deltas: 98% (214342/218716) 2025-06-05T23:57:23.2922207Z Resolving deltas: 99% (216529/218716) 2025-06-05T23:57:23.2922645Z Resolving deltas: 99% (218296/218716) 2025-06-05T23:57:23.2923071Z Resolving deltas: 100% (218716/218716) 2025-06-05T23:57:23.2923531Z Resolving deltas: 100% (218716/218716), done. 2025-06-05T23:57:23.2923989Z + pushd transformers 2025-06-05T23:57:23.2924426Z /pytorch/executorch/transformers /pytorch/executorch 2025-06-05T23:57:23.2925021Z + git checkout a57274466f7f72efaa2662d1738cdaf28ae8071f 2025-06-05T23:57:23.2925650Z Note: switching to 'a57274466f7f72efaa2662d1738cdaf28ae8071f'. 2025-06-05T23:57:23.2926077Z 2025-06-05T23:57:23.2926373Z You are in 'detached HEAD' state. You can look around, make experimental 2025-06-05T23:57:23.2927158Z changes and commit them, and you can discard any commits you make in this 2025-06-05T23:57:23.2927932Z state without impacting any branches by switching back to a branch. 2025-06-05T23:57:23.2928393Z 2025-06-05T23:57:23.2928692Z If you want to create a new branch to retain commits you create, you may 2025-06-05T23:57:23.2929438Z do so (now or later) by using -c with the switch command. Example: 2025-06-05T23:57:23.2929863Z 2025-06-05T23:57:23.2930063Z git switch -c 2025-06-05T23:57:23.2930348Z 2025-06-05T23:57:23.2930493Z Or undo this operation with: 2025-06-05T23:57:23.2930753Z 2025-06-05T23:57:23.2930889Z git switch - 2025-06-05T23:57:23.2931079Z 2025-06-05T23:57:23.2931403Z Turn off this advice by setting config variable advice.detachedHead to false 2025-06-05T23:57:23.2931906Z 2025-06-05T23:57:23.2932218Z HEAD is now at a57274466f Allow override inputs to export recipe (#37508) 2025-06-05T23:57:23.2932823Z + pip install -e . 2025-06-05T23:57:23.2933238Z Obtaining file:///pytorch/executorch/transformers 2025-06-05T23:57:23.2933988Z Installing build dependencies ... [?25l- \ done 2025-06-05T23:57:23.2934751Z [?25h Checking if build backend supports build_editable ... [?25ldone 2025-06-05T23:57:23.2935556Z [?25h Getting requirements to build editable ... [?25l- \ done 2025-06-05T23:57:23.2936401Z [?25h Preparing editable metadata (pyproject.toml) ... [?25l- \ done 2025-06-05T23:57:23.2937758Z [?25hRequirement already satisfied: filelock in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.52.0.dev0) (3.18.0) 2025-06-05T23:57:23.2939444Z 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.52.0.dev0) (0.32.4) 2025-06-05T23:57:23.2941075Z Requirement already satisfied: numpy>=1.17 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.52.0.dev0) (2.2.6) 2025-06-05T23:57:23.2942652Z Requirement already satisfied: packaging>=20.0 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.52.0.dev0) (25.0) 2025-06-05T23:57:23.2944233Z Requirement already satisfied: pyyaml>=5.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.52.0.dev0) (6.0.1) 2025-06-05T23:57:23.2945822Z Requirement already satisfied: regex!=2019.12.17 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.52.0.dev0) (2024.11.6) 2025-06-05T23:57:23.2947511Z Requirement already satisfied: requests in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.52.0.dev0) (2.32.3) 2025-06-05T23:57:23.2949213Z Requirement already satisfied: tokenizers<0.22,>=0.21 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.52.0.dev0) (0.21.1) 2025-06-05T23:57:23.2950873Z Requirement already satisfied: safetensors>=0.4.3 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.52.0.dev0) (0.5.3) 2025-06-05T23:57:23.2952451Z Requirement already satisfied: tqdm>=4.27 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from transformers==4.52.0.dev0) (4.67.1) 2025-06-05T23:57:23.2954225Z 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.52.0.dev0) (2025.3.0) 2025-06-05T23:57:23.2956268Z 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.52.0.dev0) (4.14.0) 2025-06-05T23:57:26.1919362Z 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.52.0.dev0) (1.1.3) 2025-06-05T23:57:26.1921703Z Requirement already satisfied: charset-normalizer<4,>=2 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from requests->transformers==4.52.0.dev0) (3.4.2) 2025-06-05T23:57:26.1924197Z Requirement already satisfied: idna<4,>=2.5 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from requests->transformers==4.52.0.dev0) (3.10) 2025-06-05T23:57:26.1926089Z Requirement already satisfied: urllib3<3,>=1.21.1 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from requests->transformers==4.52.0.dev0) (2.4.0) 2025-06-05T23:57:26.1928049Z Requirement already satisfied: certifi>=2017.4.17 in /opt/conda/envs/py_3.10/lib/python3.10/site-packages (from requests->transformers==4.52.0.dev0) (2025.4.26) 2025-06-05T23:57:26.1929386Z Building wheels for collected packages: transformers 2025-06-05T23:57:26.1930417Z Building editable for transformers (pyproject.toml) ... [?25l- \ | / done 2025-06-05T23:57:26.1932165Z [?25h Created wheel for transformers: filename=transformers-4.52.0.dev0-0.editable-py3-none-any.whl size=15244 sha256=7dcf1138d275864bb0bacc79b21d214a56c7c320bf518d7d589054152daaef7b 2025-06-05T23:57:26.1933996Z Stored in directory: /tmp/pip-ephem-wheel-cache-8zh3fkjg/wheels/38/0e/b3/15e3b8a50d05d31e78315a798084711fe831fd73984168f127 2025-06-05T23:57:26.1934997Z Successfully built transformers 2025-06-05T23:57:26.1935440Z Installing collected packages: transformers 2025-06-05T23:57:26.1935986Z Attempting uninstall: transformers 2025-06-05T23:57:26.1936485Z Found existing installation: transformers 4.51.0 2025-06-05T23:57:26.1937009Z Uninstalling transformers-4.51.0: 2025-06-05T23:57:26.1937507Z Successfully uninstalled transformers-4.51.0 2025-06-05T23:57:26.1938948Z ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts. 2025-06-05T23:57:26.1940794Z optimum-executorch 0.0.0.dev0 requires transformers==4.51.0, but you have transformers 4.52.0.dev0 which is incompatible. 2025-06-05T23:57:26.1941859Z Successfully installed transformers-4.52.0.dev0 2025-06-05T23:57:26.1942355Z + popd 2025-06-05T23:57:26.1942644Z /pytorch/executorch 2025-06-05T23:57:26.1942976Z + pip list 2025-06-05T23:57:26.1943388Z Package Version Build Editable project location 2025-06-05T23:57:26.1944074Z ----------------------------- ------------------ ----- ----------------------------------- 2025-06-05T23:57:26.1944644Z accelerate 1.7.0 2025-06-05T23:57:26.1945152Z aiohappyeyeballs 2.6.1 2025-06-05T23:57:26.1945565Z aiohttp 3.12.9 2025-06-05T23:57:26.1945986Z aiosignal 1.3.2 2025-06-05T23:57:26.1946393Z alabaster 0.7.16 2025-06-05T23:57:26.1946876Z antlr4-python3-runtime 4.9.3 2025-06-05T23:57:26.1947310Z async-timeout 5.0.1 2025-06-05T23:57:26.1947800Z attrs 25.3.0 2025-06-05T23:57:26.1948223Z audioread 3.0.1 2025-06-05T23:57:26.1948624Z babel 2.17.0 2025-06-05T23:57:26.1949042Z beautifulsoup4 4.13.4 2025-06-05T23:57:26.1949450Z blobfile 3.0.0 2025-06-05T23:57:26.1949859Z breathe 4.34.0 2025-06-05T23:57:26.1950255Z bs4 0.0.2 2025-06-05T23:57:26.1950659Z cattrs 25.1.1 2025-06-05T23:57:26.1951059Z certifi 2025.4.26 2025-06-05T23:57:26.1951483Z cffi 1.17.1 2025-06-05T23:57:26.1951900Z charset-normalizer 3.4.2 2025-06-05T23:57:26.1952320Z cmake 3.31.6 2025-06-05T23:57:26.1952723Z contourpy 1.3.2 2025-06-05T23:57:26.1953131Z coremltools 8.3.0 2025-06-05T23:57:26.1953549Z coverage 7.8.2 2025-06-05T23:57:26.1953949Z cycler 0.12.1 2025-06-05T23:57:26.1954362Z datasets 3.6.0 2025-06-05T23:57:26.1954759Z decorator 5.2.1 2025-06-05T23:57:26.1955162Z dill 0.3.8 2025-06-05T23:57:26.1955552Z docutils 0.16 2025-06-05T23:57:26.1955964Z exceptiongroup 1.3.0 2025-06-05T23:57:26.1956400Z execnet 2.1.1 2025-06-05T23:57:26.1956827Z executorch 0.7.0a0+bd57234 2025-06-05T23:57:26.1957292Z exhale 0.2.3 2025-06-05T23:57:26.1957692Z expecttest 0.1.6 2025-06-05T23:57:26.1958158Z filelock 3.18.0 2025-06-05T23:57:26.1958574Z flatbuffers 25.2.10 2025-06-05T23:57:26.1959009Z fonttools 4.58.1 2025-06-05T23:57:26.1959460Z frozenlist 1.6.2 2025-06-05T23:57:26.1959874Z fsspec 2025.3.0 2025-06-05T23:57:26.1960308Z hf_transfer 0.1.9 2025-06-05T23:57:26.1960710Z hf-xet 1.1.3 2025-06-05T23:57:26.1961137Z huggingface-hub 0.32.4 2025-06-05T23:57:26.1961554Z hypothesis 6.84.2 2025-06-05T23:57:26.1961972Z idna 3.10 2025-06-05T23:57:26.1962367Z imagesize 1.4.1 2025-06-05T23:57:26.1962784Z iniconfig 2.1.0 2025-06-05T23:57:26.1963186Z inquirerpy 0.3.4 2025-06-05T23:57:26.1963592Z Jinja2 3.1.6 2025-06-05T23:57:26.1963979Z joblib 1.5.1 2025-06-05T23:57:26.1964382Z kagglehub 0.3.12 2025-06-05T23:57:26.1964791Z kiwisolver 1.4.8 2025-06-05T23:57:26.1965210Z lazy_loader 0.4 2025-06-05T23:57:26.1965601Z librosa 0.11.0 2025-06-05T23:57:26.1966014Z llvmlite 0.44.0 2025-06-05T23:57:26.1966418Z lxml 5.4.0 2025-06-05T23:57:26.1966823Z markdown-it-py 2.2.0 2025-06-05T23:57:26.1967246Z MarkupSafe 3.0.2 2025-06-05T23:57:26.1967649Z matplotlib 3.10.3 2025-06-05T23:57:26.1968072Z mdit-py-plugins 0.3.5 2025-06-05T23:57:26.1968476Z mdurl 0.1.2 2025-06-05T23:57:26.1968881Z mpmath 1.3.0 2025-06-05T23:57:26.1969275Z msgpack 1.1.0 2025-06-05T23:57:26.1969685Z multidict 6.4.4 2025-06-05T23:57:26.1970096Z multiprocess 0.70.16 2025-06-05T23:57:26.1970522Z myst-parser 0.18.1 2025-06-05T23:57:26.1970933Z networkx 3.4.2 2025-06-05T23:57:26.1971388Z numba 0.61.2 2025-06-05T23:57:26.1971790Z numpy 2.2.6 2025-06-05T23:57:26.1972227Z nvidia-cublas-cu12 12.1.3.1 2025-06-05T23:57:26.1972675Z nvidia-cuda-cupti-cu12 12.1.105 2025-06-05T23:57:26.1973182Z nvidia-cuda-nvrtc-cu12 12.1.105 2025-06-05T23:57:26.1973628Z nvidia-cuda-runtime-cu12 12.1.105 2025-06-05T23:57:26.1974067Z nvidia-cudnn-cu12 9.1.0.70 2025-06-05T23:57:26.1974512Z nvidia-cufft-cu12 11.0.2.54 2025-06-05T23:57:26.1974955Z nvidia-curand-cu12 10.3.2.106 2025-06-05T23:57:26.1975424Z nvidia-cusolver-cu12 11.4.5.107 2025-06-05T23:57:26.1975880Z nvidia-cusparse-cu12 12.1.0.106 2025-06-05T23:57:26.1976333Z nvidia-nccl-cu12 2.20.5 2025-06-05T23:57:26.1976761Z nvidia-nvjitlink-cu12 12.9.41 2025-06-05T23:57:26.1977206Z nvidia-nvtx-cu12 12.1.105 2025-06-05T23:57:26.1977624Z omegaconf 2.3.0 2025-06-05T23:57:26.1978041Z optimum 1.25.3 2025-06-05T23:57:26.1978464Z optimum-executorch 0.0.0.dev0 2025-06-05T23:57:26.1978919Z packaging 25.0 2025-06-05T23:57:26.1979314Z pandas 2.2.3 2025-06-05T23:57:26.1979730Z parameterized 0.9.0 2025-06-05T23:57:26.1980129Z pfzy 0.3.4 2025-06-05T23:57:26.1980532Z pillow 11.2.1 2025-06-05T23:57:26.1980927Z pip 25.1 2025-06-05T23:57:26.1981329Z platformdirs 4.3.8 2025-06-05T23:57:26.1981740Z pluggy 1.6.0 2025-06-05T23:57:26.1982136Z pooch 1.8.2 2025-06-05T23:57:26.1982554Z prompt_toolkit 3.0.51 2025-06-05T23:57:26.1982962Z propcache 0.3.1 2025-06-05T23:57:26.1983379Z protobuf 6.31.1 2025-06-05T23:57:26.1983781Z psutil 7.0.0 2025-06-05T23:57:26.1984229Z pyaml 25.5.0 2025-06-05T23:57:26.1984630Z pyarrow 20.0.0 2025-06-05T23:57:26.1985045Z pycparser 2.22 2025-06-05T23:57:26.1985777Z pycryptodomex 3.23.0 2025-06-05T23:57:26.1986203Z Pygments 2.19.1 2025-06-05T23:57:26.1986608Z pyparsing 3.2.3 2025-06-05T23:57:26.1987031Z pytest 8.4.0 2025-06-05T23:57:26.1987437Z pytest-cov 4.1.0 2025-06-05T23:57:26.1987927Z pytest-rerunfailures 15.1 2025-06-05T23:57:26.1988362Z pytest-xdist 3.7.0 2025-06-05T23:57:26.1988797Z python-dateutil 2.9.0.post0 2025-06-05T23:57:26.1989443Z pytorch_sphinx_theme 0.0.24 /opt/conda/src/pytorch-sphinx-theme 2025-06-05T23:57:26.1990080Z pytorch_tokenizers 0.1.0 2025-06-05T23:57:26.1990510Z pytz 2025.2 2025-06-05T23:57:26.1990915Z PyYAML 6.0.1 2025-06-05T23:57:26.1991348Z regex 2024.11.6 2025-06-05T23:57:26.1991768Z requests 2.32.3 2025-06-05T23:57:26.1992196Z ruamel.yaml 0.17.32 2025-06-05T23:57:26.1992617Z ruamel.yaml.clib 0.2.12 2025-06-05T23:57:26.1993045Z safetensors 0.5.3 2025-06-05T23:57:26.1993453Z scikit-learn 1.7.0 2025-06-05T23:57:26.1993864Z scipy 1.15.3 2025-06-05T23:57:26.1994270Z sentencepiece 0.2.0 2025-06-05T23:57:26.1994695Z setuptools 78.1.1 2025-06-05T23:57:26.1995093Z six 1.17.0 2025-06-05T23:57:26.1995513Z snowballstemmer 3.0.1 2025-06-05T23:57:26.1995924Z sortedcontainers 2.4.0 2025-06-05T23:57:26.1996329Z soundfile 0.13.1 2025-06-05T23:57:26.1996746Z soupsieve 2.7 2025-06-05T23:57:26.1997150Z soxr 0.5.0.post1 2025-06-05T23:57:26.1997589Z Sphinx 5.3.0 2025-06-05T23:57:26.1998114Z sphinx-copybutton 0.5.0 2025-06-05T23:57:26.1998546Z sphinx_design 0.4.1 2025-06-05T23:57:26.1998960Z sphinx-gallery 0.14.0 2025-06-05T23:57:26.1999397Z sphinx_reredirects 0.1.4 2025-06-05T23:57:26.1999880Z sphinxcontrib-applehelp 2.0.0 2025-06-05T23:57:26.2000334Z sphinxcontrib-devhelp 2.0.0 2025-06-05T23:57:26.2000766Z sphinxcontrib-htmlhelp 2.1.0 2025-06-05T23:57:26.2001209Z sphinxcontrib-jsmath 1.0.1 2025-06-05T23:57:26.2001637Z sphinxcontrib-qthelp 2.0.0 2025-06-05T23:57:26.2002095Z sphinxcontrib-serializinghtml 2.0.0 2025-06-05T23:57:26.2002519Z sympy 1.14.0 2025-06-05T23:57:26.2002918Z tabulate 0.9.0 2025-06-05T23:57:26.2003332Z threadpoolctl 3.6.0 2025-06-05T23:57:26.2003738Z tiktoken 0.9.0 2025-06-05T23:57:26.2004144Z timm 1.0.7 2025-06-05T23:57:26.2004545Z tokenizers 0.21.1 2025-06-05T23:57:26.2004957Z tomli 2.0.1 2025-06-05T23:57:26.2005383Z torch 2.8.0a0+git5616fa4 2025-06-05T23:57:26.2005887Z torchao 0.12.0+gitbc68b11 2025-06-05T23:57:26.2006366Z torchaudio 2.6.0a0+1a8f621 2025-06-05T23:57:26.2006825Z torchdata 0.11.0 2025-06-05T23:57:26.2007225Z torchsr 1.0.4 2025-06-05T23:57:26.2007631Z torchtune 0.6.1 2025-06-05T23:57:26.2008059Z torchvision 0.22.0a0+966da7e 2025-06-05T23:57:26.2008521Z tqdm 4.67.1 2025-06-05T23:57:26.2009072Z transformers 4.52.0.dev0 /pytorch/executorch/transformers 2025-06-05T23:57:26.2009710Z triton 3.0.0 1 2025-06-05T23:57:26.2010176Z typing_extensions 4.14.0 2025-06-05T23:57:26.2010591Z tzdata 2025.2 2025-06-05T23:57:26.2011042Z urllib3 2.4.0 2025-06-05T23:57:26.2011556Z wcwidth 0.2.13 2025-06-05T23:57:26.2011968Z wheel 0.45.1 2025-06-05T23:57:26.2012416Z xxhash 3.5.0 2025-06-05T23:57:26.2012824Z yarl 1.20.0 2025-06-05T23:57:26.2013222Z zstd 1.5.5.1 2025-06-05T23:57:26.2013671Z + echo ::endgroup:: 2025-06-05T23:57:26.2014344Z ##[endgroup] 2025-06-06T00:05:16.0877794Z + echo '::group::Export to ExecuTorch' 2025-06-06T00:05:16.0878698Z ##[group]Export to ExecuTorch 2025-06-06T00:05:16.0879122Z + export MODEL_ID=google/gemma-3-1b-it 2025-06-06T00:05:16.0879573Z + MODEL_ID=google/gemma-3-1b-it 2025-06-06T00:05:16.0879940Z ++ pwd 2025-06-06T00:05:16.0880431Z + export OUTPUT_DIR=/pytorch/executorch/google/gemma-3-1b-it_custom_sdpa_8da4w 2025-06-06T00:05:16.0881221Z + OUTPUT_DIR=/pytorch/executorch/google/gemma-3-1b-it_custom_sdpa_8da4w 2025-06-06T00:05:16.0881809Z + pushd optimum-executorch 2025-06-06T00:05:16.0882336Z /pytorch/executorch/optimum-executorch /pytorch/executorch 2025-06-06T00:05:16.0883697Z + optimum-cli export executorch --model google/gemma-3-1b-it --task text-generation --recipe xnnpack --use_custom_sdpa --output_dir /pytorch/executorch/google/gemma-3-1b-it_custom_sdpa_8da4w --qlinear 2025-06-06T00:05:16.0884805Z 2025-06-06T00:05:16.0884965Z config.json: 0% 0.00/899 [00:00/dev/null 2>/dev/null; then 2025-06-06T00:05:38.1186026Z  mv -v dist/*.whl "${RUNNER_ARTIFACT_DIR}/" 2025-06-06T00:05:38.1186501Z  fi 2025-06-06T00:05:38.1186879Z  if [[ -d "artifacts-to-be-uploaded" ]]; then 2025-06-06T00:05:38.1187489Z  mv -v artifacts-to-be-uploaded/* "${RUNNER_ARTIFACT_DIR}/" 2025-06-06T00:05:38.1188092Z  fi 2025-06-06T00:05:38.1188449Z fi 2025-06-06T00:05:38.1188753Z  2025-06-06T00:05:38.1189044Z upload_docs=0 2025-06-06T00:05:38.1189587Z # Check if there are files in the documentation folder to upload, note that 2025-06-06T00:05:38.1190196Z # empty folders do not count 2025-06-06T00:05:38.1190810Z if find "${RUNNER_DOCS_DIR}" -mindepth 1 -maxdepth 1 -type f | read -r; then 2025-06-06T00:05:38.1191598Z  # TODO: Add a check here to test if on ec2 because if we're not on ec2 then this 2025-06-06T00:05:38.1192277Z  # upload will probably not work correctly 2025-06-06T00:05:38.1192743Z  upload_docs=1 2025-06-06T00:05:38.1193093Z fi 2025-06-06T00:05:38.1193509Z echo "upload-docs=${upload_docs}" >> "${GITHUB_OUTPUT}" 2025-06-06T00:05:38.1200976Z shell: /usr/bin/bash -e {0} 2025-06-06T00:05:38.1201368Z env: 2025-06-06T00:05:38.1201721Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-06T00:05:38.1202222Z REPOSITORY: pytorch/executorch 2025-06-06T00:05:38.1202608Z PR_NUMBER: 2025-06-06T00:05:38.1217237Z 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 [ "google/gemma-3-1b-it" == "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="google/gemma-3-1b-it" 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:05:38.1232464Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-06T00:05:38.1233247Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-06T00:05:38.1233974Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-06T00:05:38.1234556Z UPLOAD_ARTIFACT_NAME: profiling-artifacts-0 2025-06-06T00:05:38.1234993Z ##[endgroup] 2025-06-06T00:05:38.1327254Z renamed 'artifacts-to-be-uploaded/google' -> '/home/ec2-user/actions-runner/_work/_temp/artifacts/google' 2025-06-06T00:05:38.1404355Z ##[group]Run actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 2025-06-06T00:05:38.1404966Z with: 2025-06-06T00:05:38.1405294Z name: profiling-artifacts-0 2025-06-06T00:05:38.1405787Z path: /home/ec2-user/actions-runner/_work/_temp/artifacts/ 2025-06-06T00:05:38.1406323Z if-no-files-found: warn 2025-06-06T00:05:38.1406692Z compression-level: 6 2025-06-06T00:05:38.1407051Z overwrite: false 2025-06-06T00:05:38.1407387Z include-hidden-files: false 2025-06-06T00:05:38.1407749Z env: 2025-06-06T00:05:38.1408105Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-06T00:05:38.1408590Z REPOSITORY: pytorch/executorch 2025-06-06T00:05:38.1408983Z PR_NUMBER: 2025-06-06T00:05:38.1423490Z 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 [ "google/gemma-3-1b-it" == "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="google/gemma-3-1b-it" 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:05:38.1438757Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-06T00:05:38.1439525Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-06T00:05:38.1440360Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-06T00:05:38.1440883Z ##[endgroup] 2025-06-06T00:05:38.4150118Z With the provided path, there will be 1 file uploaded 2025-06-06T00:05:38.4154710Z Artifact name is valid! 2025-06-06T00:05:38.4155824Z Root directory input is valid! 2025-06-06T00:05:38.5354134Z Beginning upload of artifact content to blob storage 2025-06-06T00:05:38.6976647Z Uploaded bytes 38286 2025-06-06T00:05:38.7140565Z Finished uploading artifact content to blob storage! 2025-06-06T00:05:38.7143576Z SHA256 digest of uploaded artifact zip is 218389c695c6fcf61bf4cc4e3381f60b200a78799064bc376f5201f3989ca26b 2025-06-06T00:05:38.7145357Z Finalizing artifact upload 2025-06-06T00:05:38.7774468Z Artifact profiling-artifacts-0.zip successfully finalized. Artifact ID 3272144244 2025-06-06T00:05:38.7775631Z Artifact profiling-artifacts-0 has been successfully uploaded! Final size is 38286 bytes. Artifact ID is 3272144244 2025-06-06T00:05:38.7781877Z Artifact download URL: https://github.com/pytorch/executorch/actions/runs/15475023371/artifacts/3272144244 2025-06-06T00:05:38.7893788Z Prepare all required actions 2025-06-06T00:05:38.7936765Z ##[group]Run ./test-infra/.github/actions/teardown-linux 2025-06-06T00:05:38.7937265Z with: 2025-06-06T00:05:38.7937544Z env: 2025-06-06T00:05:38.7937905Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-06T00:05:38.7938393Z REPOSITORY: pytorch/executorch 2025-06-06T00:05:38.7938801Z PR_NUMBER: 2025-06-06T00:05:38.7953489Z 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 [ "google/gemma-3-1b-it" == "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="google/gemma-3-1b-it" 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:05:38.7968678Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-06T00:05:38.7969479Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-06T00:05:38.7970213Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-06T00:05:38.7970754Z ##[endgroup] 2025-06-06T00:05:38.8015381Z ##[group]Run set -eou pipefail 2025-06-06T00:05:38.8015816Z set -eou pipefail 2025-06-06T00:05:38.8016181Z  2025-06-06T00:05:38.8016824Z echo "Holding runner for 2 hours until all ssh sessions have logged out" 2025-06-06T00:05:38.8017449Z for _ in $(seq 1440); do 2025-06-06T00:05:38.8017905Z  # Break if no ssh session exists anymore 2025-06-06T00:05:38.8018378Z  if [ "$(who)" = "" ]; then 2025-06-06T00:05:38.8018788Z  break 2025-06-06T00:05:38.8019107Z  fi 2025-06-06T00:05:38.8019417Z  echo "." 2025-06-06T00:05:38.8019753Z  sleep 5 2025-06-06T00:05:38.8020073Z done 2025-06-06T00:05:38.8026368Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-06T00:05:38.8026872Z env: 2025-06-06T00:05:38.8027235Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-06T00:05:38.8027726Z REPOSITORY: pytorch/executorch 2025-06-06T00:05:38.8028215Z PR_NUMBER: 2025-06-06T00:05:38.8042774Z 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 [ "google/gemma-3-1b-it" == "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="google/gemma-3-1b-it" 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:05:38.8057911Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-06T00:05:38.8058771Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-06T00:05:38.8059507Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-06T00:05:38.8060032Z ##[endgroup] 2025-06-06T00:05:38.8086708Z Holding runner for 2 hours until all ssh sessions have logged out 2025-06-06T00:05:38.8167998Z ##[group]Run # ignore expansion of "docker ps -q" since it could be empty 2025-06-06T00:05:38.8168759Z # ignore expansion of "docker ps -q" since it could be empty 2025-06-06T00:05:38.8169350Z # shellcheck disable=SC2046 2025-06-06T00:05:38.8169812Z docker stop $(docker ps -q) || true 2025-06-06T00:05:38.8170295Z # Prune all of the docker images 2025-06-06T00:05:38.8170741Z docker system prune -af 2025-06-06T00:05:38.8176640Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-06T00:05:38.8177163Z env: 2025-06-06T00:05:38.8177518Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-06T00:05:38.8178022Z REPOSITORY: pytorch/executorch 2025-06-06T00:05:38.8178413Z PR_NUMBER: 2025-06-06T00:05:38.8193472Z 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 [ "google/gemma-3-1b-it" == "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="google/gemma-3-1b-it" 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:05:38.8208668Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-06T00:05:38.8209460Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-06T00:05:38.8210190Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-06T00:05:38.8210730Z ##[endgroup] 2025-06-06T00:05:49.5426022Z 4c3fe162002a 2025-06-06T00:05:50.3015754Z Deleted Containers: 2025-06-06T00:05:50.3016373Z 4c3fe162002a20f8c68886707411b7adc61514787bcc1e9778da84641af00ce0 2025-06-06T00:05:50.3016836Z 2025-06-06T00:05:53.7863698Z Deleted Images: 2025-06-06T00:05:53.7864712Z untagged: 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12:6019efcb31bb9f8cd1203f7a1f1de7a1a0e0ecaa 2025-06-06T00:05:53.7866424Z untagged: 308535385114.dkr.ecr.us-east-1.amazonaws.com/executorch/executorch-ubuntu-22.04-clang12@sha256:4cd9e207005b6720f61c5035e99d041f7d33aa7b787473b2143d086595b815e8 2025-06-06T00:05:53.7867871Z deleted: sha256:fd1cd238ff938168c3b0ff27a52bce2daabd27e2c7b7761b7a136339684f075e 2025-06-06T00:05:53.7868763Z deleted: sha256:8e45c08bf5947fbd511f713a1228fe97bbc7a23e901b1ae4d380df1ea6e10bbd 2025-06-06T00:05:53.7869633Z deleted: sha256:04effa688fa3e631de720f5652a705aca7c423f4c57a52a17cab203cc7c89d78 2025-06-06T00:05:53.7870509Z deleted: sha256:0ff0d9e8bf8072f5337787845ca1c15ed53e1eb4b1325979a8899e3f3d0cd9b6 2025-06-06T00:05:53.7871566Z deleted: sha256:e21c7acdad8a20b74e017c4d3c602cd520d388d56673eb33601b7e7fd7734c7b 2025-06-06T00:05:53.7872423Z deleted: sha256:15f84d6dedce785359e71bf76f72f0c550d387b274e883f4ea873e5180e222f4 2025-06-06T00:05:53.7873357Z deleted: sha256:894d7b36dd864d27db1e330b1a162a9012835901827522b25298391a2d768ef6 2025-06-06T00:05:53.7874214Z deleted: sha256:c578fbd5cf90c0cb1321dc4665daca51df19d94a9e3233cda05ad2b39095f324 2025-06-06T00:05:53.7875104Z deleted: sha256:a3ae1882331fb2e2cc650f04ba666e79a1d7493ac410e4e9cef16046d6cc47eb 2025-06-06T00:05:53.7875985Z deleted: sha256:d6c1e6c23cde366fcd86e62903678d475d0bbaa5d8e30892eba290ec847581f3 2025-06-06T00:05:53.7876848Z deleted: sha256:41d6b173c732d8141d0dcf122a1fd782eb6ea3246bf9ab9ecac92d504cd1dc65 2025-06-06T00:05:53.7877721Z deleted: sha256:b898594510e3c85112a1b9c9ed180cd382abe3be010ed4cef3cbffd7900cfe26 2025-06-06T00:05:53.7878579Z deleted: sha256:8e9a4620529679655e070aa45ae0a012667cb644bc6963bbf84a92dde5c29ed7 2025-06-06T00:05:53.7879437Z deleted: sha256:b831ebe05f719c48c7afd17f0d5e830b3a163dc99dfade3de7ed32d9ab1271c7 2025-06-06T00:05:53.7880323Z deleted: sha256:a3c026106e4b60f469fdb358f83ceb2761c9583dd82ed6bbbacd88a5e4ac342c 2025-06-06T00:05:53.7881205Z deleted: sha256:61c84b39c8f7d11cba7663dfa971e39e14e80aa19e754f74c696880b3647ae99 2025-06-06T00:05:53.7882072Z deleted: sha256:09bcb1a8f6fd3ac4988128cf1ea53c735df1a2ac3663679b9ea9cbc96f53a1c1 2025-06-06T00:05:53.7882963Z deleted: sha256:89b3e3fc4a9a1a25de48e48b6c882c82cf8f82faf24085a72668bc70eaf06a27 2025-06-06T00:05:53.7883849Z deleted: sha256:97acfae18ee614330e3ea71a0fda2f5a596bf3030e2fe829cc23af709146245d 2025-06-06T00:05:53.7884729Z deleted: sha256:62b2d87fffae84561033cbdd6f5e1cd59a1ad74942eeeed86bbd956d2d0a0d3f 2025-06-06T00:05:53.7885912Z deleted: sha256:280ff1c9429e4607b0f4947860a078e4d46f21597c3653cf5551884a2b1bfbbe 2025-06-06T00:05:53.7887415Z deleted: sha256:85bb43f20e1a5d85fa3ef3eb2d266e4c6f6f408603f3301a65782cbbc27c6bb4 2025-06-06T00:05:53.7888413Z deleted: sha256:85050b37e77e36bb8e30dbeb0abcddd96660fbf95092296be9d69ba0d21b195f 2025-06-06T00:05:53.7889332Z deleted: sha256:492e28f4f452290fa23c59dc61792a00da9046048d4f2525f716e877df86ee12 2025-06-06T00:05:53.7890168Z deleted: sha256:b669f2886f4de1619df49b1700677312c5912185091049bb4ba99f0d1f862684 2025-06-06T00:05:53.7891031Z deleted: sha256:666019e7ec1ded4644a80f579b78fd07651dc345e72bb3455e2783056b7519f6 2025-06-06T00:05:53.7891902Z deleted: sha256:108ae6d65dcac481c9d45276a12a0c35e97c72a4ce664fc31f753bbbdb5f4449 2025-06-06T00:05:53.7892989Z deleted: sha256:f9cda9f943bccc583aed104cf62f3ffdc0c0efa2cce02ef89abf7654d720f9e0 2025-06-06T00:05:53.7893909Z deleted: sha256:aa7077b912bf18b97278dd36715a7342df2c3fc0ff9dacffd5d58c362d9da96b 2025-06-06T00:05:53.7894777Z deleted: sha256:218f2fa4e2b8b1716be2298b5fd12196474562196ef6ac73e3176474e231da22 2025-06-06T00:05:53.7895635Z deleted: sha256:bb30d8b0a8cd9ae992792111a97e127b9f9dee9fd711a40f1ecd4e51786551d7 2025-06-06T00:05:53.7896517Z deleted: sha256:ecab88b98f9775583775ff956ce981c3190e2b0f18fabc355545110fb942786d 2025-06-06T00:05:53.7897402Z deleted: sha256:63acee5bfd4df5f9a2b75e2ca5921a2d36bdb1f3f798a854beef35240e98e68a 2025-06-06T00:05:53.7898263Z deleted: sha256:ed51600353c07805db3559da8b3c08d1e52a301c4d9757ca5cfea8a627750de5 2025-06-06T00:05:53.7899117Z deleted: sha256:08459522b4922770ee1be40a7a3ac57d801d235364012b7142b40bd2afadf408 2025-06-06T00:05:53.7900163Z deleted: sha256:bb80166d4410f46deb56858f88f277bfc87b8c6f912d802aa80ac611299bc1d9 2025-06-06T00:05:53.7901034Z deleted: sha256:f862e1968e4b4c3c3af141e37d2ec22b19ec0fd50d6a8aaf683de6729e296226 2025-06-06T00:05:53.7901876Z untagged: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine:latest 2025-06-06T00:05:53.7903014Z untagged: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine@sha256:def822f9851ca422481ec6fee59a9966f12b351c62ccb9aca841526ffaa9f748 2025-06-06T00:05:53.7904206Z deleted: sha256:6dbb9cc54074106d46d4ccb330f2a40a682d49dda5f4844962b7dce9fe44aaec 2025-06-06T00:05:53.7905096Z deleted: sha256:b2d5eeeaba3a22b9b8aa97261957974a6bd65274ebd43e1d81d0a7b8b752b116 2025-06-06T00:05:53.7905688Z 2025-06-06T00:05:53.7905841Z Total reclaimed space: 16.69GB 2025-06-06T00:05:53.7943876Z ##[group]Run set +e 2025-06-06T00:05:53.7944276Z set +e 2025-06-06T00:05:53.7944719Z if [[ "${NO_SUDO}" == "false" ]]; then 2025-06-06T00:05:53.7945286Z  sudo rm -rf "${GITHUB_WORKSPACE:?}/${REPOSITORY:?}" 2025-06-06T00:05:53.7945785Z else 2025-06-06T00:05:53.7946182Z  rm -rf "${GITHUB_WORKSPACE:?}/${REPOSITORY:?}" 2025-06-06T00:05:53.7946660Z fi 2025-06-06T00:05:53.7946957Z set -e 2025-06-06T00:05:53.7954489Z shell: /usr/bin/bash -e {0} 2025-06-06T00:05:53.7954874Z env: 2025-06-06T00:05:53.7955242Z DOCKER_IMAGE: executorch-ubuntu-22.04-clang12 2025-06-06T00:05:53.7955744Z REPOSITORY: pytorch/executorch 2025-06-06T00:05:53.7956136Z PR_NUMBER: 2025-06-06T00:05:53.7970793Z 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 [ "google/gemma-3-1b-it" == "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="google/gemma-3-1b-it" 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:05:53.7986151Z RUNNER_ARTIFACT_DIR: /home/ec2-user/actions-runner/_work/_temp/artifacts 2025-06-06T00:05:53.7987164Z RUNNER_TEST_RESULTS_DIR: /home/ec2-user/actions-runner/_work/_temp/test-results 2025-06-06T00:05:53.7987981Z RUNNER_DOCS_DIR: /home/ec2-user/actions-runner/_work/_temp/docs 2025-06-06T00:05:53.7988586Z NO_SUDO: false 2025-06-06T00:05:53.7988919Z ##[endgroup] 2025-06-06T00:05:55.4267212Z Post job cleanup. 2025-06-06T00:05:55.5411365Z Post job cleanup. 2025-06-06T00:05:55.6470488Z [command]/usr/bin/git version 2025-06-06T00:05:55.6512958Z git version 2.47.1 2025-06-06T00:05:55.6561419Z Temporarily overriding HOME='/home/ec2-user/actions-runner/_work/_temp/1d5574ab-bf6a-404e-a0f6-c697d48b80e5' before making global git config changes 2025-06-06T00:05:55.6563829Z Adding repository directory to the temporary git global config as a safe directory 2025-06-06T00:05:55.6568684Z [command]/usr/bin/git config --global --add safe.directory /home/ec2-user/actions-runner/_work/executorch/executorch/test-infra 2025-06-06T00:05:55.6602984Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2025-06-06T00:05:55.6642020Z [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:05:55.6929339Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-06-06T00:05:55.6948074Z http.https://github.com/.extraheader 2025-06-06T00:05:55.6959838Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader 2025-06-06T00:05:55.6988264Z [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:05:55.7334318Z A job completed hook has been configured by the self-hosted runner administrator 2025-06-06T00:05:55.7363307Z ##[group]Run '/home/ec2-user/runner-scripts/after_job.sh' 2025-06-06T00:05:55.7369223Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} 2025-06-06T00:05:55.7369760Z ##[endgroup] 2025-06-06T00:05:55.7456172Z [!ALERT!] Swap in detected! [!ALERT!] 2025-06-06T00:06:07.6970131Z [!ALERT!] Swap out detected [!ALERT!] 2025-06-06T00:06:27.0719791Z Cleaning up orphan processes