2025-07-17T06:33:17.8970250Z Current runner version: '2.326.0' 2025-07-17T06:33:17.8973440Z Runner name: 'i-04c57198384938a55' 2025-07-17T06:33:17.8973860Z Runner group name: 'default' 2025-07-17T06:33:17.8974350Z Machine name: 'ip-10-0-3-17' 2025-07-17T06:33:17.8975870Z ##[group]GITHUB_TOKEN Permissions 2025-07-17T06:33:17.8977040Z Contents: read 2025-07-17T06:33:17.8977360Z Metadata: read 2025-07-17T06:33:17.8977670Z ##[endgroup] 2025-07-17T06:33:17.8978790Z Secret source: Actions 2025-07-17T06:33:17.8979150Z Prepare workflow directory 2025-07-17T06:33:18.0071180Z Prepare all required actions 2025-07-17T06:33:18.0096780Z Getting action download info 2025-07-17T06:33:18.2655210Z Download action repository 'pytorch/test-infra@main' (SHA:a9ec424ad5e5851e47d68139cfd953b4031778d5) 2025-07-17T06:33:18.8107950Z Download action repository 'pytorch/pytorch@main' (SHA:a38f433be2e94a64b095a44ba39879d02d0c2316) 2025-07-17T06:33:30.0869280Z Download action repository 'nick-fields/retry@7152eba30c6575329ac0576536151aca5a72780e' (SHA:7152eba30c6575329ac0576536151aca5a72780e) 2025-07-17T06:33:30.2574930Z Download action repository 'actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02' (SHA:ea165f8d65b6e75b540449e92b4886f43607fa02) 2025-07-17T06:33:30.4930110Z Getting action download info 2025-07-17T06:33:30.6089860Z Download action repository 'actions/checkout@v4' (SHA:11bd71901bbe5b1630ceea73d27597364c9af683) 2025-07-17T06:33:30.8000480Z Uses: pytorch/pytorch/.github/workflows/_mac-build.yml@refs/heads/main (a38f433be2e94a64b095a44ba39879d02d0c2316) 2025-07-17T06:33:30.8002810Z ##[group] Inputs 2025-07-17T06:33:30.8003000Z build-environment: macos-py3-arm64 2025-07-17T06:33:30.8003210Z runner-type: macos-m1-stable 2025-07-17T06:33:30.8003560Z build-generates-artifacts: true 2025-07-17T06:33:30.8003740Z xcode-version: 2025-07-17T06:33:30.8003900Z sync-tag: macos-py3-arm64-build 2025-07-17T06:33:30.8004090Z python-version: 3.12.7 2025-07-17T06:33:30.8005050Z test-matrix: { include: [ { config: "default", shard: 1, num_shards: 3, runner: "macos-m1-stable" }, { config: "default", shard: 2, num_shards: 3, runner: "macos-m1-stable" }, { config: "default", shard: 3, num_shards: 3, runner: "macos-m1-stable" }, { config: "mps", shard: 1, num_shards: 1, runner: "macos-m1-13" }, { config: "mps", shard: 1, num_shards: 1, runner: "macos-m1-14" }, { config: "mps", shard: 1, num_shards: 1, runner: "macos-m2-15" }, ]} 2025-07-17T06:33:30.8005980Z sccache-use-gha: false 2025-07-17T06:33:30.8006150Z ##[endgroup] 2025-07-17T06:33:30.8006320Z Complete job name: macos-py3-arm64 / build 2025-07-17T06:33:30.8289880Z ##[group]Run pytorch/test-infra/.github/actions/check-disk-space@main 2025-07-17T06:33:30.8290280Z with: 2025-07-17T06:33:30.8290440Z minimum-available-space-in-gb: 6 2025-07-17T06:33:30.8290700Z env: 2025-07-17T06:33:30.8290850Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-07-17T06:33:30.8291040Z SCCACHE_USE_GHA: false 2025-07-17T06:33:30.8291190Z ##[endgroup] 2025-07-17T06:33:30.8360900Z ##[group]Run echo "Print the available disk space for manual inspection" 2025-07-17T06:33:30.8361310Z echo "Print the available disk space for manual inspection" 2025-07-17T06:33:30.8361610Z df -h 2025-07-17T06:33:30.8361750Z  2025-07-17T06:33:30.8361890Z function check_disk_space() { 2025-07-17T06:33:30.8362080Z  set +e 2025-07-17T06:33:30.8362230Z  2025-07-17T06:33:30.8362410Z  # Set the minimum requirement space to 6GB 2025-07-17T06:33:30.8362750Z  MINIMUM_AVAILABLE_SPACE_IN_KB=$(($MINIMUM_AVAILABLE_SPACE_IN_GB * 1024 * 1024)) 2025-07-17T06:33:30.8363020Z  2025-07-17T06:33:30.8363190Z  # Use KB to avoid floating point warning like 3.1GB 2025-07-17T06:33:30.8363470Z  df -k | tr -s ' ' | cut -d' ' -f 4,9 | while read -r LINE; 2025-07-17T06:33:30.8363680Z  do 2025-07-17T06:33:30.8363840Z  AVAIL=$(echo $LINE | cut -f1 -d' ') 2025-07-17T06:33:30.8364060Z  MOUNT=$(echo $LINE | cut -f2 -d' ') 2025-07-17T06:33:30.8364910Z  2025-07-17T06:33:30.8365050Z  if [ "${MOUNT}" = "/" ]; then 2025-07-17T06:33:30.8365290Z  if [ "${AVAIL}" -lt "${MINIMUM_AVAILABLE_SPACE_IN_KB}" ]; then 2025-07-17T06:33:30.8365800Z  echo "Failure: There is only ${AVAIL}KB free space left in ${MOUNT}, which is less than the minimum requirement of ${MINIMUM_AVAILABLE_SPACE_IN_KB}KB for ${RUNNER_OS}" 2025-07-17T06:33:30.8366230Z  else 2025-07-17T06:33:30.8366510Z  echo "Success: There is ${AVAIL}KB free space left in ${MOUNT} for ${RUNNER_OS}, continue" 2025-07-17T06:33:30.8366800Z  fi 2025-07-17T06:33:30.8366940Z  fi 2025-07-17T06:33:30.8367070Z  done 2025-07-17T06:33:30.8367200Z  2025-07-17T06:33:30.8367330Z  set -e 2025-07-17T06:33:30.8367520Z } 2025-07-17T06:33:30.8367640Z  2025-07-17T06:33:30.8367780Z RESULT=$(check_disk_space) 2025-07-17T06:33:30.8367970Z echo "${RESULT}" 2025-07-17T06:33:30.8368130Z  2025-07-17T06:33:30.8368320Z if [[ "${RESULT}" == *Failure* && "${RUNNER_OS}" == "macOS" ]]; then 2025-07-17T06:33:30.8368800Z  # We can clean up /System/Library/Caches/com.apple.coresymbolicationd on MacOS to free up the space and this should free up enough space 2025-07-17T06:33:30.8369270Z  # https://github.com/pytorch/pytorch/issues/85440 2025-07-17T06:33:30.8369610Z  sudo rm "/System/Library/Caches/com.apple.coresymbolicationd/data" || true 2025-07-17T06:33:30.8370080Z  # Stop the daemon and launchctl will automatically start it again, thus accomplish a restart and free up the above file 2025-07-17T06:33:30.8370510Z  sudo launchctl stop com.apple.coresymbolicationd || true 2025-07-17T06:33:30.8370750Z  2025-07-17T06:33:30.8370910Z  # Clean up crash reports on the runner 2025-07-17T06:33:30.8371200Z  sudo rm -rf "/System/Volumes/Data/Library/Logs/CrashReporter" || true 2025-07-17T06:33:30.8371460Z  2025-07-17T06:33:30.8371630Z  # Also try to clean up torch.hub caching directory 2025-07-17T06:33:30.8371880Z  rm -rf "${HOME}/.cache/torch/hub" || true 2025-07-17T06:33:30.8372080Z  2025-07-17T06:33:30.8372210Z  # Purge conda 2025-07-17T06:33:30.8372380Z  conda clean -p -t -y || true 2025-07-17T06:33:30.8372570Z  # and pip cache 2025-07-17T06:33:30.8373290Z  pip cache purge || true 2025-07-17T06:33:30.8373470Z  2025-07-17T06:33:30.8373670Z  echo "Re-run disk space check for ${RUNNER_OS} after cleaning up" 2025-07-17T06:33:30.8373930Z  # Re-run the check 2025-07-17T06:33:30.8374110Z  RESULT=$(check_disk_space) 2025-07-17T06:33:30.8374300Z  echo "${RESULT}" 2025-07-17T06:33:30.8374460Z fi 2025-07-17T06:33:30.8374580Z  2025-07-17T06:33:30.8374730Z if [[ "${RESULT}" == *Failure* ]]; then 2025-07-17T06:33:30.8374930Z  df -h 2025-07-17T06:33:30.8375060Z  2025-07-17T06:33:30.8375470Z  echo "Please help create an issue to PyTorch Release Engineering via https://github.com/pytorch/test-infra/issues and provide the link to the workflow run." 2025-07-17T06:33:30.8375910Z  exit 1 2025-07-17T06:33:30.8376050Z fi 2025-07-17T06:33:30.8421760Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-07-17T06:33:30.8421990Z env: 2025-07-17T06:33:30.8422150Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-07-17T06:33:30.8422340Z SCCACHE_USE_GHA: false 2025-07-17T06:33:30.8422510Z MINIMUM_AVAILABLE_SPACE_IN_GB: 6 2025-07-17T06:33:30.8422690Z ##[endgroup] 2025-07-17T06:33:30.8598690Z Print the available disk space for manual inspection 2025-07-17T06:33:30.8610290Z Filesystem Size Used Avail Capacity iused ifree %iused Mounted on 2025-07-17T06:33:30.8610680Z /dev/disk5s2s1 256Gi 9.5Gi 168Gi 6% 404k 1.8G 0% / 2025-07-17T06:33:30.8611500Z devfs 217Ki 217Ki 0Bi 100% 752 0 100% /dev 2025-07-17T06:33:30.8611880Z /dev/disk5s5 256Gi 1.0Gi 168Gi 1% 1 1.8G 0% /System/Volumes/VM 2025-07-17T06:33:30.8612280Z /dev/disk5s3 256Gi 5.7Gi 168Gi 4% 1.0k 1.8G 0% /System/Volumes/Preboot 2025-07-17T06:33:30.8612690Z /dev/disk1s2 500Mi 6.0Mi 387Mi 2% 1 4.0M 0% /System/Volumes/xarts 2025-07-17T06:33:30.8613100Z /dev/disk1s1 500Mi 53Mi 387Mi 13% 61 4.0M 0% /System/Volumes/iSCPreboot 2025-07-17T06:33:30.8613480Z /dev/disk1s3 500Mi 1.1Mi 387Mi 1% 51 4.0M 0% /System/Volumes/Hardware 2025-07-17T06:33:30.8613850Z /dev/disk5s1 256Gi 70Gi 168Gi 30% 2.8M 1.8G 0% /System/Volumes/Data 2025-07-17T06:33:30.8614240Z map auto_home 0Bi 0Bi 0Bi 100% 0 0 - /System/Volumes/Data/home 2025-07-17T06:33:30.8614650Z /dev/disk3s4 228Gi 120Ki 210Gi 1% 18 2.2G 0% /private/tmp/tmp-mount-vPh67o 2025-07-17T06:33:30.8615050Z map auto_home 0Bi 0Bi 0Bi 100% 0 0 - /System/Volumes/Data/home 2025-07-17T06:33:30.9037130Z Success: There is 176343680KB free space left in / for macOS, continue 2025-07-17T06:33:30.9138530Z ##[group]Run pytorch/pytorch/.github/actions/checkout-pytorch@main 2025-07-17T06:33:30.9138820Z with: 2025-07-17T06:33:30.9138970Z submodules: recursive 2025-07-17T06:33:30.9139140Z fetch-depth: 0 2025-07-17T06:33:30.9139290Z env: 2025-07-17T06:33:30.9139450Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-07-17T06:33:30.9139650Z SCCACHE_USE_GHA: false 2025-07-17T06:33:30.9139820Z ##[endgroup] 2025-07-17T06:33:30.9155590Z ##[group]Run echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-07-17T06:33:30.9156210Z echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-07-17T06:33:30.9176120Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-07-17T06:33:30.9176360Z env: 2025-07-17T06:33:30.9176510Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-07-17T06:33:30.9176730Z SCCACHE_USE_GHA: false 2025-07-17T06:33:30.9176930Z ##[endgroup] 2025-07-17T06:33:30.9382080Z ##[group]Run # Use all available CPUs for fetching 2025-07-17T06:33:30.9382390Z # Use all available CPUs for fetching 2025-07-17T06:33:30.9382600Z cd "${GITHUB_WORKSPACE}" 2025-07-17T06:33:30.9382830Z git config --global fetch.parallel 0 2025-07-17T06:33:30.9383070Z git config --global submodule.fetchJobs 0 2025-07-17T06:33:30.9383280Z  2025-07-17T06:33:30.9383520Z # Clean workspace. The default checkout action should also do this, but 2025-07-17T06:33:30.9383820Z # do it here as well just in case 2025-07-17T06:33:30.9384010Z if [[ -d .git ]]; then 2025-07-17T06:33:30.9384230Z  if [ -z "${NO_SUDO}" ]; then 2025-07-17T06:33:30.9384440Z  sudo git clean -ffdx 2025-07-17T06:33:30.9384610Z  else 2025-07-17T06:33:30.9384750Z  git clean -ffdx 2025-07-17T06:33:30.9384930Z  fi 2025-07-17T06:33:30.9385060Z fi 2025-07-17T06:33:30.9405600Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-07-17T06:33:30.9405840Z env: 2025-07-17T06:33:30.9405990Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-07-17T06:33:30.9406180Z SCCACHE_USE_GHA: false 2025-07-17T06:33:30.9406350Z NO_SUDO: 2025-07-17T06:33:30.9406480Z ##[endgroup] 2025-07-17T06:33:32.5378220Z Removing .additional_ci_files/ 2025-07-17T06:33:32.5378590Z Removing .pytest_cache/ 2025-07-17T06:33:32.5379200Z Removing build/ 2025-07-17T06:33:32.5379450Z Removing dist/ 2025-07-17T06:33:32.5379660Z Removing test/.pytorch-disabled-tests.json 2025-07-17T06:33:32.5379900Z Removing test/__pycache__/ 2025-07-17T06:33:32.5380140Z Removing test/cpp_api_parity/__pycache__/ 2025-07-17T06:33:32.5380770Z Removing test/cpp_extensions/build/ 2025-07-17T06:33:32.5380990Z Removing test/cpp_extensions/install/ 2025-07-17T06:33:32.5381270Z Removing test/cpp_extensions/no_python_abi_suffix_test/build/ 2025-07-17T06:33:32.5381650Z Removing test/cpp_extensions/no_python_abi_suffix_test/install/ 2025-07-17T06:33:32.5382060Z Removing test/cpp_extensions/no_python_abi_suffix_test/no_python_abi_suffix_test.egg-info/ 2025-07-17T06:33:32.5382470Z Removing test/cpp_extensions/torch_test_cpp_extension.egg-info/ 2025-07-17T06:33:32.5382830Z Removing test/cpp_extensions/torch_test_cpp_extension/__pycache__/ 2025-07-17T06:33:32.5383190Z Removing test/custom_operator/__pycache__/ 2025-07-17T06:33:32.5383450Z Removing test/custom_operator/build/ 2025-07-17T06:33:32.5383700Z Removing test/custom_operator/model.pt 2025-07-17T06:33:32.5383930Z Removing test/custom_operator/test-reports/ 2025-07-17T06:33:32.5384150Z Removing test/dynamo/__pycache__/ 2025-07-17T06:33:32.5384360Z Removing test/export/__pycache__/ 2025-07-17T06:33:32.5384580Z Removing test/functorch/__pycache__/ 2025-07-17T06:33:32.5384780Z Removing test/fx/__pycache__/ 2025-07-17T06:33:32.5384980Z Removing test/inductor/__pycache__/ 2025-07-17T06:33:32.5385250Z Removing test/inductor/extension_backends/cpp/__pycache__/ 2025-07-17T06:33:32.5385810Z Removing test/jit/__pycache__/ 2025-07-17T06:33:32.5386050Z Removing test/jit/_imported_class_test/__pycache__/ 2025-07-17T06:33:32.5386330Z Removing test/jit/_imported_class_test/very/__pycache__/ 2025-07-17T06:33:32.5386650Z Removing test/jit/_imported_class_test/very/very/__pycache__/ 2025-07-17T06:33:32.5386910Z Removing test/optim/__pycache__/ 2025-07-17T06:33:32.5387160Z Removing test/test-reports/ 2025-07-17T06:33:32.5387400Z Removing test/torch_compile_debug/ 2025-07-17T06:33:32.5387610Z Removing test/torch_np/__pycache__/ 2025-07-17T06:33:32.5387810Z Removing tools/__pycache__/ 2025-07-17T06:33:32.5388120Z Removing tools/stats/__pycache__/ 2025-07-17T06:33:32.5388420Z Removing tools/stats/upload_utilization_stats/__pycache__/ 2025-07-17T06:33:32.5388680Z Removing tools/testing/__pycache__/ 2025-07-17T06:33:32.5388930Z Removing tools/testing/target_determination/__pycache__/ 2025-07-17T06:33:32.5389260Z Removing tools/testing/target_determination/heuristics/__pycache__/ 2025-07-17T06:33:32.5389540Z Removing usage_log.txt 2025-07-17T06:33:32.5448710Z ##[group]Run actions/checkout@v4 2025-07-17T06:33:32.5448880Z with: 2025-07-17T06:33:32.5449030Z ref: a38f433be2e94a64b095a44ba39879d02d0c2316 2025-07-17T06:33:32.5449260Z fetch-depth: 0 2025-07-17T06:33:32.5449400Z submodules: recursive 2025-07-17T06:33:32.5449560Z show-progress: false 2025-07-17T06:33:32.5449730Z repository: pytorch/pytorch 2025-07-17T06:33:32.5449970Z token: *** 2025-07-17T06:33:32.5450100Z ssh-strict: true 2025-07-17T06:33:32.5450230Z ssh-user: git 2025-07-17T06:33:32.5450380Z persist-credentials: true 2025-07-17T06:33:32.5450540Z clean: true 2025-07-17T06:33:32.5450690Z sparse-checkout-cone-mode: true 2025-07-17T06:33:32.5450880Z fetch-tags: false 2025-07-17T06:33:32.5451010Z lfs: false 2025-07-17T06:33:32.5451160Z set-safe-directory: true 2025-07-17T06:33:32.5451310Z env: 2025-07-17T06:33:32.5451440Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-07-17T06:33:32.5451620Z SCCACHE_USE_GHA: false 2025-07-17T06:33:32.5451790Z ##[endgroup] 2025-07-17T06:33:32.6283380Z Syncing repository: pytorch/pytorch 2025-07-17T06:33:32.6284230Z ##[group]Getting Git version info 2025-07-17T06:33:32.6284500Z Working directory is '/Users/ec2-user/runner/_work/pytorch/pytorch' 2025-07-17T06:33:32.6284920Z [command]/usr/bin/git version 2025-07-17T06:33:32.6352630Z git version 2.39.3 (Apple Git-146) 2025-07-17T06:33:32.6379640Z ##[endgroup] 2025-07-17T06:33:32.6383100Z Copying '/Users/ec2-user/.gitconfig' to '/Users/ec2-user/runner/_work/_temp/273d2d88-f32d-4b4e-8c94-793fddc36d60/.gitconfig' 2025-07-17T06:33:32.6383850Z Temporarily overriding HOME='/Users/ec2-user/runner/_work/_temp/273d2d88-f32d-4b4e-8c94-793fddc36d60' before making global git config changes 2025-07-17T06:33:32.6384730Z Adding repository directory to the temporary git global config as a safe directory 2025-07-17T06:33:32.6386350Z [command]/usr/bin/git config --global --add safe.directory /Users/ec2-user/runner/_work/pytorch/pytorch 2025-07-17T06:33:32.6458940Z [command]/usr/bin/git config --local --get remote.origin.url 2025-07-17T06:33:32.6512090Z https://github.com/pytorch/pytorch 2025-07-17T06:33:32.6520980Z ##[group]Removing previously created refs, to avoid conflicts 2025-07-17T06:33:32.6522820Z [command]/usr/bin/git rev-parse --symbolic-full-name --verify --quiet HEAD 2025-07-17T06:33:32.6654720Z HEAD 2025-07-17T06:33:32.6730050Z ##[endgroup] 2025-07-17T06:33:32.6731790Z [command]/usr/bin/git submodule status 2025-07-17T06:33:32.7587180Z 7e1e1fe3858c63c251c637ae41a20de425dde96f android/libs/fbjni (v0.1.0-12-g7e1e1fe) 2025-07-17T06:33:32.7866340Z 4dfe081cf6bcd15db339cf2680b9281b8451eeb3 third_party/FP16 (4dfe081) 2025-07-17T06:33:32.8132560Z b408327ac2a15ec3e43352421954f5b1967701d1 third_party/FXdiv (b408327) 2025-07-17T06:33:32.8453090Z c07e3a0400713d546e0dea2d5466dd22ea389c73 third_party/NNPACK (c07e3a0) 2025-07-17T06:33:32.8898120Z 2942f167cc30c5e3a44a2aecd5b0d9c07ff61a07 third_party/NVTX (v3.1.0-263-g2942f16) 2025-07-17T06:33:32.9394370Z 1d8f600fd424278486eade7ed3e877c99f0846b1 third_party/VulkanMemoryAllocator (v2.1.0-982-g1d8f600) 2025-07-17T06:33:33.1557680Z 51a0103656eff6fc9bfd39a4597923c4b542c883 third_party/XNNPACK (remotes/origin/ds/ndk-1243-g51a0103656) 2025-07-17T06:33:33.1991060Z 01aae101b9e5e94d6c16a9514c9fb8df99c93150 third_party/aiter (v0.1.1-92-g01aae101) 2025-07-17T06:33:33.2205080Z 299e5928955cc62af9968370293b916f5130916f third_party/benchmark (v1.9.3) 2025-07-17T06:33:33.2984470Z 434d19f696da62c12b5372b32cbc9ba968588d7e third_party/composable_kernel (rocm-6.4.1-172-g434d19f69) 2025-07-17T06:33:33.3499920Z 3af7f2c16147f3fbc6e4d717032daf505dc1652c third_party/cpp-httplib (v0.20.1) 2025-07-17T06:33:33.4010390Z 5e3d2445e6a84d9599bee2bf78edbb4d80865e1d third_party/cpuinfo (5e3d244) 2025-07-17T06:33:33.4465670Z f937055efc6d414d11f4c6577e3977fe74f35fb6 third_party/cudnn_frontend (v0.5-52-gf937055) 2025-07-17T06:33:33.5112310Z b995f933179c22d3fe0d871c3a53d11e4681950f third_party/cutlass (v4.0.0) 2025-07-17T06:33:33.5818190Z 157e88b750c452bef2ab4653fe9d1eeb151ce4c3 third_party/fbgemm (v1.2.0-186-g157e88b7) 2025-07-17T06:33:33.6243320Z 979702c87a8713a8e0a5e9fee122b90d2ef13be5 third_party/flash-attention (v2.7.4) 2025-07-17T06:33:33.6412410Z a2cd1ea3b6d3fee220106b5fed3f7ce8da9eb757 third_party/flatbuffers (v24.12.23) 2025-07-17T06:33:33.7557260Z 40626af88bd7df9a5fb80be7b25ac85b122d6c21 third_party/fmt (11.2.0) 2025-07-17T06:33:33.7921980Z 3fb5c176c17c765a3492cd2f0321b0dab712f350 third_party/gemmlowp/gemmlowp (remotes/origin/revert-87-master-135-g3fb5c17) 2025-07-17T06:33:33.8396330Z c7b7b022c124d9643957d9bd55f57ac59fce8fa2 third_party/gloo (remotes/origin/gh/c-p-i-o/1/base-33-gc7b7b02) 2025-07-17T06:33:33.9175050Z 52eb8108c5bdec04579160ae17225d66034bd723 third_party/googletest (release-1.8.0-3544-g52eb8108) 2025-07-17T06:33:33.9612190Z 719d8e6cd7f7a0e01b155657526d693acf97c2b3 third_party/ideep (pytorch-rls-v3.7.1) 2025-07-17T06:33:33.9930350Z dec1d23ca65ab069d225dfe40dea14f455170959 third_party/ittapi (v3.25.5) 2025-07-17T06:33:34.0555470Z 5e7501833f1021ce6f618572d3baf657b6319658 third_party/kineto (remotes/origin/sraikund/test-98-g5e75018) 2025-07-17T06:33:34.0762840Z cca02c2f69dd18e1f12647c1c0bdc8cf90e680c7 third_party/kleidiai (v1.8.0) 2025-07-17T06:33:34.0935200Z fbd8b99c2b828428947d70fdc046bb55609be93e third_party/mimalloc (v2.2.4) 2025-07-17T06:33:34.1158540Z 55f93686c01528224f448c19128836e7df245f72 third_party/nlohmann (v3.12.0) 2025-07-17T06:33:34.2322650Z e709452ef2bbc1d113faf678c24e6d3467696e83 third_party/onnx (v1.18.0) 2025-07-17T06:33:34.2522210Z a799f4aed9c94b765dcdaabaeab7d5e7e2310878 third_party/opentelemetry-cpp (v1.14.2) 2025-07-17T06:33:34.2704920Z 0fa0ef591e38c2758e3184c6c23e497b9f732ffa third_party/pocketfft (release_for_eigen-40-g0fa0ef5) 2025-07-17T06:33:34.5158650Z d1eca4e4b421cd2997495c4b4e65cea6be4e9b8a third_party/protobuf (v3.7.0-rc.2-1279-gd1eca4e4b) 2025-07-17T06:33:34.5387510Z 072586a71b55b7f8c584153d223e95687148a900 third_party/psimd (heads/master) 2025-07-17T06:33:34.5569060Z 4fe0e1e183925bf8cfa6aae24237e724a96479b8 third_party/pthreadpool (0.1-144-g4fe0e1e) 2025-07-17T06:33:34.6152740Z a2e59f0e7065404b44dfe92a28aca47ba1378dc4 third_party/pybind11 (v2.11.0-182-ga2e59f0e) 2025-07-17T06:33:34.6390230Z f45429b087dd7d5bc78bb40dc7cf06425c252d67 third_party/python-peachpy (remotes/origin/pre-generated) 2025-07-17T06:33:34.6850770Z 5a1d179df9cf652951b59010a2d2075372d67f68 third_party/sleef (3.8) 2025-07-17T06:33:34.7126170Z 52791a2fd214b2a9dc5759d36725909c1daa7f2e third_party/tensorpipe (remotes/origin/master) 2025-07-17T06:33:34.7134450Z ##[group]Cleaning the repository 2025-07-17T06:33:34.7136580Z [command]/usr/bin/git clean -ffdx 2025-07-17T06:33:34.7516590Z [command]/usr/bin/git reset --hard HEAD 2025-07-17T06:33:36.1631150Z HEAD is now at 8aca52c216a recovering node source from dict -- reland with forward fix (#158473) 2025-07-17T06:33:36.1638790Z ##[endgroup] 2025-07-17T06:33:36.1640480Z ##[group]Disabling automatic garbage collection 2025-07-17T06:33:36.1645180Z [command]/usr/bin/git config --local gc.auto 0 2025-07-17T06:33:36.1887970Z ##[endgroup] 2025-07-17T06:33:36.1888350Z ##[group]Setting up auth 2025-07-17T06:33:36.1892130Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2025-07-17T06:33:36.1958990Z [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-07-17T06:33:36.2481800Z Entering 'android/libs/fbjni' 2025-07-17T06:33:36.2593100Z Entering 'third_party/FP16' 2025-07-17T06:33:36.2702490Z Entering 'third_party/FXdiv' 2025-07-17T06:33:36.2807090Z Entering 'third_party/NNPACK' 2025-07-17T06:33:36.2915250Z Entering 'third_party/NVTX' 2025-07-17T06:33:36.3047820Z Entering 'third_party/VulkanMemoryAllocator' 2025-07-17T06:33:36.3159710Z Entering 'third_party/XNNPACK' 2025-07-17T06:33:36.3405710Z Entering 'third_party/aiter' 2025-07-17T06:33:36.3585890Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-07-17T06:33:36.3791400Z Entering 'third_party/benchmark' 2025-07-17T06:33:36.3907410Z Entering 'third_party/composable_kernel' 2025-07-17T06:33:36.4101070Z Entering 'third_party/cpp-httplib' 2025-07-17T06:33:36.4211300Z Entering 'third_party/cpuinfo' 2025-07-17T06:33:36.4337570Z Entering 'third_party/cudnn_frontend' 2025-07-17T06:33:36.4453190Z Entering 'third_party/cutlass' 2025-07-17T06:33:36.4675060Z Entering 'third_party/fbgemm' 2025-07-17T06:33:36.4935020Z Entering 'third_party/fbgemm/external/asmjit' 2025-07-17T06:33:36.5093130Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-07-17T06:33:36.5329430Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-07-17T06:33:36.5523910Z Entering 'third_party/fbgemm/external/cutlass' 2025-07-17T06:33:36.5787380Z Entering 'third_party/fbgemm/external/googletest' 2025-07-17T06:33:36.5942690Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-07-17T06:33:36.6094920Z Entering 'third_party/fbgemm/external/json' 2025-07-17T06:33:36.6260980Z Entering 'third_party/flash-attention' 2025-07-17T06:33:36.6465630Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-07-17T06:33:36.6736450Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-07-17T06:33:36.6952420Z Entering 'third_party/flatbuffers' 2025-07-17T06:33:36.7118440Z Entering 'third_party/fmt' 2025-07-17T06:33:36.7228890Z Entering 'third_party/gemmlowp/gemmlowp' 2025-07-17T06:33:36.7335890Z Entering 'third_party/gloo' 2025-07-17T06:33:36.7450770Z Entering 'third_party/googletest' 2025-07-17T06:33:36.7567180Z Entering 'third_party/ideep' 2025-07-17T06:33:36.7716450Z Entering 'third_party/ideep/mkl-dnn' 2025-07-17T06:33:36.7928520Z Entering 'third_party/ittapi' 2025-07-17T06:33:36.8041240Z Entering 'third_party/kineto' 2025-07-17T06:33:36.8211070Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-07-17T06:33:36.8374720Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-07-17T06:33:36.8562560Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-07-17T06:33:36.8718090Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-07-17T06:33:36.8873980Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-07-17T06:33:36.9026930Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-07-17T06:33:36.9187410Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-07-17T06:33:36.9340910Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-07-17T06:33:36.9501770Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-07-17T06:33:36.9692710Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-07-17T06:33:36.9839640Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-07-17T06:33:36.9990880Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-07-17T06:33:37.0122440Z Entering 'third_party/kleidiai' 2025-07-17T06:33:37.0253320Z Entering 'third_party/mimalloc' 2025-07-17T06:33:37.0371190Z Entering 'third_party/nlohmann' 2025-07-17T06:33:37.0519110Z Entering 'third_party/onnx' 2025-07-17T06:33:37.0844080Z Entering 'third_party/onnx/third_party/pybind11' 2025-07-17T06:33:37.0970200Z Entering 'third_party/opentelemetry-cpp' 2025-07-17T06:33:37.1179500Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-07-17T06:33:37.1326970Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-07-17T06:33:37.1491050Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-07-17T06:33:37.1653160Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-07-17T06:33:37.1843070Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-07-17T06:33:37.1989500Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-07-17T06:33:37.2142020Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-07-17T06:33:37.2339010Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-07-17T06:33:37.2525450Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-07-17T06:33:37.2667640Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-07-17T06:33:37.2930650Z Entering 'third_party/pocketfft' 2025-07-17T06:33:37.3042690Z Entering 'third_party/protobuf' 2025-07-17T06:33:37.3233940Z Entering 'third_party/protobuf/third_party/benchmark' 2025-07-17T06:33:37.3365120Z Entering 'third_party/protobuf/third_party/googletest' 2025-07-17T06:33:37.3490070Z Entering 'third_party/psimd' 2025-07-17T06:33:37.3599590Z Entering 'third_party/pthreadpool' 2025-07-17T06:33:37.3709700Z Entering 'third_party/pybind11' 2025-07-17T06:33:37.3820080Z Entering 'third_party/python-peachpy' 2025-07-17T06:33:37.3925840Z Entering 'third_party/sleef' 2025-07-17T06:33:37.4038220Z Entering 'third_party/tensorpipe' 2025-07-17T06:33:37.4213060Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-07-17T06:33:37.4362400Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-07-17T06:33:37.4507880Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-07-17T06:33:37.4666000Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-07-17T06:33:37.4832040Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-07-17T06:33:37.4963030Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-07-17T06:33:37.5025460Z [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-07-17T06:33:37.5513420Z Entering 'android/libs/fbjni' 2025-07-17T06:33:37.5614750Z Entering 'third_party/FP16' 2025-07-17T06:33:37.5714680Z Entering 'third_party/FXdiv' 2025-07-17T06:33:37.5812890Z Entering 'third_party/NNPACK' 2025-07-17T06:33:37.5911080Z Entering 'third_party/NVTX' 2025-07-17T06:33:37.6010230Z Entering 'third_party/VulkanMemoryAllocator' 2025-07-17T06:33:37.6110960Z Entering 'third_party/XNNPACK' 2025-07-17T06:33:37.6216180Z Entering 'third_party/aiter' 2025-07-17T06:33:37.6316220Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-07-17T06:33:37.6419180Z Entering 'third_party/benchmark' 2025-07-17T06:33:37.6521940Z Entering 'third_party/composable_kernel' 2025-07-17T06:33:37.6624960Z Entering 'third_party/cpp-httplib' 2025-07-17T06:33:37.6727190Z Entering 'third_party/cpuinfo' 2025-07-17T06:33:37.6827900Z Entering 'third_party/cudnn_frontend' 2025-07-17T06:33:37.6928690Z Entering 'third_party/cutlass' 2025-07-17T06:33:37.7031070Z Entering 'third_party/fbgemm' 2025-07-17T06:33:37.7132010Z Entering 'third_party/fbgemm/external/asmjit' 2025-07-17T06:33:37.7231820Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-07-17T06:33:37.7334080Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-07-17T06:33:37.7434900Z Entering 'third_party/fbgemm/external/cutlass' 2025-07-17T06:33:37.7537280Z Entering 'third_party/fbgemm/external/googletest' 2025-07-17T06:33:37.7639510Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-07-17T06:33:37.7739550Z Entering 'third_party/fbgemm/external/json' 2025-07-17T06:33:37.7842700Z Entering 'third_party/flash-attention' 2025-07-17T06:33:37.7944830Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-07-17T06:33:37.8046740Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-07-17T06:33:37.8152250Z Entering 'third_party/flatbuffers' 2025-07-17T06:33:37.8255000Z Entering 'third_party/fmt' 2025-07-17T06:33:37.8357650Z Entering 'third_party/gemmlowp/gemmlowp' 2025-07-17T06:33:37.8459080Z Entering 'third_party/gloo' 2025-07-17T06:33:37.8557940Z Entering 'third_party/googletest' 2025-07-17T06:33:37.8658290Z Entering 'third_party/ideep' 2025-07-17T06:33:37.8755940Z Entering 'third_party/ideep/mkl-dnn' 2025-07-17T06:33:37.8858260Z Entering 'third_party/ittapi' 2025-07-17T06:33:37.8960170Z Entering 'third_party/kineto' 2025-07-17T06:33:37.9057130Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-07-17T06:33:37.9155830Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-07-17T06:33:37.9256100Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-07-17T06:33:37.9356270Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-07-17T06:33:37.9457100Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-07-17T06:33:37.9555100Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-07-17T06:33:37.9656650Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-07-17T06:33:37.9756760Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-07-17T06:33:37.9857430Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-07-17T06:33:37.9956550Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-07-17T06:33:38.0057970Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-07-17T06:33:38.0156680Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-07-17T06:33:38.0256360Z Entering 'third_party/kleidiai' 2025-07-17T06:33:38.0355940Z Entering 'third_party/mimalloc' 2025-07-17T06:33:38.0455960Z Entering 'third_party/nlohmann' 2025-07-17T06:33:38.0556200Z Entering 'third_party/onnx' 2025-07-17T06:33:38.0661420Z Entering 'third_party/onnx/third_party/pybind11' 2025-07-17T06:33:38.0765020Z Entering 'third_party/opentelemetry-cpp' 2025-07-17T06:33:38.0866430Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-07-17T06:33:38.0966650Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-07-17T06:33:38.1066550Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-07-17T06:33:38.1166590Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-07-17T06:33:38.1265620Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-07-17T06:33:38.1365060Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-07-17T06:33:38.1464130Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-07-17T06:33:38.1560090Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-07-17T06:33:38.1659690Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-07-17T06:33:38.1761400Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-07-17T06:33:38.1870790Z Entering 'third_party/pocketfft' 2025-07-17T06:33:38.1973920Z Entering 'third_party/protobuf' 2025-07-17T06:33:38.2073270Z Entering 'third_party/protobuf/third_party/benchmark' 2025-07-17T06:33:38.2172030Z Entering 'third_party/protobuf/third_party/googletest' 2025-07-17T06:33:38.2272910Z Entering 'third_party/psimd' 2025-07-17T06:33:38.2372620Z Entering 'third_party/pthreadpool' 2025-07-17T06:33:38.2472100Z Entering 'third_party/pybind11' 2025-07-17T06:33:38.2573150Z Entering 'third_party/python-peachpy' 2025-07-17T06:33:38.2671960Z Entering 'third_party/sleef' 2025-07-17T06:33:38.2771720Z Entering 'third_party/tensorpipe' 2025-07-17T06:33:38.2870450Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-07-17T06:33:38.2968650Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-07-17T06:33:38.3067550Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-07-17T06:33:38.3167130Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-07-17T06:33:38.3264320Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-07-17T06:33:38.3381040Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** 2025-07-17T06:33:38.3453370Z ##[endgroup] 2025-07-17T06:33:38.3453640Z ##[group]Fetching the repository 2025-07-17T06:33:38.3457910Z [command]/usr/bin/git -c protocol.version=2 fetch --prune --no-recurse-submodules origin +refs/heads/*:refs/remotes/origin/* +refs/tags/*:refs/tags/* 2025-07-17T06:33:44.4456270Z From https://github.com/pytorch/pytorch 2025-07-17T06:33:44.4456570Z - [deleted] (none) -> ciflow/inductor/157605 2025-07-17T06:33:44.5810780Z - [deleted] (none) -> ciflow/inductor/158133 2025-07-17T06:33:44.5811090Z - [deleted] (none) -> ciflow/inductor/158288 2025-07-17T06:33:44.5811390Z - [deleted] (none) -> ciflow/inductor/158291 2025-07-17T06:33:44.5811840Z - [deleted] (none) -> ciflow/inductor/158402 2025-07-17T06:33:44.5812760Z - [deleted] (none) -> ciflow/inductor/158450 2025-07-17T06:33:44.5813790Z - [deleted] (none) -> ciflow/inductor/158527 2025-07-17T06:33:44.5814470Z - [deleted] (none) -> ciflow/trunk/157605 2025-07-17T06:33:44.5815390Z - [deleted] (none) -> ciflow/trunk/158133 2025-07-17T06:33:44.5816270Z - [deleted] (none) -> ciflow/trunk/158290 2025-07-17T06:33:44.5817590Z - [deleted] (none) -> ciflow/trunk/158291 2025-07-17T06:33:44.5818150Z - [deleted] (none) -> ciflow/trunk/158402 2025-07-17T06:33:44.5819040Z - [deleted] (none) -> ciflow/trunk/158407 2025-07-17T06:33:44.5819950Z - [deleted] (none) -> ciflow/trunk/158450 2025-07-17T06:33:44.5820780Z - [deleted] (none) -> ciflow/trunk/158484 2025-07-17T06:33:46.1757270Z * [new branch] angelayi/pytree -> origin/angelayi/pytree 2025-07-17T06:33:46.1774830Z * [new branch] ezyang/wip-aot-descriptors -> origin/ezyang/wip-aot-descriptors 2025-07-17T06:33:46.1796560Z * [new branch] gh/XuehaiPan/369/base -> origin/gh/XuehaiPan/369/base 2025-07-17T06:33:46.1803270Z * [new branch] gh/XuehaiPan/369/head -> origin/gh/XuehaiPan/369/head 2025-07-17T06:33:46.1803640Z * [new branch] gh/XuehaiPan/369/orig -> origin/gh/XuehaiPan/369/orig 2025-07-17T06:33:46.1811090Z ee0992871c9..c990ad206d8 gh/andyanwang/32/base -> origin/gh/andyanwang/32/base 2025-07-17T06:33:46.1818280Z d9e6d5331c5..5bc5bb4e713 gh/andyanwang/32/head -> origin/gh/andyanwang/32/head 2025-07-17T06:33:46.1825300Z + 2487a36a1a9...c089f70741b gh/andyanwang/32/orig -> origin/gh/andyanwang/32/orig (forced update) 2025-07-17T06:33:46.1834010Z * [new branch] gh/bobrenjc93/536/base -> origin/gh/bobrenjc93/536/base 2025-07-17T06:33:46.1835910Z * [new branch] gh/bobrenjc93/536/head -> origin/gh/bobrenjc93/536/head 2025-07-17T06:33:46.1837610Z * [new branch] gh/bobrenjc93/536/orig -> origin/gh/bobrenjc93/536/orig 2025-07-17T06:33:46.1846260Z f0f65176d98..c25f3516368 gh/codingwithsurya/10/base -> origin/gh/codingwithsurya/10/base 2025-07-17T06:33:46.1853140Z 77633c8c6a9..38baf4ac45c gh/codingwithsurya/10/head -> origin/gh/codingwithsurya/10/head 2025-07-17T06:33:46.1860160Z + 630b1d4aafb...4feb9874034 gh/codingwithsurya/10/orig -> origin/gh/codingwithsurya/10/orig (forced update) 2025-07-17T06:33:46.1868020Z 55e2ac3c8a9..099722a9f2e gh/codingwithsurya/11/base -> origin/gh/codingwithsurya/11/base 2025-07-17T06:33:46.1875570Z cae4a58084e..da88559cbaf gh/codingwithsurya/11/head -> origin/gh/codingwithsurya/11/head 2025-07-17T06:33:46.1882960Z + a5483bb0299...e6e49f2c281 gh/codingwithsurya/11/orig -> origin/gh/codingwithsurya/11/orig (forced update) 2025-07-17T06:33:46.1891060Z bd26d64ea15..c01a7990f43 gh/codingwithsurya/12/base -> origin/gh/codingwithsurya/12/base 2025-07-17T06:33:46.1898880Z d7200616698..846ce8f6eeb gh/codingwithsurya/12/head -> origin/gh/codingwithsurya/12/head 2025-07-17T06:33:46.1906260Z + 785cdf24123...8aecbd034c9 gh/codingwithsurya/12/orig -> origin/gh/codingwithsurya/12/orig (forced update) 2025-07-17T06:33:46.1917200Z 775d6a12724..4bd0d7db186 gh/codingwithsurya/8/base -> origin/gh/codingwithsurya/8/base 2025-07-17T06:33:46.1926820Z c8d35210556..69d7164b82a gh/codingwithsurya/8/head -> origin/gh/codingwithsurya/8/head 2025-07-17T06:33:46.1934080Z + b62d9482d65...a89bb79f4e6 gh/codingwithsurya/8/orig -> origin/gh/codingwithsurya/8/orig (forced update) 2025-07-17T06:33:46.1942220Z 96f1c5327b5..1980a8a6194 gh/codingwithsurya/9/base -> origin/gh/codingwithsurya/9/base 2025-07-17T06:33:46.1957110Z bd2fad5a168..d32a141e98d gh/codingwithsurya/9/head -> origin/gh/codingwithsurya/9/head 2025-07-17T06:33:46.1965560Z + ed63683d032...2d6c64aef02 gh/codingwithsurya/9/orig -> origin/gh/codingwithsurya/9/orig (forced update) 2025-07-17T06:33:46.1969850Z * [new branch] gh/drisspg/171/base -> origin/gh/drisspg/171/base 2025-07-17T06:33:46.1971540Z * [new branch] gh/drisspg/171/head -> origin/gh/drisspg/171/head 2025-07-17T06:33:46.1973780Z * [new branch] gh/drisspg/171/orig -> origin/gh/drisspg/171/orig 2025-07-17T06:33:46.1984370Z 7ffa5ec178d..aeb78746efb gh/ezyang/3107/head -> origin/gh/ezyang/3107/head 2025-07-17T06:33:46.1992510Z + d4b6b838883...e10ec1a444d gh/ezyang/3107/orig -> origin/gh/ezyang/3107/orig (forced update) 2025-07-17T06:33:46.2033680Z 54d17043330..23d08a8c38a gh/guangyey/168/head -> origin/gh/guangyey/168/head 2025-07-17T06:33:46.2070210Z + 0775ceef17d...91aec4fd4d4 gh/guangyey/168/orig -> origin/gh/guangyey/168/orig (forced update) 2025-07-17T06:33:46.2077370Z ea84136101f..2a2ca819951 gh/guangyey/169/base -> origin/gh/guangyey/169/base 2025-07-17T06:33:46.2084240Z dce84b6e09b..ca39521f196 gh/guangyey/169/head -> origin/gh/guangyey/169/head 2025-07-17T06:33:46.2103120Z + fc0a707d626...fcfc9d3dfd2 gh/guangyey/169/orig -> origin/gh/guangyey/169/orig (forced update) 2025-07-17T06:33:46.2116580Z 68055820afd..112e2c6c1f6 gh/guangyey/170/base -> origin/gh/guangyey/170/base 2025-07-17T06:33:46.2124370Z 7edaf81992d..283a75016ff gh/guangyey/170/head -> origin/gh/guangyey/170/head 2025-07-17T06:33:46.2131820Z + 12650daf7cc...5878d1d9274 gh/guangyey/170/orig -> origin/gh/guangyey/170/orig (forced update) 2025-07-17T06:33:46.2138750Z 52668f50cdf..314e069b71b gh/guangyey/171/base -> origin/gh/guangyey/171/base 2025-07-17T06:33:46.2146190Z e974c591a7b..c96631d6766 gh/guangyey/171/head -> origin/gh/guangyey/171/head 2025-07-17T06:33:46.2153600Z + f7574dbffb3...7b788c8c0cf gh/guangyey/171/orig -> origin/gh/guangyey/171/orig (forced update) 2025-07-17T06:33:46.2156110Z * [new branch] gh/guangyey/172/base -> origin/gh/guangyey/172/base 2025-07-17T06:33:46.2157830Z * [new branch] gh/guangyey/172/head -> origin/gh/guangyey/172/head 2025-07-17T06:33:46.2160090Z * [new branch] gh/guangyey/172/orig -> origin/gh/guangyey/172/orig 2025-07-17T06:33:46.2191450Z 80c149684d3..bd97b9ffa19 gh/seemethere/47/head -> origin/gh/seemethere/47/head 2025-07-17T06:33:46.2199510Z + f37c7057562...593f870c038 gh/seemethere/47/orig -> origin/gh/seemethere/47/orig (forced update) 2025-07-17T06:33:46.2208420Z 3507353eb07..9c99ab423a3 gh/seemethere/48/base -> origin/gh/seemethere/48/base 2025-07-17T06:33:46.2217190Z ddb9a1d8d2f..f05ab79c87a gh/seemethere/48/head -> origin/gh/seemethere/48/head 2025-07-17T06:33:46.2224970Z + 9442c554ddb...79a858fa757 gh/seemethere/48/orig -> origin/gh/seemethere/48/orig (forced update) 2025-07-17T06:33:46.2230570Z * [new branch] gh/wconstab/431/base -> origin/gh/wconstab/431/base 2025-07-17T06:33:46.2232240Z * [new branch] gh/wconstab/431/head -> origin/gh/wconstab/431/head 2025-07-17T06:33:46.2234200Z * [new branch] gh/wconstab/431/orig -> origin/gh/wconstab/431/orig 2025-07-17T06:33:46.2277010Z 0545b14d28a..1f412f5b861 gh/williamwen42/260/base -> origin/gh/williamwen42/260/base 2025-07-17T06:33:46.2284560Z 2a6cb14f059..60d93b8a9f7 gh/williamwen42/260/head -> origin/gh/williamwen42/260/head 2025-07-17T06:33:46.2291770Z + 34b0ef17964...068bb0fcbbc gh/williamwen42/260/orig -> origin/gh/williamwen42/260/orig (forced update) 2025-07-17T06:33:46.2299560Z bd1daa71f3e..878a22356b8 gh/williamwen42/261/base -> origin/gh/williamwen42/261/base 2025-07-17T06:33:46.2306770Z 49096d291a3..842a1aac5b4 gh/williamwen42/261/head -> origin/gh/williamwen42/261/head 2025-07-17T06:33:46.2314500Z + 53ef1cd1adf...d06c8205808 gh/williamwen42/261/orig -> origin/gh/williamwen42/261/orig (forced update) 2025-07-17T06:33:46.2316950Z * [new branch] gh/williamwen42/263/base -> origin/gh/williamwen42/263/base 2025-07-17T06:33:46.2318510Z * [new branch] gh/williamwen42/263/head -> origin/gh/williamwen42/263/head 2025-07-17T06:33:46.2320770Z * [new branch] gh/williamwen42/263/orig -> origin/gh/williamwen42/263/orig 2025-07-17T06:33:46.2329860Z 7a269e352d3..1e345d3441d gh/xmfan/269/head -> origin/gh/xmfan/269/head 2025-07-17T06:33:46.2337760Z + df312803b36...e2d689d3db5 gh/xmfan/269/orig -> origin/gh/xmfan/269/orig (forced update) 2025-07-17T06:33:46.2347680Z 0d481c36592..7770f763058 gh/ydwu4/282/head -> origin/gh/ydwu4/282/head 2025-07-17T06:33:46.2355830Z + 2dbbbcba273...d82de37a343 gh/ydwu4/282/orig -> origin/gh/ydwu4/282/orig (forced update) 2025-07-17T06:33:46.2368410Z 2ad5c25cfc6..a38f433be2e main -> origin/main 2025-07-17T06:33:46.2401090Z + 3c611c95e3a...228824d2cbe mlazos/nested-dc -> origin/mlazos/nested-dc (forced update) 2025-07-17T06:33:46.2418420Z 473208cb18d..f6d138807f1 viable/strict -> origin/viable/strict 2025-07-17T06:33:46.2421480Z t [tag update] ciflow/h100-symm-mem/158511 -> ciflow/h100-symm-mem/158511 2025-07-17T06:33:46.2422840Z t [tag update] ciflow/h100-symm-mem/158512 -> ciflow/h100-symm-mem/158512 2025-07-17T06:33:46.2424720Z t [tag update] ciflow/h100-symm-mem/158513 -> ciflow/h100-symm-mem/158513 2025-07-17T06:33:46.2426410Z t [tag update] ciflow/h100-symm-mem/158514 -> ciflow/h100-symm-mem/158514 2025-07-17T06:33:46.2427900Z t [tag update] ciflow/h100-symm-mem/158515 -> ciflow/h100-symm-mem/158515 2025-07-17T06:33:46.2466600Z t [tag update] ciflow/inductor/155958 -> ciflow/inductor/155958 2025-07-17T06:33:46.2468360Z t [tag update] ciflow/inductor/157993 -> ciflow/inductor/157993 2025-07-17T06:33:46.2502490Z t [tag update] ciflow/inductor/158430 -> ciflow/inductor/158430 2025-07-17T06:33:46.2504050Z t [tag update] ciflow/inductor/158479 -> ciflow/inductor/158479 2025-07-17T06:33:46.2505830Z t [tag update] ciflow/inductor/158480 -> ciflow/inductor/158480 2025-07-17T06:33:46.2514780Z t [tag update] ciflow/inductor/158520 -> ciflow/inductor/158520 2025-07-17T06:33:46.2516240Z t [tag update] ciflow/inductor/158524 -> ciflow/inductor/158524 2025-07-17T06:33:46.2517780Z t [tag update] ciflow/inductor/158526 -> ciflow/inductor/158526 2025-07-17T06:33:46.2519040Z * [new tag] ciflow/inductor/158534 -> ciflow/inductor/158534 2025-07-17T06:33:46.2520580Z * [new tag] ciflow/inductor/158535 -> ciflow/inductor/158535 2025-07-17T06:33:46.2521840Z * [new tag] ciflow/inductor/158537 -> ciflow/inductor/158537 2025-07-17T06:33:46.2523030Z * [new tag] ciflow/inductor/158538 -> ciflow/inductor/158538 2025-07-17T06:33:46.2525210Z t [tag update] ciflow/linux-aarch64/157994 -> ciflow/linux-aarch64/157994 2025-07-17T06:33:46.2529090Z t [tag update] ciflow/rocm-mi300/158221 -> ciflow/rocm-mi300/158221 2025-07-17T06:33:46.2530500Z t [tag update] ciflow/rocm/158219 -> ciflow/rocm/158219 2025-07-17T06:33:46.2532380Z t [tag update] ciflow/rocm/158220 -> ciflow/rocm/158220 2025-07-17T06:33:46.2534470Z t [tag update] ciflow/rocm/158224 -> ciflow/rocm/158224 2025-07-17T06:33:46.2535920Z * [new tag] ciflow/triton_binaries/158459 -> ciflow/triton_binaries/158459 2025-07-17T06:33:46.2538320Z t [tag update] ciflow/trunk/155958 -> ciflow/trunk/155958 2025-07-17T06:33:46.2539950Z t [tag update] ciflow/trunk/157994 -> ciflow/trunk/157994 2025-07-17T06:33:46.2541710Z t [tag update] ciflow/trunk/158219 -> ciflow/trunk/158219 2025-07-17T06:33:46.2543480Z t [tag update] ciflow/trunk/158220 -> ciflow/trunk/158220 2025-07-17T06:33:46.2544940Z t [tag update] ciflow/trunk/158224 -> ciflow/trunk/158224 2025-07-17T06:33:46.2547280Z t [tag update] ciflow/trunk/158430 -> ciflow/trunk/158430 2025-07-17T06:33:46.2548390Z t [tag update] ciflow/trunk/158479 -> ciflow/trunk/158479 2025-07-17T06:33:46.2549930Z * [new tag] ciflow/trunk/158492 -> ciflow/trunk/158492 2025-07-17T06:33:46.2551590Z t [tag update] ciflow/trunk/158524 -> ciflow/trunk/158524 2025-07-17T06:33:46.2552870Z * [new tag] ciflow/trunk/158532 -> ciflow/trunk/158532 2025-07-17T06:33:46.2561820Z t [tag update] ciflow/xpu/158336 -> ciflow/xpu/158336 2025-07-17T06:33:46.2562970Z * [new tag] ciflow/xpu/158337 -> ciflow/xpu/158337 2025-07-17T06:33:46.2564520Z * [new tag] ciflow/xpu/158533 -> ciflow/xpu/158533 2025-07-17T06:33:46.2565630Z * [new tag] ciflow/xpu/158542 -> ciflow/xpu/158542 2025-07-17T06:33:46.2569520Z * [new tag] trunk/1839e8d04b81ee6eda0cff6fbfc218a7a600f6f7 -> trunk/1839e8d04b81ee6eda0cff6fbfc218a7a600f6f7 2025-07-17T06:33:46.2571360Z * [new tag] trunk/24b49b98810bb77f3cfa4c15baa9a15c9be3db61 -> trunk/24b49b98810bb77f3cfa4c15baa9a15c9be3db61 2025-07-17T06:33:46.2574850Z * [new tag] trunk/415dfabe9b569b71098a2f874f3fc67ad2a4fc2e -> trunk/415dfabe9b569b71098a2f874f3fc67ad2a4fc2e 2025-07-17T06:33:46.2580040Z * [new tag] trunk/79d7c754ab8ae0e5c3a614521632d2cfbfa0fdba -> trunk/79d7c754ab8ae0e5c3a614521632d2cfbfa0fdba 2025-07-17T06:33:46.2582140Z * [new tag] trunk/8eaa9f2701277f328d9d6aea1bfe7cba20792f7c -> trunk/8eaa9f2701277f328d9d6aea1bfe7cba20792f7c 2025-07-17T06:33:46.2583870Z * [new tag] trunk/9636e2cfd3e995ef977f670ad47e8e895296d992 -> trunk/9636e2cfd3e995ef977f670ad47e8e895296d992 2025-07-17T06:33:46.2585750Z * [new tag] trunk/9f37cce69334bccebf4b21503f0047d0c0bb320c -> trunk/9f37cce69334bccebf4b21503f0047d0c0bb320c 2025-07-17T06:33:46.2591320Z * [new tag] trunk/d9426a81d2ab54f809a3b32a6ab2e606073fe66f -> trunk/d9426a81d2ab54f809a3b32a6ab2e606073fe66f 2025-07-17T06:33:46.2594070Z * [new tag] trunk/ebf83b8b7772632c0558db9a88281ee10ff2df38 -> trunk/ebf83b8b7772632c0558db9a88281ee10ff2df38 2025-07-17T06:33:46.4064660Z [command]/usr/bin/git rev-parse --verify --quiet a38f433be2e94a64b095a44ba39879d02d0c2316^{object} 2025-07-17T06:33:46.4125910Z a38f433be2e94a64b095a44ba39879d02d0c2316 2025-07-17T06:33:46.4130350Z ##[endgroup] 2025-07-17T06:33:46.4130600Z ##[group]Determining the checkout info 2025-07-17T06:33:46.4130880Z ##[endgroup] 2025-07-17T06:33:46.4132870Z [command]/usr/bin/git sparse-checkout disable 2025-07-17T06:33:46.4333110Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig 2025-07-17T06:33:46.4396690Z ##[group]Checking out the ref 2025-07-17T06:33:46.4398830Z [command]/usr/bin/git checkout --progress --force a38f433be2e94a64b095a44ba39879d02d0c2316 2025-07-17T06:33:46.7822750Z Previous HEAD position was 8aca52c216a recovering node source from dict -- reland with forward fix (#158473) 2025-07-17T06:33:46.7852280Z HEAD is now at a38f433be2e [Docker builds] Move from Miniconda to Miniforge (#158370) 2025-07-17T06:33:46.7861050Z ##[endgroup] 2025-07-17T06:33:46.7861300Z ##[group]Setting up auth for fetching submodules 2025-07-17T06:33:46.7865570Z [command]/usr/bin/git config --global http.https://github.com/.extraheader AUTHORIZATION: basic *** 2025-07-17T06:33:46.7940200Z [command]/usr/bin/git config --global --unset-all url.https://github.com/.insteadOf 2025-07-17T06:33:46.8002520Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf git@github.com: 2025-07-17T06:33:46.8062140Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf org-21003710@github.com: 2025-07-17T06:33:46.8119710Z ##[endgroup] 2025-07-17T06:33:46.8119960Z ##[group]Fetching submodules 2025-07-17T06:33:46.8122200Z [command]/usr/bin/git submodule sync --recursive 2025-07-17T06:33:46.8630190Z Synchronizing submodule url for 'android/libs/fbjni' 2025-07-17T06:33:46.8669780Z Synchronizing submodule url for 'third_party/FP16' 2025-07-17T06:33:46.8707230Z Synchronizing submodule url for 'third_party/FXdiv' 2025-07-17T06:33:46.8744840Z Synchronizing submodule url for 'third_party/NNPACK' 2025-07-17T06:33:46.8788070Z Synchronizing submodule url for 'third_party/NVTX' 2025-07-17T06:33:46.8825460Z Synchronizing submodule url for 'third_party/VulkanMemoryAllocator' 2025-07-17T06:33:46.8863110Z Synchronizing submodule url for 'third_party/XNNPACK' 2025-07-17T06:33:46.8905970Z Synchronizing submodule url for 'third_party/aiter' 2025-07-17T06:33:46.8942530Z Synchronizing submodule url for 'third_party/aiter/3rdparty/composable_kernel' 2025-07-17T06:33:46.8984090Z Synchronizing submodule url for 'third_party/benchmark' 2025-07-17T06:33:46.9022460Z Synchronizing submodule url for 'third_party/composable_kernel' 2025-07-17T06:33:46.9062860Z Synchronizing submodule url for 'third_party/cpp-httplib' 2025-07-17T06:33:46.9100480Z Synchronizing submodule url for 'third_party/cpuinfo' 2025-07-17T06:33:46.9139240Z Synchronizing submodule url for 'third_party/cudnn_frontend' 2025-07-17T06:33:46.9176510Z Synchronizing submodule url for 'third_party/cutlass' 2025-07-17T06:33:46.9216980Z Synchronizing submodule url for 'third_party/fbgemm' 2025-07-17T06:33:46.9252760Z Synchronizing submodule url for 'third_party/fbgemm/external/asmjit' 2025-07-17T06:33:46.9290420Z Synchronizing submodule url for 'third_party/fbgemm/external/composable_kernel' 2025-07-17T06:33:46.9329680Z Synchronizing submodule url for 'third_party/fbgemm/external/cpuinfo' 2025-07-17T06:33:46.9369080Z Synchronizing submodule url for 'third_party/fbgemm/external/cutlass' 2025-07-17T06:33:46.9408660Z Synchronizing submodule url for 'third_party/fbgemm/external/googletest' 2025-07-17T06:33:46.9446620Z Synchronizing submodule url for 'third_party/fbgemm/external/hipify_torch' 2025-07-17T06:33:46.9483380Z Synchronizing submodule url for 'third_party/fbgemm/external/json' 2025-07-17T06:33:46.9523800Z Synchronizing submodule url for 'third_party/flash-attention' 2025-07-17T06:33:46.9559710Z Synchronizing submodule url for 'third_party/flash-attention/csrc/composable_kernel' 2025-07-17T06:33:46.9597310Z Synchronizing submodule url for 'third_party/flash-attention/csrc/cutlass' 2025-07-17T06:33:46.9639670Z Synchronizing submodule url for 'third_party/flatbuffers' 2025-07-17T06:33:46.9679010Z Synchronizing submodule url for 'third_party/fmt' 2025-07-17T06:33:46.9716910Z Synchronizing submodule url for 'third_party/gemmlowp/gemmlowp' 2025-07-17T06:33:46.9753730Z Synchronizing submodule url for 'third_party/gloo' 2025-07-17T06:33:46.9791040Z Synchronizing submodule url for 'third_party/googletest' 2025-07-17T06:33:46.9827910Z Synchronizing submodule url for 'third_party/ideep' 2025-07-17T06:33:46.9861730Z Synchronizing submodule url for 'third_party/ideep/mkl-dnn' 2025-07-17T06:33:46.9902530Z Synchronizing submodule url for 'third_party/ittapi' 2025-07-17T06:33:46.9940840Z Synchronizing submodule url for 'third_party/kineto' 2025-07-17T06:33:46.9976300Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog' 2025-07-17T06:33:47.0011080Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-07-17T06:33:47.0048600Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-07-17T06:33:47.0085480Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-07-17T06:33:47.0122830Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-07-17T06:33:47.0157290Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-07-17T06:33:47.0195900Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-07-17T06:33:47.0233970Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-07-17T06:33:47.0271080Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-07-17T06:33:47.0308590Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-07-17T06:33:47.0347890Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/fmt' 2025-07-17T06:33:47.0384520Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/googletest' 2025-07-17T06:33:47.0424250Z Synchronizing submodule url for 'third_party/kleidiai' 2025-07-17T06:33:47.0462440Z Synchronizing submodule url for 'third_party/mimalloc' 2025-07-17T06:33:47.0498940Z Synchronizing submodule url for 'third_party/nlohmann' 2025-07-17T06:33:47.0536490Z Synchronizing submodule url for 'third_party/onnx' 2025-07-17T06:33:47.0577800Z Synchronizing submodule url for 'third_party/onnx/third_party/pybind11' 2025-07-17T06:33:47.0618970Z Synchronizing submodule url for 'third_party/opentelemetry-cpp' 2025-07-17T06:33:47.0655220Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-07-17T06:33:47.0691800Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/googletest' 2025-07-17T06:33:47.0728220Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-07-17T06:33:47.0764940Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-07-17T06:33:47.0801610Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-07-17T06:33:47.0838520Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-07-17T06:33:47.0875450Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-07-17T06:33:47.0910300Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-07-17T06:33:47.0948700Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-07-17T06:33:47.0987540Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-07-17T06:33:47.1034630Z Synchronizing submodule url for 'third_party/pocketfft' 2025-07-17T06:33:47.1073140Z Synchronizing submodule url for 'third_party/protobuf' 2025-07-17T06:33:47.1109440Z Synchronizing submodule url for 'third_party/protobuf/third_party/benchmark' 2025-07-17T06:33:47.1145770Z Synchronizing submodule url for 'third_party/protobuf/third_party/googletest' 2025-07-17T06:33:47.1185170Z Synchronizing submodule url for 'third_party/psimd' 2025-07-17T06:33:47.1222890Z Synchronizing submodule url for 'third_party/pthreadpool' 2025-07-17T06:33:47.1259890Z Synchronizing submodule url for 'third_party/pybind11' 2025-07-17T06:33:47.1297350Z Synchronizing submodule url for 'third_party/python-peachpy' 2025-07-17T06:33:47.1333720Z Synchronizing submodule url for 'third_party/sleef' 2025-07-17T06:33:47.1369960Z Synchronizing submodule url for 'third_party/tensorpipe' 2025-07-17T06:33:47.1404420Z Synchronizing submodule url for 'third_party/tensorpipe/third_party/googletest' 2025-07-17T06:33:47.1440810Z Synchronizing submodule url for 'third_party/tensorpipe/third_party/libnop' 2025-07-17T06:33:47.1476900Z Synchronizing submodule url for 'third_party/tensorpipe/third_party/libuv' 2025-07-17T06:33:47.1514030Z Synchronizing submodule url for 'third_party/tensorpipe/third_party/pybind11' 2025-07-17T06:33:47.1548760Z Synchronizing submodule url for 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-07-17T06:33:47.1593020Z [command]/usr/bin/git -c protocol.version=2 submodule update --init --force --recursive 2025-07-17T06:33:47.2381620Z Submodule path 'android/libs/fbjni': checked out '7e1e1fe3858c63c251c637ae41a20de425dde96f' 2025-07-17T06:33:47.2573240Z Submodule path 'third_party/FP16': checked out '4dfe081cf6bcd15db339cf2680b9281b8451eeb3' 2025-07-17T06:33:47.2750980Z Submodule path 'third_party/FXdiv': checked out 'b408327ac2a15ec3e43352421954f5b1967701d1' 2025-07-17T06:33:47.3077970Z Submodule path 'third_party/NNPACK': checked out 'c07e3a0400713d546e0dea2d5466dd22ea389c73' 2025-07-17T06:33:47.3671230Z Submodule path 'third_party/NVTX': checked out '2942f167cc30c5e3a44a2aecd5b0d9c07ff61a07' 2025-07-17T06:33:47.4025630Z Submodule path 'third_party/VulkanMemoryAllocator': checked out '1d8f600fd424278486eade7ed3e877c99f0846b1' 2025-07-17T06:33:47.4826090Z Submodule path 'third_party/XNNPACK': checked out '51a0103656eff6fc9bfd39a4597923c4b542c883' 2025-07-17T06:33:47.5699470Z Submodule path 'third_party/aiter': checked out '01aae101b9e5e94d6c16a9514c9fb8df99c93150' 2025-07-17T06:33:47.7464570Z Submodule path 'third_party/aiter/3rdparty/composable_kernel': checked out 'cffe8fa2a442ac8e80dd236a1a5d24fe3d7e0cbf' 2025-07-17T06:33:47.7989930Z Submodule path 'third_party/benchmark': checked out '299e5928955cc62af9968370293b916f5130916f' 2025-07-17T06:33:47.9113530Z Submodule path 'third_party/composable_kernel': checked out '434d19f696da62c12b5372b32cbc9ba968588d7e' 2025-07-17T06:33:47.9386100Z Submodule path 'third_party/cpp-httplib': checked out '3af7f2c16147f3fbc6e4d717032daf505dc1652c' 2025-07-17T06:33:47.9893190Z Submodule path 'third_party/cpuinfo': checked out '5e3d2445e6a84d9599bee2bf78edbb4d80865e1d' 2025-07-17T06:33:48.0256080Z Submodule path 'third_party/cudnn_frontend': checked out 'f937055efc6d414d11f4c6577e3977fe74f35fb6' 2025-07-17T06:33:48.0953930Z Submodule path 'third_party/cutlass': checked out 'b995f933179c22d3fe0d871c3a53d11e4681950f' 2025-07-17T06:33:48.1849630Z Submodule path 'third_party/fbgemm': checked out '157e88b750c452bef2ab4653fe9d1eeb151ce4c3' 2025-07-17T06:33:48.2307000Z Submodule path 'third_party/fbgemm/external/asmjit': checked out 'e5d7c0bd5d9aec44d68830187138149e6a8c4e32' 2025-07-17T06:33:48.3310500Z Submodule path 'third_party/fbgemm/external/composable_kernel': checked out '4a61bdd4bd4ed730e078aebc7c0fcf046ff29406' 2025-07-17T06:33:48.3990600Z Submodule path 'third_party/fbgemm/external/cpuinfo': checked out '6543fec09b2f04ac4a666882998b534afc9c1349' 2025-07-17T06:33:48.5011040Z Submodule path 'third_party/fbgemm/external/cutlass': checked out '3ed8d2ec4ba35ef5d9d8353826209b6f868f63d3' 2025-07-17T06:33:48.5730860Z Submodule path 'third_party/fbgemm/external/googletest': checked out 'f8d7d77c06936315286eb55f8de22cd23c188571' 2025-07-17T06:33:48.5973870Z Submodule path 'third_party/fbgemm/external/hipify_torch': checked out 'a4337c69fe0e2552a7b7b0669178926beeed828c' 2025-07-17T06:33:48.7206670Z Submodule path 'third_party/fbgemm/external/json': checked out '9cca280a4d0ccf0c08f47a99aa71d1b0e52f8d03' 2025-07-17T06:33:48.8005740Z Submodule path 'third_party/flash-attention': checked out '979702c87a8713a8e0a5e9fee122b90d2ef13be5' 2025-07-17T06:33:48.9809760Z Submodule path 'third_party/flash-attention/csrc/composable_kernel': checked out '888317e698e9803c62bd38568abc9e05d7709f33' 2025-07-17T06:33:49.1119850Z Submodule path 'third_party/flash-attention/csrc/cutlass': checked out 'c506e16788cb08416a4a57e11a9067beeee29420' 2025-07-17T06:33:49.2164840Z Submodule path 'third_party/flatbuffers': checked out 'a2cd1ea3b6d3fee220106b5fed3f7ce8da9eb757' 2025-07-17T06:33:49.2434670Z Submodule path 'third_party/fmt': checked out '40626af88bd7df9a5fb80be7b25ac85b122d6c21' 2025-07-17T06:33:49.2704180Z Submodule path 'third_party/gemmlowp/gemmlowp': checked out '3fb5c176c17c765a3492cd2f0321b0dab712f350' 2025-07-17T06:33:49.3046560Z Submodule path 'third_party/gloo': checked out 'c7b7b022c124d9643957d9bd55f57ac59fce8fa2' 2025-07-17T06:33:49.3412900Z Submodule path 'third_party/googletest': checked out '52eb8108c5bdec04579160ae17225d66034bd723' 2025-07-17T06:33:49.3622680Z Submodule path 'third_party/ideep': checked out '719d8e6cd7f7a0e01b155657526d693acf97c2b3' 2025-07-17T06:33:49.6691100Z Submodule path 'third_party/ideep/mkl-dnn': checked out '8d263e693366ef8db40acc569cc7d8edf644556d' 2025-07-17T06:33:49.6943920Z Submodule path 'third_party/ittapi': checked out 'dec1d23ca65ab069d225dfe40dea14f455170959' 2025-07-17T06:33:49.7335190Z Submodule path 'third_party/kineto': checked out '5e7501833f1021ce6f618572d3baf657b6319658' 2025-07-17T06:33:49.7897650Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog': checked out '7d04a0053a845370ae06ce317a22a48e9edcc74e' 2025-07-17T06:33:49.8876750Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM': checked out 'ffde4e54bc7249a6039a5e6b45b395141e1217f9' 2025-07-17T06:33:49.9473570Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr': checked out '871ed52d350214a034f6ef8a3b8f51c5ce1bd400' 2025-07-17T06:33:50.0322150Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt': checked out 'cd4af11efc9c622896a3e4cb599fa28668ca3d05' 2025-07-17T06:33:50.0645390Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags': checked out 'e171aa2d15ed9eb17054558e0b3a6a413bb01067' 2025-07-17T06:33:50.0939130Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc': checked out '8411df715cf522606e3b1aca386ddfc0b63d34b4' 2025-07-17T06:33:50.1369890Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog': checked out 'b33e3bad4c46c8a6345525fd822af355e5ef9446' 2025-07-17T06:33:50.2106040Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest': checked out '58d77fa8070e8cec2dc1ed015d66b454c8d78850' 2025-07-17T06:33:50.3639730Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/json': checked out '4f8fba14066156b73f1189a2b8bd568bde5284c5' 2025-07-17T06:33:50.3967080Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs': checked out 'f68a2fa8ea36c783bdd760371411fcb495aa3150' 2025-07-17T06:33:50.4763450Z Submodule path 'third_party/kineto/libkineto/third_party/fmt': checked out '0041a40c1350ba702d475b9c4ad62da77caea164' 2025-07-17T06:33:50.5519640Z Submodule path 'third_party/kineto/libkineto/third_party/googletest': checked out '7aca84427f224eeed3144123d5230d5871e93347' 2025-07-17T06:33:50.6030550Z Submodule path 'third_party/kleidiai': checked out 'cca02c2f69dd18e1f12647c1c0bdc8cf90e680c7' 2025-07-17T06:33:50.6841040Z Submodule path 'third_party/mimalloc': checked out 'fbd8b99c2b828428947d70fdc046bb55609be93e' 2025-07-17T06:33:50.8052470Z Submodule path 'third_party/nlohmann': checked out '55f93686c01528224f448c19128836e7df245f72' 2025-07-17T06:33:50.8862470Z Submodule path 'third_party/onnx': checked out 'e709452ef2bbc1d113faf678c24e6d3467696e83' 2025-07-17T06:33:50.9788090Z Submodule path 'third_party/onnx/third_party/pybind11': checked out 'a2e59f0e7065404b44dfe92a28aca47ba1378dc4' 2025-07-17T06:33:51.0814720Z Submodule path 'third_party/opentelemetry-cpp': checked out 'a799f4aed9c94b765dcdaabaeab7d5e7e2310878' 2025-07-17T06:33:51.1498040Z Submodule path 'third_party/opentelemetry-cpp/third_party/benchmark': checked out 'd572f4777349d43653b21d6c2fc63020ab326db2' 2025-07-17T06:33:51.2212920Z Submodule path 'third_party/opentelemetry-cpp/third_party/googletest': checked out 'b796f7d44681514f58a683a3a71ff17c94edb0c1' 2025-07-17T06:33:51.2664670Z Submodule path 'third_party/opentelemetry-cpp/third_party/ms-gsl': checked out '6f4529395c5b7c2d661812257cd6780c67e54afa' 2025-07-17T06:33:51.3909110Z Submodule path 'third_party/opentelemetry-cpp/third_party/nlohmann-json': checked out 'bc889afb4c5bf1c0d8ee29ef35eaaf4c8bef8a5d' 2025-07-17T06:33:51.4317330Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto': checked out '4ca4f0335c63cda7ab31ea7ed70d6553aee14dce' 2025-07-17T06:33:51.4590560Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentracing-cpp': checked out '06b57f48ded1fa3bdd3d4346f6ef29e40e08eaf5' 2025-07-17T06:33:51.5111710Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp': checked out 'c9ffcdda9086ffd9e1283ea7a0276d831f3c8a8d' 2025-07-17T06:33:51.6111990Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb': checked out 'eefb26f82b233268fc98577d265352720d477ba4' 2025-07-17T06:33:51.6853240Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest': checked out 'e2239ee6043f73722e7aa812a459f54a28552929' 2025-07-17T06:33:52.9568600Z Submodule path 'third_party/opentelemetry-cpp/tools/vcpkg': checked out '8eb57355a4ffb410a2e94c07b4dca2dffbee8e50' 2025-07-17T06:33:52.9756770Z Submodule path 'third_party/pocketfft': checked out '0fa0ef591e38c2758e3184c6c23e497b9f732ffa' 2025-07-17T06:33:53.0585000Z Submodule path 'third_party/protobuf': checked out 'd1eca4e4b421cd2997495c4b4e65cea6be4e9b8a' 2025-07-17T06:33:53.1172200Z Submodule path 'third_party/protobuf/third_party/benchmark': checked out '5b7683f49e1e9223cf9927b24f6fd3d6bd82e3f8' 2025-07-17T06:33:53.1959850Z Submodule path 'third_party/protobuf/third_party/googletest': checked out '5ec7f0c4a113e2f18ac2c6cc7df51ad6afc24081' 2025-07-17T06:33:53.2128690Z Submodule path 'third_party/psimd': checked out '072586a71b55b7f8c584153d223e95687148a900' 2025-07-17T06:33:53.2310960Z Submodule path 'third_party/pthreadpool': checked out '4fe0e1e183925bf8cfa6aae24237e724a96479b8' 2025-07-17T06:33:53.2708580Z Submodule path 'third_party/pybind11': checked out 'a2e59f0e7065404b44dfe92a28aca47ba1378dc4' 2025-07-17T06:33:53.2933780Z Submodule path 'third_party/python-peachpy': checked out 'f45429b087dd7d5bc78bb40dc7cf06425c252d67' 2025-07-17T06:33:53.3268140Z Submodule path 'third_party/sleef': checked out '5a1d179df9cf652951b59010a2d2075372d67f68' 2025-07-17T06:33:53.3681490Z Submodule path 'third_party/tensorpipe': checked out '52791a2fd214b2a9dc5759d36725909c1daa7f2e' 2025-07-17T06:33:53.4454320Z Submodule path 'third_party/tensorpipe/third_party/googletest': checked out 'aee0f9d9b5b87796ee8a0ab26b7587ec30e8858e' 2025-07-17T06:33:53.4737940Z Submodule path 'third_party/tensorpipe/third_party/libnop': checked out '910b55815be16109f04f4180e9adee14fb4ce281' 2025-07-17T06:33:53.6005830Z Submodule path 'third_party/tensorpipe/third_party/libuv': checked out '1dff88e5161cba5c59276d2070d2e304e4dcb242' 2025-07-17T06:33:53.6853380Z Submodule path 'third_party/tensorpipe/third_party/pybind11': checked out 'a23996fce38ff6ccfbcdc09f1e63f2c4be5ea2ef' 2025-07-17T06:33:53.7094050Z Submodule path 'third_party/tensorpipe/third_party/pybind11/tools/clang': checked out '6a00cbc4a9b8e68b71caf7f774b3f9c753ae84d5' 2025-07-17T06:33:53.7142720Z [command]/usr/bin/git submodule foreach --recursive git config --local gc.auto 0 2025-07-17T06:33:53.7658580Z Entering 'android/libs/fbjni' 2025-07-17T06:33:53.7749010Z Entering 'third_party/FP16' 2025-07-17T06:33:53.7830240Z Entering 'third_party/FXdiv' 2025-07-17T06:33:53.7910790Z Entering 'third_party/NNPACK' 2025-07-17T06:33:53.7992570Z Entering 'third_party/NVTX' 2025-07-17T06:33:53.8073910Z Entering 'third_party/VulkanMemoryAllocator' 2025-07-17T06:33:53.8157210Z Entering 'third_party/XNNPACK' 2025-07-17T06:33:53.8243900Z Entering 'third_party/aiter' 2025-07-17T06:33:53.8326370Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-07-17T06:33:53.8412010Z Entering 'third_party/benchmark' 2025-07-17T06:33:53.8495120Z Entering 'third_party/composable_kernel' 2025-07-17T06:33:53.8579140Z Entering 'third_party/cpp-httplib' 2025-07-17T06:33:53.8661160Z Entering 'third_party/cpuinfo' 2025-07-17T06:33:53.8742330Z Entering 'third_party/cudnn_frontend' 2025-07-17T06:33:53.8825090Z Entering 'third_party/cutlass' 2025-07-17T06:33:53.8909910Z Entering 'third_party/fbgemm' 2025-07-17T06:33:53.8993980Z Entering 'third_party/fbgemm/external/asmjit' 2025-07-17T06:33:53.9077210Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-07-17T06:33:53.9161480Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-07-17T06:33:53.9244240Z Entering 'third_party/fbgemm/external/cutlass' 2025-07-17T06:33:53.9329140Z Entering 'third_party/fbgemm/external/googletest' 2025-07-17T06:33:53.9414170Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-07-17T06:33:53.9497420Z Entering 'third_party/fbgemm/external/json' 2025-07-17T06:33:53.9579530Z Entering 'third_party/flash-attention' 2025-07-17T06:33:53.9662980Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-07-17T06:33:53.9744420Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-07-17T06:33:53.9832340Z Entering 'third_party/flatbuffers' 2025-07-17T06:33:53.9916170Z Entering 'third_party/fmt' 2025-07-17T06:33:53.9998470Z Entering 'third_party/gemmlowp/gemmlowp' 2025-07-17T06:33:54.0078520Z Entering 'third_party/gloo' 2025-07-17T06:33:54.0161260Z Entering 'third_party/googletest' 2025-07-17T06:33:54.0243520Z Entering 'third_party/ideep' 2025-07-17T06:33:54.0324030Z Entering 'third_party/ideep/mkl-dnn' 2025-07-17T06:33:54.0406600Z Entering 'third_party/ittapi' 2025-07-17T06:33:54.0487610Z Entering 'third_party/kineto' 2025-07-17T06:33:54.0566780Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-07-17T06:33:54.0646070Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-07-17T06:33:54.0726610Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-07-17T06:33:54.0807010Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-07-17T06:33:54.0887440Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-07-17T06:33:54.0967190Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-07-17T06:33:54.1049090Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-07-17T06:33:54.1130930Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-07-17T06:33:54.1210520Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-07-17T06:33:54.1291140Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-07-17T06:33:54.1372810Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-07-17T06:33:54.1453540Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-07-17T06:33:54.1536350Z Entering 'third_party/kleidiai' 2025-07-17T06:33:54.1617770Z Entering 'third_party/mimalloc' 2025-07-17T06:33:54.1698490Z Entering 'third_party/nlohmann' 2025-07-17T06:33:54.1780030Z Entering 'third_party/onnx' 2025-07-17T06:33:54.1865900Z Entering 'third_party/onnx/third_party/pybind11' 2025-07-17T06:33:54.1950760Z Entering 'third_party/opentelemetry-cpp' 2025-07-17T06:33:54.2031680Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-07-17T06:33:54.2111970Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-07-17T06:33:54.2191570Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-07-17T06:33:54.2271710Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-07-17T06:33:54.2352480Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-07-17T06:33:54.2433650Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-07-17T06:33:54.2514230Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-07-17T06:33:54.2592940Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-07-17T06:33:54.2674480Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-07-17T06:33:54.2757630Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-07-17T06:33:54.2847090Z Entering 'third_party/pocketfft' 2025-07-17T06:33:54.2929870Z Entering 'third_party/protobuf' 2025-07-17T06:33:54.3009510Z Entering 'third_party/protobuf/third_party/benchmark' 2025-07-17T06:33:54.3089870Z Entering 'third_party/protobuf/third_party/googletest' 2025-07-17T06:33:54.3170710Z Entering 'third_party/psimd' 2025-07-17T06:33:54.3251490Z Entering 'third_party/pthreadpool' 2025-07-17T06:33:54.3333360Z Entering 'third_party/pybind11' 2025-07-17T06:33:54.3414700Z Entering 'third_party/python-peachpy' 2025-07-17T06:33:54.3497300Z Entering 'third_party/sleef' 2025-07-17T06:33:54.3580490Z Entering 'third_party/tensorpipe' 2025-07-17T06:33:54.3663200Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-07-17T06:33:54.3747560Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-07-17T06:33:54.3828420Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-07-17T06:33:54.3907570Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-07-17T06:33:54.3987300Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-07-17T06:33:54.4077690Z ##[endgroup] 2025-07-17T06:33:54.4077950Z ##[group]Persisting credentials for submodules 2025-07-17T06:33:54.4081310Z [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-07-17T06:33:54.4582700Z Entering 'android/libs/fbjni' 2025-07-17T06:33:54.4653650Z url.https://github.com/.insteadof 2025-07-17T06:33:54.4653880Z url.https://github.com/.insteadof 2025-07-17T06:33:54.4718550Z Entering 'third_party/FP16' 2025-07-17T06:33:54.4786380Z url.https://github.com/.insteadof 2025-07-17T06:33:54.4786600Z url.https://github.com/.insteadof 2025-07-17T06:33:54.4853280Z Entering 'third_party/FXdiv' 2025-07-17T06:33:54.4919070Z url.https://github.com/.insteadof 2025-07-17T06:33:54.4919320Z url.https://github.com/.insteadof 2025-07-17T06:33:54.4987920Z Entering 'third_party/NNPACK' 2025-07-17T06:33:54.5054060Z url.https://github.com/.insteadof 2025-07-17T06:33:54.5055080Z url.https://github.com/.insteadof 2025-07-17T06:33:54.5122310Z Entering 'third_party/NVTX' 2025-07-17T06:33:54.5189680Z url.https://github.com/.insteadof 2025-07-17T06:33:54.5189910Z url.https://github.com/.insteadof 2025-07-17T06:33:54.5254820Z Entering 'third_party/VulkanMemoryAllocator' 2025-07-17T06:33:54.5320610Z url.https://github.com/.insteadof 2025-07-17T06:33:54.5320840Z url.https://github.com/.insteadof 2025-07-17T06:33:54.5386340Z Entering 'third_party/XNNPACK' 2025-07-17T06:33:54.5451780Z url.https://github.com/.insteadof 2025-07-17T06:33:54.5451990Z url.https://github.com/.insteadof 2025-07-17T06:33:54.5524190Z Entering 'third_party/aiter' 2025-07-17T06:33:54.5592940Z url.https://github.com/.insteadof 2025-07-17T06:33:54.5593490Z url.https://github.com/.insteadof 2025-07-17T06:33:54.5658910Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-07-17T06:33:54.5724280Z url.https://github.com/.insteadof 2025-07-17T06:33:54.5724510Z url.https://github.com/.insteadof 2025-07-17T06:33:54.5794490Z Entering 'third_party/benchmark' 2025-07-17T06:33:54.5863410Z url.https://github.com/.insteadof 2025-07-17T06:33:54.5863690Z url.https://github.com/.insteadof 2025-07-17T06:33:54.5929320Z Entering 'third_party/composable_kernel' 2025-07-17T06:33:54.5997290Z url.https://github.com/.insteadof 2025-07-17T06:33:54.5997520Z url.https://github.com/.insteadof 2025-07-17T06:33:54.6065140Z Entering 'third_party/cpp-httplib' 2025-07-17T06:33:54.6133890Z url.https://github.com/.insteadof 2025-07-17T06:33:54.6134130Z url.https://github.com/.insteadof 2025-07-17T06:33:54.6199340Z Entering 'third_party/cpuinfo' 2025-07-17T06:33:54.6265220Z url.https://github.com/.insteadof 2025-07-17T06:33:54.6265450Z url.https://github.com/.insteadof 2025-07-17T06:33:54.6333280Z Entering 'third_party/cudnn_frontend' 2025-07-17T06:33:54.6401840Z url.https://github.com/.insteadof 2025-07-17T06:33:54.6402060Z url.https://github.com/.insteadof 2025-07-17T06:33:54.6469490Z Entering 'third_party/cutlass' 2025-07-17T06:33:54.6536080Z url.https://github.com/.insteadof 2025-07-17T06:33:54.6536300Z url.https://github.com/.insteadof 2025-07-17T06:33:54.6606220Z Entering 'third_party/fbgemm' 2025-07-17T06:33:54.6675060Z url.https://github.com/.insteadof 2025-07-17T06:33:54.6675280Z url.https://github.com/.insteadof 2025-07-17T06:33:54.6741250Z Entering 'third_party/fbgemm/external/asmjit' 2025-07-17T06:33:54.6809010Z url.https://github.com/.insteadof 2025-07-17T06:33:54.6809230Z url.https://github.com/.insteadof 2025-07-17T06:33:54.6876670Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-07-17T06:33:54.6944780Z url.https://github.com/.insteadof 2025-07-17T06:33:54.6945010Z url.https://github.com/.insteadof 2025-07-17T06:33:54.7014010Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-07-17T06:33:54.7080080Z url.https://github.com/.insteadof 2025-07-17T06:33:54.7080310Z url.https://github.com/.insteadof 2025-07-17T06:33:54.7147780Z Entering 'third_party/fbgemm/external/cutlass' 2025-07-17T06:33:54.7214430Z url.https://github.com/.insteadof 2025-07-17T06:33:54.7284970Z url.https://github.com/.insteadof 2025-07-17T06:33:54.7285210Z Entering 'third_party/fbgemm/external/googletest' 2025-07-17T06:33:54.7353470Z url.https://github.com/.insteadof 2025-07-17T06:33:54.7353700Z url.https://github.com/.insteadof 2025-07-17T06:33:54.7418660Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-07-17T06:33:54.7485570Z url.https://github.com/.insteadof 2025-07-17T06:33:54.7485790Z url.https://github.com/.insteadof 2025-07-17T06:33:54.7551270Z Entering 'third_party/fbgemm/external/json' 2025-07-17T06:33:54.7617250Z url.https://github.com/.insteadof 2025-07-17T06:33:54.7617550Z url.https://github.com/.insteadof 2025-07-17T06:33:54.7686830Z Entering 'third_party/flash-attention' 2025-07-17T06:33:54.7753230Z url.https://github.com/.insteadof 2025-07-17T06:33:54.7753470Z url.https://github.com/.insteadof 2025-07-17T06:33:54.7817580Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-07-17T06:33:54.7883050Z url.https://github.com/.insteadof 2025-07-17T06:33:54.7883280Z url.https://github.com/.insteadof 2025-07-17T06:33:54.7951850Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-07-17T06:33:54.8019980Z url.https://github.com/.insteadof 2025-07-17T06:33:54.8020210Z url.https://github.com/.insteadof 2025-07-17T06:33:54.8091740Z Entering 'third_party/flatbuffers' 2025-07-17T06:33:54.8160660Z url.https://github.com/.insteadof 2025-07-17T06:33:54.8160880Z url.https://github.com/.insteadof 2025-07-17T06:33:54.8228230Z Entering 'third_party/fmt' 2025-07-17T06:33:54.8295900Z url.https://github.com/.insteadof 2025-07-17T06:33:54.8296120Z url.https://github.com/.insteadof 2025-07-17T06:33:54.8362770Z Entering 'third_party/gemmlowp/gemmlowp' 2025-07-17T06:33:54.8430110Z url.https://github.com/.insteadof 2025-07-17T06:33:54.8430540Z url.https://github.com/.insteadof 2025-07-17T06:33:54.8497140Z Entering 'third_party/gloo' 2025-07-17T06:33:54.8562660Z url.https://github.com/.insteadof 2025-07-17T06:33:54.8562900Z url.https://github.com/.insteadof 2025-07-17T06:33:54.8628300Z Entering 'third_party/googletest' 2025-07-17T06:33:54.8695140Z url.https://github.com/.insteadof 2025-07-17T06:33:54.8695380Z url.https://github.com/.insteadof 2025-07-17T06:33:54.8762620Z Entering 'third_party/ideep' 2025-07-17T06:33:54.8830190Z url.https://github.com/.insteadof 2025-07-17T06:33:54.8830420Z url.https://github.com/.insteadof 2025-07-17T06:33:54.8893910Z Entering 'third_party/ideep/mkl-dnn' 2025-07-17T06:33:54.8960190Z url.https://github.com/.insteadof 2025-07-17T06:33:54.8960450Z url.https://github.com/.insteadof 2025-07-17T06:33:54.9030330Z Entering 'third_party/ittapi' 2025-07-17T06:33:54.9096790Z url.https://github.com/.insteadof 2025-07-17T06:33:54.9097020Z url.https://github.com/.insteadof 2025-07-17T06:33:54.9164660Z Entering 'third_party/kineto' 2025-07-17T06:33:54.9228980Z url.https://github.com/.insteadof 2025-07-17T06:33:54.9229210Z url.https://github.com/.insteadof 2025-07-17T06:33:54.9294420Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-07-17T06:33:54.9360550Z url.https://github.com/.insteadof 2025-07-17T06:33:54.9360830Z url.https://github.com/.insteadof 2025-07-17T06:33:54.9426080Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-07-17T06:33:54.9493810Z url.https://github.com/.insteadof 2025-07-17T06:33:54.9494030Z url.https://github.com/.insteadof 2025-07-17T06:33:54.9561740Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-07-17T06:33:54.9628870Z url.https://github.com/.insteadof 2025-07-17T06:33:54.9629100Z url.https://github.com/.insteadof 2025-07-17T06:33:54.9695850Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-07-17T06:33:54.9761710Z url.https://github.com/.insteadof 2025-07-17T06:33:54.9761950Z url.https://github.com/.insteadof 2025-07-17T06:33:54.9829470Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-07-17T06:33:54.9893320Z url.https://github.com/.insteadof 2025-07-17T06:33:54.9893540Z url.https://github.com/.insteadof 2025-07-17T06:33:54.9958830Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-07-17T06:33:55.0027810Z url.https://github.com/.insteadof 2025-07-17T06:33:55.0028090Z url.https://github.com/.insteadof 2025-07-17T06:33:55.0097050Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-07-17T06:33:55.0165190Z url.https://github.com/.insteadof 2025-07-17T06:33:55.0165410Z url.https://github.com/.insteadof 2025-07-17T06:33:55.0234730Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-07-17T06:33:55.0303330Z url.https://github.com/.insteadof 2025-07-17T06:33:55.0303550Z url.https://github.com/.insteadof 2025-07-17T06:33:55.0369160Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-07-17T06:33:55.0433510Z url.https://github.com/.insteadof 2025-07-17T06:33:55.0433740Z url.https://github.com/.insteadof 2025-07-17T06:33:55.0497990Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-07-17T06:33:55.0562630Z url.https://github.com/.insteadof 2025-07-17T06:33:55.0563510Z url.https://github.com/.insteadof 2025-07-17T06:33:55.0630680Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-07-17T06:33:55.0695390Z url.https://github.com/.insteadof 2025-07-17T06:33:55.0695610Z url.https://github.com/.insteadof 2025-07-17T06:33:55.0760410Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-07-17T06:33:55.0824250Z url.https://github.com/.insteadof 2025-07-17T06:33:55.0824470Z url.https://github.com/.insteadof 2025-07-17T06:33:55.0891030Z Entering 'third_party/kleidiai' 2025-07-17T06:33:55.0956150Z url.https://github.com/.insteadof 2025-07-17T06:33:55.0957300Z url.https://github.com/.insteadof 2025-07-17T06:33:55.1020040Z Entering 'third_party/mimalloc' 2025-07-17T06:33:55.1085260Z url.https://github.com/.insteadof 2025-07-17T06:33:55.1085490Z url.https://github.com/.insteadof 2025-07-17T06:33:55.1150490Z Entering 'third_party/nlohmann' 2025-07-17T06:33:55.1216070Z url.https://github.com/.insteadof 2025-07-17T06:33:55.1216310Z url.https://github.com/.insteadof 2025-07-17T06:33:55.1280890Z Entering 'third_party/onnx' 2025-07-17T06:33:55.1346380Z url.https://github.com/.insteadof 2025-07-17T06:33:55.1347280Z url.https://github.com/.insteadof 2025-07-17T06:33:55.1418090Z Entering 'third_party/onnx/third_party/pybind11' 2025-07-17T06:33:55.1486800Z url.https://github.com/.insteadof 2025-07-17T06:33:55.1487040Z url.https://github.com/.insteadof 2025-07-17T06:33:55.1554800Z Entering 'third_party/opentelemetry-cpp' 2025-07-17T06:33:55.1623400Z url.https://github.com/.insteadof 2025-07-17T06:33:55.1623640Z url.https://github.com/.insteadof 2025-07-17T06:33:55.1689290Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-07-17T06:33:55.1756060Z url.https://github.com/.insteadof 2025-07-17T06:33:55.1756560Z url.https://github.com/.insteadof 2025-07-17T06:33:55.1822370Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-07-17T06:33:55.1888120Z url.https://github.com/.insteadof 2025-07-17T06:33:55.1888340Z url.https://github.com/.insteadof 2025-07-17T06:33:55.1955220Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-07-17T06:33:55.2021620Z url.https://github.com/.insteadof 2025-07-17T06:33:55.2021840Z url.https://github.com/.insteadof 2025-07-17T06:33:55.2086190Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-07-17T06:33:55.2152750Z url.https://github.com/.insteadof 2025-07-17T06:33:55.2152980Z url.https://github.com/.insteadof 2025-07-17T06:33:55.2218500Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-07-17T06:33:55.2285820Z url.https://github.com/.insteadof 2025-07-17T06:33:55.2286060Z url.https://github.com/.insteadof 2025-07-17T06:33:55.2351770Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-07-17T06:33:55.2415480Z url.https://github.com/.insteadof 2025-07-17T06:33:55.2415710Z url.https://github.com/.insteadof 2025-07-17T06:33:55.2480630Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-07-17T06:33:55.2546450Z url.https://github.com/.insteadof 2025-07-17T06:33:55.2546690Z url.https://github.com/.insteadof 2025-07-17T06:33:55.2610450Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-07-17T06:33:55.2675650Z url.https://github.com/.insteadof 2025-07-17T06:33:55.2675870Z url.https://github.com/.insteadof 2025-07-17T06:33:55.2742770Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-07-17T06:33:55.2809340Z url.https://github.com/.insteadof 2025-07-17T06:33:55.2809570Z url.https://github.com/.insteadof 2025-07-17T06:33:55.2877040Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-07-17T06:33:55.2942580Z url.https://github.com/.insteadof 2025-07-17T06:33:55.2943080Z url.https://github.com/.insteadof 2025-07-17T06:33:55.3018180Z Entering 'third_party/pocketfft' 2025-07-17T06:33:55.3085950Z url.https://github.com/.insteadof 2025-07-17T06:33:55.3086470Z url.https://github.com/.insteadof 2025-07-17T06:33:55.3152100Z Entering 'third_party/protobuf' 2025-07-17T06:33:55.3216540Z url.https://github.com/.insteadof 2025-07-17T06:33:55.3216770Z url.https://github.com/.insteadof 2025-07-17T06:33:55.3282960Z Entering 'third_party/protobuf/third_party/benchmark' 2025-07-17T06:33:55.3349950Z url.https://github.com/.insteadof 2025-07-17T06:33:55.3350170Z url.https://github.com/.insteadof 2025-07-17T06:33:55.3416760Z Entering 'third_party/protobuf/third_party/googletest' 2025-07-17T06:33:55.3482860Z url.https://github.com/.insteadof 2025-07-17T06:33:55.3483080Z url.https://github.com/.insteadof 2025-07-17T06:33:55.3549830Z Entering 'third_party/psimd' 2025-07-17T06:33:55.3616110Z url.https://github.com/.insteadof 2025-07-17T06:33:55.3616330Z url.https://github.com/.insteadof 2025-07-17T06:33:55.3683140Z Entering 'third_party/pthreadpool' 2025-07-17T06:33:55.3750050Z url.https://github.com/.insteadof 2025-07-17T06:33:55.3750380Z url.https://github.com/.insteadof 2025-07-17T06:33:55.3819170Z Entering 'third_party/pybind11' 2025-07-17T06:33:55.3883680Z url.https://github.com/.insteadof 2025-07-17T06:33:55.3883900Z url.https://github.com/.insteadof 2025-07-17T06:33:55.3950610Z Entering 'third_party/python-peachpy' 2025-07-17T06:33:55.4016940Z url.https://github.com/.insteadof 2025-07-17T06:33:55.4017150Z url.https://github.com/.insteadof 2025-07-17T06:33:55.4082460Z Entering 'third_party/sleef' 2025-07-17T06:33:55.4148910Z url.https://github.com/.insteadof 2025-07-17T06:33:55.4149140Z url.https://github.com/.insteadof 2025-07-17T06:33:55.4217580Z Entering 'third_party/tensorpipe' 2025-07-17T06:33:55.4285080Z url.https://github.com/.insteadof 2025-07-17T06:33:55.4285420Z url.https://github.com/.insteadof 2025-07-17T06:33:55.4350010Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-07-17T06:33:55.4415300Z url.https://github.com/.insteadof 2025-07-17T06:33:55.4415530Z url.https://github.com/.insteadof 2025-07-17T06:33:55.4482240Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-07-17T06:33:55.4546800Z url.https://github.com/.insteadof 2025-07-17T06:33:55.4547020Z url.https://github.com/.insteadof 2025-07-17T06:33:55.4611720Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-07-17T06:33:55.4675920Z url.https://github.com/.insteadof 2025-07-17T06:33:55.4676140Z url.https://github.com/.insteadof 2025-07-17T06:33:55.4740730Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-07-17T06:33:55.4805620Z url.https://github.com/.insteadof 2025-07-17T06:33:55.4805840Z url.https://github.com/.insteadof 2025-07-17T06:33:55.4868440Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-07-17T06:33:55.4934450Z url.https://github.com/.insteadof 2025-07-17T06:33:55.4934690Z url.https://github.com/.insteadof 2025-07-17T06:33:55.5016450Z [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-07-17T06:33:55.5517790Z Entering 'android/libs/fbjni' 2025-07-17T06:33:55.5618520Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/android/libs/fbjni/config remote.origin.url 2025-07-17T06:33:55.5654680Z Entering 'third_party/FP16' 2025-07-17T06:33:55.5751430Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FP16/config remote.origin.url 2025-07-17T06:33:55.5785510Z Entering 'third_party/FXdiv' 2025-07-17T06:33:55.5882420Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FXdiv/config remote.origin.url 2025-07-17T06:33:55.5916410Z Entering 'third_party/NNPACK' 2025-07-17T06:33:55.6015330Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK/config remote.origin.url 2025-07-17T06:33:55.6049120Z Entering 'third_party/NVTX' 2025-07-17T06:33:55.6147680Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/NVTX/config remote.origin.url 2025-07-17T06:33:55.6182360Z Entering 'third_party/VulkanMemoryAllocator' 2025-07-17T06:33:55.6278110Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/VulkanMemoryAllocator/config remote.origin.url 2025-07-17T06:33:55.6311950Z Entering 'third_party/XNNPACK' 2025-07-17T06:33:55.6407750Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/XNNPACK/config remote.origin.url 2025-07-17T06:33:55.6447500Z Entering 'third_party/aiter' 2025-07-17T06:33:55.6546320Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/aiter/config remote.origin.url 2025-07-17T06:33:55.6580420Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-07-17T06:33:55.6679010Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/aiter/modules/3rdparty/composable_kernel/config remote.origin.url 2025-07-17T06:33:55.6716360Z Entering 'third_party/benchmark' 2025-07-17T06:33:55.6815260Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/benchmark/config remote.origin.url 2025-07-17T06:33:55.6849810Z Entering 'third_party/composable_kernel' 2025-07-17T06:33:55.6944900Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/composable_kernel/config remote.origin.url 2025-07-17T06:33:55.6981380Z Entering 'third_party/cpp-httplib' 2025-07-17T06:33:55.7078790Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/cpp-httplib/config remote.origin.url 2025-07-17T06:33:55.7114940Z Entering 'third_party/cpuinfo' 2025-07-17T06:33:55.7211670Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/cpuinfo/config remote.origin.url 2025-07-17T06:33:55.7246400Z Entering 'third_party/cudnn_frontend' 2025-07-17T06:33:55.7345910Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/cudnn_frontend/config remote.origin.url 2025-07-17T06:33:55.7380250Z Entering 'third_party/cutlass' 2025-07-17T06:33:55.7479680Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/cutlass/config remote.origin.url 2025-07-17T06:33:55.7518010Z Entering 'third_party/fbgemm' 2025-07-17T06:33:55.7618350Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/config remote.origin.url 2025-07-17T06:33:55.7652730Z Entering 'third_party/fbgemm/external/asmjit' 2025-07-17T06:33:55.7749390Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/asmjit/config remote.origin.url 2025-07-17T06:33:55.7783680Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-07-17T06:33:55.7880850Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/composable_kernel/config remote.origin.url 2025-07-17T06:33:55.7916250Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-07-17T06:33:55.8014040Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/cpuinfo/config remote.origin.url 2025-07-17T06:33:55.8048650Z Entering 'third_party/fbgemm/external/cutlass' 2025-07-17T06:33:55.8147010Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/cutlass/config remote.origin.url 2025-07-17T06:33:55.8183880Z Entering 'third_party/fbgemm/external/googletest' 2025-07-17T06:33:55.8279810Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/googletest/config remote.origin.url 2025-07-17T06:33:55.8314540Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-07-17T06:33:55.8409960Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/hipify_torch/config remote.origin.url 2025-07-17T06:33:55.8444360Z Entering 'third_party/fbgemm/external/json' 2025-07-17T06:33:55.8541680Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/json/config remote.origin.url 2025-07-17T06:33:55.8578900Z Entering 'third_party/flash-attention' 2025-07-17T06:33:55.8679600Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/config remote.origin.url 2025-07-17T06:33:55.8713150Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-07-17T06:33:55.8811860Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/modules/csrc/composable_kernel/config remote.origin.url 2025-07-17T06:33:55.8848220Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-07-17T06:33:55.8944770Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/modules/csrc/cutlass/config remote.origin.url 2025-07-17T06:33:55.8984070Z Entering 'third_party/flatbuffers' 2025-07-17T06:33:55.9082580Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/flatbuffers/config remote.origin.url 2025-07-17T06:33:55.9119360Z Entering 'third_party/fmt' 2025-07-17T06:33:55.9216340Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fmt/config remote.origin.url 2025-07-17T06:33:55.9251670Z Entering 'third_party/gemmlowp/gemmlowp' 2025-07-17T06:33:55.9350060Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/gemmlowp/gemmlowp/config remote.origin.url 2025-07-17T06:33:55.9385900Z Entering 'third_party/gloo' 2025-07-17T06:33:55.9484280Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/gloo/config remote.origin.url 2025-07-17T06:33:55.9519020Z Entering 'third_party/googletest' 2025-07-17T06:33:55.9615540Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/googletest/config remote.origin.url 2025-07-17T06:33:55.9650870Z Entering 'third_party/ideep' 2025-07-17T06:33:55.9746360Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/config remote.origin.url 2025-07-17T06:33:55.9779830Z Entering 'third_party/ideep/mkl-dnn' 2025-07-17T06:33:55.9876700Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/modules/mkl-dnn/config remote.origin.url 2025-07-17T06:33:55.9915570Z Entering 'third_party/ittapi' 2025-07-17T06:33:56.0015740Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/ittapi/config remote.origin.url 2025-07-17T06:33:56.0050170Z Entering 'third_party/kineto' 2025-07-17T06:33:56.0146350Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/config remote.origin.url 2025-07-17T06:33:56.0179430Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-07-17T06:33:56.0276930Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/config remote.origin.url 2025-07-17T06:33:56.0309820Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-07-17T06:33:56.0410010Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/DCGM/config remote.origin.url 2025-07-17T06:33:56.0445190Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-07-17T06:33:56.0543590Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/cpr/config remote.origin.url 2025-07-17T06:33:56.0578500Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-07-17T06:33:56.0678200Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/fmt/config remote.origin.url 2025-07-17T06:33:56.0711780Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-07-17T06:33:56.0808890Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/gflags/config remote.origin.url 2025-07-17T06:33:56.0841580Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-07-17T06:33:56.0939620Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/gflags/modules/doc/config remote.origin.url 2025-07-17T06:33:56.0976170Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-07-17T06:33:56.1076230Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/glog/config remote.origin.url 2025-07-17T06:33:56.1110660Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-07-17T06:33:56.1207890Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/googletest/config remote.origin.url 2025-07-17T06:33:56.1242760Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-07-17T06:33:56.1341470Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/json/config remote.origin.url 2025-07-17T06:33:56.1376570Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-07-17T06:33:56.1476420Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/pfs/config remote.origin.url 2025-07-17T06:33:56.1513130Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-07-17T06:33:56.1612410Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/fmt/config remote.origin.url 2025-07-17T06:33:56.1647230Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-07-17T06:33:56.1744770Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/googletest/config remote.origin.url 2025-07-17T06:33:56.1781950Z Entering 'third_party/kleidiai' 2025-07-17T06:33:56.1880390Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kleidiai/config remote.origin.url 2025-07-17T06:33:56.1915800Z Entering 'third_party/mimalloc' 2025-07-17T06:33:56.2014150Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/mimalloc/config remote.origin.url 2025-07-17T06:33:56.2048360Z Entering 'third_party/nlohmann' 2025-07-17T06:33:56.2146150Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/nlohmann/config remote.origin.url 2025-07-17T06:33:56.2181210Z Entering 'third_party/onnx' 2025-07-17T06:33:56.2279560Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/config remote.origin.url 2025-07-17T06:33:56.2319310Z Entering 'third_party/onnx/third_party/pybind11' 2025-07-17T06:33:56.2417280Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/modules/third_party/pybind11/config remote.origin.url 2025-07-17T06:33:56.2454140Z Entering 'third_party/opentelemetry-cpp' 2025-07-17T06:33:56.2553350Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/config remote.origin.url 2025-07-17T06:33:56.2587150Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-07-17T06:33:56.2685020Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/benchmark/config remote.origin.url 2025-07-17T06:33:56.2718690Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-07-17T06:33:56.2816470Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/googletest/config remote.origin.url 2025-07-17T06:33:56.2851030Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-07-17T06:33:56.2948020Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/ms-gsl/config remote.origin.url 2025-07-17T06:33:56.2982380Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-07-17T06:33:56.3079460Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/nlohmann-json/config remote.origin.url 2025-07-17T06:33:56.3113790Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-07-17T06:33:56.3210710Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/opentelemetry-proto/config remote.origin.url 2025-07-17T06:33:56.3244180Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-07-17T06:33:56.3340380Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/opentracing-cpp/config remote.origin.url 2025-07-17T06:33:56.3374280Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-07-17T06:33:56.3470570Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/prometheus-cpp/config remote.origin.url 2025-07-17T06:33:56.3503090Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-07-17T06:33:56.3600590Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/prometheus-cpp/modules/civetweb/config remote.origin.url 2025-07-17T06:33:56.3636260Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-07-17T06:33:56.3735550Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/prometheus-cpp/modules/googletest/config remote.origin.url 2025-07-17T06:33:56.3772170Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-07-17T06:33:56.3871670Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/tools/vcpkg/config remote.origin.url 2025-07-17T06:33:56.3915510Z Entering 'third_party/pocketfft' 2025-07-17T06:33:56.4016150Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/pocketfft/config remote.origin.url 2025-07-17T06:33:56.4050170Z Entering 'third_party/protobuf' 2025-07-17T06:33:56.4148440Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/config remote.origin.url 2025-07-17T06:33:56.4182630Z Entering 'third_party/protobuf/third_party/benchmark' 2025-07-17T06:33:56.4279220Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/benchmark/config remote.origin.url 2025-07-17T06:33:56.4313310Z Entering 'third_party/protobuf/third_party/googletest' 2025-07-17T06:33:56.4409500Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/googletest/config remote.origin.url 2025-07-17T06:33:56.4446270Z Entering 'third_party/psimd' 2025-07-17T06:33:56.4544890Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/psimd/config remote.origin.url 2025-07-17T06:33:56.4580380Z Entering 'third_party/pthreadpool' 2025-07-17T06:33:56.4678250Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/pthreadpool/config remote.origin.url 2025-07-17T06:33:56.4712320Z Entering 'third_party/pybind11' 2025-07-17T06:33:56.4809850Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/pybind11/config remote.origin.url 2025-07-17T06:33:56.4844670Z Entering 'third_party/python-peachpy' 2025-07-17T06:33:56.4941930Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/python-peachpy/config remote.origin.url 2025-07-17T06:33:56.4977380Z Entering 'third_party/sleef' 2025-07-17T06:33:56.5073130Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/sleef/config remote.origin.url 2025-07-17T06:33:56.5110230Z Entering 'third_party/tensorpipe' 2025-07-17T06:33:56.5207590Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/config remote.origin.url 2025-07-17T06:33:56.5240790Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-07-17T06:33:56.5338990Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/googletest/config remote.origin.url 2025-07-17T06:33:56.5373240Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-07-17T06:33:56.5471440Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libnop/config remote.origin.url 2025-07-17T06:33:56.5505880Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-07-17T06:33:56.5603930Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libuv/config remote.origin.url 2025-07-17T06:33:56.5637950Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-07-17T06:33:56.5735090Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/pybind11/config remote.origin.url 2025-07-17T06:33:56.5766870Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-07-17T06:33:56.5863860Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/pybind11/modules/tools/clang/config remote.origin.url 2025-07-17T06:33:56.6058630Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'git@github.com:' 2025-07-17T06:33:56.6566170Z Entering 'android/libs/fbjni' 2025-07-17T06:33:56.6654540Z Entering 'third_party/FP16' 2025-07-17T06:33:56.6739370Z Entering 'third_party/FXdiv' 2025-07-17T06:33:56.6822930Z Entering 'third_party/NNPACK' 2025-07-17T06:33:56.6903280Z Entering 'third_party/NVTX' 2025-07-17T06:33:56.6987470Z Entering 'third_party/VulkanMemoryAllocator' 2025-07-17T06:33:56.7070270Z Entering 'third_party/XNNPACK' 2025-07-17T06:33:56.7158160Z Entering 'third_party/aiter' 2025-07-17T06:33:56.7239540Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-07-17T06:33:56.7325310Z Entering 'third_party/benchmark' 2025-07-17T06:33:56.7408530Z Entering 'third_party/composable_kernel' 2025-07-17T06:33:56.7496540Z Entering 'third_party/cpp-httplib' 2025-07-17T06:33:56.7579670Z Entering 'third_party/cpuinfo' 2025-07-17T06:33:56.7663590Z Entering 'third_party/cudnn_frontend' 2025-07-17T06:33:56.7744820Z Entering 'third_party/cutlass' 2025-07-17T06:33:56.7830570Z Entering 'third_party/fbgemm' 2025-07-17T06:33:56.7910750Z Entering 'third_party/fbgemm/external/asmjit' 2025-07-17T06:33:56.7992680Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-07-17T06:33:56.8075630Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-07-17T06:33:56.8158640Z Entering 'third_party/fbgemm/external/cutlass' 2025-07-17T06:33:56.8242570Z Entering 'third_party/fbgemm/external/googletest' 2025-07-17T06:33:56.8326070Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-07-17T06:33:56.8405190Z Entering 'third_party/fbgemm/external/json' 2025-07-17T06:33:56.8488660Z Entering 'third_party/flash-attention' 2025-07-17T06:33:56.8570000Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-07-17T06:33:56.8654110Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-07-17T06:33:56.8740620Z Entering 'third_party/flatbuffers' 2025-07-17T06:33:56.8826270Z Entering 'third_party/fmt' 2025-07-17T06:33:56.8908600Z Entering 'third_party/gemmlowp/gemmlowp' 2025-07-17T06:33:56.8991130Z Entering 'third_party/gloo' 2025-07-17T06:33:56.9071260Z Entering 'third_party/googletest' 2025-07-17T06:33:56.9153220Z Entering 'third_party/ideep' 2025-07-17T06:33:56.9231510Z Entering 'third_party/ideep/mkl-dnn' 2025-07-17T06:33:56.9317190Z Entering 'third_party/ittapi' 2025-07-17T06:33:56.9401250Z Entering 'third_party/kineto' 2025-07-17T06:33:56.9482390Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-07-17T06:33:56.9561070Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-07-17T06:33:56.9643890Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-07-17T06:33:56.9726500Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-07-17T06:33:56.9809250Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-07-17T06:33:56.9890020Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-07-17T06:33:56.9975420Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-07-17T06:33:57.0057770Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-07-17T06:33:57.0139940Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-07-17T06:33:57.0223910Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-07-17T06:33:57.0308390Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-07-17T06:33:57.0389680Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-07-17T06:33:57.0473700Z Entering 'third_party/kleidiai' 2025-07-17T06:33:57.0557590Z Entering 'third_party/mimalloc' 2025-07-17T06:33:57.0640680Z Entering 'third_party/nlohmann' 2025-07-17T06:33:57.0721600Z Entering 'third_party/onnx' 2025-07-17T06:33:57.0807820Z Entering 'third_party/onnx/third_party/pybind11' 2025-07-17T06:33:57.0892920Z Entering 'third_party/opentelemetry-cpp' 2025-07-17T06:33:57.0975330Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-07-17T06:33:57.1058470Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-07-17T06:33:57.1141950Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-07-17T06:33:57.1222940Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-07-17T06:33:57.1304640Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-07-17T06:33:57.1388080Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-07-17T06:33:57.1470060Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-07-17T06:33:57.1548830Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-07-17T06:33:57.1631450Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-07-17T06:33:57.1715710Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-07-17T06:33:57.1807450Z Entering 'third_party/pocketfft' 2025-07-17T06:33:57.1893190Z Entering 'third_party/protobuf' 2025-07-17T06:33:57.1975920Z Entering 'third_party/protobuf/third_party/benchmark' 2025-07-17T06:33:57.2056350Z Entering 'third_party/protobuf/third_party/googletest' 2025-07-17T06:33:57.2142060Z Entering 'third_party/psimd' 2025-07-17T06:33:57.2223910Z Entering 'third_party/pthreadpool' 2025-07-17T06:33:57.2303860Z Entering 'third_party/pybind11' 2025-07-17T06:33:57.2383830Z Entering 'third_party/python-peachpy' 2025-07-17T06:33:57.2465620Z Entering 'third_party/sleef' 2025-07-17T06:33:57.2546010Z Entering 'third_party/tensorpipe' 2025-07-17T06:33:57.2625110Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-07-17T06:33:57.2707110Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-07-17T06:33:57.2789120Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-07-17T06:33:57.2870040Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-07-17T06:33:57.2950620Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-07-17T06:33:57.3044740Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'org-21003710@github.com:' 2025-07-17T06:33:57.3534670Z Entering 'android/libs/fbjni' 2025-07-17T06:33:57.3620370Z Entering 'third_party/FP16' 2025-07-17T06:33:57.3701710Z Entering 'third_party/FXdiv' 2025-07-17T06:33:57.3782450Z Entering 'third_party/NNPACK' 2025-07-17T06:33:57.3864950Z Entering 'third_party/NVTX' 2025-07-17T06:33:57.3948190Z Entering 'third_party/VulkanMemoryAllocator' 2025-07-17T06:33:57.4031470Z Entering 'third_party/XNNPACK' 2025-07-17T06:33:57.4118330Z Entering 'third_party/aiter' 2025-07-17T06:33:57.4199800Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-07-17T06:33:57.4284480Z Entering 'third_party/benchmark' 2025-07-17T06:33:57.4368310Z Entering 'third_party/composable_kernel' 2025-07-17T06:33:57.4452590Z Entering 'third_party/cpp-httplib' 2025-07-17T06:33:57.4534890Z Entering 'third_party/cpuinfo' 2025-07-17T06:33:57.4616110Z Entering 'third_party/cudnn_frontend' 2025-07-17T06:33:57.4698770Z Entering 'third_party/cutlass' 2025-07-17T06:33:57.4784610Z Entering 'third_party/fbgemm' 2025-07-17T06:33:57.4866960Z Entering 'third_party/fbgemm/external/asmjit' 2025-07-17T06:33:57.4948160Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-07-17T06:33:57.5030620Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-07-17T06:33:57.5112170Z Entering 'third_party/fbgemm/external/cutlass' 2025-07-17T06:33:57.5196630Z Entering 'third_party/fbgemm/external/googletest' 2025-07-17T06:33:57.5278080Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-07-17T06:33:57.5358840Z Entering 'third_party/fbgemm/external/json' 2025-07-17T06:33:57.5441150Z Entering 'third_party/flash-attention' 2025-07-17T06:33:57.5522710Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-07-17T06:33:57.5605790Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-07-17T06:33:57.5692660Z Entering 'third_party/flatbuffers' 2025-07-17T06:33:57.5777210Z Entering 'third_party/fmt' 2025-07-17T06:33:57.5859610Z Entering 'third_party/gemmlowp/gemmlowp' 2025-07-17T06:33:57.5941980Z Entering 'third_party/gloo' 2025-07-17T06:33:57.6023680Z Entering 'third_party/googletest' 2025-07-17T06:33:57.6103680Z Entering 'third_party/ideep' 2025-07-17T06:33:57.6182520Z Entering 'third_party/ideep/mkl-dnn' 2025-07-17T06:33:57.6265640Z Entering 'third_party/ittapi' 2025-07-17T06:33:57.6349730Z Entering 'third_party/kineto' 2025-07-17T06:33:57.6431010Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-07-17T06:33:57.6511550Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-07-17T06:33:57.6593440Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-07-17T06:33:57.6676320Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-07-17T06:33:57.6755880Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-07-17T06:33:57.6835470Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-07-17T06:33:57.6918010Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-07-17T06:33:57.7000090Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-07-17T06:33:57.7079580Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-07-17T06:33:57.7162020Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-07-17T06:33:57.7243830Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-07-17T06:33:57.7326560Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-07-17T06:33:57.7410640Z Entering 'third_party/kleidiai' 2025-07-17T06:33:57.7494940Z Entering 'third_party/mimalloc' 2025-07-17T06:33:57.7575750Z Entering 'third_party/nlohmann' 2025-07-17T06:33:57.7662110Z Entering 'third_party/onnx' 2025-07-17T06:33:57.7751590Z Entering 'third_party/onnx/third_party/pybind11' 2025-07-17T06:33:57.7838400Z Entering 'third_party/opentelemetry-cpp' 2025-07-17T06:33:57.7921320Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-07-17T06:33:57.8003400Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-07-17T06:33:57.8082400Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-07-17T06:33:57.8164860Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-07-17T06:33:57.8246630Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-07-17T06:33:57.8328670Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-07-17T06:33:57.8407740Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-07-17T06:33:57.8486100Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-07-17T06:33:57.8567300Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-07-17T06:33:57.8651220Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-07-17T06:33:57.8741340Z Entering 'third_party/pocketfft' 2025-07-17T06:33:57.8832280Z Entering 'third_party/protobuf' 2025-07-17T06:33:57.8911530Z Entering 'third_party/protobuf/third_party/benchmark' 2025-07-17T06:33:57.8992050Z Entering 'third_party/protobuf/third_party/googletest' 2025-07-17T06:33:57.9074390Z Entering 'third_party/psimd' 2025-07-17T06:33:57.9157680Z Entering 'third_party/pthreadpool' 2025-07-17T06:33:57.9238380Z Entering 'third_party/pybind11' 2025-07-17T06:33:57.9320590Z Entering 'third_party/python-peachpy' 2025-07-17T06:33:57.9403460Z Entering 'third_party/sleef' 2025-07-17T06:33:57.9487430Z Entering 'third_party/tensorpipe' 2025-07-17T06:33:57.9565740Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-07-17T06:33:57.9645550Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-07-17T06:33:57.9724600Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-07-17T06:33:57.9804880Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-07-17T06:33:57.9883340Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-07-17T06:33:57.9975450Z ##[endgroup] 2025-07-17T06:33:58.0054960Z [command]/usr/bin/git log -1 --format=%H 2025-07-17T06:33:58.0114960Z a38f433be2e94a64b095a44ba39879d02d0c2316 2025-07-17T06:33:58.0186810Z ##[group]Run if [ -n "${XCODE_VERSION}" ]; then 2025-07-17T06:33:58.0187050Z if [ -n "${XCODE_VERSION}" ]; then 2025-07-17T06:33:58.0187390Z  echo "DEVELOPER_DIR=/Applications/Xcode_${XCODE_VERSION}.app/Contents/Developer" >> "${GITHUB_ENV}" 2025-07-17T06:33:58.0187700Z fi 2025-07-17T06:33:58.0432570Z shell: /bin/bash -e {0} 2025-07-17T06:33:58.0439100Z env: 2025-07-17T06:33:58.0439230Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-07-17T06:33:58.0439420Z SCCACHE_USE_GHA: false 2025-07-17T06:33:58.0439550Z XCODE_VERSION: 2025-07-17T06:33:58.0439670Z ##[endgroup] 2025-07-17T06:33:58.0612980Z ##[group]Run pytorch/test-infra/.github/actions/setup-python@main 2025-07-17T06:33:58.0613260Z with: 2025-07-17T06:33:58.0613410Z python-version: 3.12.7 2025-07-17T06:33:58.0613650Z pip-requirements-file: .github/requirements/pip-requirements-macOS.txt 2025-07-17T06:33:58.0613910Z env: 2025-07-17T06:33:58.0614040Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-07-17T06:33:58.0614250Z SCCACHE_USE_GHA: false 2025-07-17T06:33:58.0614400Z ##[endgroup] 2025-07-17T06:33:58.0935760Z Warning: HomeBrew only supports version specified by major and minor, but got 3.12.7 2025-07-17T06:33:58.9863470Z ==> Updating Homebrew... 2025-07-17T06:34:01.0751130Z ==> Homebrew's analytics have entirely moved to our InfluxDB instance in the EU. 2025-07-17T06:34:01.0751600Z We gather less data than before and have destroyed all Google Analytics data: 2025-07-17T06:34:01.0751980Z https://docs.brew.sh/Analytics 2025-07-17T06:34:01.0752390Z Please reconsider re-enabling analytics to help our volunteer maintainers with: 2025-07-17T06:34:01.0752680Z brew analytics on 2025-07-17T06:34:01.0962120Z ==> Homebrew is run entirely by unpaid volunteers. Please consider donating: 2025-07-17T06:34:01.0962660Z https://github.com/Homebrew/brew#donations 2025-07-17T06:34:01.0962820Z 2025-07-17T06:34:01.7808990Z Updated 1 tap (homebrew/core). 2025-07-17T06:34:01.7810250Z ==> New Formulae 2025-07-17T06:34:02.0560530Z scdl: Command-line tool to download music from SoundCloud 2025-07-17T06:34:02.3291540Z ==> Outdated Formulae 2025-07-17T06:34:02.3291780Z awscli 2025-07-17T06:34:02.3291950Z python@3.11 2025-07-17T06:34:02.3292120Z ==> Outdated Casks 2025-07-17T06:34:02.3292310Z amazon-ssm-agent 2025-07-17T06:34:02.3292450Z ec2-macos-init 2025-07-17T06:34:02.3292600Z ec2-macos-utils 2025-07-17T06:34:02.3292680Z 2025-07-17T06:34:02.3292980Z You have 2 outdated formulae and 3 outdated casks installed. 2025-07-17T06:34:02.3293320Z You can upgrade them with brew upgrade 2025-07-17T06:34:02.3293590Z or list them with brew outdated. 2025-07-17T06:34:03.3547890Z ##[warning]python@3.12 3.12.11 is already installed and up-to-date. To reinstall 3.12.11, run: brew reinstall python@3.12 2025-07-17T06:34:03.3873420Z Using python at /opt/homebrew/bin/python3.12 to create venv /Users/ec2-user/runner/_work/_temp/venv-3.12-1752734038 2025-07-17T06:34:05.6211810Z Installing requirements from .github/requirements/pip-requirements-macOS.txt 2025-07-17T06:34:05.9570370Z Collecting boto3==1.35.42 (from -r .github/requirements/pip-requirements-macOS.txt (line 1)) 2025-07-17T06:34:05.9618860Z Using cached boto3-1.35.42-py3-none-any.whl.metadata (6.7 kB) 2025-07-17T06:34:06.0264300Z Collecting cmake==3.27.* (from -r .github/requirements/pip-requirements-macOS.txt (line 2)) 2025-07-17T06:34:06.0316430Z Using cached cmake-3.27.9-py2.py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl.metadata (6.3 kB) 2025-07-17T06:34:06.0517880Z Collecting expecttest==0.3.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 3)) 2025-07-17T06:34:06.0555380Z Using cached expecttest-0.3.0-py3-none-any.whl.metadata (3.8 kB) 2025-07-17T06:34:06.0714830Z Collecting fbscribelogger==0.1.7 (from -r .github/requirements/pip-requirements-macOS.txt (line 4)) 2025-07-17T06:34:06.0763450Z Using cached fbscribelogger-0.1.7-py3-none-any.whl.metadata (684 bytes) 2025-07-17T06:34:06.0916470Z Collecting filelock==3.6.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 5)) 2025-07-17T06:34:06.0955680Z Using cached filelock-3.6.0-py3-none-any.whl.metadata (2.6 kB) 2025-07-17T06:34:06.2066220Z Collecting hypothesis==6.56.4 (from -r .github/requirements/pip-requirements-macOS.txt (line 6)) 2025-07-17T06:34:06.2086330Z Using cached hypothesis-6.56.4-py3-none-any.whl.metadata (6.1 kB) 2025-07-17T06:34:06.2243620Z Collecting librosa>=0.6.2 (from -r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-07-17T06:34:06.2265420Z Using cached librosa-0.11.0-py3-none-any.whl.metadata (8.7 kB) 2025-07-17T06:34:06.2414090Z Collecting mpmath==1.3.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 8)) 2025-07-17T06:34:06.2467140Z Using cached mpmath-1.3.0-py3-none-any.whl.metadata (8.6 kB) 2025-07-17T06:34:06.2687060Z Collecting networkx==2.8.7 (from -r .github/requirements/pip-requirements-macOS.txt (line 9)) 2025-07-17T06:34:06.2732150Z Using cached networkx-2.8.7-py3-none-any.whl.metadata (5.1 kB) 2025-07-17T06:34:06.2957370Z Collecting ninja==1.10.2.4 (from -r .github/requirements/pip-requirements-macOS.txt (line 10)) 2025-07-17T06:34:06.2994490Z Using cached ninja-1.10.2.4-py2.py3-none-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl.metadata (5.3 kB) 2025-07-17T06:34:06.3572570Z Collecting numba==0.59.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 11)) 2025-07-17T06:34:06.3605590Z Using cached numba-0.59.0-cp312-cp312-macosx_11_0_arm64.whl.metadata (2.7 kB) 2025-07-17T06:34:06.4461070Z Collecting numpy==1.26.4 (from -r .github/requirements/pip-requirements-macOS.txt (line 12)) 2025-07-17T06:34:06.4477100Z Using cached numpy-1.26.4-cp312-cp312-macosx_11_0_arm64.whl.metadata (61 kB) 2025-07-17T06:34:06.4677330Z Collecting opt-einsum>=3.3 (from -r .github/requirements/pip-requirements-macOS.txt (line 13)) 2025-07-17T06:34:06.4700470Z Using cached opt_einsum-3.4.0-py3-none-any.whl.metadata (6.3 kB) 2025-07-17T06:34:06.5116330Z Collecting optree==0.13.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 14)) 2025-07-17T06:34:06.5130250Z Using cached optree-0.13.0-cp312-cp312-macosx_11_0_arm64.whl.metadata (47 kB) 2025-07-17T06:34:06.5311730Z Collecting packaging==23.1 (from -r .github/requirements/pip-requirements-macOS.txt (line 15)) 2025-07-17T06:34:06.5329960Z Using cached packaging-23.1-py3-none-any.whl.metadata (3.1 kB) 2025-07-17T06:34:06.5448960Z Collecting parameterized==0.8.1 (from -r .github/requirements/pip-requirements-macOS.txt (line 16)) 2025-07-17T06:34:06.5484550Z Using cached parameterized-0.8.1-py2.py3-none-any.whl.metadata (18 kB) 2025-07-17T06:34:06.6312630Z Collecting pillow==10.3.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 17)) 2025-07-17T06:34:06.6357750Z Using cached pillow-10.3.0-cp312-cp312-macosx_11_0_arm64.whl.metadata (9.2 kB) 2025-07-17T06:34:06.7178110Z Collecting protobuf==5.29.4 (from -r .github/requirements/pip-requirements-macOS.txt (line 18)) 2025-07-17T06:34:06.7220850Z Using cached protobuf-5.29.4-cp38-abi3-macosx_10_9_universal2.whl.metadata (592 bytes) 2025-07-17T06:34:06.7901150Z Collecting psutil==5.9.1 (from -r .github/requirements/pip-requirements-macOS.txt (line 19)) 2025-07-17T06:34:06.7901580Z Using cached psutil-5.9.1-cp312-cp312-macosx_14_0_arm64.whl 2025-07-17T06:34:06.8079060Z Collecting pygments==2.15.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 20)) 2025-07-17T06:34:06.8130370Z Using cached Pygments-2.15.0-py3-none-any.whl.metadata (2.5 kB) 2025-07-17T06:34:06.8247940Z Collecting pytest-cpp==2.3.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 21)) 2025-07-17T06:34:06.8271180Z Using cached pytest_cpp-2.3.0-py3-none-any.whl.metadata (5.4 kB) 2025-07-17T06:34:06.8375140Z Collecting pytest-flakefinder==1.1.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 22)) 2025-07-17T06:34:06.8398500Z Using cached pytest_flakefinder-1.1.0-py2.py3-none-any.whl.metadata (3.3 kB) 2025-07-17T06:34:06.8520140Z Collecting pytest-rerunfailures==10.3 (from -r .github/requirements/pip-requirements-macOS.txt (line 23)) 2025-07-17T06:34:06.8562610Z Using cached pytest_rerunfailures-10.3-py3-none-any.whl.metadata (15 kB) 2025-07-17T06:34:06.8680460Z Collecting pytest-subtests==0.13.1 (from -r .github/requirements/pip-requirements-macOS.txt (line 24)) 2025-07-17T06:34:06.8724750Z Using cached pytest_subtests-0.13.1-py3-none-any.whl.metadata (6.1 kB) 2025-07-17T06:34:06.8892490Z Collecting pytest-xdist==3.3.1 (from -r .github/requirements/pip-requirements-macOS.txt (line 25)) 2025-07-17T06:34:06.8914010Z Using cached pytest_xdist-3.3.1-py3-none-any.whl.metadata (3.1 kB) 2025-07-17T06:34:06.9143280Z Collecting pytest==7.3.2 (from -r .github/requirements/pip-requirements-macOS.txt (line 26)) 2025-07-17T06:34:06.9158600Z Using cached pytest-7.3.2-py3-none-any.whl.metadata (8.0 kB) 2025-07-17T06:34:06.9406380Z Collecting pyyaml==6.0.2 (from -r .github/requirements/pip-requirements-macOS.txt (line 27)) 2025-07-17T06:34:06.9436900Z Using cached PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl.metadata (2.1 kB) 2025-07-17T06:34:07.0045830Z Collecting scipy==1.12.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 28)) 2025-07-17T06:34:07.0063600Z Using cached scipy-1.12.0-cp312-cp312-macosx_12_0_arm64.whl.metadata (217 kB) 2025-07-17T06:34:07.0986320Z Collecting setuptools==72.1.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 29)) 2025-07-17T06:34:07.1013480Z Using cached setuptools-72.1.0-py3-none-any.whl.metadata (6.6 kB) 2025-07-17T06:34:07.1220380Z Collecting sympy==1.13.3 (from -r .github/requirements/pip-requirements-macOS.txt (line 30)) 2025-07-17T06:34:07.1246470Z Using cached sympy-1.13.3-py3-none-any.whl.metadata (12 kB) 2025-07-17T06:34:07.1487180Z Collecting tlparse==0.3.30 (from -r .github/requirements/pip-requirements-macOS.txt (line 31)) 2025-07-17T06:34:07.1777590Z Using cached tlparse-0.3.30-py3-none-macosx_11_0_arm64.whl.metadata (1.9 kB) 2025-07-17T06:34:07.1926880Z Collecting tensorboard==2.13.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-07-17T06:34:07.1961120Z Using cached tensorboard-2.13.0-py3-none-any.whl.metadata (1.8 kB) 2025-07-17T06:34:07.2142350Z Collecting typing-extensions==4.12.2 (from -r .github/requirements/pip-requirements-macOS.txt (line 33)) 2025-07-17T06:34:07.2173780Z Using cached typing_extensions-4.12.2-py3-none-any.whl.metadata (3.0 kB) 2025-07-17T06:34:07.2294120Z Collecting unittest-xml-reporting<=3.2.0,>=2.0.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 34)) 2025-07-17T06:34:07.2323010Z Using cached unittest_xml_reporting-3.2.0-py2.py3-none-any.whl.metadata (11 kB) 2025-07-17T06:34:07.2488250Z Collecting xdoctest==1.1.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 35)) 2025-07-17T06:34:07.2507470Z Using cached xdoctest-1.1.0-py3-none-any.whl.metadata (37 kB) 2025-07-17T06:34:07.2977460Z Collecting z3-solver==4.12.2.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 36)) 2025-07-17T06:34:07.3023070Z Using cached z3_solver-4.12.2.0-py2.py3-none-macosx_11_0_arm64.whl.metadata (697 bytes) 2025-07-17T06:34:07.5090870Z Collecting botocore<1.36.0,>=1.35.42 (from boto3==1.35.42->-r .github/requirements/pip-requirements-macOS.txt (line 1)) 2025-07-17T06:34:07.5106140Z Using cached botocore-1.35.99-py3-none-any.whl.metadata (5.7 kB) 2025-07-17T06:34:07.5228710Z Collecting jmespath<2.0.0,>=0.7.1 (from boto3==1.35.42->-r .github/requirements/pip-requirements-macOS.txt (line 1)) 2025-07-17T06:34:07.5251050Z Using cached jmespath-1.0.1-py3-none-any.whl.metadata (7.6 kB) 2025-07-17T06:34:07.5409420Z Collecting s3transfer<0.11.0,>=0.10.0 (from boto3==1.35.42->-r .github/requirements/pip-requirements-macOS.txt (line 1)) 2025-07-17T06:34:07.5445850Z Using cached s3transfer-0.10.4-py3-none-any.whl.metadata (1.7 kB) 2025-07-17T06:34:07.8062090Z Collecting aiohttp<4.0.0,>=3.10.4 (from fbscribelogger==0.1.7->-r .github/requirements/pip-requirements-macOS.txt (line 4)) 2025-07-17T06:34:07.8109070Z Using cached aiohttp-3.12.14-cp312-cp312-macosx_11_0_arm64.whl.metadata (7.6 kB) 2025-07-17T06:34:07.8313710Z Collecting thriftpy2<0.6.0,>=0.5.2 (from fbscribelogger==0.1.7->-r .github/requirements/pip-requirements-macOS.txt (line 4)) 2025-07-17T06:34:07.8346510Z Using cached thriftpy2-0.5.3-cp312-cp312-macosx_11_0_arm64.whl.metadata (8.2 kB) 2025-07-17T06:34:07.8508980Z Collecting attrs>=19.2.0 (from hypothesis==6.56.4->-r .github/requirements/pip-requirements-macOS.txt (line 6)) 2025-07-17T06:34:07.8522240Z Using cached attrs-25.3.0-py3-none-any.whl.metadata (10 kB) 2025-07-17T06:34:07.8677300Z Collecting sortedcontainers<3.0.0,>=2.1.0 (from hypothesis==6.56.4->-r .github/requirements/pip-requirements-macOS.txt (line 6)) 2025-07-17T06:34:07.8701160Z Using cached sortedcontainers-2.4.0-py2.py3-none-any.whl.metadata (10 kB) 2025-07-17T06:34:07.9075360Z Collecting llvmlite<0.43,>=0.42.0dev0 (from numba==0.59.0->-r .github/requirements/pip-requirements-macOS.txt (line 11)) 2025-07-17T06:34:07.9097440Z Using cached llvmlite-0.42.0-cp312-cp312-macosx_11_0_arm64.whl.metadata (4.8 kB) 2025-07-17T06:34:07.9335260Z Collecting colorama (from pytest-cpp==2.3.0->-r .github/requirements/pip-requirements-macOS.txt (line 21)) 2025-07-17T06:34:07.9348540Z Using cached colorama-0.4.6-py2.py3-none-any.whl.metadata (17 kB) 2025-07-17T06:34:07.9625810Z Collecting execnet>=1.1 (from pytest-xdist==3.3.1->-r .github/requirements/pip-requirements-macOS.txt (line 25)) 2025-07-17T06:34:07.9661590Z Using cached execnet-2.1.1-py3-none-any.whl.metadata (2.9 kB) 2025-07-17T06:34:07.9819400Z Collecting iniconfig (from pytest==7.3.2->-r .github/requirements/pip-requirements-macOS.txt (line 26)) 2025-07-17T06:34:07.9833130Z Using cached iniconfig-2.1.0-py3-none-any.whl.metadata (2.7 kB) 2025-07-17T06:34:07.9959140Z Collecting pluggy<2.0,>=0.12 (from pytest==7.3.2->-r .github/requirements/pip-requirements-macOS.txt (line 26)) 2025-07-17T06:34:07.9974710Z Using cached pluggy-1.6.0-py3-none-any.whl.metadata (4.8 kB) 2025-07-17T06:34:08.0162510Z Collecting absl-py>=0.4 (from tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-07-17T06:34:08.0205090Z Using cached absl_py-2.3.1-py3-none-any.whl.metadata (3.3 kB) 2025-07-17T06:34:08.2369970Z Collecting grpcio>=1.48.2 (from tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-07-17T06:34:08.2399740Z Using cached grpcio-1.73.1-cp312-cp312-macosx_11_0_universal2.whl.metadata (3.8 kB) 2025-07-17T06:34:08.2683760Z Collecting google-auth<3,>=1.6.3 (from tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-07-17T06:34:08.2699840Z Using cached google_auth-2.40.3-py2.py3-none-any.whl.metadata (6.2 kB) 2025-07-17T06:34:08.3236300Z Collecting google-auth-oauthlib<1.1,>=0.5 (from tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-07-17T06:34:08.3264080Z Using cached google_auth_oauthlib-1.0.0-py2.py3-none-any.whl.metadata (2.7 kB) 2025-07-17T06:34:08.3425380Z Collecting markdown>=2.6.8 (from tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-07-17T06:34:08.3464010Z Using cached markdown-3.8.2-py3-none-any.whl.metadata (5.1 kB) 2025-07-17T06:34:08.3783380Z Collecting requests<3,>=2.21.0 (from tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-07-17T06:34:08.3819470Z Using cached requests-2.32.4-py3-none-any.whl.metadata (4.9 kB) 2025-07-17T06:34:08.4136670Z Collecting tensorboard-data-server<0.8.0,>=0.7.0 (from tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-07-17T06:34:08.4160720Z Using cached tensorboard_data_server-0.7.2-py3-none-any.whl.metadata (1.1 kB) 2025-07-17T06:34:08.4315520Z Collecting werkzeug>=1.0.1 (from tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-07-17T06:34:08.4340460Z Using cached werkzeug-3.1.3-py3-none-any.whl.metadata (3.7 kB) 2025-07-17T06:34:08.4492330Z Collecting wheel>=0.26 (from tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-07-17T06:34:08.4516590Z Using cached wheel-0.45.1-py3-none-any.whl.metadata (2.3 kB) 2025-07-17T06:34:08.4639210Z Collecting six (from xdoctest==1.1.0->-r .github/requirements/pip-requirements-macOS.txt (line 35)) 2025-07-17T06:34:08.4671400Z Using cached six-1.17.0-py2.py3-none-any.whl.metadata (1.7 kB) 2025-07-17T06:34:08.5607200Z Collecting lxml (from unittest-xml-reporting<=3.2.0,>=2.0.0->-r .github/requirements/pip-requirements-macOS.txt (line 34)) 2025-07-17T06:34:08.5633040Z Using cached lxml-6.0.0-cp312-cp312-macosx_10_13_universal2.whl.metadata (6.6 kB) 2025-07-17T06:34:08.5764950Z Collecting aiohappyeyeballs>=2.5.0 (from aiohttp<4.0.0,>=3.10.4->fbscribelogger==0.1.7->-r .github/requirements/pip-requirements-macOS.txt (line 4)) 2025-07-17T06:34:08.5796240Z Using cached aiohappyeyeballs-2.6.1-py3-none-any.whl.metadata (5.9 kB) 2025-07-17T06:34:08.5895840Z Collecting aiosignal>=1.4.0 (from aiohttp<4.0.0,>=3.10.4->fbscribelogger==0.1.7->-r .github/requirements/pip-requirements-macOS.txt (line 4)) 2025-07-17T06:34:08.5909220Z Using cached aiosignal-1.4.0-py3-none-any.whl.metadata (3.7 kB) 2025-07-17T06:34:08.6302970Z Collecting frozenlist>=1.1.1 (from aiohttp<4.0.0,>=3.10.4->fbscribelogger==0.1.7->-r .github/requirements/pip-requirements-macOS.txt (line 4)) 2025-07-17T06:34:08.6330790Z Using cached frozenlist-1.7.0-cp312-cp312-macosx_11_0_arm64.whl.metadata (18 kB) 2025-07-17T06:34:08.7430950Z Collecting multidict<7.0,>=4.5 (from aiohttp<4.0.0,>=3.10.4->fbscribelogger==0.1.7->-r .github/requirements/pip-requirements-macOS.txt (line 4)) 2025-07-17T06:34:08.7452720Z Using cached multidict-6.6.3-cp312-cp312-macosx_11_0_arm64.whl.metadata (5.3 kB) 2025-07-17T06:34:08.7728900Z Collecting propcache>=0.2.0 (from aiohttp<4.0.0,>=3.10.4->fbscribelogger==0.1.7->-r .github/requirements/pip-requirements-macOS.txt (line 4)) 2025-07-17T06:34:08.7743640Z Using cached propcache-0.3.2-cp312-cp312-macosx_11_0_arm64.whl.metadata (12 kB) 2025-07-17T06:34:08.8967470Z Collecting yarl<2.0,>=1.17.0 (from aiohttp<4.0.0,>=3.10.4->fbscribelogger==0.1.7->-r .github/requirements/pip-requirements-macOS.txt (line 4)) 2025-07-17T06:34:08.8983970Z Using cached yarl-1.20.1-cp312-cp312-macosx_11_0_arm64.whl.metadata (73 kB) 2025-07-17T06:34:08.9631110Z Collecting python-dateutil<3.0.0,>=2.1 (from botocore<1.36.0,>=1.35.42->boto3==1.35.42->-r .github/requirements/pip-requirements-macOS.txt (line 1)) 2025-07-17T06:34:08.9646670Z Using cached python_dateutil-2.9.0.post0-py2.py3-none-any.whl.metadata (8.4 kB) 2025-07-17T06:34:08.9828890Z Collecting urllib3!=2.2.0,<3,>=1.25.4 (from botocore<1.36.0,>=1.35.42->boto3==1.35.42->-r .github/requirements/pip-requirements-macOS.txt (line 1)) 2025-07-17T06:34:08.9842970Z Using cached urllib3-2.5.0-py3-none-any.whl.metadata (6.5 kB) 2025-07-17T06:34:08.9997740Z Collecting cachetools<6.0,>=2.0.0 (from google-auth<3,>=1.6.3->tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-07-17T06:34:09.0021700Z Using cached cachetools-5.5.2-py3-none-any.whl.metadata (5.4 kB) 2025-07-17T06:34:09.0158570Z Collecting pyasn1-modules>=0.2.1 (from google-auth<3,>=1.6.3->tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-07-17T06:34:09.0183660Z Using cached pyasn1_modules-0.4.2-py3-none-any.whl.metadata (3.5 kB) 2025-07-17T06:34:09.0304680Z Collecting rsa<5,>=3.1.4 (from google-auth<3,>=1.6.3->tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-07-17T06:34:09.0339920Z Using cached rsa-4.9.1-py3-none-any.whl.metadata (5.6 kB) 2025-07-17T06:34:09.0524470Z Collecting requests-oauthlib>=0.7.0 (from google-auth-oauthlib<1.1,>=0.5->tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-07-17T06:34:09.0543970Z Using cached requests_oauthlib-2.0.0-py2.py3-none-any.whl.metadata (11 kB) 2025-07-17T06:34:09.1035560Z Collecting charset_normalizer<4,>=2 (from requests<3,>=2.21.0->tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-07-17T06:34:09.1075210Z Using cached charset_normalizer-3.4.2-cp312-cp312-macosx_10_13_universal2.whl.metadata (35 kB) 2025-07-17T06:34:09.1208090Z Collecting idna<4,>=2.5 (from requests<3,>=2.21.0->tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-07-17T06:34:09.1221070Z Using cached idna-3.10-py3-none-any.whl.metadata (10 kB) 2025-07-17T06:34:09.1433220Z Collecting certifi>=2017.4.17 (from requests<3,>=2.21.0->tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-07-17T06:34:09.1458300Z Using cached certifi-2025.7.14-py3-none-any.whl.metadata (2.4 kB) 2025-07-17T06:34:09.1635930Z Collecting pyasn1>=0.1.3 (from rsa<5,>=3.1.4->google-auth<3,>=1.6.3->tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-07-17T06:34:09.1668030Z Using cached pyasn1-0.6.1-py3-none-any.whl.metadata (8.4 kB) 2025-07-17T06:34:09.2421250Z Collecting ply<4.0,>=3.4 (from thriftpy2<0.6.0,>=0.5.2->fbscribelogger==0.1.7->-r .github/requirements/pip-requirements-macOS.txt (line 4)) 2025-07-17T06:34:09.2435210Z Using cached ply-3.11-py2.py3-none-any.whl.metadata (844 bytes) 2025-07-17T06:34:09.2684000Z Collecting audioread>=2.1.9 (from librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-07-17T06:34:09.2697700Z Using cached audioread-3.0.1-py3-none-any.whl.metadata (8.4 kB) 2025-07-17T06:34:09.3210920Z Collecting scikit-learn>=1.1.0 (from librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-07-17T06:34:09.3232740Z Using cached scikit_learn-1.7.0-cp312-cp312-macosx_12_0_arm64.whl.metadata (31 kB) 2025-07-17T06:34:09.3442320Z Collecting joblib>=1.0 (from librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-07-17T06:34:09.3474150Z Using cached joblib-1.5.1-py3-none-any.whl.metadata (5.6 kB) 2025-07-17T06:34:09.3610020Z Collecting decorator>=4.3.0 (from librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-07-17T06:34:09.3623440Z Using cached decorator-5.2.1-py3-none-any.whl.metadata (3.9 kB) 2025-07-17T06:34:09.3738040Z Collecting soundfile>=0.12.1 (from librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-07-17T06:34:09.3751630Z Using cached soundfile-0.13.1-py2.py3-none-macosx_11_0_arm64.whl.metadata (16 kB) 2025-07-17T06:34:09.3935320Z Collecting pooch>=1.1 (from librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-07-17T06:34:09.3964420Z Using cached pooch-1.8.2-py3-none-any.whl.metadata (10 kB) 2025-07-17T06:34:09.4318680Z Collecting soxr>=0.3.2 (from librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-07-17T06:34:09.4339320Z Using cached soxr-0.5.0.post1-cp312-abi3-macosx_11_0_arm64.whl.metadata (5.6 kB) 2025-07-17T06:34:09.4452090Z Collecting lazy_loader>=0.1 (from librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-07-17T06:34:09.4471710Z Using cached lazy_loader-0.4-py3-none-any.whl.metadata (7.6 kB) 2025-07-17T06:34:09.4846940Z Collecting msgpack>=1.0 (from librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-07-17T06:34:09.4861500Z Using cached msgpack-1.1.1-cp312-cp312-macosx_11_0_arm64.whl.metadata (8.4 kB) 2025-07-17T06:34:09.5170510Z Collecting platformdirs>=2.5.0 (from pooch>=1.1->librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-07-17T06:34:09.5190920Z Using cached platformdirs-4.3.8-py3-none-any.whl.metadata (12 kB) 2025-07-17T06:34:09.5457420Z Collecting oauthlib>=3.0.0 (from requests-oauthlib>=0.7.0->google-auth-oauthlib<1.1,>=0.5->tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-07-17T06:34:09.5483670Z Using cached oauthlib-3.3.1-py3-none-any.whl.metadata (7.9 kB) 2025-07-17T06:34:09.5722960Z Collecting threadpoolctl>=3.1.0 (from scikit-learn>=1.1.0->librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-07-17T06:34:09.5741360Z Using cached threadpoolctl-3.6.0-py3-none-any.whl.metadata (13 kB) 2025-07-17T06:34:09.6276780Z Collecting cffi>=1.0 (from soundfile>=0.12.1->librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-07-17T06:34:09.6305020Z Using cached cffi-1.17.1-cp312-cp312-macosx_11_0_arm64.whl.metadata (1.5 kB) 2025-07-17T06:34:09.6428580Z Collecting pycparser (from cffi>=1.0->soundfile>=0.12.1->librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-07-17T06:34:09.6442330Z Using cached pycparser-2.22-py3-none-any.whl.metadata (943 bytes) 2025-07-17T06:34:09.6783400Z Collecting MarkupSafe>=2.1.1 (from werkzeug>=1.0.1->tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-07-17T06:34:09.6805110Z Using cached MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl.metadata (4.0 kB) 2025-07-17T06:34:09.6959850Z Using cached boto3-1.35.42-py3-none-any.whl (139 kB) 2025-07-17T06:34:09.6995330Z Using cached expecttest-0.3.0-py3-none-any.whl (8.2 kB) 2025-07-17T06:34:09.7020150Z Using cached fbscribelogger-0.1.7-py3-none-any.whl (6.9 kB) 2025-07-17T06:34:09.7038040Z Using cached typing_extensions-4.12.2-py3-none-any.whl (37 kB) 2025-07-17T06:34:09.7065110Z Using cached filelock-3.6.0-py3-none-any.whl (10.0 kB) 2025-07-17T06:34:09.7082410Z Using cached hypothesis-6.56.4-py3-none-any.whl (395 kB) 2025-07-17T06:34:09.7127960Z Using cached mpmath-1.3.0-py3-none-any.whl (536 kB) 2025-07-17T06:34:09.7183560Z Using cached networkx-2.8.7-py3-none-any.whl (2.0 MB) 2025-07-17T06:34:09.7311020Z Using cached ninja-1.10.2.4-py2.py3-none-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (231 kB) 2025-07-17T06:34:09.7352470Z Using cached numba-0.59.0-cp312-cp312-macosx_11_0_arm64.whl (2.6 MB) 2025-07-17T06:34:09.7481520Z Using cached numpy-1.26.4-cp312-cp312-macosx_11_0_arm64.whl (13.7 MB) 2025-07-17T06:34:09.7837520Z Using cached optree-0.13.0-cp312-cp312-macosx_11_0_arm64.whl (305 kB) 2025-07-17T06:34:09.7868060Z Using cached packaging-23.1-py3-none-any.whl (48 kB) 2025-07-17T06:34:09.7886080Z Using cached parameterized-0.8.1-py2.py3-none-any.whl (26 kB) 2025-07-17T06:34:09.7906410Z Using cached pillow-10.3.0-cp312-cp312-macosx_11_0_arm64.whl (3.4 MB) 2025-07-17T06:34:09.8048360Z Using cached protobuf-5.29.4-cp38-abi3-macosx_10_9_universal2.whl (417 kB) 2025-07-17T06:34:09.8090020Z Using cached Pygments-2.15.0-py3-none-any.whl (1.1 MB) 2025-07-17T06:34:09.8146100Z Using cached pytest_cpp-2.3.0-py3-none-any.whl (14 kB) 2025-07-17T06:34:09.8161430Z Using cached pytest_flakefinder-1.1.0-py2.py3-none-any.whl (4.6 kB) 2025-07-17T06:34:09.8176210Z Using cached pytest_rerunfailures-10.3-py3-none-any.whl (11 kB) 2025-07-17T06:34:09.8190480Z Using cached pytest_subtests-0.13.1-py3-none-any.whl (8.0 kB) 2025-07-17T06:34:09.8211000Z Using cached pytest_xdist-3.3.1-py3-none-any.whl (41 kB) 2025-07-17T06:34:09.8228020Z Using cached pytest-7.3.2-py3-none-any.whl (320 kB) 2025-07-17T06:34:09.8259470Z Using cached PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl (173 kB) 2025-07-17T06:34:09.8302510Z Using cached scipy-1.12.0-cp312-cp312-macosx_12_0_arm64.whl (31.4 MB) 2025-07-17T06:34:09.9015810Z Using cached setuptools-72.1.0-py3-none-any.whl (2.3 MB) 2025-07-17T06:34:09.9115270Z Using cached sympy-1.13.3-py3-none-any.whl (6.2 MB) 2025-07-17T06:34:09.9322130Z Using cached tlparse-0.3.30-py3-none-macosx_11_0_arm64.whl (2.0 MB) 2025-07-17T06:34:09.9413970Z Using cached tensorboard-2.13.0-py3-none-any.whl (5.6 MB) 2025-07-17T06:34:09.9600660Z Using cached xdoctest-1.1.0-py3-none-any.whl (135 kB) 2025-07-17T06:34:09.9635360Z Using cached z3_solver-4.12.2.0-py2.py3-none-macosx_11_0_arm64.whl (26.4 MB) 2025-07-17T06:34:10.0215470Z Using cached cmake-3.27.9-py2.py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (47.4 MB) 2025-07-17T06:34:10.3185110Z Using cached unittest_xml_reporting-3.2.0-py2.py3-none-any.whl (20 kB) 2025-07-17T06:34:10.3201870Z Using cached aiohttp-3.12.14-cp312-cp312-macosx_11_0_arm64.whl (468 kB) 2025-07-17T06:34:10.3254900Z Using cached botocore-1.35.99-py3-none-any.whl (13.3 MB) 2025-07-17T06:34:10.4652040Z Using cached google_auth-2.40.3-py2.py3-none-any.whl (216 kB) 2025-07-17T06:34:10.4721800Z Using cached cachetools-5.5.2-py3-none-any.whl (10 kB) 2025-07-17T06:34:10.4743120Z Using cached google_auth_oauthlib-1.0.0-py2.py3-none-any.whl (18 kB) 2025-07-17T06:34:10.4767220Z Using cached jmespath-1.0.1-py3-none-any.whl (20 kB) 2025-07-17T06:34:10.4786800Z Using cached llvmlite-0.42.0-cp312-cp312-macosx_11_0_arm64.whl (28.8 MB) 2025-07-17T06:34:10.7889730Z Using cached multidict-6.6.3-cp312-cp312-macosx_11_0_arm64.whl (43 kB) 2025-07-17T06:34:10.7913340Z Using cached pluggy-1.6.0-py3-none-any.whl (20 kB) 2025-07-17T06:34:10.7932800Z Using cached python_dateutil-2.9.0.post0-py2.py3-none-any.whl (229 kB) 2025-07-17T06:34:10.7963470Z Using cached requests-2.32.4-py3-none-any.whl (64 kB) 2025-07-17T06:34:10.8001900Z Using cached charset_normalizer-3.4.2-cp312-cp312-macosx_10_13_universal2.whl (199 kB) 2025-07-17T06:34:10.8028490Z Using cached idna-3.10-py3-none-any.whl (70 kB) 2025-07-17T06:34:10.8049080Z Using cached rsa-4.9.1-py3-none-any.whl (34 kB) 2025-07-17T06:34:10.8072260Z Using cached s3transfer-0.10.4-py3-none-any.whl (83 kB) 2025-07-17T06:34:10.8099000Z Using cached sortedcontainers-2.4.0-py2.py3-none-any.whl (29 kB) 2025-07-17T06:34:10.8120720Z Using cached tensorboard_data_server-0.7.2-py3-none-any.whl (2.4 kB) 2025-07-17T06:34:10.8135220Z Using cached thriftpy2-0.5.3-cp312-cp312-macosx_11_0_arm64.whl (833 kB) 2025-07-17T06:34:10.8185780Z Using cached ply-3.11-py2.py3-none-any.whl (49 kB) 2025-07-17T06:34:10.8213360Z Using cached six-1.17.0-py2.py3-none-any.whl (11 kB) 2025-07-17T06:34:10.8235730Z Using cached urllib3-2.5.0-py3-none-any.whl (129 kB) 2025-07-17T06:34:10.8260430Z Using cached yarl-1.20.1-cp312-cp312-macosx_11_0_arm64.whl (89 kB) 2025-07-17T06:34:10.8281890Z Using cached librosa-0.11.0-py3-none-any.whl (260 kB) 2025-07-17T06:34:10.8312700Z Using cached opt_einsum-3.4.0-py3-none-any.whl (71 kB) 2025-07-17T06:34:10.8330780Z Using cached absl_py-2.3.1-py3-none-any.whl (135 kB) 2025-07-17T06:34:10.8362610Z Using cached aiohappyeyeballs-2.6.1-py3-none-any.whl (15 kB) 2025-07-17T06:34:10.8384340Z Using cached aiosignal-1.4.0-py3-none-any.whl (7.5 kB) 2025-07-17T06:34:10.8403070Z Using cached attrs-25.3.0-py3-none-any.whl (63 kB) 2025-07-17T06:34:10.8421230Z Using cached audioread-3.0.1-py3-none-any.whl (23 kB) 2025-07-17T06:34:10.8437600Z Using cached certifi-2025.7.14-py3-none-any.whl (162 kB) 2025-07-17T06:34:10.8464600Z Using cached decorator-5.2.1-py3-none-any.whl (9.2 kB) 2025-07-17T06:34:10.8483910Z Using cached execnet-2.1.1-py3-none-any.whl (40 kB) 2025-07-17T06:34:10.8505670Z Using cached frozenlist-1.7.0-cp312-cp312-macosx_11_0_arm64.whl (46 kB) 2025-07-17T06:34:10.8524100Z Using cached grpcio-1.73.1-cp312-cp312-macosx_11_0_universal2.whl (10.6 MB) 2025-07-17T06:34:10.9319150Z Using cached joblib-1.5.1-py3-none-any.whl (307 kB) 2025-07-17T06:34:10.9404440Z Using cached lazy_loader-0.4-py3-none-any.whl (12 kB) 2025-07-17T06:34:10.9424920Z Using cached markdown-3.8.2-py3-none-any.whl (106 kB) 2025-07-17T06:34:10.9443110Z Using cached msgpack-1.1.1-cp312-cp312-macosx_11_0_arm64.whl (79 kB) 2025-07-17T06:34:10.9468110Z Using cached pooch-1.8.2-py3-none-any.whl (64 kB) 2025-07-17T06:34:10.9485080Z Using cached platformdirs-4.3.8-py3-none-any.whl (18 kB) 2025-07-17T06:34:10.9508360Z Using cached propcache-0.3.2-cp312-cp312-macosx_11_0_arm64.whl (43 kB) 2025-07-17T06:34:10.9527040Z Using cached pyasn1-0.6.1-py3-none-any.whl (83 kB) 2025-07-17T06:34:10.9545170Z Using cached pyasn1_modules-0.4.2-py3-none-any.whl (181 kB) 2025-07-17T06:34:10.9566430Z Using cached requests_oauthlib-2.0.0-py2.py3-none-any.whl (24 kB) 2025-07-17T06:34:10.9590410Z Using cached oauthlib-3.3.1-py3-none-any.whl (160 kB) 2025-07-17T06:34:10.9613240Z Using cached scikit_learn-1.7.0-cp312-cp312-macosx_12_0_arm64.whl (10.7 MB) 2025-07-17T06:34:11.0659760Z Using cached soundfile-0.13.1-py2.py3-none-macosx_11_0_arm64.whl (1.1 MB) 2025-07-17T06:34:11.0780360Z Using cached cffi-1.17.1-cp312-cp312-macosx_11_0_arm64.whl (178 kB) 2025-07-17T06:34:11.0810760Z Using cached soxr-0.5.0.post1-cp312-abi3-macosx_11_0_arm64.whl (156 kB) 2025-07-17T06:34:11.0833650Z Using cached threadpoolctl-3.6.0-py3-none-any.whl (18 kB) 2025-07-17T06:34:11.0853960Z Using cached werkzeug-3.1.3-py3-none-any.whl (224 kB) 2025-07-17T06:34:11.0876550Z Using cached MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl (12 kB) 2025-07-17T06:34:11.0891850Z Using cached wheel-0.45.1-py3-none-any.whl (72 kB) 2025-07-17T06:34:11.0909790Z Using cached colorama-0.4.6-py2.py3-none-any.whl (25 kB) 2025-07-17T06:34:11.0930400Z Using cached iniconfig-2.1.0-py3-none-any.whl (6.0 kB) 2025-07-17T06:34:11.0944670Z Using cached lxml-6.0.0-cp312-cp312-macosx_10_13_universal2.whl (8.4 MB) 2025-07-17T06:34:11.1783350Z Using cached pycparser-2.22-py3-none-any.whl (117 kB) 2025-07-17T06:34:11.4617200Z Installing collected packages: z3-solver, sortedcontainers, ply, parameterized, ninja, mpmath, cmake, wheel, urllib3, typing-extensions, tlparse, threadpoolctl, tensorboard-data-server, sympy, six, setuptools, pyyaml, pygments, pycparser, pyasn1, psutil, protobuf, propcache, pluggy, platformdirs, pillow, packaging, opt-einsum, oauthlib, numpy, networkx, multidict, msgpack, MarkupSafe, markdown, lxml, llvmlite, joblib, jmespath, iniconfig, idna, grpcio, frozenlist, filelock, expecttest, execnet, decorator, colorama, charset_normalizer, certifi, cachetools, audioread, attrs, aiohappyeyeballs, absl-py, yarl, xdoctest, werkzeug, unittest-xml-reporting, thriftpy2, soxr, scipy, rsa, requests, python-dateutil, pytest, pyasn1-modules, optree, numba, lazy_loader, hypothesis, cffi, aiosignal, soundfile, scikit-learn, requests-oauthlib, pytest-xdist, pytest-subtests, pytest-rerunfailures, pytest-flakefinder, pytest-cpp, pooch, google-auth, botocore, aiohttp, s3transfer, librosa, google-auth-oauthlib, fbscribelogger, tensorboard, boto3 2025-07-17T06:34:27.0764060Z 2025-07-17T06:34:27.0804160Z Successfully installed MarkupSafe-3.0.2 absl-py-2.3.1 aiohappyeyeballs-2.6.1 aiohttp-3.12.14 aiosignal-1.4.0 attrs-25.3.0 audioread-3.0.1 boto3-1.35.42 botocore-1.35.99 cachetools-5.5.2 certifi-2025.7.14 cffi-1.17.1 charset_normalizer-3.4.2 cmake-3.27.9 colorama-0.4.6 decorator-5.2.1 execnet-2.1.1 expecttest-0.3.0 fbscribelogger-0.1.7 filelock-3.6.0 frozenlist-1.7.0 google-auth-2.40.3 google-auth-oauthlib-1.0.0 grpcio-1.73.1 hypothesis-6.56.4 idna-3.10 iniconfig-2.1.0 jmespath-1.0.1 joblib-1.5.1 lazy_loader-0.4 librosa-0.11.0 llvmlite-0.42.0 lxml-6.0.0 markdown-3.8.2 mpmath-1.3.0 msgpack-1.1.1 multidict-6.6.3 networkx-2.8.7 ninja-1.10.2.4 numba-0.59.0 numpy-1.26.4 oauthlib-3.3.1 opt-einsum-3.4.0 optree-0.13.0 packaging-23.1 parameterized-0.8.1 pillow-10.3.0 platformdirs-4.3.8 pluggy-1.6.0 ply-3.11 pooch-1.8.2 propcache-0.3.2 protobuf-5.29.4 psutil-5.9.1 pyasn1-0.6.1 pyasn1-modules-0.4.2 pycparser-2.22 pygments-2.15.0 pytest-7.3.2 pytest-cpp-2.3.0 pytest-flakefinder-1.1.0 pytest-rerunfailures-10.3 pytest-subtests-0.13.1 pytest-xdist-3.3.1 python-dateutil-2.9.0.post0 pyyaml-6.0.2 requests-2.32.4 requests-oauthlib-2.0.0 rsa-4.9.1 s3transfer-0.10.4 scikit-learn-1.7.0 scipy-1.12.0 setuptools-72.1.0 six-1.17.0 sortedcontainers-2.4.0 soundfile-0.13.1 soxr-0.5.0.post1 sympy-1.13.3 tensorboard-2.13.0 tensorboard-data-server-0.7.2 threadpoolctl-3.6.0 thriftpy2-0.5.3 tlparse-0.3.30 typing-extensions-4.12.2 unittest-xml-reporting-3.2.0 urllib3-2.5.0 werkzeug-3.1.3 wheel-0.45.1 xdoctest-1.1.0 yarl-1.20.1 z3-solver-4.12.2.0 2025-07-17T06:34:27.7263430Z ##[group]Run nick-fields/retry@7152eba30c6575329ac0576536151aca5a72780e 2025-07-17T06:34:27.7263680Z with: 2025-07-17T06:34:27.7263790Z timeout_minutes: 5 2025-07-17T06:34:27.7263920Z max_attempts: 3 2025-07-17T06:34:27.7264040Z retry_wait_seconds: 90 2025-07-17T06:34:27.7266280Z command: set -ex DOWNLOAD_SCCACHE=0 SCCACHE_VERSION="0.4.1" LOCAL_PATH="/usr/local/bin" if [ ! -f "${LOCAL_PATH}/sccache" ]; then DOWNLOAD_SCCACHE=1 else LOCAL_VERSION=$("${LOCAL_PATH}/sccache" --version | cut -d" " -f2) if [ "${LOCAL_VERSION}" != "${SCCACHE_VERSION}" ]; then DOWNLOAD_SCCACHE=1 fi fi if [ "${DOWNLOAD_SCCACHE}" == "1" ]; then sudo curl --retry 3 --retry-all-errors "https://s3.amazonaws.com/ossci-macos/sccache/sccache-v0.4.1-${RUNNER_ARCH}" --output "${LOCAL_PATH}/sccache" sudo chmod +x "${LOCAL_PATH}/sccache" fi if [[ "${SCCACHE_USE_GHA}" == "true" ]]; then echo "ACTIONS_CACHE_URL=${ACTIONS_CACHE_URL}" >> "${GITHUB_ENV}" echo "ACTIONS_RUNTIME_TOKEN=${ACTIONS_RUNTIME_TOKEN}" >> "${GITHUB_ENV}" echo "SCCACHE_GHA_ENABLED=on" >> "${GITHUB_ENV}" else # The runner has access to the S3 bucket via IAM profile without the need # for any credential echo "SCCACHE_BUCKET=ossci-compiler-cache-circleci-v2" >> "${GITHUB_ENV}" echo "SCCACHE_S3_KEY_PREFIX=${GITHUB_WORKFLOW}" >> "${GITHUB_ENV}" fi # This is needed so that later build script could find sccache (which sccache) echo "${LOCAL_PATH}" >> $GITHUB_PATH 2025-07-17T06:34:27.7268600Z polling_interval_seconds: 1 2025-07-17T06:34:27.7268760Z warning_on_retry: true 2025-07-17T06:34:27.7268900Z continue_on_error: false 2025-07-17T06:34:27.7269030Z env: 2025-07-17T06:34:27.7269150Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-07-17T06:34:27.7269310Z SCCACHE_USE_GHA: false 2025-07-17T06:34:27.7269510Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1752734038 2025-07-17T06:34:27.7269730Z ##[endgroup] 2025-07-17T06:34:27.7938250Z + DOWNLOAD_SCCACHE=0 2025-07-17T06:34:27.7939000Z + SCCACHE_VERSION=0.4.1 2025-07-17T06:34:27.7939210Z + LOCAL_PATH=/usr/local/bin 2025-07-17T06:34:27.7939410Z + '[' '!' -f /usr/local/bin/sccache ']' 2025-07-17T06:34:27.7942340Z ++ /usr/local/bin/sccache --version 2025-07-17T06:34:27.7944870Z ++ cut '-d ' -f2 2025-07-17T06:34:27.7973470Z + LOCAL_VERSION=0.4.1 2025-07-17T06:34:27.7973660Z + '[' 0.4.1 '!=' 0.4.1 ']' 2025-07-17T06:34:27.7973840Z + '[' 0 == 1 ']' 2025-07-17T06:34:27.7974000Z + [[ false == \t\r\u\e ]] 2025-07-17T06:34:27.7974220Z + echo SCCACHE_BUCKET=ossci-compiler-cache-circleci-v2 2025-07-17T06:34:27.7974670Z + echo SCCACHE_S3_KEY_PREFIX=trunk 2025-07-17T06:34:27.7985010Z + echo /usr/local/bin 2025-07-17T06:34:28.7950050Z Command completed after 1 attempt(s). 2025-07-17T06:34:28.8016690Z Prepare all required actions 2025-07-17T06:34:28.8053660Z ##[group]Run ./.github/actions/get-workflow-job-id 2025-07-17T06:34:28.8054040Z with: 2025-07-17T06:34:28.8054660Z github-token: *** 2025-07-17T06:34:28.8054900Z env: 2025-07-17T06:34:28.8055140Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-07-17T06:34:28.8055490Z SCCACHE_USE_GHA: false 2025-07-17T06:34:28.8055900Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1752734038 2025-07-17T06:34:28.8056420Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-07-17T06:34:28.8056850Z SCCACHE_S3_KEY_PREFIX: trunk 2025-07-17T06:34:28.8057130Z ##[endgroup] 2025-07-17T06:34:28.8076450Z ##[group]Run set -eux 2025-07-17T06:34:28.8076740Z set -eux 2025-07-17T06:34:28.8077220Z python3 .github/scripts/get_workflow_job_id.py "${GITHUB_RUN_ID}" "${RUNNER_NAME}" 2025-07-17T06:34:28.8575420Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-07-17T06:34:28.8575660Z env: 2025-07-17T06:34:28.8575870Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-07-17T06:34:28.8576060Z SCCACHE_USE_GHA: false 2025-07-17T06:34:28.8576330Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1752734038 2025-07-17T06:34:28.8576610Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-07-17T06:34:28.8576840Z SCCACHE_S3_KEY_PREFIX: trunk 2025-07-17T06:34:28.8577180Z GITHUB_TOKEN: *** 2025-07-17T06:34:28.8577320Z ##[endgroup] 2025-07-17T06:34:28.8751640Z + python3 .github/scripts/get_workflow_job_id.py 16337959945 i-04c57198384938a55 2025-07-17T06:34:29.4853370Z Setting output job-id=46153706216 2025-07-17T06:34:29.4953820Z Setting output job-name=macos-py3-arm64 / build 2025-07-17T06:34:29.5292260Z Prepare all required actions 2025-07-17T06:34:29.5292780Z Getting action download info 2025-07-17T06:34:29.6203040Z Download action repository 'nick-fields/retry@v3.0.0' (SHA:7152eba30c6575329ac0576536151aca5a72780e) 2025-07-17T06:34:29.8529930Z ##[group]Run ./.github/actions/filter-test-configs 2025-07-17T06:34:29.8530270Z with: 2025-07-17T06:34:29.8530810Z github-token: *** 2025-07-17T06:34:29.8531950Z test-matrix: { include: [ { config: "default", shard: 1, num_shards: 3, runner: "macos-m1-stable" }, { config: "default", shard: 2, num_shards: 3, runner: "macos-m1-stable" }, { config: "default", shard: 3, num_shards: 3, runner: "macos-m1-stable" }, { config: "mps", shard: 1, num_shards: 1, runner: "macos-m1-13" }, { config: "mps", shard: 1, num_shards: 1, runner: "macos-m1-14" }, { config: "mps", shard: 1, num_shards: 1, runner: "macos-m2-15" }, ]} 2025-07-17T06:34:29.8533180Z job-name: macos-py3-arm64 / build 2025-07-17T06:34:29.8533400Z env: 2025-07-17T06:34:29.8533600Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-07-17T06:34:29.8533840Z SCCACHE_USE_GHA: false 2025-07-17T06:34:29.8534140Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1752734038 2025-07-17T06:34:29.8534520Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-07-17T06:34:29.8534810Z SCCACHE_S3_KEY_PREFIX: trunk 2025-07-17T06:34:29.8535020Z ##[endgroup] 2025-07-17T06:34:29.8561910Z ##[group]Run nick-fields/retry@v3.0.0 2025-07-17T06:34:29.8562120Z with: 2025-07-17T06:34:29.8562260Z shell: bash 2025-07-17T06:34:29.8562420Z timeout_minutes: 10 2025-07-17T06:34:29.8562600Z max_attempts: 5 2025-07-17T06:34:29.8562770Z retry_wait_seconds: 30 2025-07-17T06:34:29.8563330Z command: set -eux # PyYAML 6.0 doesn't work with MacOS x86 anymore # This must run on Python-3.7 (AmazonLinux2) so can't use request=3.32.2 python3 -m pip install requests==2.27.1 pyyaml==6.0.1 2025-07-17T06:34:29.8564060Z polling_interval_seconds: 1 2025-07-17T06:34:29.8564250Z warning_on_retry: true 2025-07-17T06:34:29.8564450Z continue_on_error: false 2025-07-17T06:34:29.8564620Z env: 2025-07-17T06:34:29.8564810Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-07-17T06:34:29.8565030Z SCCACHE_USE_GHA: false 2025-07-17T06:34:29.8565290Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1752734038 2025-07-17T06:34:29.8565620Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-07-17T06:34:29.8565900Z SCCACHE_S3_KEY_PREFIX: trunk 2025-07-17T06:34:29.8566200Z GITHUB_TOKEN: *** 2025-07-17T06:34:29.8566370Z ##[endgroup] 2025-07-17T06:34:29.9175330Z + python3 -m pip install requests==2.27.1 pyyaml==6.0.1 2025-07-17T06:34:30.1120880Z Collecting requests==2.27.1 2025-07-17T06:34:30.1143070Z Using cached requests-2.27.1-py2.py3-none-any.whl.metadata (5.0 kB) 2025-07-17T06:34:30.1346930Z Collecting pyyaml==6.0.1 2025-07-17T06:34:30.1374650Z Using cached PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl.metadata (2.1 kB) 2025-07-17T06:34:30.1537860Z Collecting urllib3<1.27,>=1.21.1 (from requests==2.27.1) 2025-07-17T06:34:30.1552580Z Using cached urllib3-1.26.20-py2.py3-none-any.whl.metadata (50 kB) 2025-07-17T06:34:30.1630520Z Requirement already satisfied: certifi>=2017.4.17 in /Users/ec2-user/runner/_work/_temp/venv-3.12-1752734038/lib/python3.12/site-packages (from requests==2.27.1) (2025.7.14) 2025-07-17T06:34:30.2045750Z Collecting charset-normalizer~=2.0.0 (from requests==2.27.1) 2025-07-17T06:34:30.2063640Z Using cached charset_normalizer-2.0.12-py3-none-any.whl.metadata (11 kB) 2025-07-17T06:34:30.2116780Z Requirement already satisfied: idna<4,>=2.5 in /Users/ec2-user/runner/_work/_temp/venv-3.12-1752734038/lib/python3.12/site-packages (from requests==2.27.1) (3.10) 2025-07-17T06:34:30.2156920Z Using cached requests-2.27.1-py2.py3-none-any.whl (63 kB) 2025-07-17T06:34:30.2178210Z Using cached PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl (165 kB) 2025-07-17T06:34:30.2206910Z Using cached charset_normalizer-2.0.12-py3-none-any.whl (39 kB) 2025-07-17T06:34:30.2230980Z Using cached urllib3-1.26.20-py2.py3-none-any.whl (144 kB) 2025-07-17T06:34:30.2945350Z Installing collected packages: urllib3, pyyaml, charset-normalizer, requests 2025-07-17T06:34:30.2947180Z Attempting uninstall: urllib3 2025-07-17T06:34:30.2959220Z Found existing installation: urllib3 2.5.0 2025-07-17T06:34:30.2983460Z Uninstalling urllib3-2.5.0: 2025-07-17T06:34:30.2992330Z Successfully uninstalled urllib3-2.5.0 2025-07-17T06:34:30.3446360Z Attempting uninstall: pyyaml 2025-07-17T06:34:30.3468160Z Found existing installation: PyYAML 6.0.2 2025-07-17T06:34:30.3482920Z Uninstalling PyYAML-6.0.2: 2025-07-17T06:34:30.3489980Z Successfully uninstalled PyYAML-6.0.2 2025-07-17T06:34:30.3785590Z Attempting uninstall: charset-normalizer 2025-07-17T06:34:30.3809160Z Found existing installation: charset-normalizer 3.4.2 2025-07-17T06:34:30.3828190Z Uninstalling charset-normalizer-3.4.2: 2025-07-17T06:34:30.3838000Z Successfully uninstalled charset-normalizer-3.4.2 2025-07-17T06:34:30.4030220Z Attempting uninstall: requests 2025-07-17T06:34:30.4046880Z Found existing installation: requests 2.32.4 2025-07-17T06:34:30.4062090Z Uninstalling requests-2.32.4: 2025-07-17T06:34:30.4068230Z Successfully uninstalled requests-2.32.4 2025-07-17T06:34:30.4309750Z 2025-07-17T06:34:30.4344400Z Successfully installed charset-normalizer-2.0.12 pyyaml-6.0.1 requests-2.27.1 urllib3-1.26.20 2025-07-17T06:34:30.9202420Z Command completed after 1 attempt(s). 2025-07-17T06:34:30.9340750Z ##[group]Run set -x 2025-07-17T06:34:30.9341510Z set -x 2025-07-17T06:34:30.9342060Z  2025-07-17T06:34:30.9343030Z # Use relative path here as this could be checked out anywhere, not necessarily 2025-07-17T06:34:30.9344370Z # in runner workspace 2025-07-17T06:34:30.9345300Z python3 "${GITHUB_ACTION_PATH}/../../scripts/parse_ref.py" 2025-07-17T06:34:30.9410160Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-07-17T06:34:30.9411370Z env: 2025-07-17T06:34:30.9411820Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-07-17T06:34:30.9412530Z SCCACHE_USE_GHA: false 2025-07-17T06:34:30.9413240Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1752734038 2025-07-17T06:34:30.9414130Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-07-17T06:34:30.9415470Z SCCACHE_S3_KEY_PREFIX: trunk 2025-07-17T06:34:30.9416080Z ##[endgroup] 2025-07-17T06:34:30.9711430Z + python3 /Users/ec2-user/runner/_work/pytorch/pytorch/./.github/actions/filter-test-configs/../../scripts/parse_ref.py 2025-07-17T06:34:30.9959540Z Setting output branch=main 2025-07-17T06:34:31.0026400Z ##[group]Run echo "Workflow: ${GITHUB_WORKFLOW}" 2025-07-17T06:34:31.0026720Z echo "Workflow: ${GITHUB_WORKFLOW}" 2025-07-17T06:34:31.0026970Z echo "Job name: ${JOB_NAME}" 2025-07-17T06:34:31.0027170Z  2025-07-17T06:34:31.0027460Z # Use relative path here as this could be checked out anywhere, not necessarily 2025-07-17T06:34:31.0027870Z # in runner workspace 2025-07-17T06:34:31.0028190Z python3 "${GITHUB_ACTION_PATH}/../../scripts/filter_test_configs.py" \ 2025-07-17T06:34:31.0028560Z  --workflow "${GITHUB_WORKFLOW}" \ 2025-07-17T06:34:31.0028810Z  --job-name "${JOB_NAME}" \ 2025-07-17T06:34:31.0029030Z  --test-matrix "{ include: [ 2025-07-17T06:34:31.0029360Z  { config: "default", shard: 1, num_shards: 3, runner: "macos-m1-stable" }, 2025-07-17T06:34:31.0029790Z  { config: "default", shard: 2, num_shards: 3, runner: "macos-m1-stable" }, 2025-07-17T06:34:31.0030190Z  { config: "default", shard: 3, num_shards: 3, runner: "macos-m1-stable" }, 2025-07-17T06:34:31.0030580Z  { config: "mps", shard: 1, num_shards: 1, runner: "macos-m1-13" }, 2025-07-17T06:34:31.0030960Z  { config: "mps", shard: 1, num_shards: 1, runner: "macos-m1-14" }, 2025-07-17T06:34:31.0031320Z  { config: "mps", shard: 1, num_shards: 1, runner: "macos-m2-15" }, 2025-07-17T06:34:31.0031810Z ]} 2025-07-17T06:34:31.0031970Z " \ 2025-07-17T06:34:31.0032170Z  --selected-test-configs "" \ 2025-07-17T06:34:31.0032410Z  --pr-number "${PR_NUMBER}" \ 2025-07-17T06:34:31.0032640Z  --tag "${TAG}" \ 2025-07-17T06:34:31.0032870Z  --event-name "${EVENT_NAME}" \ 2025-07-17T06:34:31.0033110Z  --schedule "${SCHEDULE}" \ 2025-07-17T06:34:31.0033330Z  --branch "${HEAD_BRANCH}" 2025-07-17T06:34:31.0052020Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-07-17T06:34:31.0052280Z env: 2025-07-17T06:34:31.0052460Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-07-17T06:34:31.0052680Z SCCACHE_USE_GHA: false 2025-07-17T06:34:31.0052950Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1752734038 2025-07-17T06:34:31.0053290Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-07-17T06:34:31.0053570Z SCCACHE_S3_KEY_PREFIX: trunk 2025-07-17T06:34:31.0054060Z GITHUB_TOKEN: *** 2025-07-17T06:34:31.0054240Z JOB_NAME: macos-py3-arm64 / build 2025-07-17T06:34:31.0054460Z PR_NUMBER: 2025-07-17T06:34:31.0054600Z TAG: 2025-07-17T06:34:31.0054750Z EVENT_NAME: push 2025-07-17T06:34:31.0054900Z SCHEDULE: 2025-07-17T06:34:31.0055060Z HEAD_BRANCH: main 2025-07-17T06:34:31.0055220Z ##[endgroup] 2025-07-17T06:34:31.0202960Z Workflow: trunk 2025-07-17T06:34:31.0203170Z Job name: macos-py3-arm64 / build 2025-07-17T06:34:31.2775560Z Setting output keep-going=True 2025-07-17T06:34:31.2775940Z Setting output ci-verbose-test-logs=False 2025-07-17T06:34:31.2776250Z Setting output ci-test-showlocals=False 2025-07-17T06:34:31.2776550Z Setting output ci-no-test-timeout=False 2025-07-17T06:34:31.2776830Z Setting output ci-no-td=False 2025-07-17T06:34:31.2777120Z Setting output ci-td-distributed=False 2025-07-17T06:34:31.2777420Z Setting output is-unstable=False 2025-07-17T06:34:31.2777700Z Setting output reenabled-issues= 2025-07-17T06:34:31.2779410Z Setting output test-matrix={"include": [{"config": "default", "shard": 1, "num_shards": 3, "runner": "macos-m1-stable"}, {"config": "default", "shard": 2, "num_shards": 3, "runner": "macos-m1-stable"}, {"config": "default", "shard": 3, "num_shards": 3, "runner": "macos-m1-stable"}, {"config": "mps", "shard": 1, "num_shards": 1, "runner": "macos-m1-13"}, {"config": "mps", "shard": 1, "num_shards": 1, "runner": "macos-m1-14"}, {"config": "mps", "shard": 1, "num_shards": 1, "runner": "macos-m2-15"}]} 2025-07-17T06:34:31.2780890Z Setting output is-test-matrix-empty=False 2025-07-17T06:34:31.2893290Z ##[group]Run echo "Filtered matrix:" 2025-07-17T06:34:31.2893570Z echo "Filtered matrix:" 2025-07-17T06:34:31.2894670Z echo "{"include": [{"config": "default", "shard": 1, "num_shards": 3, "runner": "macos-m1-stable"}, {"config": "default", "shard": 2, "num_shards": 3, "runner": "macos-m1-stable"}, {"config": "default", "shard": 3, "num_shards": 3, "runner": "macos-m1-stable"}, {"config": "mps", "shard": 1, "num_shards": 1, "runner": "macos-m1-13"}, {"config": "mps", "shard": 1, "num_shards": 1, "runner": "macos-m1-14"}, {"config": "mps", "shard": 1, "num_shards": 1, "runner": "macos-m2-15"}]}" 2025-07-17T06:34:31.2895750Z  2025-07-17T06:34:31.2895890Z echo 2025-07-17T06:34:31.2896110Z echo "Is the current job unstable? False" 2025-07-17T06:34:31.2896350Z  2025-07-17T06:34:31.2896490Z echo 2025-07-17T06:34:31.2896670Z echo "Is keep-going label set? True" 2025-07-17T06:34:31.2896920Z  2025-07-17T06:34:31.2897060Z echo 2025-07-17T06:34:31.2897230Z echo "Reenabled issues? " 2025-07-17T06:34:31.2915070Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-07-17T06:34:31.2915310Z env: 2025-07-17T06:34:31.2915480Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-07-17T06:34:31.2915690Z SCCACHE_USE_GHA: false 2025-07-17T06:34:31.2915930Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1752734038 2025-07-17T06:34:31.2916490Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-07-17T06:34:31.2916750Z SCCACHE_S3_KEY_PREFIX: trunk 2025-07-17T06:34:31.2916930Z ##[endgroup] 2025-07-17T06:34:31.3069380Z Filtered matrix: 2025-07-17T06:34:31.3070340Z {include: [{config: default, shard: 1, num_shards: 3, runner: macos-m1-stable}, {config: default, shard: 2, num_shards: 3, runner: macos-m1-stable}, {config: default, shard: 3, num_shards: 3, runner: macos-m1-stable}, {config: mps, shard: 1, num_shards: 1, runner: macos-m1-13}, {config: mps, shard: 1, num_shards: 1, runner: macos-m1-14}, {config: mps, shard: 1, num_shards: 1, runner: macos-m2-15}]} 2025-07-17T06:34:31.3082650Z 2025-07-17T06:34:31.3082780Z Is the current job unstable? False 2025-07-17T06:34:31.3082920Z 2025-07-17T06:34:31.3083000Z Is keep-going label set? True 2025-07-17T06:34:31.3083130Z 2025-07-17T06:34:31.3083180Z Reenabled issues? 2025-07-17T06:34:31.3108710Z ##[group]Run # TODO: Remove me later, and properly activate venv 2025-07-17T06:34:31.3109030Z # TODO: Remove me later, and properly activate venv 2025-07-17T06:34:31.3109250Z PATH="$VENV_PATH/bin:$PATH" 2025-07-17T06:34:31.3109420Z export PATH 2025-07-17T06:34:31.3109560Z  2025-07-17T06:34:31.3109780Z # NB: Same trick as Linux, there is no need to initialize sccache with the risk of getting 2025-07-17T06:34:31.3110170Z # it hangs or timeout at initialization. The cache will be started automatically 2025-07-17T06:34:31.3110460Z export SKIP_SCCACHE_INITIALIZATION=1 2025-07-17T06:34:31.3110660Z .ci/pytorch/macos-build.sh 2025-07-17T06:34:31.3126000Z shell: /bin/bash -e {0} 2025-07-17T06:34:31.3126130Z env: 2025-07-17T06:34:31.3126250Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-07-17T06:34:31.3126430Z SCCACHE_USE_GHA: false 2025-07-17T06:34:31.3126690Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1752734038 2025-07-17T06:34:31.3126970Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-07-17T06:34:31.3127270Z SCCACHE_S3_KEY_PREFIX: trunk 2025-07-17T06:34:31.3127440Z OUR_GITHUB_JOB_ID: 46153706216 2025-07-17T06:34:31.3127600Z ##[endgroup] 2025-07-17T06:34:31.3954620Z +++ [[ macos-py3-arm64 == *rocm* ]] 2025-07-17T06:34:31.3954950Z +++ BUILD_TEST_LIBTORCH=0 2025-07-17T06:34:31.3957620Z ++ sysctl -a 2025-07-17T06:34:31.3958800Z ++ grep machdep.cpu 2025-07-17T06:34:31.4083540Z machdep.cpu.cores_per_package: 8 2025-07-17T06:34:31.4083790Z machdep.cpu.core_count: 8 2025-07-17T06:34:31.4083970Z machdep.cpu.logical_per_package: 8 2025-07-17T06:34:31.4084170Z machdep.cpu.thread_count: 8 2025-07-17T06:34:31.4084360Z machdep.cpu.brand_string: Apple M1 2025-07-17T06:34:31.4085340Z ++ export MACOSX_DEPLOYMENT_TARGET=11.1 2025-07-17T06:34:31.4085570Z ++ MACOSX_DEPLOYMENT_TARGET=11.1 2025-07-17T06:34:31.4085750Z ++ export CXX=clang++ 2025-07-17T06:34:31.4085900Z ++ CXX=clang++ 2025-07-17T06:34:31.4086090Z ++ export CC=clang 2025-07-17T06:34:31.4086260Z ++ CC=clang 2025-07-17T06:34:31.4089490Z ++ dirname .ci/pytorch/macos-build.sh 2025-07-17T06:34:31.4099100Z + source .ci/pytorch/common-build.sh 2025-07-17T06:34:31.4106450Z ++ [[ macos-py3-arm64 != *win-* ]] 2025-07-17T06:34:31.4111550Z ++++ dirname .ci/pytorch/common-build.sh 2025-07-17T06:34:31.4123660Z +++ cd .ci/pytorch 2025-07-17T06:34:31.4123900Z +++ pwd -P 2025-07-17T06:34:31.4125330Z ++ script_dir=/Users/ec2-user/runner/_work/pytorch/pytorch/.ci/pytorch 2025-07-17T06:34:31.4125730Z ++ [[ macos-py3-arm64 == *-pch* ]] 2025-07-17T06:34:31.4125910Z ++ which sccache 2025-07-17T06:34:31.4145100Z ++ [[ -z ossci-compiler-cache-circleci-v2 ]] 2025-07-17T06:34:31.4145350Z ++ sccache --stop-server 2025-07-17T06:34:31.4188980Z ++ true 2025-07-17T06:34:31.4189130Z ++ rm -f /Users/ec2-user/sccache_error.log 2025-07-17T06:34:31.4202520Z ++ trap_add sccache_epilogue EXIT 2025-07-17T06:34:31.4202820Z ++ trap_add_cmd=sccache_epilogue 2025-07-17T06:34:31.4203030Z ++ shift 2025-07-17T06:34:31.4203180Z ++ for trap_add_name in '"$@"' 2025-07-17T06:34:31.4208010Z ++++ trap -p EXIT 2025-07-17T06:34:31.4209330Z +++ eval 'extract_trap_cmd ' 2025-07-17T06:34:31.4209720Z ++++ extract_trap_cmd 2025-07-17T06:34:31.4209950Z ++++ printf '%s\n' '' 2025-07-17T06:34:31.4210120Z +++ printf '%s\n' sccache_epilogue 2025-07-17T06:34:31.4211350Z ++ trap -- ' 2025-07-17T06:34:31.4211660Z sccache_epilogue' EXIT 2025-07-17T06:34:31.4211830Z ++ [[ -n 1 ]] 2025-07-17T06:34:31.4212100Z ++ echo 'Skipping sccache server initialization, setting environment variables' 2025-07-17T06:34:31.4212410Z ++ export SCCACHE_IDLE_TIMEOUT=0 2025-07-17T06:34:31.4212620Z ++ SCCACHE_IDLE_TIMEOUT=0 2025-07-17T06:34:31.4212870Z ++ export SCCACHE_ERROR_LOG=/Users/ec2-user/sccache_error.log 2025-07-17T06:34:31.4213150Z ++ SCCACHE_ERROR_LOG=/Users/ec2-user/sccache_error.log 2025-07-17T06:34:31.4217370Z ++ export RUST_LOG=sccache::server=error 2025-07-17T06:34:31.4217580Z ++ RUST_LOG=sccache::server=error 2025-07-17T06:34:31.4218190Z ++ sccache --zero-stats 2025-07-17T06:34:31.4218460Z Skipping sccache server initialization, setting environment variables 2025-07-17T06:34:32.0147910Z Compile requests 0 2025-07-17T06:34:32.0148480Z Compile requests executed 0 2025-07-17T06:34:32.0148970Z Cache hits 0 2025-07-17T06:34:32.0149410Z Cache misses 0 2025-07-17T06:34:32.0149890Z Cache timeouts 0 2025-07-17T06:34:32.0150340Z Cache read errors 0 2025-07-17T06:34:32.0150790Z Forced recaches 0 2025-07-17T06:34:32.0151280Z Cache write errors 0 2025-07-17T06:34:32.0151730Z Compilation failures 0 2025-07-17T06:34:32.0152190Z Cache errors 0 2025-07-17T06:34:32.0152660Z Non-cacheable compilations 0 2025-07-17T06:34:32.0153150Z Non-cacheable calls 0 2025-07-17T06:34:32.0153630Z Non-compilation calls 0 2025-07-17T06:34:32.0154110Z Unsupported compiler calls 0 2025-07-17T06:34:32.0154960Z Average cache write 0.000 s 2025-07-17T06:34:32.0155470Z Average compiler 0.000 s 2025-07-17T06:34:32.0155960Z Average cache read hit 0.000 s 2025-07-17T06:34:32.0156460Z Failed distributed compilations 0 2025-07-17T06:34:32.0157200Z Cache location s3, name: ossci-compiler-cache-circleci-v2, prefix: /trunk/ 2025-07-17T06:34:32.0157910Z Version (client) 0.4.1 2025-07-17T06:34:32.0158340Z ++ which ccache 2025-07-17T06:34:32.0184750Z + '[' -z true ']' 2025-07-17T06:34:32.0185480Z + which sccache 2025-07-17T06:34:32.0216740Z ++ mktemp -d 2025-07-17T06:34:32.0274180Z + tmp_dir=/var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.O6KyizQevp 2025-07-17T06:34:32.0274830Z + trap 'rm -rfv ${tmp_dir}' EXIT 2025-07-17T06:34:32.0275540Z + write_sccache_stub /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.O6KyizQevp/clang++ 2025-07-17T06:34:32.0276560Z + output=/var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.O6KyizQevp/clang++ 2025-07-17T06:34:32.0280120Z ++ basename /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.O6KyizQevp/clang++ 2025-07-17T06:34:32.0301370Z + binary=clang++ 2025-07-17T06:34:32.0307050Z ++ which clang++ 2025-07-17T06:34:32.0328190Z ++ which clang++ 2025-07-17T06:34:32.0343170Z + printf '#!/bin/sh\nif [ $(ps auxc $(ps auxc -o ppid $$ | grep $$ | rev | cut -d'\'' '\'' -f1 | rev) | tr '\''\\n'\'' '\'' '\'' | rev | cut -d'\'' '\'' -f2 | rev) != sccache ]; then\n exec sccache %s "$@"\nelse\n exec %s "$@"\nfi' /usr/bin/clang++ /usr/bin/clang++ 2025-07-17T06:34:32.0345310Z + chmod a+x /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.O6KyizQevp/clang++ 2025-07-17T06:34:32.0380500Z + write_sccache_stub /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.O6KyizQevp/clang 2025-07-17T06:34:32.0381220Z + output=/var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.O6KyizQevp/clang 2025-07-17T06:34:32.0384660Z ++ basename /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.O6KyizQevp/clang 2025-07-17T06:34:32.0400660Z + binary=clang 2025-07-17T06:34:32.0405330Z ++ which clang 2025-07-17T06:34:32.0422370Z ++ which clang 2025-07-17T06:34:32.0436490Z + printf '#!/bin/sh\nif [ $(ps auxc $(ps auxc -o ppid $$ | grep $$ | rev | cut -d'\'' '\'' -f1 | rev) | tr '\''\\n'\'' '\'' '\'' | rev | cut -d'\'' '\'' -f2 | rev) != sccache ]; then\n exec sccache %s "$@"\nelse\n exec %s "$@"\nfi' /usr/bin/clang /usr/bin/clang 2025-07-17T06:34:32.0438150Z + chmod a+x /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.O6KyizQevp/clang 2025-07-17T06:34:32.0456540Z + export PATH=/var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.O6KyizQevp:/Users/ec2-user/runner/_work/_temp/venv-3.12-1752734038/bin:/usr/local/bin:/Users/ec2-user/runner/_work/_temp/venv-3.12-1752734038/bin:/opt/homebrew/Caskroom/miniconda/base/bin:/opt/homebrew/Caskroom/miniconda/base/condabin:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/bin:/bin:/usr/sbin:/sbin 2025-07-17T06:34:32.0459890Z + PATH=/var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.O6KyizQevp:/Users/ec2-user/runner/_work/_temp/venv-3.12-1752734038/bin:/usr/local/bin:/Users/ec2-user/runner/_work/_temp/venv-3.12-1752734038/bin:/opt/homebrew/Caskroom/miniconda/base/bin:/opt/homebrew/Caskroom/miniconda/base/condabin:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/bin:/bin:/usr/sbin:/sbin 2025-07-17T06:34:32.0461520Z + print_cmake_info 2025-07-17T06:34:32.0461750Z ++ which cmake 2025-07-17T06:34:32.0472090Z + CMAKE_EXEC=/Users/ec2-user/runner/_work/_temp/venv-3.12-1752734038/bin/cmake 2025-07-17T06:34:32.0472640Z + echo /Users/ec2-user/runner/_work/_temp/venv-3.12-1752734038/bin/cmake 2025-07-17T06:34:32.0473100Z /Users/ec2-user/runner/_work/_temp/venv-3.12-1752734038/bin/cmake 2025-07-17T06:34:32.0475880Z ++ dirname /Users/ec2-user/runner/_work/_temp/venv-3.12-1752734038/bin/cmake 2025-07-17T06:34:32.0488110Z + CONDA_INSTALLATION_DIR=/Users/ec2-user/runner/_work/_temp/venv-3.12-1752734038/bin 2025-07-17T06:34:32.0488680Z + ls -la /Users/ec2-user/runner/_work/_temp/venv-3.12-1752734038/bin/../lib 2025-07-17T06:34:32.0523480Z total 0 2025-07-17T06:34:32.0523710Z drwxr-xr-x 3 ec2-user staff 96 Jul 17 06:34 . 2025-07-17T06:34:32.0524040Z drwxr-xr-x 8 ec2-user staff 256 Jul 17 06:34 .. 2025-07-17T06:34:32.0524390Z drwxr-xr-x 3 ec2-user staff 96 Jul 17 06:34 python3.12 2025-07-17T06:34:32.0525780Z + [[ macos-py3-arm64 == *\d\i\s\t\r\i\b\u\t\e\d* ]] 2025-07-17T06:34:32.0526080Z + USE_DISTRIBUTED=0 2025-07-17T06:34:32.0526260Z + USE_OPENMP=1 2025-07-17T06:34:32.0526470Z + MACOSX_DEPLOYMENT_TARGET=11.0 2025-07-17T06:34:32.0526680Z + WERROR=1 2025-07-17T06:34:32.0526840Z + BUILD_TEST=OFF 2025-07-17T06:34:32.0527030Z + USE_PYTORCH_METAL=1 2025-07-17T06:34:32.0527330Z + python setup.py bdist_wheel --plat-name macosx_11_0_arm64 2025-07-17T06:34:32.1790760Z Building wheel torch-2.9.0a0+gita38f433 2025-07-17T06:34:32.6267300Z Found cmake (/Users/ec2-user/runner/_work/_temp/venv-3.12-1752734038/bin/cmake) version: 3.27.9 (>=3.27) 2025-07-17T06:34:32.7246400Z -- Building version 2.9.0a0+gita38f433 2025-07-17T06:34:32.7403250Z Cloning into 'nccl'... 2025-07-17T06:34:33.0061290Z Note: switching to '3ea7eedf3b9b94f1d9f99f4e55536dfcbd23c1ca'. 2025-07-17T06:34:33.0061740Z 2025-07-17T06:34:33.0062050Z You are in 'detached HEAD' state. You can look around, make experimental 2025-07-17T06:34:33.0062760Z changes and commit them, and you can discard any commits you make in this 2025-07-17T06:34:33.0063490Z state without impacting any branches by switching back to a branch. 2025-07-17T06:34:33.0063890Z 2025-07-17T06:34:33.0064160Z If you want to create a new branch to retain commits you create, you may 2025-07-17T06:34:33.0064800Z do so (now or later) by using -c with the switch command. Example: 2025-07-17T06:34:33.0065170Z 2025-07-17T06:34:33.0065320Z git switch -c 2025-07-17T06:34:33.0065560Z 2025-07-17T06:34:33.0065710Z Or undo this operation with: 2025-07-17T06:34:33.0065930Z 2025-07-17T06:34:33.0066110Z git switch - 2025-07-17T06:34:33.0066290Z 2025-07-17T06:34:33.0066590Z Turn off this advice by setting config variable advice.detachedHead to false 2025-07-17T06:34:33.0067040Z 2025-07-17T06:34:33.0430210Z cmake -GNinja -DBUILD_ENVIRONMENT=macos-py3-arm64 -DBUILD_PYTHON=True -DBUILD_TEST=False -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/Users/ec2-user/runner/_work/pytorch/pytorch/torch -DCMAKE_PREFIX_PATH=/Users/ec2-user/runner/_work/_temp/venv-3.12-1752734038/lib/python3.12/site-packages -DPython_EXECUTABLE=/Users/ec2-user/runner/_work/_temp/venv-3.12-1752734038/bin/python -DTORCH_BUILD_VERSION=2.9.0a0+gita38f433 -DUSE_DISTRIBUTED=0 -DUSE_NUMPY=True -DUSE_OPENMP=1 -DUSE_PYTORCH_METAL=1 -DWERROR=1 /Users/ec2-user/runner/_work/pytorch/pytorch 2025-07-17T06:34:33.3793500Z -- The CXX compiler identification is AppleClang 15.0.0.15000309 2025-07-17T06:34:33.4922010Z -- The C compiler identification is AppleClang 15.0.0.15000309 2025-07-17T06:34:33.5527690Z -- Detecting CXX compiler ABI info 2025-07-17T06:34:33.8164230Z -- Detecting CXX compiler ABI info - done 2025-07-17T06:34:33.8202280Z -- Check for working CXX compiler: /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.O6KyizQevp/clang++ - skipped 2025-07-17T06:34:33.8203880Z -- Detecting CXX compile features 2025-07-17T06:34:33.8207580Z -- Detecting CXX compile features - done 2025-07-17T06:34:33.8791610Z -- Detecting C compiler ABI info 2025-07-17T06:34:34.1449040Z -- Detecting C compiler ABI info - done 2025-07-17T06:34:34.1485790Z -- Check for working C compiler: /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.O6KyizQevp/clang - skipped 2025-07-17T06:34:34.1487590Z -- Detecting C compile features 2025-07-17T06:34:34.1490780Z -- Detecting C compile features - done 2025-07-17T06:34:34.1541760Z -- Not forcing any particular BLAS to be found 2025-07-17T06:34:34.1774980Z -- CLANG_VERSION_STRING: 15.0 2025-07-17T06:34:34.1867420Z -- sdk version: 14.4, mps supported: ON 2025-07-17T06:34:34.2043750Z -- MPSGraph framework found 2025-07-17T06:34:34.2066550Z -- Could not find ccache. Consider installing ccache to speed up compilation. 2025-07-17T06:34:34.2099280Z -- Performing Test C_HAS_AVX_1 2025-07-17T06:34:34.4962460Z -- Performing Test C_HAS_AVX_1 - Failed 2025-07-17T06:34:34.4962800Z -- Performing Test C_HAS_AVX_2 2025-07-17T06:34:34.6698560Z -- Performing Test C_HAS_AVX_2 - Failed 2025-07-17T06:34:34.6698890Z -- Performing Test C_HAS_AVX_3 2025-07-17T06:34:34.8163210Z -- Performing Test C_HAS_AVX_3 - Failed 2025-07-17T06:34:34.8163770Z -- Performing Test C_HAS_AVX2_1 2025-07-17T06:34:34.9884340Z -- Performing Test C_HAS_AVX2_1 - Failed 2025-07-17T06:34:34.9884640Z -- Performing Test C_HAS_AVX2_2 2025-07-17T06:34:35.1618650Z -- Performing Test C_HAS_AVX2_2 - Failed 2025-07-17T06:34:35.1618920Z -- Performing Test C_HAS_AVX2_3 2025-07-17T06:34:35.3075650Z -- Performing Test C_HAS_AVX2_3 - Failed 2025-07-17T06:34:35.3076310Z -- Performing Test C_HAS_AVX512_1 2025-07-17T06:34:35.4812870Z -- Performing Test C_HAS_AVX512_1 - Failed 2025-07-17T06:34:35.4813140Z -- Performing Test C_HAS_AVX512_2 2025-07-17T06:34:35.6555670Z -- Performing Test C_HAS_AVX512_2 - Failed 2025-07-17T06:34:35.6555930Z -- Performing Test C_HAS_AVX512_3 2025-07-17T06:34:35.8012250Z -- Performing Test C_HAS_AVX512_3 - Failed 2025-07-17T06:34:35.8020160Z -- Performing Test CXX_HAS_AVX_1 2025-07-17T06:34:35.9775040Z -- Performing Test CXX_HAS_AVX_1 - Failed 2025-07-17T06:34:35.9775280Z -- Performing Test CXX_HAS_AVX_2 2025-07-17T06:34:36.1511660Z -- Performing Test CXX_HAS_AVX_2 - Failed 2025-07-17T06:34:36.1511960Z -- Performing Test CXX_HAS_AVX_3 2025-07-17T06:34:36.2972500Z -- Performing Test CXX_HAS_AVX_3 - Failed 2025-07-17T06:34:36.2973140Z -- Performing Test CXX_HAS_AVX2_1 2025-07-17T06:34:36.4708200Z -- Performing Test CXX_HAS_AVX2_1 - Failed 2025-07-17T06:34:36.4708440Z -- Performing Test CXX_HAS_AVX2_2 2025-07-17T06:34:36.6444710Z -- Performing Test CXX_HAS_AVX2_2 - Failed 2025-07-17T06:34:36.6445190Z -- Performing Test CXX_HAS_AVX2_3 2025-07-17T06:34:36.8434250Z -- Performing Test CXX_HAS_AVX2_3 - Failed 2025-07-17T06:34:36.8435360Z -- Performing Test CXX_HAS_AVX512_1 2025-07-17T06:34:37.0315960Z -- Performing Test CXX_HAS_AVX512_1 - Failed 2025-07-17T06:34:37.0316220Z -- Performing Test CXX_HAS_AVX512_2 2025-07-17T06:34:37.2188590Z -- Performing Test CXX_HAS_AVX512_2 - Failed 2025-07-17T06:34:37.2188850Z -- Performing Test CXX_HAS_AVX512_3 2025-07-17T06:34:37.3658430Z -- Performing Test CXX_HAS_AVX512_3 - Failed 2025-07-17T06:34:37.3659550Z -- Performing Test CAFFE2_COMPILER_SUPPORTS_AVX512_EXTENSIONS 2025-07-17T06:34:37.5446870Z -- Performing Test CAFFE2_COMPILER_SUPPORTS_AVX512_EXTENSIONS - Failed 2025-07-17T06:34:37.5450920Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_VISIBILITY 2025-07-17T06:34:37.7717400Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_VISIBILITY - Success 2025-07-17T06:34:37.7721480Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_INLINE_VISIBILITY 2025-07-17T06:34:37.9861370Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_INLINE_VISIBILITY - Success 2025-07-17T06:34:37.9865640Z -- Performing Test COMPILER_SUPPORTS_RDYNAMIC 2025-07-17T06:34:38.2012260Z -- Performing Test COMPILER_SUPPORTS_RDYNAMIC - Success 2025-07-17T06:34:38.2038090Z -- No OMAP3 processor on this machine. 2025-07-17T06:34:38.2038330Z -- No OMAP4 processor on this machine. 2025-07-17T06:34:38.2039260Z -- Compiler does not support SVE extension. Will not build perfkernels. 2025-07-17T06:34:38.2176900Z CUDA_TOOLKIT_ROOT_DIR not found or specified 2025-07-17T06:34:39.5709790Z -- Could NOT find CUDA (missing: CUDA_TOOLKIT_ROOT_DIR CUDA_NVCC_EXECUTABLE CUDA_INCLUDE_DIRS CUDA_CUDART_LIBRARY) 2025-07-17T06:34:39.5725200Z CMake Warning at cmake/public/cuda.cmake:31 (message): 2025-07-17T06:34:39.5725530Z PyTorch: CUDA cannot be found. Depending on whether you are building 2025-07-17T06:34:39.5726380Z PyTorch or a PyTorch dependent library, the next warning / error will give 2025-07-17T06:34:39.5726690Z you more info. 2025-07-17T06:34:39.5726840Z Call Stack (most recent call first): 2025-07-17T06:34:39.5727070Z cmake/Dependencies.cmake:44 (include) 2025-07-17T06:34:39.5822690Z CMakeLists.txt:865 (include) 2025-07-17T06:34:39.5822800Z 2025-07-17T06:34:39.5822810Z 2025-07-17T06:34:39.5822940Z CMake Warning at cmake/Dependencies.cmake:76 (message): 2025-07-17T06:34:39.5823250Z Not compiling with CUDA. Suppress this warning with -DUSE_CUDA=OFF. 2025-07-17T06:34:39.5823510Z Call Stack (most recent call first): 2025-07-17T06:34:39.5823720Z CMakeLists.txt:865 (include) 2025-07-17T06:34:39.5823820Z 2025-07-17T06:34:39.5823820Z 2025-07-17T06:34:39.5823940Z CMake Warning at cmake/Dependencies.cmake:95 (message): 2025-07-17T06:34:39.5824240Z Not compiling with XPU. Could NOT find SYCL. Suppress this warning with 2025-07-17T06:34:39.5824530Z -DUSE_XPU=OFF. 2025-07-17T06:34:39.5824680Z Call Stack (most recent call first): 2025-07-17T06:34:39.5824870Z CMakeLists.txt:865 (include) 2025-07-17T06:34:39.5824970Z 2025-07-17T06:34:39.5824980Z 2025-07-17T06:34:39.5825090Z -- Building using own protobuf under third_party per request. 2025-07-17T06:34:39.5825330Z -- Use custom protobuf build. 2025-07-17T06:34:39.5836630Z CMake Deprecation Warning at third_party/protobuf/cmake/CMakeLists.txt:2 (cmake_minimum_required): 2025-07-17T06:34:39.5837090Z Compatibility with CMake < 3.5 will be removed from a future version of 2025-07-17T06:34:39.5837380Z CMake. 2025-07-17T06:34:39.5837450Z 2025-07-17T06:34:39.5837600Z Update the VERSION argument value or use a ... suffix to tell 2025-07-17T06:34:39.5837950Z CMake that the project does not need compatibility with older versions. 2025-07-17T06:34:39.5838170Z 2025-07-17T06:34:39.5838170Z 2025-07-17T06:34:39.5853340Z -- 2025-07-17T06:34:39.5853480Z -- 3.13.0.0 2025-07-17T06:34:39.5858880Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD 2025-07-17T06:34:39.8154700Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success 2025-07-17T06:34:39.8160890Z -- Found Threads: TRUE 2025-07-17T06:34:39.8163160Z -- Performing Test protobuf_HAVE_BUILTIN_ATOMICS 2025-07-17T06:34:40.1552180Z -- Performing Test protobuf_HAVE_BUILTIN_ATOMICS - Success 2025-07-17T06:34:40.1823870Z -- Caffe2 protobuf include directory: $$ 2025-07-17T06:34:40.1834940Z -- Trying to find preferred BLAS backend of choice: MKL 2025-07-17T06:34:40.1867000Z CMake Warning at cmake/Dependencies.cmake:212 (message): 2025-07-17T06:34:40.1867270Z MKL could not be found. Defaulting to Eigen 2025-07-17T06:34:40.1868130Z Call Stack (most recent call first): 2025-07-17T06:34:40.1868330Z CMakeLists.txt:865 (include) 2025-07-17T06:34:40.1868520Z 2025-07-17T06:34:40.1868530Z 2025-07-17T06:34:40.1868630Z CMake Warning (dev) in cmake/Dependencies.cmake: 2025-07-17T06:34:40.1868860Z A logical block opening on the line 2025-07-17T06:34:40.1869000Z 2025-07-17T06:34:40.1869170Z /Users/ec2-user/runner/_work/pytorch/pytorch/cmake/Dependencies.cmake:261 (if) 2025-07-17T06:34:40.1869410Z 2025-07-17T06:34:40.1869710Z closes on the line 2025-07-17T06:34:40.1869800Z 2025-07-17T06:34:40.1869980Z /Users/ec2-user/runner/_work/pytorch/pytorch/cmake/Dependencies.cmake:263 (endif) 2025-07-17T06:34:40.1870240Z 2025-07-17T06:34:40.1870300Z with mis-matching arguments. 2025-07-17T06:34:40.1870480Z Call Stack (most recent call first): 2025-07-17T06:34:40.1870710Z CMakeLists.txt:865 (include) 2025-07-17T06:34:40.1870960Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-07-17T06:34:40.1871160Z 2025-07-17T06:34:40.1871270Z CMake Warning at cmake/Dependencies.cmake:269 (message): 2025-07-17T06:34:40.1871590Z Preferred BLAS (MKL) cannot be found, now searching for a general BLAS 2025-07-17T06:34:40.1871840Z library 2025-07-17T06:34:40.1871960Z Call Stack (most recent call first): 2025-07-17T06:34:40.1872130Z CMakeLists.txt:865 (include) 2025-07-17T06:34:40.1872230Z 2025-07-17T06:34:40.1872230Z 2025-07-17T06:34:40.1881330Z -- Checking for [blis] 2025-07-17T06:34:40.1888560Z -- Library blis: BLAS_blis_LIBRARY-NOTFOUND 2025-07-17T06:34:40.1888990Z -- Checking for [Accelerate] 2025-07-17T06:34:40.1894750Z -- Library Accelerate: /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/Accelerate.framework 2025-07-17T06:34:40.1895170Z -- Looking for sgemm_ 2025-07-17T06:34:40.4336440Z -- Looking for sgemm_ - found 2025-07-17T06:34:40.4351510Z -- Performing Test BLAS_F2C_DOUBLE_WORKS 2025-07-17T06:34:40.7421580Z -- Performing Test BLAS_F2C_DOUBLE_WORKS - Success 2025-07-17T06:34:40.7422070Z -- Performing Test BLAS_F2C_FLOAT_WORKS 2025-07-17T06:34:41.0845960Z -- Performing Test BLAS_F2C_FLOAT_WORKS - Failed 2025-07-17T06:34:41.0846310Z -- This BLAS uses the F2C return conventions 2025-07-17T06:34:41.0846750Z -- Performing Test BLAS_USE_CBLAS_DOT 2025-07-17T06:34:41.3949540Z -- Performing Test BLAS_USE_CBLAS_DOT - Success 2025-07-17T06:34:41.3949900Z -- BLAS_USE_CBLAS_DOT: TRUE 2025-07-17T06:34:41.3950110Z -- BLAS_F2C: TRUE 2025-07-17T06:34:41.3950760Z -- Found a library with BLAS API (accelerate). Full path: (/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/Accelerate.framework) 2025-07-17T06:34:41.3952850Z -- Looking for sbgemm_ 2025-07-17T06:34:41.6303820Z -- Looking for sbgemm_ - not found 2025-07-17T06:34:41.6304390Z -- Using pocketfft in directory: /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/pocketfft/ 2025-07-17T06:34:41.7007580Z -- The ASM compiler identification is AppleClang 2025-07-17T06:34:41.7022660Z -- Found assembler: /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.O6KyizQevp/clang 2025-07-17T06:34:41.7645100Z CMake Deprecation Warning at third_party/psimd/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-07-17T06:34:41.7645520Z Compatibility with CMake < 3.5 will be removed from a future version of 2025-07-17T06:34:41.7645840Z CMake. 2025-07-17T06:34:41.7645930Z 2025-07-17T06:34:41.7646080Z Update the VERSION argument value or use a ... suffix to tell 2025-07-17T06:34:41.7646450Z CMake that the project does not need compatibility with older versions. 2025-07-17T06:34:41.7646660Z 2025-07-17T06:34:41.7646670Z 2025-07-17T06:34:41.7673800Z CMake Deprecation Warning at third_party/FP16/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-07-17T06:34:41.7674190Z Compatibility with CMake < 3.5 will be removed from a future version of 2025-07-17T06:34:41.7674440Z CMake. 2025-07-17T06:34:41.7674500Z 2025-07-17T06:34:41.7674640Z Update the VERSION argument value or use a ... suffix to tell 2025-07-17T06:34:41.7674980Z CMake that the project does not need compatibility with older versions. 2025-07-17T06:34:41.7675180Z 2025-07-17T06:34:41.7675180Z 2025-07-17T06:34:41.7695700Z -- Brace yourself, we are building NNPACK 2025-07-17T06:34:41.7724200Z CMake Deprecation Warning at third_party/NNPACK/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-07-17T06:34:41.7724600Z Compatibility with CMake < 3.5 will be removed from a future version of 2025-07-17T06:34:41.7724840Z CMake. 2025-07-17T06:34:41.7725170Z 2025-07-17T06:34:41.7725310Z Update the VERSION argument value or use a ... suffix to tell 2025-07-17T06:34:41.7725650Z CMake that the project does not need compatibility with older versions. 2025-07-17T06:34:41.7725840Z 2025-07-17T06:34:41.7725850Z 2025-07-17T06:34:41.8291200Z -- NNPACK backend is neon 2025-07-17T06:34:41.8918000Z -- Building for XNNPACK_TARGET_PROCESSOR: arm64 2025-07-17T06:34:41.8930370Z -- Generating microkernels.cmake 2025-07-17T06:34:49.4170230Z Duplicate microkernel definition: src/qs8-qc4w-packw/gen/qs8-qc4w-packw-x8c8-gemm-goi-scalar.c and src/qs8-qc4w-packw/gen/qs8-qc4w-packw-x8c8-gemm-goi-avx256vnni.c (1th function) 2025-07-17T06:34:49.4171180Z Duplicate microkernel definition: src/qs8-qc4w-packw/gen/qs8-qc4w-packw-x8c8-gemm-goi-avx256vnni.c and src/qs8-qc4w-packw/gen/qs8-qc4w-packw-x8c8-gemm-goi-avxvnni.c (1th function) 2025-07-17T06:34:49.4171770Z No microkernel found in src/reference/unary-elementwise.cc 2025-07-17T06:34:49.4172040Z No microkernel found in src/reference/packing.cc 2025-07-17T06:34:49.4172290Z No microkernel found in src/reference/binary-elementwise.cc 2025-07-17T06:34:49.4831920Z CMake Warning at cmake/Dependencies.cmake:668 (message): 2025-07-17T06:34:49.4832250Z A compiler with AVX512 support is required for FBGEMM. Not compiling with 2025-07-17T06:34:49.4832530Z -- Using third party subdirectory Eigen. 2025-07-17T06:34:49.4832910Z FBGEMM. Turn this warning off by USE_FBGEMM=OFF. 2025-07-17T06:34:49.4833410Z Call Stack (most recent call first): 2025-07-17T06:34:49.4833660Z CMakeLists.txt:865 (include) 2025-07-17T06:34:49.4833770Z 2025-07-17T06:34:49.4833770Z 2025-07-17T06:34:49.4833880Z CMake Warning at cmake/Dependencies.cmake:724 (message): 2025-07-17T06:34:49.4834150Z Turning USE_FAKELOWP off as it depends on USE_FBGEMM. 2025-07-17T06:34:49.4834380Z Call Stack (most recent call first): 2025-07-17T06:34:49.4834560Z CMakeLists.txt:865 (include) 2025-07-17T06:34:49.4834670Z 2025-07-17T06:34:49.4834670Z 2025-07-17T06:34:51.0159580Z -- Found Python: /Users/ec2-user/runner/_work/_temp/venv-3.12-1752734038/bin/python (found version "3.12.11") found components: Interpreter Development.Module NumPy 2025-07-17T06:34:51.0160130Z -- Using third_party/pybind11. 2025-07-17T06:34:51.0160480Z -- pybind11 include dirs: /Users/ec2-user/runner/_work/pytorch/pytorch/cmake/../third_party/pybind11/include 2025-07-17T06:34:51.0867140Z -- Could NOT find OpenTelemetryApi (missing: OpenTelemetryApi_INCLUDE_DIRS) 2025-07-17T06:34:51.0867450Z -- Using third_party/opentelemetry-cpp. 2025-07-17T06:34:51.0867870Z -- opentelemetry api include dirs: /Users/ec2-user/runner/_work/pytorch/pytorch/cmake/../third_party/opentelemetry-cpp/api/include 2025-07-17T06:34:51.0939780Z -- Check OMP with lib /opt/homebrew/opt/libomp/lib/libomp.dylib and flags -Xpreprocessor -fopenmp -v 2025-07-17T06:34:51.2517390Z CMake Warning at cmake/Modules/FindOpenMP.cmake:335 (message): 2025-07-17T06:34:51.2517810Z Detecting C OpenMP compiler ABI info compiled with the following output: 2025-07-17T06:34:51.2518030Z 2025-07-17T06:34:51.2518080Z Change Dir: 2025-07-17T06:34:51.2518310Z '/Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/CMakeTmp' 2025-07-17T06:34:51.2518520Z 2025-07-17T06:34:51.2518520Z 2025-07-17T06:34:51.2518520Z 2025-07-17T06:34:51.2518580Z Run Build Command(s): 2025-07-17T06:34:51.2518810Z /Users/ec2-user/runner/_work/_temp/venv-3.12-1752734038/bin/ninja -v 2025-07-17T06:34:51.2519050Z cmTC_5fea5 2025-07-17T06:34:51.2519120Z 2025-07-17T06:34:51.2519280Z [1/2] /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.O6KyizQevp/clang 2025-07-17T06:34:51.2519620Z -Xpreprocessor -fopenmp -v -std=gnu11 -arch arm64 -isysroot 2025-07-17T06:34:51.2519880Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk 2025-07-17T06:34:51.2520100Z -mmacosx-version-min=11.0 -MD -MT 2025-07-17T06:34:51.2520310Z CMakeFiles/cmTC_5fea5.dir/OpenMPTryFlag.c.o -MF 2025-07-17T06:34:51.2520540Z CMakeFiles/cmTC_5fea5.dir/OpenMPTryFlag.c.o.d -o 2025-07-17T06:34:51.2521140Z CMakeFiles/cmTC_5fea5.dir/OpenMPTryFlag.c.o -c 2025-07-17T06:34:51.2521490Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.c 2025-07-17T06:34:51.2521740Z 2025-07-17T06:34:51.2521740Z 2025-07-17T06:34:51.2521830Z FAILED: CMakeFiles/cmTC_5fea5.dir/OpenMPTryFlag.c.o 2025-07-17T06:34:51.2521980Z 2025-07-17T06:34:51.2522130Z /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.O6KyizQevp/clang 2025-07-17T06:34:51.2522450Z -Xpreprocessor -fopenmp -v -std=gnu11 -arch arm64 -isysroot 2025-07-17T06:34:51.2522700Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk 2025-07-17T06:34:51.2522910Z -mmacosx-version-min=11.0 -MD -MT 2025-07-17T06:34:51.2523100Z CMakeFiles/cmTC_5fea5.dir/OpenMPTryFlag.c.o -MF 2025-07-17T06:34:51.2523320Z CMakeFiles/cmTC_5fea5.dir/OpenMPTryFlag.c.o.d -o 2025-07-17T06:34:51.2523540Z CMakeFiles/cmTC_5fea5.dir/OpenMPTryFlag.c.o -c 2025-07-17T06:34:51.2523850Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.c 2025-07-17T06:34:51.2524100Z 2025-07-17T06:34:51.2524190Z 2025-07-17T06:34:51.2524270Z Apple clang version 15.0.0 (clang-1500.3.9.4) 2025-07-17T06:34:51.2524410Z 2025-07-17T06:34:51.2524470Z Target: arm64-apple-darwin23.4.0 2025-07-17T06:34:51.2524590Z 2025-07-17T06:34:51.2524640Z Thread model: posix 2025-07-17T06:34:51.2524730Z 2025-07-17T06:34:51.2524840Z InstalledDir: /Library/Developer/CommandLineTools/usr/bin 2025-07-17T06:34:51.2525000Z 2025-07-17T06:34:51.2532760Z "/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple arm64-apple-macosx11.0.0 -Wundef-prefix=TARGET_OS_ -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -Werror=implicit-function-declaration -E -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name OpenMPTryFlag.c -mrelocation-model pic -pic-level 2 -mframe-pointer=non-leaf -fno-strict-return -ffp-contract=on -fno-rounding-math -funwind-tables=1 -fobjc-msgsend-selector-stubs -target-sdk-version=14.4 -fvisibility-inlines-hidden-static-local-var -target-cpu apple-m1 -target-feature +v8.5a -target-feature +crc -target-feature +lse -target-feature +rdm -target-feature +crypto -target-feature +dotprod -target-feature +fp-armv8 -target-feature +neon -target-feature +fp16fml -target-feature +ras -target-feature +rcpc -target-feature +zcm -target-feature +zcz -target-feature +fullfp16 -target-feature +sm4 -target-feature +sha3 -target-feature +sha2 -target-feature +aes -target-abi darwinpcs -debugger-tuning=lldb -target-linker-version 1053.12 -v -P -fcoverage-compilation-dir=/Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/CMakeTmp -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0 -dependency-file CMakeFiles/cmTC_5fea5.dir/OpenMPTryFlag.c.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_5fea5.dir/OpenMPTryFlag.c.o -sys-header-deps -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -D __arm64__=1 -fopenmp -I/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include -internal-externc-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -internal-externc-isystem /Library/Developer/CommandLineTools/usr/include -Wno-reorder-init-list -Wno-implicit-int-float-conversion -Wno-c99-designator -Wno-final-dtor-non-final-class -Wno-extra-semi-stmt -Wno-misleading-indentation -Wno-quoted-include-in-framework-header -Wno-implicit-fallthrough -Wno-enum-enum-conversion -Wno-enum-float-conversion -Wno-elaborated-enum-base -Wno-reserved-identifier -Wno-gnu-folding-constant -std=gnu11 -fdebug-compilation-dir=/Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/CMakeTmp -ferror-limit 19 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fgnuc-version=4.2.1 -fmax-type-align=16 -fcommon -clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation -fno-odr-hash-protocols -clang-vendor-feature=+enableAggressiveVLAFolding -clang-vendor-feature=+revert09abecef7bbf -clang-vendor-feature=+thisNoAlignAttr -clang-vendor-feature=+thisNoNullAttr -mllvm -disable-aligned-alloc-awareness=1 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o - -x c /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.c 2025-07-17T06:34:51.2540550Z 2025-07-17T06:34:51.2540660Z clang -cc1 version 15.0.0 (clang-1500.3.9.4) default target 2025-07-17T06:34:51.2540880Z arm64-apple-darwin23.4.0 2025-07-17T06:34:51.2540990Z 2025-07-17T06:34:51.2541080Z ignoring nonexistent directory "/usr/local/include" 2025-07-17T06:34:51.2541230Z 2025-07-17T06:34:51.2541290Z ignoring nonexistent directory 2025-07-17T06:34:51.2541530Z "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/local/include" 2025-07-17T06:34:51.2541740Z 2025-07-17T06:34:51.2541800Z ignoring nonexistent directory 2025-07-17T06:34:51.2542060Z "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/Library/Frameworks" 2025-07-17T06:34:51.2542310Z 2025-07-17T06:34:51.2542370Z #include "..." search starts here: 2025-07-17T06:34:51.2542490Z 2025-07-17T06:34:51.2542550Z #include <...> search starts here: 2025-07-17T06:34:51.2542660Z 2025-07-17T06:34:51.2542780Z /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include 2025-07-17T06:34:51.2543090Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include 2025-07-17T06:34:51.2543360Z /Library/Developer/CommandLineTools/usr/include 2025-07-17T06:34:51.2543720Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks (framework directory) 2025-07-17T06:34:51.2544000Z 2025-07-17T06:34:51.2544050Z End of search list. 2025-07-17T06:34:51.2544140Z 2025-07-17T06:34:51.2544140Z 2025-07-17T06:34:51.2544340Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.c:2:10: 2025-07-17T06:34:51.2544670Z fatal error: 'omp.h' file not found 2025-07-17T06:34:51.2544790Z 2025-07-17T06:34:51.2544840Z #include 2025-07-17T06:34:51.2544920Z 2025-07-17T06:34:51.2544960Z ^~~~~~~ 2025-07-17T06:34:51.2545040Z 2025-07-17T06:34:51.2545090Z 1 error generated. 2025-07-17T06:34:51.2545170Z 2025-07-17T06:34:51.2545240Z ninja: build stopped: subcommand failed. 2025-07-17T06:34:51.2545370Z 2025-07-17T06:34:51.2545370Z 2025-07-17T06:34:51.2545370Z 2025-07-17T06:34:51.2545430Z Call Stack (most recent call first): 2025-07-17T06:34:51.2545650Z cmake/Modules/FindOpenMP.cmake:551 (_OPENMP_GET_FLAGS) 2025-07-17T06:34:51.2545870Z cmake/Dependencies.cmake:929 (include) 2025-07-17T06:34:51.2546050Z CMakeLists.txt:865 (include) 2025-07-17T06:34:51.2546160Z 2025-07-17T06:34:51.2546160Z 2025-07-17T06:34:51.5592330Z -- Check OMP with lib /opt/homebrew/opt/libomp/lib/libomp.dylib and flags -Xpreprocessor -fopenmp -I/opt/homebrew/opt/libomp/include -v 2025-07-17T06:34:51.8518090Z -- Check OMP with lib /opt/homebrew/opt/libomp/lib/libomp.dylib and flags -Xpreprocessor -fopenmp -v 2025-07-17T06:34:52.0062530Z CMake Warning at cmake/Modules/FindOpenMP.cmake:335 (message): 2025-07-17T06:34:52.0062920Z Detecting CXX OpenMP compiler ABI info compiled with the following output: 2025-07-17T06:34:52.0063210Z 2025-07-17T06:34:52.0063260Z Change Dir: 2025-07-17T06:34:52.0063480Z '/Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/CMakeTmp' 2025-07-17T06:34:52.0063700Z 2025-07-17T06:34:52.0063700Z 2025-07-17T06:34:52.0063700Z 2025-07-17T06:34:52.0063760Z Run Build Command(s): 2025-07-17T06:34:52.0063990Z /Users/ec2-user/runner/_work/_temp/venv-3.12-1752734038/bin/ninja -v 2025-07-17T06:34:52.0064220Z cmTC_250a0 2025-07-17T06:34:52.0064300Z 2025-07-17T06:34:52.0064350Z [1/2] 2025-07-17T06:34:52.0064590Z /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.O6KyizQevp/clang++ 2025-07-17T06:34:52.0064970Z -fvisibility-inlines-hidden -DUSE_PTHREADPOOL -Xpreprocessor -fopenmp -v 2025-07-17T06:34:52.0065530Z -std=gnu++17 -arch arm64 -isysroot 2025-07-17T06:34:52.0065750Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk 2025-07-17T06:34:52.0065990Z -mmacosx-version-min=11.0 -MD -MT 2025-07-17T06:34:52.0066200Z CMakeFiles/cmTC_250a0.dir/OpenMPTryFlag.cpp.o -MF 2025-07-17T06:34:52.0066450Z CMakeFiles/cmTC_250a0.dir/OpenMPTryFlag.cpp.o.d -o 2025-07-17T06:34:52.0066700Z CMakeFiles/cmTC_250a0.dir/OpenMPTryFlag.cpp.o -c 2025-07-17T06:34:52.0067050Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.cpp 2025-07-17T06:34:52.0067320Z 2025-07-17T06:34:52.0067330Z 2025-07-17T06:34:52.0067420Z FAILED: CMakeFiles/cmTC_250a0.dir/OpenMPTryFlag.cpp.o 2025-07-17T06:34:52.0067580Z 2025-07-17T06:34:52.0067740Z /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.O6KyizQevp/clang++ 2025-07-17T06:34:52.0068110Z -fvisibility-inlines-hidden -DUSE_PTHREADPOOL -Xpreprocessor -fopenmp -v 2025-07-17T06:34:52.0068390Z -std=gnu++17 -arch arm64 -isysroot 2025-07-17T06:34:52.0068610Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk 2025-07-17T06:34:52.0068830Z -mmacosx-version-min=11.0 -MD -MT 2025-07-17T06:34:52.0069150Z CMakeFiles/cmTC_250a0.dir/OpenMPTryFlag.cpp.o -MF 2025-07-17T06:34:52.0069390Z CMakeFiles/cmTC_250a0.dir/OpenMPTryFlag.cpp.o.d -o 2025-07-17T06:34:52.0069630Z CMakeFiles/cmTC_250a0.dir/OpenMPTryFlag.cpp.o -c 2025-07-17T06:34:52.0069960Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.cpp 2025-07-17T06:34:52.0070210Z 2025-07-17T06:34:52.0070210Z 2025-07-17T06:34:52.0070290Z Apple clang version 15.0.0 (clang-1500.3.9.4) 2025-07-17T06:34:52.0070420Z 2025-07-17T06:34:52.0070490Z Target: arm64-apple-darwin23.4.0 2025-07-17T06:34:52.0070600Z 2025-07-17T06:34:52.0070650Z Thread model: posix 2025-07-17T06:34:52.0070730Z 2025-07-17T06:34:52.0070830Z InstalledDir: /Library/Developer/CommandLineTools/usr/bin 2025-07-17T06:34:52.0071000Z 2025-07-17T06:34:52.0079420Z "/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple arm64-apple-macosx11.0.0 -Wundef-prefix=TARGET_OS_ -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -Werror=implicit-function-declaration -E -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name OpenMPTryFlag.cpp -mrelocation-model pic -pic-level 2 -mframe-pointer=non-leaf -fno-strict-return -ffp-contract=on -fno-rounding-math -funwind-tables=1 -fobjc-msgsend-selector-stubs -target-sdk-version=14.4 -fvisibility-inlines-hidden-static-local-var -target-cpu apple-m1 -target-feature +v8.5a -target-feature +crc -target-feature +lse -target-feature +rdm -target-feature +crypto -target-feature +dotprod -target-feature +fp-armv8 -target-feature +neon -target-feature +fp16fml -target-feature +ras -target-feature +rcpc -target-feature +zcm -target-feature +zcz -target-feature +fullfp16 -target-feature +sm4 -target-feature +sha3 -target-feature +sha2 -target-feature +aes -target-abi darwinpcs -debugger-tuning=lldb -target-linker-version 1053.12 -v -P -fcoverage-compilation-dir=/Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/CMakeTmp -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0 -dependency-file CMakeFiles/cmTC_250a0.dir/OpenMPTryFlag.cpp.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_250a0.dir/OpenMPTryFlag.cpp.o -sys-header-deps -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -D USE_PTHREADPOOL -D __arm64__=1 -fopenmp -I/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1 -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include -internal-externc-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -internal-externc-isystem /Library/Developer/CommandLineTools/usr/include -Wno-reorder-init-list -Wno-implicit-int-float-conversion -Wno-c99-designator -Wno-final-dtor-non-final-class -Wno-extra-semi-stmt -Wno-misleading-indentation -Wno-quoted-include-in-framework-header -Wno-implicit-fallthrough -Wno-enum-enum-conversion -Wno-enum-float-conversion -Wno-elaborated-enum-base -Wno-reserved-identifier -Wno-gnu-folding-constant -std=gnu++17 -fdeprecated-macro -fdebug-compilation-dir=/Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/CMakeTmp -ferror-limit 19 -fvisibility-inlines-hidden -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fgnuc-version=4.2.1 -fno-cxx-modules -fcxx-exceptions -fexceptions -fmax-type-align=16 -fcommon -clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation -fno-odr-hash-protocols -clang-vendor-feature=+enableAggressiveVLAFolding -clang-vendor-feature=+revert09abecef7bbf -clang-vendor-feature=+thisNoAlignAttr -clang-vendor-feature=+thisNoNullAttr -mllvm -disable-aligned-alloc-awareness=1 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o - -x c++ /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.cpp 2025-07-17T06:34:52.0087700Z 2025-07-17T06:34:52.0087860Z clang -cc1 version 15.0.0 (clang-1500.3.9.4) default target 2025-07-17T06:34:52.0088080Z arm64-apple-darwin23.4.0 2025-07-17T06:34:52.0088190Z 2025-07-17T06:34:52.0088280Z ignoring nonexistent directory "/usr/local/include" 2025-07-17T06:34:52.0088430Z 2025-07-17T06:34:52.0088490Z ignoring nonexistent directory 2025-07-17T06:34:52.0088740Z "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/local/include" 2025-07-17T06:34:52.0088960Z 2025-07-17T06:34:52.0089010Z ignoring nonexistent directory 2025-07-17T06:34:52.0089270Z "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/Library/Frameworks" 2025-07-17T06:34:52.0089480Z 2025-07-17T06:34:52.0089540Z #include "..." search starts here: 2025-07-17T06:34:52.0089650Z 2025-07-17T06:34:52.0089710Z #include <...> search starts here: 2025-07-17T06:34:52.0089830Z 2025-07-17T06:34:52.0089970Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1 2025-07-17T06:34:52.0090310Z /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include 2025-07-17T06:34:52.0090620Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include 2025-07-17T06:34:52.0090890Z /Library/Developer/CommandLineTools/usr/include 2025-07-17T06:34:52.0091250Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks (framework directory) 2025-07-17T06:34:52.0091540Z 2025-07-17T06:34:52.0091590Z End of search list. 2025-07-17T06:34:52.0091670Z 2025-07-17T06:34:52.0091680Z 2025-07-17T06:34:52.0091890Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.cpp:2:10: 2025-07-17T06:34:52.0092220Z fatal error: 'omp.h' file not found 2025-07-17T06:34:52.0092340Z 2025-07-17T06:34:52.0092400Z #include 2025-07-17T06:34:52.0092470Z 2025-07-17T06:34:52.0092510Z ^~~~~~~ 2025-07-17T06:34:52.0092590Z 2025-07-17T06:34:52.0092640Z 1 error generated. 2025-07-17T06:34:52.0092720Z 2025-07-17T06:34:52.0092790Z ninja: build stopped: subcommand failed. 2025-07-17T06:34:52.0092930Z 2025-07-17T06:34:52.0092930Z 2025-07-17T06:34:52.0092930Z 2025-07-17T06:34:52.0092990Z Call Stack (most recent call first): 2025-07-17T06:34:52.0093210Z cmake/Modules/FindOpenMP.cmake:551 (_OPENMP_GET_FLAGS) 2025-07-17T06:34:52.0093440Z cmake/Dependencies.cmake:929 (include) 2025-07-17T06:34:52.0093620Z CMakeLists.txt:865 (include) 2025-07-17T06:34:52.0093730Z 2025-07-17T06:34:52.0093730Z 2025-07-17T06:34:52.3158960Z -- Check OMP with lib /opt/homebrew/opt/libomp/lib/libomp.dylib and flags -Xpreprocessor -fopenmp -I/opt/homebrew/opt/libomp/include -v 2025-07-17T06:34:52.7684710Z -- Found OpenMP_C: -Xpreprocessor -fopenmp -I/opt/homebrew/opt/libomp/include 2025-07-17T06:34:52.9975850Z -- Found OpenMP_CXX: -Xpreprocessor -fopenmp -I/opt/homebrew/opt/libomp/include 2025-07-17T06:34:52.9977160Z -- Found OpenMP: TRUE 2025-07-17T06:34:52.9978240Z -- Adding OpenMP CXX_FLAGS: -Xpreprocessor -fopenmp -I/opt/homebrew/opt/libomp/include 2025-07-17T06:34:52.9978670Z -- Will link against OpenMP libraries: /opt/homebrew/opt/libomp/lib/libomp.dylib 2025-07-17T06:34:52.9979600Z -- Found nvtx3: /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/NVTX/c/include 2025-07-17T06:34:53.1194100Z -- Found Python3: /Users/ec2-user/runner/_work/_temp/venv-3.12-1752734038/bin/python (found version "3.12.11") found components: Interpreter 2025-07-17T06:34:53.1203330Z -- ONNX_PROTOC_EXECUTABLE: $ 2025-07-17T06:34:53.1203730Z -- Protobuf_VERSION: Protobuf_VERSION_NOTFOUND 2025-07-17T06:34:53.1204320Z Generated: /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto 2025-07-17T06:34:53.1204890Z Generated: /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto 2025-07-17T06:34:53.1205450Z Generated: /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto 2025-07-17T06:34:53.2981250Z -- 2025-07-17T06:34:53.2981430Z -- ******** Summary ******** 2025-07-17T06:34:53.2981800Z -- CMake version : 3.27.9 2025-07-17T06:34:53.2982220Z -- CMake command : /Users/ec2-user/runner/_work/_temp/venv-3.12-1752734038/lib/python3.12/site-packages/cmake/data/bin/cmake 2025-07-17T06:34:53.2982620Z -- System : Darwin 2025-07-17T06:34:53.2982960Z -- C++ compiler : /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.O6KyizQevp/clang++ 2025-07-17T06:34:53.2983300Z -- C++ compiler version : 15.0.0.15000309 2025-07-17T06:34:53.2983630Z -- CXX flags : -fvisibility-inlines-hidden -DUSE_PTHREADPOOL -Wnon-virtual-dtor 2025-07-17T06:34:53.2983940Z -- Build type : Release 2025-07-17T06:34:53.2984200Z -- Compile definitions : ONNX_ML=1;ONNXIFI_ENABLE_EXT=1 2025-07-17T06:34:53.2984610Z -- CMAKE_PREFIX_PATH : /Users/ec2-user/runner/_work/_temp/venv-3.12-1752734038/lib/python3.12/site-packages 2025-07-17T06:34:53.2985050Z -- CMAKE_INSTALL_PREFIX : /Users/ec2-user/runner/_work/pytorch/pytorch/torch 2025-07-17T06:34:53.2985640Z -- CMAKE_MODULE_PATH : /Users/ec2-user/runner/_work/pytorch/pytorch/cmake/Modules;/Users/ec2-user/runner/_work/pytorch/pytorch/cmake/public/../Modules_CUDA_fix 2025-07-17T06:34:53.2986110Z -- 2025-07-17T06:34:53.2986250Z -- ONNX version : 1.18.0 2025-07-17T06:34:53.2986470Z -- ONNX NAMESPACE : onnx_torch 2025-07-17T06:34:53.2986680Z -- ONNX_USE_LITE_PROTO : OFF 2025-07-17T06:34:53.2986890Z -- USE_PROTOBUF_SHARED_LIBS : OFF 2025-07-17T06:34:53.2987090Z -- ONNX_DISABLE_EXCEPTIONS : OFF 2025-07-17T06:34:53.2987300Z -- ONNX_DISABLE_STATIC_REGISTRATION : OFF 2025-07-17T06:34:53.2987500Z -- ONNX_WERROR : OFF 2025-07-17T06:34:53.2987700Z -- ONNX_BUILD_TESTS : OFF 2025-07-17T06:34:53.2987890Z -- BUILD_SHARED_LIBS : OFF 2025-07-17T06:34:53.2988070Z -- 2025-07-17T06:34:53.2988290Z -- Protobuf compiler : $ 2025-07-17T06:34:53.2988550Z -- Protobuf includes : 2025-07-17T06:34:53.2988760Z -- Protobuf libraries : 2025-07-17T06:34:53.2988950Z -- ONNX_BUILD_PYTHON : OFF 2025-07-17T06:34:53.2989200Z CMake Warning at cmake/Dependencies.cmake:1443 (message): 2025-07-17T06:34:53.2989510Z Not compiling with MAGMA. Suppress this warning with -DUSE_MAGMA=OFF. 2025-07-17T06:34:53.2989790Z Call Stack (most recent call first): 2025-07-17T06:34:53.2989980Z CMakeLists.txt:865 (include) 2025-07-17T06:34:53.2990100Z 2025-07-17T06:34:53.2990100Z 2025-07-17T06:34:53.2990240Z -- Found CUDA with FP16 support, compiling with torch.cuda.HalfTensor 2025-07-17T06:34:53.2990510Z -- Adding -DNDEBUG to compile flags 2025-07-17T06:34:53.3006730Z -- No OMAP3 processor on this machine. 2025-07-17T06:34:53.3006970Z -- No OMAP4 processor on this machine. 2025-07-17T06:34:53.3007200Z -- Neon found with compiler flag : -D__NEON__ 2025-07-17T06:34:53.3022370Z -- Looking for cheev_ 2025-07-17T06:34:53.5434350Z -- Looking for cheev_ - found 2025-07-17T06:34:53.5434600Z -- Found a library with LAPACK API (accelerate). 2025-07-17T06:34:53.5434940Z disabling CUDA because NOT USE_CUDA is set 2025-07-17T06:34:53.5435150Z disabling ROCM because NOT USE_ROCM is set 2025-07-17T06:34:53.5435370Z disabling MKLDNN because USE_MKLDNN is not set 2025-07-17T06:34:53.5435610Z -- MIOpen not found. Compiling without MIOpen support 2025-07-17T06:34:53.6118260Z -- Looking for mmap 2025-07-17T06:34:53.8284220Z -- Looking for mmap - found 2025-07-17T06:34:53.8284430Z -- Looking for shm_open 2025-07-17T06:34:54.0490290Z -- Looking for shm_open - found 2025-07-17T06:34:54.0490510Z -- Looking for shm_unlink 2025-07-17T06:34:54.2695230Z -- Looking for shm_unlink - found 2025-07-17T06:34:54.2695480Z -- Looking for malloc_usable_size 2025-07-17T06:34:54.4877890Z -- Looking for malloc_usable_size - not found 2025-07-17T06:34:54.4955770Z -- {fmt} version: 11.2.0 2025-07-17T06:34:54.4955960Z -- Build type: Release 2025-07-17T06:34:54.4967190Z -- Performing Test HAS_NULLPTR_WARNING 2025-07-17T06:34:54.7181450Z -- Performing Test HAS_NULLPTR_WARNING - Success 2025-07-17T06:34:54.7238940Z -- Using CPU-only version of Kineto 2025-07-17T06:34:54.7239170Z -- Configuring Kineto dependency: 2025-07-17T06:34:54.7239710Z -- KINETO_SOURCE_DIR = /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto 2025-07-17T06:34:54.7240040Z -- KINETO_BUILD_TESTS = OFF 2025-07-17T06:34:54.7240210Z -- KINETO_LIBRARY_TYPE = static 2025-07-17T06:34:54.7263680Z CMake Warning (dev) at third_party/kineto/libkineto/CMakeLists.txt:15 (find_package): 2025-07-17T06:34:54.7264070Z Policy CMP0148 is not set: The FindPythonInterp and FindPythonLibs modules 2025-07-17T06:34:54.7264430Z are removed. Run "cmake --help-policy CMP0148" for policy details. Use 2025-07-17T06:34:54.7264780Z the cmake_policy command to set the policy and suppress this warning. 2025-07-17T06:34:54.7264980Z 2025-07-17T06:34:54.7265120Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-07-17T06:34:54.7265310Z 2025-07-17T06:34:54.7445840Z -- Found PythonInterp: /Users/ec2-user/runner/_work/_temp/venv-3.12-1752734038/bin/python (found version "3.12.11") 2025-07-17T06:34:54.7446920Z -- CUDA_SOURCE_DIR = 2025-07-17T06:34:54.7447090Z -- ROCM_SOURCE_DIR = 2025-07-17T06:34:54.7626380Z -- CUPTI unavailable or disabled - not building GPU profilers 2025-07-17T06:34:54.7963650Z -- Kineto: FMT_SOURCE_DIR = /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/fmt 2025-07-17T06:34:54.7964120Z -- Kineto: FMT_INCLUDE_DIR = /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/fmt/include 2025-07-17T06:34:54.7964570Z -- CUPTI_INCLUDE_DIR = /extras/CUPTI/include 2025-07-17T06:34:54.7964810Z -- ROCTRACER_INCLUDE_DIR = /include/roctracer 2025-07-17T06:34:54.7965210Z -- DYNOLOG_INCLUDE_DIR = /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/ 2025-07-17T06:34:54.7965860Z -- IPCFABRIC_INCLUDE_DIR = /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog//dynolog/src/ipcfabric/ 2025-07-17T06:34:54.7980210Z -- Configured Kineto (CPU) 2025-07-17T06:34:54.7990950Z -- Running on macOS with Apple silicon 2025-07-17T06:34:54.8012450Z -- Performing Test HAS_WERROR_RETURN_TYPE 2025-07-17T06:34:55.0162620Z -- Performing Test HAS_WERROR_RETURN_TYPE - Success 2025-07-17T06:34:55.0167420Z -- Performing Test HAS_WERROR_NON_VIRTUAL_DTOR 2025-07-17T06:34:55.2351140Z -- Performing Test HAS_WERROR_NON_VIRTUAL_DTOR - Success 2025-07-17T06:34:55.2355570Z -- Performing Test HAS_WERROR_BRACED_SCALAR_INIT 2025-07-17T06:34:55.4749470Z -- Performing Test HAS_WERROR_BRACED_SCALAR_INIT - Success 2025-07-17T06:34:55.4754360Z -- Performing Test HAS_WERROR_RANGE_LOOP_CONSTRUCT 2025-07-17T06:34:55.6922150Z -- Performing Test HAS_WERROR_RANGE_LOOP_CONSTRUCT - Success 2025-07-17T06:34:55.6926490Z -- Performing Test HAS_WERROR_BOOL_OPERATION 2025-07-17T06:34:55.9114210Z -- Performing Test HAS_WERROR_BOOL_OPERATION - Success 2025-07-17T06:34:55.9118850Z -- Performing Test HAS_WNARROWING 2025-07-17T06:34:56.1284160Z -- Performing Test HAS_WNARROWING - Success 2025-07-17T06:34:56.1288800Z -- Performing Test HAS_WNO_MISSING_FIELD_INITIALIZERS 2025-07-17T06:34:56.3494530Z -- Performing Test HAS_WNO_MISSING_FIELD_INITIALIZERS - Success 2025-07-17T06:34:56.3499130Z -- Performing Test HAS_WNO_UNKNOWN_PRAGMAS 2025-07-17T06:34:56.5678400Z -- Performing Test HAS_WNO_UNKNOWN_PRAGMAS - Success 2025-07-17T06:34:56.5682810Z -- Performing Test HAS_WNO_UNUSED_PARAMETER 2025-07-17T06:34:56.8155810Z -- Performing Test HAS_WNO_UNUSED_PARAMETER - Success 2025-07-17T06:34:56.8160180Z -- Performing Test HAS_WNO_STRICT_OVERFLOW 2025-07-17T06:34:57.0355990Z -- Performing Test HAS_WNO_STRICT_OVERFLOW - Success 2025-07-17T06:34:57.0360370Z -- Performing Test HAS_WNO_STRICT_ALIASING 2025-07-17T06:34:57.2607370Z -- Performing Test HAS_WNO_STRICT_ALIASING - Success 2025-07-17T06:34:57.2611910Z -- Performing Test HAS_WNO_STRINGOP_OVERFLOW 2025-07-17T06:34:57.4781480Z -- Performing Test HAS_WNO_STRINGOP_OVERFLOW - Failed 2025-07-17T06:34:57.4785870Z -- Performing Test HAS_WVLA_EXTENSION 2025-07-17T06:34:57.7216920Z -- Performing Test HAS_WVLA_EXTENSION - Success 2025-07-17T06:34:57.7221330Z -- Performing Test HAS_WSUGGEST_OVERRIDE 2025-07-17T06:34:57.9414100Z -- Performing Test HAS_WSUGGEST_OVERRIDE - Success 2025-07-17T06:34:57.9418730Z -- Performing Test HAS_WNEWLINE_EOF 2025-07-17T06:34:58.1980760Z -- Performing Test HAS_WNEWLINE_EOF - Success 2025-07-17T06:34:58.1985420Z -- Performing Test HAS_WINCONSISTENT_MISSING_OVERRIDE 2025-07-17T06:34:58.4692010Z -- Performing Test HAS_WINCONSISTENT_MISSING_OVERRIDE - Success 2025-07-17T06:34:58.4696600Z -- Performing Test HAS_WINCONSISTENT_MISSING_DESTRUCTOR_OVERRIDE 2025-07-17T06:34:58.6891190Z -- Performing Test HAS_WINCONSISTENT_MISSING_DESTRUCTOR_OVERRIDE - Success 2025-07-17T06:34:58.6895820Z -- Performing Test HAS_WNO_ERROR_OLD_STYLE_CAST 2025-07-17T06:34:58.9210010Z -- Performing Test HAS_WNO_ERROR_OLD_STYLE_CAST - Success 2025-07-17T06:34:58.9214570Z -- Performing Test HAS_WCONSTANT_CONVERSION 2025-07-17T06:34:59.1515820Z -- Performing Test HAS_WCONSTANT_CONVERSION - Success 2025-07-17T06:34:59.1520600Z -- Performing Test HAS_WNO_ALIGNED_ALLOCATION_UNAVAILABLE 2025-07-17T06:34:59.3718710Z -- Performing Test HAS_WNO_ALIGNED_ALLOCATION_UNAVAILABLE - Failed 2025-07-17T06:34:59.3723260Z -- Performing Test HAS_QUNUSED_ARGUMENTS 2025-07-17T06:34:59.5931350Z -- Performing Test HAS_QUNUSED_ARGUMENTS - Success 2025-07-17T06:34:59.5936040Z -- Performing Test HAS_FALIGNED_NEW 2025-07-17T06:34:59.8114820Z -- Performing Test HAS_FALIGNED_NEW - Success 2025-07-17T06:34:59.8119260Z -- Performing Test HAS_WERROR 2025-07-17T06:35:00.0264840Z -- Performing Test HAS_WERROR - Success 2025-07-17T06:35:00.0269440Z -- Performing Test HAS_WNO_MAYBE_UNINITIALIZED 2025-07-17T06:35:00.1796470Z -- Performing Test HAS_WNO_MAYBE_UNINITIALIZED - Failed 2025-07-17T06:35:00.1800800Z -- Performing Test HAS_FSTANDALONE_DEBUG 2025-07-17T06:35:00.4086970Z -- Performing Test HAS_FSTANDALONE_DEBUG - Success 2025-07-17T06:35:00.4091520Z -- Performing Test HAS_FNO_MATH_ERRNO 2025-07-17T06:35:00.6262330Z -- Performing Test HAS_FNO_MATH_ERRNO - Success 2025-07-17T06:35:00.6266730Z -- Performing Test HAS_FNO_TRAPPING_MATH 2025-07-17T06:35:00.8466530Z -- Performing Test HAS_FNO_TRAPPING_MATH - Success 2025-07-17T06:35:00.8470950Z -- Performing Test HAS_WERROR_FORMAT 2025-07-17T06:35:01.0647310Z -- Performing Test HAS_WERROR_FORMAT - Success 2025-07-17T06:35:01.0652070Z -- Performing Test HAS_WNO_UNGUARDED_AVAILABILITY_NEW 2025-07-17T06:35:01.2845130Z -- Performing Test HAS_WNO_UNGUARDED_AVAILABILITY_NEW - Success 2025-07-17T06:35:01.2849650Z -- Performing Test HAS_WNO_MISSING_BRACES 2025-07-17T06:35:01.5035090Z -- Performing Test HAS_WNO_MISSING_BRACES - Success 2025-07-17T06:35:01.5179540Z -- don't use NUMA 2025-07-17T06:35:01.5190800Z -- Looking for backtrace 2025-07-17T06:35:01.7415600Z -- Looking for backtrace - found 2025-07-17T06:35:01.7415880Z -- backtrace facility detected in default set of libraries 2025-07-17T06:35:01.7417380Z -- Found Backtrace: /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include 2025-07-17T06:35:03.4068590Z -- headers outputs: 2025-07-17T06:35:04.0836050Z -- sources outputs: 2025-07-17T06:35:04.6182240Z -- declarations_yaml outputs: 2025-07-17T06:35:04.6961420Z -- Using ATen parallel backend: OMP 2025-07-17T06:35:04.6977540Z disabling CUDA because USE_CUDA is set false 2025-07-17T06:35:04.8459800Z -- Found OpenSSL: /opt/homebrew/lib/libcrypto.dylib (found version "3.5.1") 2025-07-17T06:35:04.8485140Z -- Looking for sys/types.h 2025-07-17T06:35:05.1701950Z -- Looking for sys/types.h - found 2025-07-17T06:35:05.1702220Z -- Looking for stdint.h 2025-07-17T06:35:05.3880080Z -- Looking for stdint.h - found 2025-07-17T06:35:05.3880490Z -- Looking for stddef.h 2025-07-17T06:35:05.6069180Z -- Looking for stddef.h - found 2025-07-17T06:35:05.6069400Z -- Check size of long double 2025-07-17T06:35:05.8318340Z -- Check size of long double - done 2025-07-17T06:35:05.8318970Z -- Performing Test COMPILER_SUPPORTS_FLOAT128 2025-07-17T06:35:06.0144530Z -- Performing Test COMPILER_SUPPORTS_FLOAT128 - Failed 2025-07-17T06:35:06.0160220Z -- Found OpenMP_C: -Xpreprocessor -fopenmp -I/opt/homebrew/opt/libomp/include (found version "5.0") 2025-07-17T06:35:06.0162540Z -- Found OpenMP_CXX: -Xpreprocessor -fopenmp -I/opt/homebrew/opt/libomp/include (found version "5.0") 2025-07-17T06:35:06.0164010Z -- Found OpenMP: TRUE (found version "5.0") 2025-07-17T06:35:06.0165090Z -- Performing Test COMPILER_SUPPORTS_OPENMP 2025-07-17T06:35:06.2428870Z -- Performing Test COMPILER_SUPPORTS_OPENMP - Failed 2025-07-17T06:35:06.2429170Z -- Performing Test COMPILER_SUPPORTS_OMP_SIMD 2025-07-17T06:35:06.4848770Z -- Performing Test COMPILER_SUPPORTS_OMP_SIMD - Failed 2025-07-17T06:35:06.4849070Z -- Performing Test COMPILER_SUPPORTS_WEAK_ALIASES 2025-07-17T06:35:06.6677360Z -- Performing Test COMPILER_SUPPORTS_WEAK_ALIASES - Failed 2025-07-17T06:35:06.6677700Z -- Performing Test COMPILER_SUPPORTS_BUILTIN_MATH 2025-07-17T06:35:06.8892820Z -- Performing Test COMPILER_SUPPORTS_BUILTIN_MATH - Success 2025-07-17T06:35:06.8893130Z -- Performing Test COMPILER_SUPPORTS_SYS_GETRANDOM 2025-07-17T06:35:07.0531830Z -- Performing Test COMPILER_SUPPORTS_SYS_GETRANDOM - Failed 2025-07-17T06:35:07.0708680Z Target system: Darwin-23.4.0 2025-07-17T06:35:07.0708870Z Target processor: arm64 2025-07-17T06:35:07.0709040Z -- Configuring build for SLEEF-v3.8.0 2025-07-17T06:35:07.0709240Z Host system: Darwin-23.4.0 2025-07-17T06:35:07.0709730Z -- Using option `-Wall -Wno-unused-function -Wno-attributes -Wno-unused-result -ffp-contract=off -fno-math-errno -fno-trapping-math` to compile libsleef 2025-07-17T06:35:07.0710210Z -- Building shared libs : OFF 2025-07-17T06:35:07.0710380Z -- Building static test bins: OFF 2025-07-17T06:35:07.0710570Z -- MPFR : LIB_MPFR-NOTFOUND 2025-07-17T06:35:07.0710720Z -- GMP : LIBGMP-NOTFOUND 2025-07-17T06:35:07.0710870Z -- RT : 2025-07-17T06:35:07.0711000Z -- FFTW3 : LIBFFTW3-NOTFOUND 2025-07-17T06:35:07.0711150Z -- OPENSSL : 3.5.1 2025-07-17T06:35:07.0711280Z Host processor: arm64 2025-07-17T06:35:07.0711610Z Detected C compiler: AppleClang @ /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.O6KyizQevp/clang 2025-07-17T06:35:07.0711960Z CMake: 3.27.9 2025-07-17T06:35:07.0712190Z Make program: /Users/ec2-user/runner/_work/_temp/venv-3.12-1752734038/bin/ninja 2025-07-17T06:35:07.0712450Z -- SDE : SDE_COMMAND-NOTFOUND 2025-07-17T06:35:07.0712600Z -- COMPILER_SUPPORTS_OPENMP : 2025-07-17T06:35:07.0773900Z CMake Warning at cmake/Metal.cmake:59 (message): 2025-07-17T06:35:07.0774210Z Machine can not compile metal shaders, fails with xcrun: error: unable to 2025-07-17T06:35:07.0774870Z find utility "metal", not a developer tool or in PATH 2025-07-17T06:35:07.0775050Z 2025-07-17T06:35:07.0775120Z Call Stack (most recent call first): 2025-07-17T06:35:07.0775310Z aten/src/ATen/CMakeLists.txt:662 (include) 2025-07-17T06:35:07.0775450Z 2025-07-17T06:35:07.0775450Z 2025-07-17T06:35:07.0821760Z -- _CMAKE_OSX_SDKS: /Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk;/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk;/Library/Developer/CommandLineTools/SDKs/MacOSX13.sdk;/Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk 2025-07-17T06:35:07.0822800Z -- Toolchain using default OSX SDK: /Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk 2025-07-17T06:35:07.0823800Z -- CMAKE_FRAMEWORK_PATH: /Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk/System/Library/Frameworks;/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk/System/Library/PrivateFrameworks;/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk/Developer/Library/Frameworks 2025-07-17T06:35:07.8119130Z AT_INSTALL_INCLUDE_DIR include/ATen/core 2025-07-17T06:35:07.8119800Z core header install: /Users/ec2-user/runner/_work/pytorch/pytorch/build/aten/src/ATen/core/TensorBody.h 2025-07-17T06:35:07.8120370Z core header install: /Users/ec2-user/runner/_work/pytorch/pytorch/build/aten/src/ATen/core/aten_interned_strings.h 2025-07-17T06:35:07.8120910Z core header install: /Users/ec2-user/runner/_work/pytorch/pytorch/build/aten/src/ATen/core/enum_tag.h 2025-07-17T06:35:07.9585190Z -- Performing Test HAS_WMISSING_PROTOTYPES 2025-07-17T06:35:08.1801260Z -- Performing Test HAS_WMISSING_PROTOTYPES - Success 2025-07-17T06:35:08.1806070Z -- Performing Test HAS_WERROR_MISSING_PROTOTYPES 2025-07-17T06:35:08.4009640Z -- Performing Test HAS_WERROR_MISSING_PROTOTYPES - Success 2025-07-17T06:35:08.4904500Z -- The OBJC compiler identification is AppleClang 15.0.0.15000309 2025-07-17T06:35:08.5547160Z -- The OBJCXX compiler identification is AppleClang 15.0.0.15000309 2025-07-17T06:35:08.6161700Z -- Detecting OBJC compiler ABI info 2025-07-17T06:35:08.8939030Z -- Detecting OBJC compiler ABI info - done 2025-07-17T06:35:08.8978730Z -- Check for working OBJC compiler: /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.O6KyizQevp/clang - skipped 2025-07-17T06:35:08.9583530Z -- Detecting OBJCXX compiler ABI info 2025-07-17T06:35:09.2402420Z -- Detecting OBJCXX compiler ABI info - done 2025-07-17T06:35:09.2444150Z -- Check for working OBJCXX compiler: /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.O6KyizQevp/clang++ - skipped 2025-07-17T06:35:09.2878980Z -- CMAKE_FRAMEWORK_PATH: /Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk/System/Library/Frameworks;/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk/System/Library/PrivateFrameworks;/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk/Developer/Library/Frameworks 2025-07-17T06:35:09.2933600Z CMake Warning at CMakeLists.txt:1269 (message): 2025-07-17T06:35:09.2933930Z Generated cmake files are only fully tested if one builds with system glog, 2025-07-17T06:35:09.2934420Z gflags, and protobuf. Other settings may generate files that are not well 2025-07-17T06:35:09.2934680Z tested. 2025-07-17T06:35:09.2934750Z 2025-07-17T06:35:09.2934760Z 2025-07-17T06:35:09.2959780Z -- 2025-07-17T06:35:09.2960010Z -- ******** Summary ******** 2025-07-17T06:35:09.2960180Z -- General: 2025-07-17T06:35:09.2960310Z -- CMake version : 3.27.9 2025-07-17T06:35:09.2960700Z -- CMake command : /Users/ec2-user/runner/_work/_temp/venv-3.12-1752734038/lib/python3.12/site-packages/cmake/data/bin/cmake 2025-07-17T06:35:09.2961090Z -- System : Darwin 2025-07-17T06:35:09.2961400Z -- C++ compiler : /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.O6KyizQevp/clang++ 2025-07-17T06:35:09.2961740Z -- C++ compiler id : AppleClang 2025-07-17T06:35:09.2961940Z -- C++ compiler version : 15.0.0.15000309 2025-07-17T06:35:09.2962150Z -- Using ccache if found : ON 2025-07-17T06:35:09.2962590Z -- Found ccache : CCACHE_PROGRAM-NOTFOUND 2025-07-17T06:35:09.2965060Z -- CXX flags : -fvisibility-inlines-hidden -DUSE_PTHREADPOOL -DNDEBUG -DUSE_KINETO -DLIBKINETO_NOCUPTI -DLIBKINETO_NOROCTRACER -DLIBKINETO_NOXPUPTI=ON -DUSE_PYTORCH_QNNPACK -DAT_BUILD_ARM_VEC256_WITH_SLEEF -DUSE_XNNPACK -DUSE_PYTORCH_METAL -DSYMBOLICATE_MOBILE_DEBUG_HANDLE -O2 -fPIC -DC10_NODEPRECATED -Wall -Wextra -Werror=return-type -Werror=non-virtual-dtor -Werror=braced-scalar-init -Werror=range-loop-construct -Werror=bool-operation -Wnarrowing -Wno-missing-field-initializers -Wno-unknown-pragmas -Wno-unused-parameter -Wno-strict-overflow -Wno-strict-aliasing -Wvla-extension -Wsuggest-override -Wnewline-eof -Winconsistent-missing-override -Winconsistent-missing-destructor-override -Wno-pass-failed -Wno-error=old-style-cast -Wconstant-conversion -Qunused-arguments -faligned-new -Werror -fno-math-errno -fno-trapping-math -Werror=format -DUSE_MPS -Wno-missing-braces 2025-07-17T06:35:09.2967680Z -- Shared LD flags : -rdynamic -weak_framework Foundation -weak_framework MetalPerformanceShaders -weak_framework MetalPerformanceShadersGraph -weak_framework Metal 2025-07-17T06:35:09.2968270Z -- Static LD flags : 2025-07-17T06:35:09.2968430Z -- Module LD flags : 2025-07-17T06:35:09.2968590Z -- Build type : Release 2025-07-17T06:35:09.2969160Z -- Compile definitions : ONNX_ML=1;ONNXIFI_ENABLE_EXT=1;ONNX_NAMESPACE=onnx_torch;HAVE_MMAP=1;_FILE_OFFSET_BITS=64;HAVE_SHM_OPEN=1;HAVE_SHM_UNLINK=1;USE_EXTERNAL_MZCRC;MINIZ_DISABLE_ZIP_READER_CRC32_CHECKS;AT_BUILD_ARM_VEC256_WITH_SLEEF 2025-07-17T06:35:09.2969870Z -- CMAKE_PREFIX_PATH : /Users/ec2-user/runner/_work/_temp/venv-3.12-1752734038/lib/python3.12/site-packages 2025-07-17T06:35:09.2970280Z -- CMAKE_INSTALL_PREFIX : /Users/ec2-user/runner/_work/pytorch/pytorch/torch 2025-07-17T06:35:09.2970530Z -- USE_GOLD_LINKER : OFF 2025-07-17T06:35:09.2970670Z -- 2025-07-17T06:35:09.2970780Z -- TORCH_VERSION : 2.9.0 2025-07-17T06:35:09.2970950Z -- BUILD_STATIC_RUNTIME_BENCHMARK: OFF 2025-07-17T06:35:09.2971130Z -- BUILD_BINARY : OFF 2025-07-17T06:35:09.2971290Z -- BUILD_CUSTOM_PROTOBUF : ON 2025-07-17T06:35:09.2971440Z -- Link local protobuf : ON 2025-07-17T06:35:09.2971600Z -- BUILD_PYTHON : True 2025-07-17T06:35:09.2971760Z -- Python version : 3.12.11 2025-07-17T06:35:09.2972030Z -- Python executable : /Users/ec2-user/runner/_work/_temp/venv-3.12-1752734038/bin/python 2025-07-17T06:35:09.2972300Z -- Python library : 2025-07-17T06:35:09.2972630Z -- Python includes : /opt/homebrew/opt/python@3.12/Frameworks/Python.framework/Versions/3.12/include/python3.12 2025-07-17T06:35:09.2973110Z -- Python site-package : /Users/ec2-user/runner/_work/_temp/venv-3.12-1752734038/lib/python3.12/site-packages 2025-07-17T06:35:09.2973430Z -- BUILD_SHARED_LIBS : ON 2025-07-17T06:35:09.2973600Z -- CAFFE2_USE_MSVC_STATIC_RUNTIME : OFF 2025-07-17T06:35:09.2973780Z -- BUILD_TEST : False 2025-07-17T06:35:09.2973940Z -- BUILD_JNI : OFF 2025-07-17T06:35:09.2974100Z -- BUILD_MOBILE_AUTOGRAD : OFF 2025-07-17T06:35:09.2974270Z -- BUILD_LITE_INTERPRETER: OFF 2025-07-17T06:35:09.2974440Z -- CROSS_COMPILING_MACOSX : 2025-07-17T06:35:09.2980270Z -- INTERN_BUILD_MOBILE : 2025-07-17T06:35:09.2980450Z -- TRACING_BASED : OFF 2025-07-17T06:35:09.2980610Z -- USE_BLAS : 1 2025-07-17T06:35:09.2980770Z -- BLAS : accelerate 2025-07-17T06:35:09.2980940Z -- BLAS_HAS_SBGEMM : 2025-07-17T06:35:09.2981100Z -- USE_LAPACK : 1 2025-07-17T06:35:09.2981260Z -- LAPACK : accelerate 2025-07-17T06:35:09.2981430Z -- USE_ASAN : OFF 2025-07-17T06:35:09.2981580Z -- USE_TSAN : OFF 2025-07-17T06:35:09.2981730Z -- USE_CPP_CODE_COVERAGE : OFF 2025-07-17T06:35:09.2981890Z -- USE_CUDA : OFF 2025-07-17T06:35:09.2982040Z -- USE_XPU : OFF 2025-07-17T06:35:09.2982360Z -- USE_ROCM : OFF 2025-07-17T06:35:09.2982520Z -- BUILD_NVFUSER : 2025-07-17T06:35:09.2982680Z -- USE_EIGEN_FOR_BLAS : ON 2025-07-17T06:35:09.2982840Z -- USE_FBGEMM : OFF 2025-07-17T06:35:09.2982990Z -- USE_FAKELOWP : OFF 2025-07-17T06:35:09.2983150Z -- USE_KINETO : ON 2025-07-17T06:35:09.2983310Z -- USE_GFLAGS : OFF 2025-07-17T06:35:09.2983460Z -- USE_GLOG : OFF 2025-07-17T06:35:09.2983610Z -- USE_LITE_PROTO : OFF 2025-07-17T06:35:09.2983770Z -- USE_PYTORCH_METAL : 1 2025-07-17T06:35:09.2983930Z -- USE_PYTORCH_METAL_EXPORT : OFF 2025-07-17T06:35:09.2984100Z -- USE_MPS : ON 2025-07-17T06:35:09.2984250Z -- CAN_COMPILE_METAL : NO 2025-07-17T06:35:09.2984410Z -- USE_MKL : OFF 2025-07-17T06:35:09.2984550Z -- USE_MKLDNN : OFF 2025-07-17T06:35:09.2984710Z -- USE_KLEIDIAI : ON 2025-07-17T06:35:09.2984860Z -- USE_UCC : OFF 2025-07-17T06:35:09.2985020Z -- USE_ITT : OFF 2025-07-17T06:35:09.2985270Z -- USE_XCCL : OFF 2025-07-17T06:35:09.2985420Z -- USE_NCCL : OFF 2025-07-17T06:35:09.2985580Z -- Found NVSHMEM : 2025-07-17T06:35:09.2985730Z -- USE_NNPACK : ON 2025-07-17T06:35:09.2985880Z -- USE_NUMPY : ON 2025-07-17T06:35:09.2986030Z -- USE_OBSERVERS : ON 2025-07-17T06:35:09.2986190Z -- USE_OPENCL : OFF 2025-07-17T06:35:09.2986340Z -- USE_OPENMP : 1 2025-07-17T06:35:09.2986490Z -- USE_MIMALLOC : OFF 2025-07-17T06:35:09.2986650Z -- USE_VULKAN : OFF 2025-07-17T06:35:09.2986800Z -- USE_PROF : OFF 2025-07-17T06:35:09.2986960Z -- USE_PYTORCH_QNNPACK : ON 2025-07-17T06:35:09.2987120Z -- USE_XNNPACK : ON 2025-07-17T06:35:09.2987280Z -- USE_DISTRIBUTED : 0 2025-07-17T06:35:09.2987430Z -- Public Dependencies : 2025-07-17T06:35:09.2987940Z -- Private Dependencies : Threads::Threads;pthreadpool;cpuinfo;pytorch_qnnpack;nnpack;XNNPACK;microkernels-prod;fp16;caffe2::openmp;kleidiai;fmt::fmt-header-only;kineto 2025-07-17T06:35:09.2988430Z -- Public CUDA Deps. : 2025-07-17T06:35:09.2988580Z -- Private CUDA Deps. : 2025-07-17T06:35:09.2988740Z -- USE_COREML_DELEGATE : OFF 2025-07-17T06:35:09.2988900Z -- BUILD_LAZY_TS_BACKEND : ON 2025-07-17T06:35:09.2989060Z -- USE_ROCM_KERNEL_ASSERT : OFF 2025-07-17T06:35:09.3036830Z -- Configuring done (36.2s) 2025-07-17T06:35:10.2072780Z -- Generating done (0.7s) 2025-07-17T06:35:10.3455340Z CMake Warning: 2025-07-17T06:35:10.3455590Z Manually-specified variables were not used by the project: 2025-07-17T06:35:10.3455870Z 2025-07-17T06:35:10.3455990Z BUILD_ENVIRONMENT 2025-07-17T06:35:10.3456110Z 2025-07-17T06:35:10.3456110Z 2025-07-17T06:35:10.3471500Z -- Build files have been written to: /Users/ec2-user/runner/_work/pytorch/pytorch/build 2025-07-17T06:35:10.3658310Z cmake --build . --target install --config Release 2025-07-17T06:35:12.5056140Z [1/4] Generating ATen declarations_yaml 2025-07-17T06:35:14.7453950Z [2/4] Generating ATen headers 2025-07-17T06:35:15.8515870Z [3/4] Generating ATen sources 2025-07-17T06:35:16.0779750Z [1/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-u2.c.o 2025-07-17T06:35:16.0818890Z [2/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-rsum/gen/qu8-rsum-scalar-u2.c.o 2025-07-17T06:35:16.0899210Z [3/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-u2.c.o 2025-07-17T06:35:16.0908780Z [4/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-rsum/gen/qu8-rsum-scalar-u1.c.o 2025-07-17T06:35:16.0953390Z [5/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-andxor-u1.c.o 2025-07-17T06:35:16.0955090Z [6/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4-minmax-rndnu-scalar.c.o 2025-07-17T06:35:16.1089170Z [7/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-select-u1.c.o 2025-07-17T06:35:16.1103970Z [8/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-u2.c.o 2025-07-17T06:35:16.1127640Z [9/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-select-u2.c.o 2025-07-17T06:35:16.1195380Z [10/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-andxor-u2.c.o 2025-07-17T06:35:16.1756480Z [11/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-scalar-u1.c.o 2025-07-17T06:35:16.1795690Z [12/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-scalar-u2.c.o 2025-07-17T06:35:16.1916550Z [13/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-ibilinear/gen/s8-ibilinear-scalar-c2.c.o 2025-07-17T06:35:16.2031990Z [14/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-ibilinear/gen/u8-ibilinear-scalar-c2.c.o 2025-07-17T06:35:16.2044250Z [15/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-u2.c.o 2025-07-17T06:35:16.2063780Z [16/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-u1.c.o 2025-07-17T06:35:16.2083120Z [17/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-ibilinear/gen/s8-ibilinear-scalar-c4.c.o 2025-07-17T06:35:16.2272590Z [18/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-ibilinear/gen/u8-ibilinear-scalar-c4.c.o 2025-07-17T06:35:16.2373810Z [19/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-scalar-u1.c.o 2025-07-17T06:35:16.2377720Z [20/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-scalar-u2.c.o 2025-07-17T06:35:16.2573310Z [21/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-u8.c.o 2025-07-17T06:35:16.2855800Z [22/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x2-gemm-goi-scalar-u2.c.o 2025-07-17T06:35:16.3025810Z [23/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x4-gemm-goi-scalar-u4.c.o 2025-07-17T06:35:16.3028920Z [24/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x8-gemm-goi-scalar-u4.c.o 2025-07-17T06:35:16.3067050Z [25/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x8c8-gemm-gio-scalar.c.o 2025-07-17T06:35:16.3199180Z [26/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x16-gemm-goi-scalar-u4.c.o 2025-07-17T06:35:16.3210870Z [27/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-u16.c.o 2025-07-17T06:35:16.3329560Z [28/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x32-gemm-goi-scalar-u4.c.o 2025-07-17T06:35:16.3495210Z [29/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x2-gemm-goi-scalar-u4.c.o 2025-07-17T06:35:16.3608260Z [30/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-1x2-scalar-int.c.o 2025-07-17T06:35:16.3618040Z [31/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-1x4-scalar-int.c.o 2025-07-17T06:35:16.3747040Z [32/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-2x1-scalar-int.c.o 2025-07-17T06:35:16.3882840Z [33/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-4x2-scalar-int.c.o 2025-07-17T06:35:16.3940640Z [34/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-4x1-scalar-int.c.o 2025-07-17T06:35:16.4090480Z [35/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-4x4-scalar-int.c.o 2025-07-17T06:35:16.4233130Z [36/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x8-gemm-goi-scalar-int-u4.c.o 2025-07-17T06:35:16.4248240Z [37/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x16-gemm-goi-scalar-int-u4.c.o 2025-07-17T06:35:16.4476770Z [38/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-1x2-scalar-int.c.o 2025-07-17T06:35:16.4513600Z [39/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x32-gemm-goi-scalar-int-u4.c.o 2025-07-17T06:35:16.4666330Z [40/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-2x2-scalar-int.c.o 2025-07-17T06:35:16.4667600Z [41/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-1x4-scalar-int.c.o 2025-07-17T06:35:16.4673890Z [42/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-2x1-scalar-int.c.o 2025-07-17T06:35:16.4773310Z [43/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-2x2-scalar-int.c.o 2025-07-17T06:35:16.4945100Z [44/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x1-scalar-int.c.o 2025-07-17T06:35:16.4947150Z [45/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x2-scalar-int.c.o 2025-07-17T06:35:16.5130740Z [46/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-1x4-scalar.c.o 2025-07-17T06:35:16.5328640Z [47/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-scalar-int.c.o 2025-07-17T06:35:16.5425500Z [48/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-2x1-scalar.c.o 2025-07-17T06:35:16.5620550Z [49/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-4x1-scalar.c.o 2025-07-17T06:35:16.5629830Z [50/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-2x4-scalar.c.o 2025-07-17T06:35:16.5804060Z [51/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-4x2-scalar.c.o 2025-07-17T06:35:16.5917960Z [52/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-4x4-scalar.c.o 2025-07-17T06:35:16.5991720Z [53/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-2c1s1r-gemm-scalar-float.c.o 2025-07-17T06:35:16.5998780Z [54/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/x32-packx-2x-scalar.c.o 2025-07-17T06:35:16.6031310Z [55/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-2c1s1r-gemm-scalar-int.c.o 2025-07-17T06:35:16.6164460Z [56/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-neon-acc2.c.o 2025-07-17T06:35:16.6327830Z [57/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-2c2s1r-gemm-scalar-float.c.o 2025-07-17T06:35:16.6374900Z [58/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-2c2s1r-gemm-scalar-int.c.o 2025-07-17T06:35:16.6546770Z [59/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-4c1s1r-gemm-scalar-float.c.o 2025-07-17T06:35:16.6845330Z [60/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-4c4s1r-gemm-scalar-float.c.o 2025-07-17T06:35:16.6906120Z [61/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-4c1s1r-gemm-scalar-int.c.o 2025-07-17T06:35:16.6976130Z [62/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x2-gemm-goi-scalar-int-u4.c.o 2025-07-17T06:35:16.6994140Z [63/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x3-gemm-goi-scalar-int-u4.c.o 2025-07-17T06:35:16.7051030Z [64/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x3-gemm-goi-scalar-float-u4.c.o 2025-07-17T06:35:16.7161870Z [65/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-4c4s1r-gemm-scalar-int.c.o 2025-07-17T06:35:16.7221790Z [66/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x4-gemm-gio-scalar.c.o 2025-07-17T06:35:16.7270330Z [67/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x4-gemm-goi-scalar-int-u4.c.o 2025-07-17T06:35:16.7409680Z [68/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x8-gemm-goi-scalar-float-u4.c.o 2025-07-17T06:35:16.7537480Z [69/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x8-gemm-gio-scalar.c.o 2025-07-17T06:35:16.7821760Z [70/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x8-gemm-goi-scalar-int-u4.c.o 2025-07-17T06:35:16.7937990Z [71/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x16-gemm-gio-scalar.c.o 2025-07-17T06:35:16.7973210Z [72/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x16-gemm-goi-scalar-int-u4.c.o 2025-07-17T06:35:16.8036200Z [73/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x16-gemm-goi-scalar-float-u4.c.o 2025-07-17T06:35:16.8183820Z [74/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/x32-packx-3x-scalar.c.o 2025-07-17T06:35:16.8218340Z [75/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-1x2-scalar-float.c.o 2025-07-17T06:35:16.8261960Z [76/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/x32-packx-4x-scalar.c.o 2025-07-17T06:35:16.8280640Z [77/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x32-gemm-gio-scalar.c.o 2025-07-17T06:35:16.8582060Z [78/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-1x2-scalar-int.c.o 2025-07-17T06:35:16.8669630Z [79/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-1x4-scalar-float.c.o 2025-07-17T06:35:16.8819390Z [80/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-1x4-scalar-int.c.o 2025-07-17T06:35:16.8821470Z [81/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x1-scalar-int.c.o 2025-07-17T06:35:16.8939830Z [82/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-scalar-float.c.o 2025-07-17T06:35:16.9031260Z [83/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-scalar-int.c.o 2025-07-17T06:35:16.9279450Z [84/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x4-scalar-float.c.o 2025-07-17T06:35:16.9283280Z [85/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x1-scalar-int.c.o 2025-07-17T06:35:16.9400770Z [86/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x1-scalar-float.c.o 2025-07-17T06:35:16.9402810Z [87/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x1-scalar-float.c.o 2025-07-17T06:35:16.9488630Z [88/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x2-scalar-float.c.o 2025-07-17T06:35:16.9494500Z [89/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x2-scalar-int.c.o 2025-07-17T06:35:16.9822670Z [90/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-scalar-int.c.o 2025-07-17T06:35:16.9943370Z [91/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-scalar-float.c.o 2025-07-17T06:35:17.0048270Z [92/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-2c1s1r-gemm-scalar-int.c.o 2025-07-17T06:35:17.0064640Z [93/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-2c1s1r-gemm-scalar-float.c.o 2025-07-17T06:35:17.0263260Z [94/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-4c1s1r-gemm-scalar-int.c.o 2025-07-17T06:35:17.0322420Z [95/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-4c1s1r-gemm-scalar-float.c.o 2025-07-17T06:35:17.0383800Z [96/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-2c2s1r-gemm-scalar-float.c.o 2025-07-17T06:35:17.0411230Z [97/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-4c4s1r-gemm-scalar-int.c.o 2025-07-17T06:35:17.0564810Z [98/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-4c4s1r-gemm-scalar-float.c.o 2025-07-17T06:35:17.0569550Z [99/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-2c2s1r-gemm-scalar-int.c.o 2025-07-17T06:35:17.1003970Z [100/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-1x2-scalar-float.c.o 2025-07-17T06:35:17.1009100Z [101/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-1x2-scalar-int.c.o 2025-07-17T06:35:17.1196380Z [102/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l4c4s4r-minmax-neon-acc2.c.o 2025-07-17T06:35:17.1200370Z [103/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x1-scalar-float.c.o 2025-07-17T06:35:17.1359320Z [104/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-scalar-float.c.o 2025-07-17T06:35:17.1379660Z [105/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-scalar-int.c.o 2025-07-17T06:35:17.1475830Z [106/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x2-scalar-float.c.o 2025-07-17T06:35:17.1619670Z [107/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x1-scalar-int.c.o 2025-07-17T06:35:17.1620470Z [108/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x1-scalar-int.c.o 2025-07-17T06:35:17.1719280Z [109/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x1-scalar-float.c.o 2025-07-17T06:35:17.2242170Z [110/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int16-u8.c.o 2025-07-17T06:35:17.2329280Z [111/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int16-u24.c.o 2025-07-17T06:35:17.2402890Z [112/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int16-u32.c.o 2025-07-17T06:35:17.2538110Z [113/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int32-u8.c.o 2025-07-17T06:35:17.2658780Z [114/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int32-u16.c.o 2025-07-17T06:35:17.2662620Z [115/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int32-u24.c.o 2025-07-17T06:35:17.2838490Z [116/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x4-neon-2x1.c.o 2025-07-17T06:35:17.2907380Z [117/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int32-u32.c.o 2025-07-17T06:35:17.3106630Z [118/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x8-neon-2x1.c.o 2025-07-17T06:35:17.3131550Z [119/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x4-neon-2x2.c.o 2025-07-17T06:35:17.3484040Z [120/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x8-neon-2x2.c.o 2025-07-17T06:35:17.3540830Z [121/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x4-neon-2x2.c.o 2025-07-17T06:35:17.3645260Z [122/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x4-neon-2x1.c.o 2025-07-17T06:35:17.3825560Z [123/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x8-neon-2x1.c.o 2025-07-17T06:35:17.3895400Z [124/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x8-neon-2x2.c.o 2025-07-17T06:35:17.3912140Z [125/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p4c-minmax-neon-acc2.c.o 2025-07-17T06:35:17.4339200Z [126/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-neon.c.o 2025-07-17T06:35:17.4410940Z [127/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-neon-acc2.c.o 2025-07-17T06:35:17.4856280Z [128/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p4c-minmax-neon.c.o 2025-07-17T06:35:17.4895510Z [129/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p4c-minmax-neon-acc2.c.o 2025-07-17T06:35:17.4954510Z [130/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p4c-minmax-neon.c.o 2025-07-17T06:35:17.4968600Z [131/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-neon-acc2.c.o 2025-07-17T06:35:17.5130390Z [132/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-neon.c.o 2025-07-17T06:35:17.5132090Z [133/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-neon-acc2.c.o 2025-07-17T06:35:17.5342520Z [134/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-neon-acc2.c.o 2025-07-17T06:35:17.5550720Z [135/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l8c4s4r-minmax-neon-acc2.c.o 2025-07-17T06:35:17.5573870Z [136/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l4c4s4r-minmax-neon.c.o 2025-07-17T06:35:17.5578770Z [137/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l4c4s4r-minmax-neon-acc2.c.o 2025-07-17T06:35:17.6206300Z [138/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l8c4s4r-minmax-neon.c.o 2025-07-17T06:35:17.6265120Z [139/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l8c4s4r-minmax-neon-acc2.c.o 2025-07-17T06:35:17.6373310Z [140/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l4c4s4r-minmax-neon.c.o 2025-07-17T06:35:17.6425300Z [141/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l8c4s4r-minmax-neon.c.o 2025-07-17T06:35:17.6581570Z [142/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l8c4s4r-minmax-neon-acc2.c.o 2025-07-17T06:35:17.6606680Z [143/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-8x8s4-minmax-neon.c.o 2025-07-17T06:35:17.6733950Z [144/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l4c4s4r-minmax-neon.c.o 2025-07-17T06:35:17.6872080Z [145/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l8c4s4r-minmax-neon.c.o 2025-07-17T06:35:17.6966140Z [146/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p4c-minmax-neon.c.o 2025-07-17T06:35:17.6992750Z [147/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p4c-minmax-neon-acc2.c.o 2025-07-17T06:35:17.7578340Z [148/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-neon-acc2.c.o 2025-07-17T06:35:17.7618310Z [149/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-neon-acc2.c.o 2025-07-17T06:35:17.7961770Z [150/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-neon.c.o 2025-07-17T06:35:17.7969620Z [151/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-neon.c.o 2025-07-17T06:35:17.8114700Z [152/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-neon.c.o 2025-07-17T06:35:17.8154280Z [153/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p4c-minmax-neon.c.o 2025-07-17T06:35:17.8341620Z [154/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-neon-1x4-acc2.c.o 2025-07-17T06:35:17.8469370Z [155/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p4c-minmax-neon-acc2.c.o 2025-07-17T06:35:17.8557830Z [156/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-neon-1x4-acc4.c.o 2025-07-17T06:35:17.8871090Z [157/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-neon-2x4-acc2.c.o 2025-07-17T06:35:17.9042270Z [158/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-neon-1x4-acc3.c.o 2025-07-17T06:35:17.9060040Z [159/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-neon-1x4.c.o 2025-07-17T06:35:17.9104960Z [160/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-neon-3x4.c.o 2025-07-17T06:35:17.9266780Z [161/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-neon-4x4.c.o 2025-07-17T06:35:17.9289910Z [162/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-neon-5x4.c.o 2025-07-17T06:35:17.9301460Z [163/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-neon-6x4.c.o 2025-07-17T06:35:17.9736490Z [164/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-neon-1x4-acc2.c.o 2025-07-17T06:35:17.9919900Z [165/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-neon-1x4-acc4.c.o 2025-07-17T06:35:18.0123730Z [166/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-neon-1x4-acc3.c.o 2025-07-17T06:35:18.0153770Z [167/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-neon-2x4-acc2.c.o 2025-07-17T06:35:18.0399180Z [168/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-neon-2x4.c.o 2025-07-17T06:35:18.0559190Z [169/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-neon-4x4.c.o 2025-07-17T06:35:18.0611800Z [170/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-neon-3x4.c.o 2025-07-17T06:35:18.0723140Z [171/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-neon-1x4-acc2.c.o 2025-07-17T06:35:18.0825230Z [172/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-neon-1x4-acc3.c.o 2025-07-17T06:35:18.0828490Z [173/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-neon-1x4-acc4.c.o 2025-07-17T06:35:18.1097590Z [174/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-neon-1x4-acc5.c.o 2025-07-17T06:35:18.1263000Z [175/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-neon-2x4-acc3.c.o 2025-07-17T06:35:18.1420080Z [176/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-neon-2x4-acc2.c.o 2025-07-17T06:35:18.1581760Z [177/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-neon-2x4.c.o 2025-07-17T06:35:18.1781500Z [178/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-neon-3x4-acc2.c.o 2025-07-17T06:35:18.2071030Z [179/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-neon-4x4-acc2.c.o 2025-07-17T06:35:18.2113900Z [180/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-neon-4x4.c.o 2025-07-17T06:35:18.2285190Z [181/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-neon-3x4.c.o 2025-07-17T06:35:18.2337150Z [182/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-neon-5x4.c.o 2025-07-17T06:35:18.2385040Z [183/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-neon-1x4-acc2.c.o 2025-07-17T06:35:18.2510370Z [184/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-neon-1x4-acc3.c.o 2025-07-17T06:35:18.2714760Z [185/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-neon-1x4-acc5.c.o 2025-07-17T06:35:18.2789590Z [186/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-neon-1x4-acc4.c.o 2025-07-17T06:35:18.3222520Z [187/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-neon-2x4-acc2.c.o 2025-07-17T06:35:18.3612350Z [188/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-neon-3x4.c.o 2025-07-17T06:35:18.3648900Z [189/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-neon-3x4-acc2.c.o 2025-07-17T06:35:18.3878690Z [190/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neon-u24.c.o 2025-07-17T06:35:18.3904790Z [191/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neon-u16.c.o 2025-07-17T06:35:18.3913170Z [192/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-neon-2x4-acc3.c.o 2025-07-17T06:35:18.3916280Z [193/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neon-u32.c.o 2025-07-17T06:35:18.4067960Z [194/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-neon-dup-ld64.c.o 2025-07-17T06:35:18.4209250Z [195/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-neon-2x4.c.o 2025-07-17T06:35:18.4232530Z [196/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-neon-lane-ld128.c.o 2025-07-17T06:35:18.4749030Z [197/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8s4-minmax-neon.c.o 2025-07-17T06:35:18.5030830Z [198/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-2x16-minmax-neon-lane-ld128.c.o 2025-07-17T06:35:18.5245000Z [199/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-3x16-minmax-neon-lane-ld128.c.o 2025-07-17T06:35:18.5348710Z [200/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neon-dup-ld128.c.o 2025-07-17T06:35:18.5448000Z [201/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neon-dup-ld64.c.o 2025-07-17T06:35:18.5554420Z [202/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x16-minmax-neon-lane-ld128.c.o 2025-07-17T06:35:18.5718460Z [203/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neon-lane-ld64.c.o 2025-07-17T06:35:18.5862390Z [204/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8s4-minmax-neon.c.o 2025-07-17T06:35:18.5876660Z [205/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x8-minmax-neon-lane-ld64.c.o 2025-07-17T06:35:18.5886950Z [206/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x16-minmax-neon-lane-ld128.c.o 2025-07-17T06:35:18.6549620Z [207/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neon-dup-ld128.c.o 2025-07-17T06:35:18.6613190Z [208/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x2-minmax-neon-lane-ld64.c.o 2025-07-17T06:35:18.6774740Z [209/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x16-minmax-neon-lane-ld128.c.o 2025-07-17T06:35:18.6825540Z [210/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neon-lane-ld128.c.o 2025-07-17T06:35:18.6915880Z [211/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neon-dup-ld64.c.o 2025-07-17T06:35:18.7174720Z [212/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neon-lane-ld64.c.o 2025-07-17T06:35:18.7308810Z [213/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-neon-lane-ld128.c.o 2025-07-17T06:35:18.7412000Z [214/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-neon-dup-ld64.c.o 2025-07-17T06:35:18.7519640Z [215/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x16-minmax-neon-lane-ld128.c.o 2025-07-17T06:35:18.7602110Z [216/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8s4-minmax-neon.c.o 2025-07-17T06:35:18.7882010Z [217/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-8x8s4-minmax-neon.c.o 2025-07-17T06:35:18.7931870Z [218/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-neon-lane-ld64.c.o 2025-07-17T06:35:18.8119760Z [219/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neon-lane-ld64.c.o 2025-07-17T06:35:18.8324490Z [220/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8s4-minmax-neon.c.o 2025-07-17T06:35:18.8425750Z [221/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neon-dup-ld128.c.o 2025-07-17T06:35:18.8597040Z [222/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neon-dup-ld64.c.o 2025-07-17T06:35:18.8758960Z [223/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neon-lane-ld128.c.o 2025-07-17T06:35:18.8904230Z [224/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-5x8-minmax-neon-lane-ld64.c.o 2025-07-17T06:35:18.9216400Z [225/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neon-lane-ld64.c.o 2025-07-17T06:35:18.9362440Z [226/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neon-dup-ld128.c.o 2025-07-17T06:35:18.9418790Z [227/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8s4-minmax-neon.c.o 2025-07-17T06:35:18.9430440Z [228/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neon-dup-ld64.c.o 2025-07-17T06:35:18.9655210Z [229/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-17T06:35:18.9672120Z [230/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neon-p4.c.o 2025-07-17T06:35:18.9941080Z [231/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neon-lane-ld128.c.o 2025-07-17T06:35:18.9961220Z [232/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8s4-minmax-neon.c.o 2025-07-17T06:35:18.9994500Z [233/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-neon-c4.c.o 2025-07-17T06:35:19.0191250Z [234/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neon-p16.c.o 2025-07-17T06:35:19.0615860Z [235/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-neon-lane-ld128.c.o 2025-07-17T06:35:19.0664820Z [236/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-neon-dup-ld64.c.o 2025-07-17T06:35:19.0833850Z [237/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8s4-minmax-neon.c.o 2025-07-17T06:35:19.0837130Z [238/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-2x16-minmax-neon-lane-ld128.c.o 2025-07-17T06:35:19.0921450Z [239/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-3x16-minmax-neon-lane-ld128.c.o 2025-07-17T06:35:19.1347190Z [240/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x16-minmax-neon-lane-ld128.c.o 2025-07-17T06:35:19.1354510Z [241/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x4-minmax-neon-lane-ld64.c.o 2025-07-17T06:35:19.1439860Z [242/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neon-dup-ld64.c.o 2025-07-17T06:35:19.1441910Z [243/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neon-lane-ld64.c.o 2025-07-17T06:35:19.1748200Z [244/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neon-dup-ld128.c.o 2025-07-17T06:35:19.1931260Z [245/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x2-minmax-neon-lane-ld64.c.o 2025-07-17T06:35:19.1970190Z [246/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neon-dup-ld64.c.o 2025-07-17T06:35:19.2193360Z [247/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8s4-minmax-neon.c.o 2025-07-17T06:35:19.2214560Z [248/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x16-minmax-neon-lane-ld128.c.o 2025-07-17T06:35:19.2317220Z [249/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x16-minmax-neon-lane-ld128.c.o 2025-07-17T06:35:19.2703790Z [250/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neon-lane-ld128.c.o 2025-07-17T06:35:19.2851920Z [251/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neon-dup-ld128.c.o 2025-07-17T06:35:19.2860220Z [252/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neon-lane-ld64.c.o 2025-07-17T06:35:19.3007720Z [253/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x16-minmax-neon-lane-ld128.c.o 2025-07-17T06:35:19.3265640Z [254/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8s4-minmax-neon.c.o 2025-07-17T06:35:19.3267660Z [255/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-neon-prfm.c.o 2025-07-17T06:35:19.3433870Z [256/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-8x8s4-minmax-neon.c.o 2025-07-17T06:35:19.3459480Z [257/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-neon.c.o 2025-07-17T06:35:19.3641870Z [258/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x8-minmax-neon-dup-ld64.c.o 2025-07-17T06:35:19.3917460Z [259/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x16-minmax-neon.c.o 2025-07-17T06:35:19.4136370Z [260/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x16-minmax-neon-prfm.c.o 2025-07-17T06:35:19.4184680Z [261/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-neon-prfm.c.o 2025-07-17T06:35:19.4379490Z [262/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-neon.c.o 2025-07-17T06:35:19.4397910Z [263/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-neon-dup-ld64.c.o 2025-07-17T06:35:19.4402660Z [264/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-5x8-minmax-neon-lane-ld64.c.o 2025-07-17T06:35:19.4648550Z [265/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-6x8-minmax-neon-dup-ld64.c.o 2025-07-17T06:35:19.4726430Z [266/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-neon-dup-ld64.c.o 2025-07-17T06:35:19.5165040Z [267/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-6x8-minmax-neon-lane-ld64.c.o 2025-07-17T06:35:19.5444680Z [268/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x2-minmax-neon-lane-ld64.c.o 2025-07-17T06:35:19.5597420Z [269/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-lut64-p2-u16-acc2.c.o 2025-07-17T06:35:19.5720120Z [270/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-6x2-minmax-neon-lane-ld64.c.o 2025-07-17T06:35:19.5831950Z [271/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-5x8-minmax-neon-lane-ld64.c.o 2025-07-17T06:35:19.5835690Z [272/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-6x8-minmax-neon-lane-ld64.c.o 2025-07-17T06:35:19.5884160Z [273/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-6x8-minmax-neon-dup-ld64.c.o 2025-07-17T06:35:19.5995830Z [274/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neon-u16.c.o 2025-07-17T06:35:19.6041380Z [275/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neon-u8.c.o 2025-07-17T06:35:19.6045130Z [276/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x8-minmax-neon-dup-ld64.c.o 2025-07-17T06:35:19.6313210Z [277/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neon-u24.c.o 2025-07-17T06:35:19.6669280Z [278/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-lut64-p2-u8-acc2.c.o 2025-07-17T06:35:19.6959710Z [279/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neon-u16.c.o 2025-07-17T06:35:19.7010220Z [280/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-lut64-p2-u16-acc4.c.o 2025-07-17T06:35:19.7189750Z [281/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-p5-u4.c.o 2025-07-17T06:35:19.7206640Z [282/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-lut64-p2-u4.c.o 2025-07-17T06:35:19.7224020Z [283/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-p5-u16-acc2.c.o 2025-07-17T06:35:19.7238150Z [284/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neon-u8.c.o 2025-07-17T06:35:19.7425560Z [285/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-p5-u8-acc2.c.o 2025-07-17T06:35:19.7427630Z [286/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neon-u24.c.o 2025-07-17T06:35:19.7499540Z [287/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-p5-u16-acc4.c.o 2025-07-17T06:35:19.8005610Z [288/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-neon-c32.c.o 2025-07-17T06:35:19.8157360Z [289/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-neon-c64.c.o 2025-07-17T06:35:19.8404670Z [290/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-neon-u4.c.o 2025-07-17T06:35:19.8518140Z [291/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-p6-u4.c.o 2025-07-17T06:35:19.8609990Z [292/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-neon-u4.c.o 2025-07-17T06:35:19.8634840Z [293/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-neon-u16-acc2.c.o 2025-07-17T06:35:19.8692920Z [294/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-neon-u12-acc3.c.o 2025-07-17T06:35:19.8795870Z [295/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-neon-u12-acc3.c.o 2025-07-17T06:35:19.8921740Z [296/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-neon-u8-acc2.c.o 2025-07-17T06:35:19.8967130Z [297/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-neon-u8-acc2.c.o 2025-07-17T06:35:19.9259520Z [298/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-neon-u16-acc2.c.o 2025-07-17T06:35:19.9417550Z [299/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-neon-u16-acc4.c.o 2025-07-17T06:35:19.9590380Z [300/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-neon-u4.c.o 2025-07-17T06:35:19.9692500Z [301/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-neon-u4.c.o 2025-07-17T06:35:19.9940930Z [302/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-neon-u12-acc3.c.o 2025-07-17T06:35:20.0049260Z [303/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-neon-u12-acc3.c.o 2025-07-17T06:35:20.0051330Z [304/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-neon-u16-acc2.c.o 2025-07-17T06:35:20.0119900Z [305/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-neon-u8-acc2.c.o 2025-07-17T06:35:20.0235250Z [306/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-neon-u8-acc2.c.o 2025-07-17T06:35:20.0335350Z [307/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-neon-u16-acc2.c.o 2025-07-17T06:35:20.0671700Z [308/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neon-pipelined.c.o 2025-07-17T06:35:20.0745110Z [309/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neon.c.o 2025-07-17T06:35:20.0756090Z [310/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neon-x2.c.o 2025-07-17T06:35:20.0778320Z [311/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neon-pipelined.c.o 2025-07-17T06:35:20.1150660Z [312/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neon-x2.c.o 2025-07-17T06:35:20.1333530Z [313/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-12x1-minmax-neon.c.o 2025-07-17T06:35:20.1393880Z [314/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neon.c.o 2025-07-17T06:35:20.1399370Z [315/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neon-pipelined.c.o 2025-07-17T06:35:20.1582100Z [316/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neon-x2.c.o 2025-07-17T06:35:20.1773370Z [317/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-neon-u4.c.o 2025-07-17T06:35:20.2168460Z [318/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neon.c.o 2025-07-17T06:35:20.2233820Z [319/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neon-x2.c.o 2025-07-17T06:35:20.2305640Z [320/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-neon-u4.c.o 2025-07-17T06:35:20.2392610Z [321/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neon-pipelined.c.o 2025-07-17T06:35:20.2531220Z [322/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-neon-u4.c.o 2025-07-17T06:35:20.2591430Z [323/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-neon-u4.c.o 2025-07-17T06:35:20.2714080Z [324/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-neon-u4.c.o 2025-07-17T06:35:20.3028930Z [325/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-neon-u4.c.o 2025-07-17T06:35:20.3055440Z [326/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-neon-u4.c.o 2025-07-17T06:35:20.3302280Z [327/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vprelu-neon-u4.c.o 2025-07-17T06:35:20.3322310Z [328/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-neon-u4.c.o 2025-07-17T06:35:20.3519550Z [329/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vpreluc-neon-u4.c.o 2025-07-17T06:35:20.3531260Z [330/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-neon-u4.c.o 2025-07-17T06:35:20.3742290Z [331/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrpreluc-neon-u4.c.o 2025-07-17T06:35:20.3802480Z [332/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-neon-u4.c.o 2025-07-17T06:35:20.3990700Z [333/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-neon-u4.c.o 2025-07-17T06:35:20.4111610Z [334/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-neon-u4.c.o 2025-07-17T06:35:20.4371920Z [335/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-neon-u4.c.o 2025-07-17T06:35:20.4424130Z [336/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-neon-u4.c.o 2025-07-17T06:35:20.4608460Z [337/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-neon-u4.c.o 2025-07-17T06:35:20.4809070Z [338/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-neon-u12.c.o 2025-07-17T06:35:20.4813860Z [339/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-neon-u16.c.o 2025-07-17T06:35:20.4969770Z [340/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-neon-u8.c.o 2025-07-17T06:35:20.5151860Z [341/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l16c8s8r-minmax-rndnu-neon-mul16.c.o 2025-07-17T06:35:20.5166800Z [342/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-lut16-p3-u12.c.o 2025-07-17T06:35:20.5178230Z [343/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-lut16-p3-u4.c.o 2025-07-17T06:35:20.5342980Z [344/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-lut16-p3-u16.c.o 2025-07-17T06:35:20.5564070Z [345/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-p6-u8.c.o 2025-07-17T06:35:20.5771520Z [346/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-p6-u12.c.o 2025-07-17T06:35:20.5989080Z [347/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-p6-u16.c.o 2025-07-17T06:35:20.6010960Z [348/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-neon-u4.c.o 2025-07-17T06:35:20.6315170Z [349/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-neon-u4.c.o 2025-07-17T06:35:20.6330710Z [350/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-neon-u8.c.o 2025-07-17T06:35:20.6524560Z [351/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-neon-u8.c.o 2025-07-17T06:35:20.6586170Z [352/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c8-minmax-neon-2x.c.o 2025-07-17T06:35:20.6795430Z [353/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-neon-u4.c.o 2025-07-17T06:35:20.6809220Z [354/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-neon-u4.c.o 2025-07-17T06:35:20.7000130Z [355/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-neon-u4.c.o 2025-07-17T06:35:20.7035190Z [356/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-neon-u4.c.o 2025-07-17T06:35:20.7343060Z [357/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-neon-u4.c.o 2025-07-17T06:35:20.7414510Z [358/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-lut64-p2-nr2recps-u16.c.o 2025-07-17T06:35:20.7588180Z [359/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrsqrt/gen/f32-vrsqrt-neon-rsqrt-u4.c.o 2025-07-17T06:35:20.7652000Z [360/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-lut64-p2-nr2recps-u12.c.o 2025-07-17T06:35:20.7808130Z [361/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrsqrt/gen/f32-vrsqrt-neon-rsqrt-u8.c.o 2025-07-17T06:35:20.7943110Z [362/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-lut64-p2-nr2recps-u4.c.o 2025-07-17T06:35:20.7985610Z [363/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-lut2048-p1-nr2recps-u8.c.o 2025-07-17T06:35:20.8057080Z [364/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-lut2048-p1-nr2recps-u4.c.o 2025-07-17T06:35:20.8181450Z [365/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-lut2048-p1-nr2recps-u12.c.o 2025-07-17T06:35:20.8688110Z [366/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-p5-nr2recps-u4.c.o 2025-07-17T06:35:20.8694900Z [367/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-p5-nr2recps-u8.c.o 2025-07-17T06:35:20.8739600Z [368/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-p5-nr2recps-u12.c.o 2025-07-17T06:35:20.8942530Z [369/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-lut2048-p1-nr2recps-u16.c.o 2025-07-17T06:35:20.8944690Z [370/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-p5-nr2recps-u16.c.o 2025-07-17T06:35:20.9277780Z [371/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x16-minmax-neon-mlal-lane-prfm.c.o 2025-07-17T06:35:20.9404740Z [372/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-neon-rational-9-8-nr.c.o 2025-07-17T06:35:20.9505500Z [373/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-2x16-minmax-neon-mlal-lane-prfm.c.o 2025-07-17T06:35:20.9615790Z [374/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-3x16-minmax-neon-mlal-lane-prfm.c.o 2025-07-17T06:35:20.9659810Z [375/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-2x16-minmax-neon-mlal-lane.c.o 2025-07-17T06:35:21.0187600Z [376/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-4x16-minmax-neon-mlal-lane-prfm.c.o 2025-07-17T06:35:21.0204000Z [377/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-3x16-minmax-neon-mlal-lane.c.o 2025-07-17T06:35:21.0410210Z [378/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x16-minmax-neon-mlal-lane-prfm.c.o 2025-07-17T06:35:21.0445560Z [379/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-4x16-minmax-neon-mlal-lane.c.o 2025-07-17T06:35:21.0482200Z [380/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-6x16-minmax-neon-mlal-lane-prfm.c.o 2025-07-17T06:35:21.1046410Z [381/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-4x16-minmax-neon-mlal-lane-prfm.c.o 2025-07-17T06:35:21.1089900Z [382/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-3x16-minmax-neon-mlal-lane.c.o 2025-07-17T06:35:21.1122810Z [383/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-3x16-minmax-neon-mlal-lane-prfm.c.o 2025-07-17T06:35:21.1353080Z [384/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-2x16-minmax-neon-mlal-lane-prfm.c.o 2025-07-17T06:35:21.1479920Z [385/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-2x16-minmax-neon-mlal-lane.c.o 2025-07-17T06:35:21.1623080Z [386/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-4x16-minmax-neon-mlal-lane.c.o 2025-07-17T06:35:21.1625270Z [387/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-6x16-minmax-neon-mlal-lane-prfm.c.o 2025-07-17T06:35:21.1872700Z [388/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x8-minmax-neon-mlal-lane-prfm.c.o 2025-07-17T06:35:21.1975250Z [389/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x8-minmax-neon-mlal-lane.c.o 2025-07-17T06:35:21.2207150Z [390/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x16-minmax-neon-mlal-lane-prfm.c.o 2025-07-17T06:35:21.2478510Z [391/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-2x8-minmax-neon-mlal-lane-prfm.c.o 2025-07-17T06:35:21.2544880Z [392/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-2x8-minmax-neon-mlal-lane.c.o 2025-07-17T06:35:21.2784150Z [393/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-2x16-minmax-neon-mlal-lane.c.o 2025-07-17T06:35:21.2788200Z [394/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-2x16-minmax-neon-mlal-lane-prfm.c.o 2025-07-17T06:35:21.2951170Z [395/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x16-minmax-neon-mlal-lane.c.o 2025-07-17T06:35:21.3161670Z [396/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-3x8-minmax-neon-mlal-lane.c.o 2025-07-17T06:35:21.3343620Z [397/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-3x8-minmax-neon-mlal-lane-prfm.c.o 2025-07-17T06:35:21.3546080Z [398/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-3x16-minmax-neon-mlal-lane.c.o 2025-07-17T06:35:21.3588840Z [399/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x8-minmax-neon-mlal-lane-prfm.c.o 2025-07-17T06:35:21.3813490Z [400/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x8-minmax-neon-mlal-lane.c.o 2025-07-17T06:35:21.3835870Z [401/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-3x16-minmax-neon-mlal-lane-prfm.c.o 2025-07-17T06:35:21.3852520Z [402/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x16-minmax-neon-mlal-lane-prfm.c.o 2025-07-17T06:35:21.4122520Z [403/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x16-minmax-neon-mlal-lane.c.o 2025-07-17T06:35:21.4190150Z [404/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-6x8-minmax-neon-mlal-lane-prfm.c.o 2025-07-17T06:35:21.4397260Z [405/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-6x8-minmax-neon-mlal-lane.c.o 2025-07-17T06:35:21.4651820Z [406/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-6x16-minmax-neon-mlal-lane-prfm.c.o 2025-07-17T06:35:21.4855890Z [407/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-6x16-minmax-neon-mlal-lane.c.o 2025-07-17T06:35:21.4939610Z [408/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x8-minmax-neon-mlal-lane-prfm.c.o 2025-07-17T06:35:21.5163410Z [409/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x16-minmax-neon-mlal-lane-prfm.c.o 2025-07-17T06:35:21.5166680Z [410/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x8-minmax-neon-mlal-lane.c.o 2025-07-17T06:35:21.5271940Z [411/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x16-minmax-neon-mlal-lane.c.o 2025-07-17T06:35:21.5376230Z [412/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-2x8-minmax-neon-mlal-lane-prfm.c.o 2025-07-17T06:35:21.5492390Z [413/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-2x16-minmax-neon-mlal-lane-prfm.c.o 2025-07-17T06:35:21.5523460Z [414/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-2x8-minmax-neon-mlal-lane.c.o 2025-07-17T06:35:21.5986750Z [415/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-3x8-minmax-neon-mlal-lane-prfm.c.o 2025-07-17T06:35:21.6059330Z [416/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-2x16-minmax-neon-mlal-lane.c.o 2025-07-17T06:35:21.6362710Z [417/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-3x8-minmax-neon-mlal-lane.c.o 2025-07-17T06:35:21.6484230Z [418/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-3x16-minmax-neon-mlal-lane-prfm.c.o 2025-07-17T06:35:21.6544780Z [419/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x8-minmax-neon-mlal-lane.c.o 2025-07-17T06:35:21.6547120Z [420/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x8-minmax-neon-mlal-lane-prfm.c.o 2025-07-17T06:35:21.6699300Z [421/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x16-minmax-neon-mlal-lane-prfm.c.o 2025-07-17T06:35:21.6708240Z [422/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-3x16-minmax-neon-mlal-lane.c.o 2025-07-17T06:35:21.6810700Z [423/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x16-minmax-neon-mlal-lane.c.o 2025-07-17T06:35:21.7369250Z [424/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-6x8-minmax-neon-mlal-lane-prfm.c.o 2025-07-17T06:35:21.7690890Z [425/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-6x16-minmax-neon-mlal-lane.c.o 2025-07-17T06:35:21.7722490Z [426/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-17T06:35:21.7778040Z [427/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-17T06:35:21.7835850Z [428/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l8c8s8r-minmax-rndnu-neon-mul8-ld64.c.o 2025-07-17T06:35:21.7846170Z [429/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-6x16-minmax-neon-mlal-lane-prfm.c.o 2025-07-17T06:35:21.7933000Z [430/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l8c8s8r-minmax-rndnu-neon-mul16.c.o 2025-07-17T06:35:21.7960580Z [431/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-6x8-minmax-neon-mlal-lane.c.o 2025-07-17T06:35:21.7986770Z [432/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l8c8s8r-minmax-rndnu-neon-mla8-ld64.c.o 2025-07-17T06:35:21.8484510Z [433/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l16c8s8r-minmax-rndnu-neon-mla8-ld128.c.o 2025-07-17T06:35:21.8701630Z [434/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l16c8s8r-minmax-rndnu-neon-mla8-ld64.c.o 2025-07-17T06:35:21.9084780Z [435/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l32c8s8r-minmax-rndnu-neon-mul16.c.o 2025-07-17T06:35:21.9158110Z [436/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l16c8s8r-minmax-rndnu-neon-mul8-ld64.c.o 2025-07-17T06:35:21.9215940Z [437/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l16c8s8r-minmax-rndnu-neon-mul8-ld128.c.o 2025-07-17T06:35:21.9228880Z [438/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l8c8s8r-minmax-rndnu-neon-mla8-ld64.c.o 2025-07-17T06:35:21.9294240Z [439/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-17T06:35:21.9397430Z [440/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-17T06:35:21.9585890Z [441/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l8c8s8r-minmax-rndnu-neon-mul8-ld64.c.o 2025-07-17T06:35:21.9800220Z [442/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-17T06:35:21.9945830Z [443/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l16c8s8r-minmax-rndnu-neon-mul16.c.o 2025-07-17T06:35:22.0142570Z [444/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l8c8s8r-minmax-rndnu-neon-mul16.c.o 2025-07-17T06:35:22.0411690Z [445/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l16c8s8r-minmax-rndnu-neon-mla8-ld64.c.o 2025-07-17T06:35:22.0460520Z [446/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l16c8s8r-minmax-rndnu-neon-mul8-ld128.c.o 2025-07-17T06:35:22.0550390Z [447/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l16c8s8r-minmax-rndnu-neon-mla8-ld128.c.o 2025-07-17T06:35:22.0608240Z [448/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l16c8s8r-minmax-rndnu-neon-mul16.c.o 2025-07-17T06:35:22.0712680Z [449/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-17T06:35:22.0816890Z [450/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l32c8s8r-minmax-rndnu-neon-mul16.c.o 2025-07-17T06:35:22.0822370Z [451/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l16c8s8r-minmax-rndnu-neon-mul8-ld64.c.o 2025-07-17T06:35:22.1022620Z [452/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-17T06:35:22.1652540Z [453/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l8c8s8r-minmax-rndnu-neon-mul8-ld64.c.o 2025-07-17T06:35:22.1784140Z [454/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l16c8s8r-minmax-rndnu-neon-mla8-ld64.c.o 2025-07-17T06:35:22.1823620Z [455/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l8c8s8r-minmax-rndnu-neon-mla8-ld64.c.o 2025-07-17T06:35:22.1890680Z [456/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-17T06:35:22.1947920Z [457/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l16c8s8r-minmax-rndnu-neon-mul8-ld64.c.o 2025-07-17T06:35:22.2023580Z [458/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l8c8s8r-minmax-rndnu-neon-mul16.c.o 2025-07-17T06:35:22.2232590Z [459/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-neon-mul16.c.o 2025-07-17T06:35:22.2264250Z [460/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l16c8s8r-minmax-rndnu-neon-mul8-ld128.c.o 2025-07-17T06:35:22.2500330Z [461/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l16c8s8r-minmax-rndnu-neon-mla8-ld128.c.o 2025-07-17T06:35:22.2788800Z [462/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l32c8s8r-minmax-rndnu-neon-mul16.c.o 2025-07-17T06:35:22.3116520Z [463/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-rndnu-neon-mul8-ld64.c.o 2025-07-17T06:35:22.3156670Z [464/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-rndnu-neon-mla8-ld64.c.o 2025-07-17T06:35:22.3170770Z [465/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-rndnu-neon-mla8-ld128.c.o 2025-07-17T06:35:22.3180810Z [466/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-rndnu-neon-mul16.c.o 2025-07-17T06:35:22.3186160Z [467/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-neon-mul16.c.o 2025-07-17T06:35:22.3289760Z [468/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-rndnu-neon-mul8-ld64.c.o 2025-07-17T06:35:22.3670430Z [469/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-rndnu-neon-mul8-ld128.c.o 2025-07-17T06:35:22.3730880Z [470/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-rndnu-neon-mul16.c.o 2025-07-17T06:35:22.3952800Z [471/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p32c-minmax-fp32-neon-mul16.c.o 2025-07-17T06:35:22.3982760Z [472/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p32c-minmax-rndnu-neon-mul16.c.o 2025-07-17T06:35:22.4497390Z [473/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-neon-mul16.c.o 2025-07-17T06:35:22.4611400Z [474/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-rndnu-neon-mla8-ld128.c.o 2025-07-17T06:35:22.4616100Z [475/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-rndnu-neon-mul8-ld64.c.o 2025-07-17T06:35:22.4648350Z [476/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-neon-mul16.c.o 2025-07-17T06:35:22.5063910Z [477/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-rndnu-neon-mul16.c.o 2025-07-17T06:35:22.5085790Z [478/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p32c-minmax-rndnu-neon-mul16.c.o 2025-07-17T06:35:22.5242870Z [479/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-rndnu-neon-mul8-ld64.c.o 2025-07-17T06:35:22.5252990Z [480/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-rndnu-neon-mul8-ld128.c.o 2025-07-17T06:35:22.5268280Z [481/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p32c-minmax-fp32-neon-mul16.c.o 2025-07-17T06:35:22.5365740Z [482/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-rndnu-neon-mul16.c.o 2025-07-17T06:35:22.5685130Z [483/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-4p8c-minmax-fp32-neon-mla8-ld64.c.o 2025-07-17T06:35:22.5731430Z [484/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-neon-u8.c.o 2025-07-17T06:35:22.5869060Z [485/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-neon-u16.c.o 2025-07-17T06:35:22.6093340Z [486/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p16c-minmax-fp32-neon-mla8-ld64.c.o 2025-07-17T06:35:22.6441370Z [487/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-neon-u24.c.o 2025-07-17T06:35:22.6449010Z [488/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-17T06:35:22.6678930Z [489/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l8c8s8r-minmax-fp32-neon-mul8-ld64.c.o 2025-07-17T06:35:22.6814590Z [490/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p8c-minmax-fp32-neon-mla8-ld64.c.o 2025-07-17T06:35:22.6918060Z [491/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l16c8s8r-minmax-fp32-neon-mla8-ld64.c.o 2025-07-17T06:35:22.6931300Z [492/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l8c8s8r-minmax-fp32-neon-mla8-ld64.c.o 2025-07-17T06:35:22.7043130Z [493/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l16c8s8r-minmax-fp32-neon-mla8-ld128.c.o 2025-07-17T06:35:22.7205270Z [494/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l16c8s8r-minmax-fp32-neon-mul8-ld64.c.o 2025-07-17T06:35:22.7219310Z [495/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l16c8s8r-minmax-fp32-neon-mul8-ld128.c.o 2025-07-17T06:35:22.7399220Z [496/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-17T06:35:22.8054330Z [497/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-17T06:35:22.8118250Z [498/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l16c8s8r-minmax-fp32-neon-mul8-ld64.c.o 2025-07-17T06:35:22.8144760Z [499/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l16c8s8r-minmax-fp32-neon-mla8-ld128.c.o 2025-07-17T06:35:22.8165930Z [500/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-17T06:35:22.8180970Z [501/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l8c8s8r-minmax-fp32-neon-mul8-ld64.c.o 2025-07-17T06:35:22.8350450Z [502/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l16c8s8r-minmax-fp32-neon-mla8-ld64.c.o 2025-07-17T06:35:22.8413090Z [503/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l8c8s8r-minmax-fp32-neon-mla8-ld64.c.o 2025-07-17T06:35:22.8808230Z [504/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-17T06:35:22.9100100Z [505/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l16c8s8r-minmax-fp32-neon-mul8-ld128.c.o 2025-07-17T06:35:22.9145040Z [506/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-17T06:35:22.9309750Z [507/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l8c8s8r-minmax-fp32-neon-mla8-ld64.c.o 2025-07-17T06:35:22.9310780Z [508/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l8c8s8r-minmax-fp32-neon-mul8-ld64.c.o 2025-07-17T06:35:22.9453480Z [509/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-17T06:35:22.9457750Z [510/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l16c8s8r-minmax-fp32-neon-mla8-ld64.c.o 2025-07-17T06:35:22.9655660Z [511/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l16c8s8r-minmax-fp32-neon-mul8-ld128.c.o 2025-07-17T06:35:22.9659400Z [512/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l16c8s8r-minmax-fp32-neon-mla8-ld128.c.o 2025-07-17T06:35:22.9668470Z [513/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l16c8s8r-minmax-fp32-neon-mul8-ld64.c.o 2025-07-17T06:35:23.0129590Z [514/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-17T06:35:23.0441650Z [515/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-17T06:35:23.0543460Z [516/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p8c-minmax-fp32-neon-mla8-ld64.c.o 2025-07-17T06:35:23.0630560Z [517/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p8c-minmax-fp32-neon-mul16.c.o 2025-07-17T06:35:23.0676930Z [518/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p16c-minmax-fp32-neon-mla8-ld128.c.o 2025-07-17T06:35:23.0874450Z [519/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p8c-minmax-fp32-neon-mul8-ld64.c.o 2025-07-17T06:35:23.1065730Z [520/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p16c-minmax-fp32-neon-mul8-ld128.c.o 2025-07-17T06:35:23.1134230Z [521/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p32c-minmax-fp32-neon-mul16.c.o 2025-07-17T06:35:23.1238140Z [522/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p16c-minmax-fp32-neon-mul8-ld64.c.o 2025-07-17T06:35:23.1489240Z [523/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p8c-minmax-fp32-neon-mul8-ld64.c.o 2025-07-17T06:35:23.1788730Z [524/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p8c-minmax-fp32-neon-mul16.c.o 2025-07-17T06:35:23.1861510Z [525/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p16c-minmax-fp32-neon-mul16.c.o 2025-07-17T06:35:23.1987320Z [526/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p16c-minmax-fp32-neon-mul8-ld64.c.o 2025-07-17T06:35:23.2055070Z [527/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p16c-minmax-fp32-neon-mla8-ld128.c.o 2025-07-17T06:35:23.2209390Z [528/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p16c-minmax-fp32-neon-mla8-ld64.c.o 2025-07-17T06:35:23.2212510Z [529/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p16c-minmax-fp32-neon-mul8-ld128.c.o 2025-07-17T06:35:23.2385850Z [530/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p16c-minmax-fp32-neon-mul16.c.o 2025-07-17T06:35:23.2741370Z [531/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p32c-minmax-fp32-neon-mul16.c.o 2025-07-17T06:35:23.3022180Z [532/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-07-17T06:35:23.3133250Z [533/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8-minmax-fp32-neon-mlal-lane.c.o 2025-07-17T06:35:23.3140630Z [534/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c2-minmax-fp32-neon-mlal-dup.c.o 2025-07-17T06:35:23.3208840Z [535/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c2-minmax-fp32-neon-mlal-ld1r.c.o 2025-07-17T06:35:23.3343490Z [536/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c2-minmax-fp32-neon-mlal-ld4r.c.o 2025-07-17T06:35:23.3579130Z [537/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c4-minmax-fp32-neon-mlal-dup.c.o 2025-07-17T06:35:23.3787190Z [538/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c2-minmax-fp32-neon-mlal-ld2r.c.o 2025-07-17T06:35:23.3894070Z [539/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c4-minmax-fp32-neon-mlal-ld2r.c.o 2025-07-17T06:35:23.4055140Z [540/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c4-minmax-fp32-neon-mlal-ld1r.c.o 2025-07-17T06:35:23.4191550Z [541/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c4s2-minmax-fp32-neon-mlal.c.o 2025-07-17T06:35:23.4438200Z [542/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-07-17T06:35:23.4525790Z [543/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c8-minmax-fp32-neon-mlal.c.o 2025-07-17T06:35:23.4687800Z [544/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x16-minmax-fp32-neon-mlal-lane.c.o 2025-07-17T06:35:23.4710090Z [545/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x16-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-07-17T06:35:23.4750610Z [546/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8-minmax-fp32-neon-mlal-lane.c.o 2025-07-17T06:35:23.5100030Z [547/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c2-minmax-fp32-neon-mlal-ld1r.c.o 2025-07-17T06:35:23.5178620Z [548/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c2-minmax-fp32-neon-mlal-ld2r.c.o 2025-07-17T06:35:23.5303580Z [549/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c2-minmax-fp32-neon-mlal-dup.c.o 2025-07-17T06:35:23.5408470Z [550/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c2-minmax-fp32-neon-mlal-ld4r.c.o 2025-07-17T06:35:23.5531260Z [551/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c4-minmax-fp32-neon-mlal-dup.c.o 2025-07-17T06:35:23.5979700Z [552/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c8-minmax-fp32-neon-mlal.c.o 2025-07-17T06:35:23.6073800Z [553/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c4-minmax-fp32-neon-mlal-ld1r.c.o 2025-07-17T06:35:23.6304510Z [554/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x16-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-07-17T06:35:23.6446650Z [555/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c4-minmax-fp32-neon-mlal-ld2r.c.o 2025-07-17T06:35:23.6570910Z [556/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x8-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-07-17T06:35:23.6612660Z [557/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c4s2-minmax-fp32-neon-mlal.c.o 2025-07-17T06:35:23.6620300Z [558/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x16-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-07-17T06:35:23.6828400Z [559/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x8-minmax-fp32-neon-mlal-lane.c.o 2025-07-17T06:35:23.6934450Z [560/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x16-minmax-fp32-neon-mlal-lane.c.o 2025-07-17T06:35:23.7038420Z [561/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x16-minmax-fp32-neon-mlal-lane.c.o 2025-07-17T06:35:23.7357700Z [562/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x8-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-07-17T06:35:23.7578450Z [563/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-07-17T06:35:23.7581760Z [564/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x8-minmax-fp32-neon-mlal-lane.c.o 2025-07-17T06:35:23.7826670Z [565/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16-minmax-fp32-neon-mlal-lane.c.o 2025-07-17T06:35:23.8119770Z [566/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-6x8-minmax-fp32-neon-mlal-lane.c.o 2025-07-17T06:35:23.8256290Z [567/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-6x8-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-07-17T06:35:23.8357700Z [568/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-6x16-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-07-17T06:35:23.8461260Z [569/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-07-17T06:35:23.8463580Z [570/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8-minmax-fp32-neon-mlal-lane.c.o 2025-07-17T06:35:23.8513850Z [571/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-6x16-minmax-fp32-neon-mlal-lane.c.o 2025-07-17T06:35:23.9022860Z [572/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c2-minmax-fp32-neon-mlal-ld2r.c.o 2025-07-17T06:35:23.9094240Z [573/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c2-minmax-fp32-neon-mlal-dup.c.o 2025-07-17T06:35:23.9340990Z [574/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c2-minmax-fp32-neon-mlal-ld1r.c.o 2025-07-17T06:35:23.9581850Z [575/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c4-minmax-fp32-neon-mlal-dup.c.o 2025-07-17T06:35:23.9630370Z [576/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c4-minmax-fp32-neon-mlal-ld2r.c.o 2025-07-17T06:35:23.9632630Z [577/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c4-minmax-fp32-neon-mlal-ld1r.c.o 2025-07-17T06:35:23.9703020Z [578/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x16-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-07-17T06:35:23.9869100Z [579/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c2-minmax-fp32-neon-mlal-ld4r.c.o 2025-07-17T06:35:23.9873920Z [580/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c4s2-minmax-fp32-neon-mlal.c.o 2025-07-17T06:35:23.9952280Z [581/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c8-minmax-fp32-neon-mlal.c.o 2025-07-17T06:35:24.0415030Z [582/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x16-minmax-fp32-neon-mlal-lane.c.o 2025-07-17T06:35:24.0759780Z [583/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8-minmax-fp32-neon-mlal-lane.c.o 2025-07-17T06:35:24.0866170Z [584/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-07-17T06:35:24.0919420Z [585/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c2-minmax-fp32-neon-mlal-dup.c.o 2025-07-17T06:35:24.1031540Z [586/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c2-minmax-fp32-neon-mlal-ld1r.c.o 2025-07-17T06:35:24.1090390Z [587/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c2-minmax-fp32-neon-mlal-ld2r.c.o 2025-07-17T06:35:24.1310410Z [588/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c4-minmax-fp32-neon-mlal-dup.c.o 2025-07-17T06:35:24.1342680Z [589/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c4-minmax-fp32-neon-mlal-ld1r.c.o 2025-07-17T06:35:24.1450410Z [590/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c4-minmax-fp32-neon-mlal-ld2r.c.o 2025-07-17T06:35:24.1590790Z [591/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c2-minmax-fp32-neon-mlal-ld4r.c.o 2025-07-17T06:35:24.1938420Z [592/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c4s2-minmax-fp32-neon-mlal.c.o 2025-07-17T06:35:24.2012230Z [593/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c8-minmax-fp32-neon-mlal.c.o 2025-07-17T06:35:24.2139340Z [594/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x16-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-07-17T06:35:24.2209710Z [595/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x16-minmax-fp32-neon-mlal-lane.c.o 2025-07-17T06:35:24.2378230Z [596/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x8-minmax-fp32-neon-mlal-lane.c.o 2025-07-17T06:35:24.2380980Z [597/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-scalar-u1.c.o 2025-07-17T06:35:24.2519910Z [598/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x8-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-07-17T06:35:24.2575300Z [599/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-u3.c.o 2025-07-17T06:35:24.2578730Z [600/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-u2.c.o 2025-07-17T06:35:24.2816640Z [601/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-fmagic-u2.c.o 2025-07-17T06:35:24.3063920Z [602/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-fmagic-u3.c.o 2025-07-17T06:35:24.3073190Z [603/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-fmagic-u4.c.o 2025-07-17T06:35:24.3209330Z [604/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-imagic-u1.c.o 2025-07-17T06:35:24.3296660Z [605/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-fmagic-u1.c.o 2025-07-17T06:35:24.3311510Z [606/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-imagic-u3.c.o 2025-07-17T06:35:24.3476240Z [607/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p2c-minmax-scalar.c.o 2025-07-17T06:35:24.3503490Z [608/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-imagic-u2.c.o 2025-07-17T06:35:24.3517740Z [609/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qu8-vcvt/gen/f16-qu8-vcvt-scalar-imagic-u1.c.o 2025-07-17T06:35:24.3553330Z [610/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qu8-vcvt/gen/f16-qu8-vcvt-scalar-imagic-u2.c.o 2025-07-17T06:35:24.3801330Z [611/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p2c-minmax-scalar-acc2.c.o 2025-07-17T06:35:24.4058070Z [612/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-scalar.c.o 2025-07-17T06:35:24.4275180Z [613/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3f3m3l1c1s1r-scalar.c.o 2025-07-17T06:35:24.4471260Z [614/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-minmax-scalar.c.o 2025-07-17T06:35:24.4473440Z [615/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3f3m3l1c1s1r-scalar-acc2.c.o 2025-07-17T06:35:24.4611830Z [616/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l4c1s1r-minmax-scalar.c.o 2025-07-17T06:35:24.4624500Z [617/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l4c1s1r-scalar-acc2.c.o 2025-07-17T06:35:24.4761860Z [618/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l1c1s1r-scalar.c.o 2025-07-17T06:35:24.4921750Z [619/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l4c1s1r-scalar.c.o 2025-07-17T06:35:24.4945450Z [620/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l1c1s1r-minmax-scalar.c.o 2025-07-17T06:35:24.5048540Z [621/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qu8-vcvt/gen/f16-qu8-vcvt-scalar-imagic-u3.c.o 2025-07-17T06:35:24.5237250Z [622/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-scalar-u3-acc3.c.o 2025-07-17T06:35:24.5317570Z [623/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-scalar-u4-acc2.c.o 2025-07-17T06:35:24.5469340Z [624/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-scalar-u1.c.o 2025-07-17T06:35:24.5561950Z [625/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l1c1s1r-scalar-acc2.c.o 2025-07-17T06:35:24.5656690Z [626/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-scalar-u2-acc2.c.o 2025-07-17T06:35:24.5754070Z [627/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-scalar-u3-acc3.c.o 2025-07-17T06:35:24.5758030Z [628/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-scalar-u4-acc4.c.o 2025-07-17T06:35:24.5925430Z [629/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-scalar-u4-acc2.c.o 2025-07-17T06:35:24.6320820Z [630/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-scalar-u4-acc4.c.o 2025-07-17T06:35:24.6550580Z [631/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l1c1s1r-minmax-scalar-acc2.c.o 2025-07-17T06:35:24.6553090Z [632/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-scalar-u3-acc3.c.o 2025-07-17T06:35:24.6583490Z [633/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-scalar-u1.c.o 2025-07-17T06:35:24.6615760Z [634/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-scalar-u4-acc2.c.o 2025-07-17T06:35:24.6805770Z [635/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-scalar-u4-acc4.c.o 2025-07-17T06:35:24.6907300Z [636/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/f32-conv-hwc-3x3s2p0p1c3x4-scalar-1x1.c.o 2025-07-17T06:35:24.7009730Z [637/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p2c-minmax-scalar-acc2.c.o 2025-07-17T06:35:24.7014790Z [638/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/f32-conv-hwc-3x3s2p1c3x4-scalar-1x1.c.o 2025-07-17T06:35:24.7248010Z [639/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-scalar.c.o 2025-07-17T06:35:24.7295380Z [640/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-minmax-scalar.c.o 2025-07-17T06:35:24.7581110Z [641/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p2c-scalar-acc2.c.o 2025-07-17T06:35:24.7811250Z [642/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l1c1s1r-minmax-scalar-acc2.c.o 2025-07-17T06:35:24.7826190Z [643/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l1c1s1r-scalar-acc2.c.o 2025-07-17T06:35:24.7854100Z [644/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l1c1s1r-scalar.c.o 2025-07-17T06:35:24.8031670Z [645/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l1c1s1r-minmax-scalar.c.o 2025-07-17T06:35:24.8199340Z [646/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p2c-scalar.c.o 2025-07-17T06:35:24.8209180Z [647/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l1c1s1r-scalar-acc2.c.o 2025-07-17T06:35:24.8227150Z [648/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l1c1s1r-scalar.c.o 2025-07-17T06:35:24.8284130Z [649/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-minmax-scalar.c.o 2025-07-17T06:35:24.8433680Z [650/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-scalar.c.o 2025-07-17T06:35:24.8756960Z [651/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p2c-minmax-scalar.c.o 2025-07-17T06:35:24.8835470Z [652/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p2c-scalar.c.o 2025-07-17T06:35:24.8851360Z [653/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p2c-scalar-acc2.c.o 2025-07-17T06:35:24.8985410Z [654/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p2c-minmax-scalar-acc2.c.o 2025-07-17T06:35:24.9113490Z [655/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-minmax-scalar.c.o 2025-07-17T06:35:24.9276590Z [656/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-scalar.c.o 2025-07-17T06:35:24.9331010Z [657/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-1x1-acc3.c.o 2025-07-17T06:35:24.9337260Z [658/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p2c-minmax-scalar.c.o 2025-07-17T06:35:24.9567070Z [659/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p2c-minmax-scalar-acc2.c.o 2025-07-17T06:35:24.9642390Z [660/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p2c-scalar-acc2.c.o 2025-07-17T06:35:24.9862190Z [661/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p2c-scalar.c.o 2025-07-17T06:35:24.9893380Z [662/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-1x1-acc4.c.o 2025-07-17T06:35:25.0159500Z [663/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-1x1-acc2.c.o 2025-07-17T06:35:25.0298460Z [664/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-3x1.c.o 2025-07-17T06:35:25.0308680Z [665/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-1x1.c.o 2025-07-17T06:35:25.0517950Z [666/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-1x1-acc3.c.o 2025-07-17T06:35:25.0628620Z [667/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-2x1.c.o 2025-07-17T06:35:25.0696390Z [668/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-5x1.c.o 2025-07-17T06:35:25.0793010Z [669/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-6x1.c.o 2025-07-17T06:35:25.0798510Z [670/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-1x1.c.o 2025-07-17T06:35:25.0809950Z [671/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-2x1.c.o 2025-07-17T06:35:25.0854600Z [672/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-1x1-acc4.c.o 2025-07-17T06:35:25.1031120Z [673/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-3x1.c.o 2025-07-17T06:35:25.1222810Z [674/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1-acc2.c.o 2025-07-17T06:35:25.1277760Z [675/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-4x1.c.o 2025-07-17T06:35:25.1643580Z [676/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1-acc3.c.o 2025-07-17T06:35:25.1793100Z [677/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1-acc4.c.o 2025-07-17T06:35:25.1817510Z [678/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-2x1.c.o 2025-07-17T06:35:25.2006580Z [679/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-3x1-acc2.c.o 2025-07-17T06:35:25.2025060Z [680/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-2x1-acc3.c.o 2025-07-17T06:35:25.2182230Z [681/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1-acc2.c.o 2025-07-17T06:35:25.2393190Z [682/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1-acc3.c.o 2025-07-17T06:35:25.2502200Z [683/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1.c.o 2025-07-17T06:35:25.2612480Z [684/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1-acc4.c.o 2025-07-17T06:35:25.2620310Z [685/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1.c.o 2025-07-17T06:35:25.2622930Z [686/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-3x1.c.o 2025-07-17T06:35:25.3025170Z [687/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-3x1-acc2.c.o 2025-07-17T06:35:25.3066890Z [688/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-2x1-acc3.c.o 2025-07-17T06:35:25.3220470Z [689/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-3x1.c.o 2025-07-17T06:35:25.3234790Z [690/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-2x1.c.o 2025-07-17T06:35:25.3263280Z [691/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-u1.c.o 2025-07-17T06:35:25.3389980Z [692/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-u1.c.o 2025-07-17T06:35:25.3573890Z [693/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-u4.c.o 2025-07-17T06:35:25.3576890Z [694/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-u3.c.o 2025-07-17T06:35:25.3580530Z [695/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-u3.c.o 2025-07-17T06:35:25.3884670Z [696/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-u2.c.o 2025-07-17T06:35:25.4239630Z [697/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-scalar-p1.c.o 2025-07-17T06:35:25.4274460Z [698/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x4-minmax-scalar.c.o 2025-07-17T06:35:25.4281470Z [699/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x2-relu-scalar.c.o 2025-07-17T06:35:25.4431710Z [700/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x4-minmax-scalar.c.o 2025-07-17T06:35:25.4498820Z [701/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-scalar-c1.c.o 2025-07-17T06:35:25.4552640Z [702/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-scalar-c4.c.o 2025-07-17T06:35:25.4555040Z [703/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-2x4-minmax-scalar.c.o 2025-07-17T06:35:25.4741090Z [704/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-scalar-p2.c.o 2025-07-17T06:35:25.4990130Z [705/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x2-relu-scalar.c.o 2025-07-17T06:35:25.5009580Z [706/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-2x4-minmax-scalar.c.o 2025-07-17T06:35:25.5214440Z [707/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-3x3-minmax-scalar.c.o 2025-07-17T06:35:25.5224140Z [708/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x4-minmax-scalar.c.o 2025-07-17T06:35:25.5287420Z [709/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:25.5473300Z [710/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x2-minmax-scalar.c.o 2025-07-17T06:35:25.5765420Z [711/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-u1.c.o 2025-07-17T06:35:25.5870810Z [712/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x2-minmax-scalar.c.o 2025-07-17T06:35:25.5970230Z [713/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x4-relu-scalar.c.o 2025-07-17T06:35:25.6123930Z [714/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-2x4-minmax-scalar.c.o 2025-07-17T06:35:25.6126200Z [715/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-2x4-minmax-scalar.c.o 2025-07-17T06:35:25.6263330Z [716/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x4-scalar.c.o 2025-07-17T06:35:25.6265130Z [717/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-2x4-relu-scalar.c.o 2025-07-17T06:35:25.6326660Z [718/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-2x4-scalar.c.o 2025-07-17T06:35:25.6486340Z [719/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x2-relu-scalar.c.o 2025-07-17T06:35:25.6490280Z [720/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x2-minmax-scalar.c.o 2025-07-17T06:35:25.6838580Z [721/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x2-scalar.c.o 2025-07-17T06:35:25.7214000Z [722/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x4-scalar.c.o 2025-07-17T06:35:25.7219940Z [723/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-1x1-minmax-scalar.c.o 2025-07-17T06:35:25.7260250Z [724/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-2x1-minmax-scalar.c.o 2025-07-17T06:35:25.7410570Z [725/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-fmagic-u1.c.o 2025-07-17T06:35:25.7448200Z [726/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-8x4-minmax-scalar.c.o 2025-07-17T06:35:25.7451110Z [727/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-8x1-minmax-scalar.c.o 2025-07-17T06:35:25.7482900Z [728/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-4x1-minmax-scalar.c.o 2025-07-17T06:35:25.7539620Z [729/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x4-relu-scalar.c.o 2025-07-17T06:35:25.7684700Z [730/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-8x2-minmax-scalar.c.o 2025-07-17T06:35:25.7757720Z [731/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-fmagic-u2.c.o 2025-07-17T06:35:25.8197390Z [732/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-fmagic-u3.c.o 2025-07-17T06:35:25.8286190Z [733/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-fmagic-u4.c.o 2025-07-17T06:35:25.8296720Z [734/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u2.c.o 2025-07-17T06:35:25.8469620Z [735/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u3.c.o 2025-07-17T06:35:25.8497210Z [736/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-u1.c.o 2025-07-17T06:35:25.8506750Z [737/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-u2.c.o 2025-07-17T06:35:25.8695130Z [738/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-fmagic-u2.c.o 2025-07-17T06:35:25.8717730Z [739/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-u3.c.o 2025-07-17T06:35:25.8783220Z [740/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-fmagic-u3.c.o 2025-07-17T06:35:25.8903330Z [741/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-fmagic-u1.c.o 2025-07-17T06:35:25.9386680Z [742/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u2.c.o 2025-07-17T06:35:25.9433840Z [743/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-u2-acc2.c.o 2025-07-17T06:35:25.9530370Z [744/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-fmagic-u4.c.o 2025-07-17T06:35:25.9682320Z [745/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-u1.c.o 2025-07-17T06:35:25.9696270Z [746/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-u3.c.o 2025-07-17T06:35:25.9772600Z [747/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-u4-acc4.c.o 2025-07-17T06:35:25.9957700Z [748/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-u4-acc2.c.o 2025-07-17T06:35:25.9993360Z [749/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-u1.c.o 2025-07-17T06:35:26.0096300Z [750/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-u2.c.o 2025-07-17T06:35:26.0098420Z [751/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u3.c.o 2025-07-17T06:35:26.0239350Z [752/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-u4-acc4.c.o 2025-07-17T06:35:26.0323310Z [753/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-u2-acc2.c.o 2025-07-17T06:35:26.0419440Z [754/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-scalar-u1.c.o 2025-07-17T06:35:26.0705920Z [755/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-scalar-u3-acc3.c.o 2025-07-17T06:35:26.0840460Z [756/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-scalar-u1.c.o 2025-07-17T06:35:26.0896400Z [757/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-scalar-u2-acc2.c.o 2025-07-17T06:35:26.1013700Z [758/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-scalar-u4-acc2.c.o 2025-07-17T06:35:26.1136920Z [759/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-scalar-u3-acc3.c.o 2025-07-17T06:35:26.1183510Z [760/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-scalar-u2-acc2.c.o 2025-07-17T06:35:26.1384690Z [761/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-scalar-u4-acc4.c.o 2025-07-17T06:35:26.1527850Z [762/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-scalar-u4-acc2.c.o 2025-07-17T06:35:26.1530520Z [763/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-scalar-u4.c.o 2025-07-17T06:35:26.1538460Z [764/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-scalar-u1.c.o 2025-07-17T06:35:26.1743360Z [765/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u2-acc2.c.o 2025-07-17T06:35:26.1750840Z [766/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u1.c.o 2025-07-17T06:35:26.1756160Z [767/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u3-acc3.c.o 2025-07-17T06:35:26.1871870Z [768/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u4-acc2.c.o 2025-07-17T06:35:26.2011900Z [769/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-scalar-u3-acc3.c.o 2025-07-17T06:35:26.2041980Z [770/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-scalar-u2-acc2.c.o 2025-07-17T06:35:26.2342560Z [771/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-scalar-u4-acc2.c.o 2025-07-17T06:35:26.2703910Z [772/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-1x1-minmax-scalar.c.o 2025-07-17T06:35:26.2707340Z [773/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-1x1-minmax-scalar-pipelined.c.o 2025-07-17T06:35:26.2713250Z [774/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-2x1-minmax-scalar.c.o 2025-07-17T06:35:26.2769250Z [775/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-2x1-minmax-scalar-pipelined.c.o 2025-07-17T06:35:26.2908770Z [776/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-scalar-u1.c.o 2025-07-17T06:35:26.2965790Z [777/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-scalar-pipelined.c.o 2025-07-17T06:35:26.3027620Z [778/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-scalar-u2.c.o 2025-07-17T06:35:26.3116990Z [779/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-scalar.c.o 2025-07-17T06:35:26.3328860Z [780/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-scalar-pipelined.c.o 2025-07-17T06:35:26.3530030Z [781/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-scalar-u4.c.o 2025-07-17T06:35:26.3701850Z [782/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-scalar-u1.c.o 2025-07-17T06:35:26.3721440Z [783/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-scalar-u1.c.o 2025-07-17T06:35:26.3857690Z [784/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-scalar-u2.c.o 2025-07-17T06:35:26.3961310Z [785/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-scalar-u4.c.o 2025-07-17T06:35:26.3984260Z [786/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-scalar-u8.c.o 2025-07-17T06:35:26.4050640Z [787/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-scalar-u4.c.o 2025-07-17T06:35:26.4059710Z [788/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-scalar-u1.c.o 2025-07-17T06:35:26.4210450Z [789/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-scalar-u1.c.o 2025-07-17T06:35:26.4360900Z [790/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-scalar-u8.c.o 2025-07-17T06:35:26.4560920Z [791/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-scalar-u4.c.o 2025-07-17T06:35:26.4827530Z [792/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-scalar-u2.c.o 2025-07-17T06:35:26.4916830Z [793/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-scalar-u4.c.o 2025-07-17T06:35:26.4948750Z [794/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-u1.c.o 2025-07-17T06:35:26.5174010Z [795/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-scalar-u2.c.o 2025-07-17T06:35:26.5278010Z [796/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-scalar-u1.c.o 2025-07-17T06:35:26.5286370Z [797/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-u4.c.o 2025-07-17T06:35:26.5287560Z [798/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-u2.c.o 2025-07-17T06:35:26.5402690Z [799/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-scalar-u4.c.o 2025-07-17T06:35:26.5583120Z [800/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-scalar-u1.c.o 2025-07-17T06:35:26.5891870Z [801/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-scalar-u2.c.o 2025-07-17T06:35:26.5911830Z [802/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-scalar-u2.c.o 2025-07-17T06:35:26.6052370Z [803/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-scalar-u1.c.o 2025-07-17T06:35:26.6103490Z [804/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-scalar-u1.c.o 2025-07-17T06:35:26.6134780Z [805/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-scalar-u2.c.o 2025-07-17T06:35:26.6374050Z [806/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-scalar-u4.c.o 2025-07-17T06:35:26.6517510Z [807/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vprelu-scalar-u2.c.o 2025-07-17T06:35:26.6555240Z [808/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-scalar-u4.c.o 2025-07-17T06:35:26.6669440Z [809/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vprelu-scalar-u1.c.o 2025-07-17T06:35:26.6736820Z [810/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vpreluc-scalar-u4.c.o 2025-07-17T06:35:26.6741160Z [811/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-scalar-u4.c.o 2025-07-17T06:35:26.6753550Z [812/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vprelu-scalar-u4.c.o 2025-07-17T06:35:26.7003470Z [813/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vpreluc-scalar-u1.c.o 2025-07-17T06:35:26.7079400Z [814/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-u1.c.o 2025-07-17T06:35:26.7404190Z [815/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vpreluc-scalar-u2.c.o 2025-07-17T06:35:26.7450770Z [816/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-u4.c.o 2025-07-17T06:35:26.7465310Z [817/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-u8.c.o 2025-07-17T06:35:26.7744670Z [818/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrpreluc-scalar-u4.c.o 2025-07-17T06:35:26.7839200Z [819/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrpreluc-scalar-u2.c.o 2025-07-17T06:35:26.7857530Z [820/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrpreluc-scalar-u1.c.o 2025-07-17T06:35:26.7902320Z [821/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-u1.c.o 2025-07-17T06:35:26.7928460Z [822/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-u4.c.o 2025-07-17T06:35:26.8091470Z [823/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-scalar-u2.c.o 2025-07-17T06:35:26.8156950Z [824/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-u2.c.o 2025-07-17T06:35:26.8291510Z [825/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-u1.c.o 2025-07-17T06:35:26.8456450Z [826/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-u4.c.o 2025-07-17T06:35:26.8755640Z [827/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-u2.c.o 2025-07-17T06:35:26.8802580Z [828/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-u1.c.o 2025-07-17T06:35:26.8921280Z [829/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-scalar-u1.c.o 2025-07-17T06:35:26.8949480Z [830/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-u2.c.o 2025-07-17T06:35:26.9080670Z [831/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-u4.c.o 2025-07-17T06:35:26.9180050Z [832/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-scalar-u2.c.o 2025-07-17T06:35:26.9281050Z [833/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-scalar-u4.c.o 2025-07-17T06:35:26.9367220Z [834/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-scalar-u4.c.o 2025-07-17T06:35:26.9476710Z [835/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-scalar-u1.c.o 2025-07-17T06:35:26.9580720Z [836/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-scalar-u1.c.o 2025-07-17T06:35:26.9736930Z [837/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-scalar-u1.c.o 2025-07-17T06:35:26.9805910Z [838/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-scalar-u2.c.o 2025-07-17T06:35:26.9809820Z [839/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-scalar-u2.c.o 2025-07-17T06:35:26.9995480Z [840/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-scalar-u8.c.o 2025-07-17T06:35:26.9996500Z [841/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u1.c.o 2025-07-17T06:35:27.0177670Z [842/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u3.c.o 2025-07-17T06:35:27.0378380Z [843/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u5.c.o 2025-07-17T06:35:27.0503600Z [844/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u6.c.o 2025-07-17T06:35:27.0681940Z [845/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u1.c.o 2025-07-17T06:35:27.0720550Z [846/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u2.c.o 2025-07-17T06:35:27.0827730Z [847/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u3.c.o 2025-07-17T06:35:27.0876950Z [848/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u5.c.o 2025-07-17T06:35:27.0880970Z [849/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u4.c.o 2025-07-17T06:35:27.1073520Z [850/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vgelu/gen/f32-vgelu-scalar.c.o 2025-07-17T06:35:27.1219940Z [851/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-scalar-u1.c.o 2025-07-17T06:35:27.1233320Z [852/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u6.c.o 2025-07-17T06:35:27.1403530Z [853/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlog/gen/f32-vlog-scalar-log.c.o 2025-07-17T06:35:27.1564320Z [854/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-scalar-u2.c.o 2025-07-17T06:35:27.1847180Z [855/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-scalar-u1.c.o 2025-07-17T06:35:27.1859190Z [856/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-scalar-u1.c.o 2025-07-17T06:35:27.2009050Z [857/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c4-minmax-scalar-2x.c.o 2025-07-17T06:35:27.2039870Z [858/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-scalar-u2.c.o 2025-07-17T06:35:27.2072490Z [859/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-scalar-u2.c.o 2025-07-17T06:35:27.2207680Z [860/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x32c4-gemm-goi-scalar.c.o 2025-07-17T06:35:27.2258830Z [861/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-scalar-libm-u2.c.o 2025-07-17T06:35:27.2474250Z [862/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c2-minmax-scalar-2x.c.o 2025-07-17T06:35:27.2598780Z [863/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-u2.c.o 2025-07-17T06:35:27.2725290Z [864/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut64-p2-div-u4.c.o 2025-07-17T06:35:27.2802720Z [865/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut64-p2-div-u1.c.o 2025-07-17T06:35:27.2818950Z [866/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-u2.c.o 2025-07-17T06:35:27.3015870Z [867/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut2048-p1-div-u1.c.o 2025-07-17T06:35:27.3019040Z [868/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrsqrt/gen/f32-vrsqrt-scalar-rsqrt-u2.c.o 2025-07-17T06:35:27.3093640Z [869/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-scalar-libm-u2.c.o 2025-07-17T06:35:27.3194240Z [870/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut2048-p1-div-u2.c.o 2025-07-17T06:35:27.3429250Z [871/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut2048-p1-div-u4.c.o 2025-07-17T06:35:27.4021620Z [872/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-p5-div-u1.c.o 2025-07-17T06:35:27.4034430Z [873/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-p5-div-u4.c.o 2025-07-17T06:35:27.4044420Z [874/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-p5-div-u2.c.o 2025-07-17T06:35:27.4266340Z [875/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-1x4-minmax-scalar.c.o 2025-07-17T06:35:27.4272990Z [876/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-1x8-minmax-scalar.c.o 2025-07-17T06:35:27.4453350Z [877/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-1x2-minmax-scalar.c.o 2025-07-17T06:35:27.4513580Z [878/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-scalar-sqrt-u4.c.o 2025-07-17T06:35:27.4712880Z [879/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-scalar-sqrt-u2.c.o 2025-07-17T06:35:27.4723310Z [880/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-2x4-minmax-scalar.c.o 2025-07-17T06:35:27.4801380Z [881/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-2x2-minmax-scalar.c.o 2025-07-17T06:35:27.5111190Z [882/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-4x4-minmax-scalar.c.o 2025-07-17T06:35:27.5267630Z [883/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x2-minmax-scalar.c.o 2025-07-17T06:35:27.5415560Z [884/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-2x8-minmax-scalar.c.o 2025-07-17T06:35:27.5550880Z [885/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-2x2-minmax-scalar.c.o 2025-07-17T06:35:27.5684110Z [886/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x8-minmax-scalar.c.o 2025-07-17T06:35:27.5729980Z [887/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-2x8-minmax-scalar.c.o 2025-07-17T06:35:27.5905820Z [888/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-2x4-minmax-scalar.c.o 2025-07-17T06:35:27.5911690Z [889/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x1-minmax-scalar.c.o 2025-07-17T06:35:27.5950360Z [890/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x2-minmax-scalar.c.o 2025-07-17T06:35:27.6098900Z [891/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x8-minmax-scalar.c.o 2025-07-17T06:35:27.6188690Z [892/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-2x2-minmax-scalar.c.o 2025-07-17T06:35:27.6460490Z [893/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-2x4-minmax-scalar.c.o 2025-07-17T06:35:27.6844900Z [894/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-2x8-minmax-scalar.c.o 2025-07-17T06:35:27.6847310Z [895/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x8-minmax-scalar.c.o 2025-07-17T06:35:27.6857480Z [896/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-2x4-minmax-scalar.c.o 2025-07-17T06:35:27.7001590Z [897/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-2x4-minmax-scalar.c.o 2025-07-17T06:35:27.7039340Z [898/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x8-minmax-scalar.c.o 2025-07-17T06:35:27.7195730Z [899/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-2x8-minmax-scalar.c.o 2025-07-17T06:35:27.7256450Z [900/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:27.7257340Z [901/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:27.7373280Z [902/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-2x8-minmax-scalar.c.o 2025-07-17T06:35:27.7613820Z [903/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:27.7972030Z [904/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:27.8003550Z [905/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:27.8052050Z [906/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:27.8059480Z [907/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:27.8201140Z [908/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:27.8354770Z [909/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:27.8381860Z [910/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:27.8429600Z [911/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:27.8635650Z [912/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:27.8690980Z [913/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:27.8968180Z [914/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:27.9037350Z [915/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:27.9045370Z [916/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:27.9156190Z [917/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:27.9263040Z [918/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:27.9473340Z [919/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:27.9602170Z [920/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:27.9649890Z [921/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:27.9820220Z [922/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:27.9949870Z [923/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:28.0118680Z [924/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:28.0205660Z [925/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:28.0244460Z [926/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:28.0343410Z [927/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:28.0546180Z [928/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:28.0679050Z [929/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:28.0685820Z [930/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:28.0730530Z [931/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-rndnu-scalar.c.o 2025-07-17T06:35:28.0960020Z [932/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p4c-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:28.0983840Z [933/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p4c-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:28.1287520Z [934/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p1c-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:28.1297680Z [935/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p2c-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:28.1557120Z [936/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p4c-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:28.1567670Z [937/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p4c-minmax-rndnu-scalar.c.o 2025-07-17T06:35:28.1727230Z [938/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p4c-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:28.1746130Z [939/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p2c-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:28.1881630Z [940/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p4c-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:28.2000340Z [941/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p4c-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:28.2018950Z [942/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-rndnu-scalar.c.o 2025-07-17T06:35:28.2188420Z [943/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-u2.c.o 2025-07-17T06:35:28.2197410Z [944/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x8c4-gemm-gio-scalar.c.o 2025-07-17T06:35:28.2209310Z [945/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-u3.c.o 2025-07-17T06:35:28.2529770Z [946/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x8c8-gemm-gio-scalar.c.o 2025-07-17T06:35:28.2786420Z [947/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x8c8-gemm-goi-scalar.c.o 2025-07-17T06:35:28.2825130Z [948/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x16c4-gemm-gio-scalar.c.o 2025-07-17T06:35:28.2925280Z [949/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x8c4-gemm-goi-scalar.c.o 2025-07-17T06:35:28.2987340Z [950/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x16c4-gemm-goi-scalar.c.o 2025-07-17T06:35:28.2991940Z [951/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:28.3171040Z [952/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc4w-packw/gen/qs8-qc4w-packw-x8c8-gemm-goi-scalar.c.o 2025-07-17T06:35:28.3306040Z [953/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x32c4-gemm-gio-scalar.c.o 2025-07-17T06:35:28.3344800Z [954/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x16c8-gemm-gio-scalar.c.o 2025-07-17T06:35:28.3600330Z [955/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x64c4-gemm-gio-scalar.c.o 2025-07-17T06:35:28.3826530Z [956/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc4w-packw/gen/qs8-qc4w-packw-x32c8-gemm-goi-scalar.c.o 2025-07-17T06:35:28.3931110Z [957/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:28.3936380Z [958/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-4p2c-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:28.3948260Z [959/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:28.3955630Z [960/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc4w-packw/gen/qs8-qc4w-packw-x16c8-gemm-goi-scalar.c.o 2025-07-17T06:35:28.3995200Z [961/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:28.4158390Z [962/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:28.4325250Z [963/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:28.4327760Z [964/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:28.4517780Z [965/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:28.5082250Z [966/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:28.5182890Z [967/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:28.5202160Z [968/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:28.5231370Z [969/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:28.5281620Z [970/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:28.5296170Z [971/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:28.5423470Z [972/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:28.5489830Z [973/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:28.5577890Z [974/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:28.5674070Z [975/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:28.6075530Z [976/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:28.6360620Z [977/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:28.6375050Z [978/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:28.6446960Z [979/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:28.6764360Z [980/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:28.6804200Z [981/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:28.6870720Z [982/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:28.6894590Z [983/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p1c-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:28.7017510Z [984/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:28.7030200Z [985/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:28.7175350Z [986/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:28.7293960Z [987/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p1c-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:28.7381840Z [988/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p2c-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:28.7496110Z [989/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p4c-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:28.7829020Z [990/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p4c-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:28.7835730Z [991/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p4c-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:28.7893740Z [992/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p1c-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:28.8103640Z [993/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p4c-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:28.8115700Z [994/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p2c-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:28.8307760Z [995/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p4c-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:28.8324560Z [996/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p2c-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:28.8430330Z [997/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p4c-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:28.8598610Z [998/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x2-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:28.8660720Z [999/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x2-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:28.9161920Z [1000/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x4-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:28.9173110Z [1001/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x4-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:28.9203110Z [1002/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x2-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:28.9384140Z [1003/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x4-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:28.9493240Z [1004/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x4-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:28.9532210Z [1005/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x2-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:28.9663640Z [1006/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x2-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:28.9872480Z [1007/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x2-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:29.0033180Z [1008/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x4-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:29.0162510Z [1009/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x2-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:29.0180570Z [1010/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x4-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:29.0366920Z [1011/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x2-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:29.0370710Z [1012/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x2-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:29.0516960Z [1013/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x2-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:29.0676480Z [1014/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x4-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:29.0793050Z [1015/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x4-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:29.1029110Z [1016/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x4-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:29.1111970Z [1017/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x2-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:29.1297850Z [1018/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x4-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:29.1313300Z [1019/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x4-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:29.1518400Z [1020/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x2-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:29.1619530Z [1021/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x2-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:29.1622420Z [1022/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x2-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:29.1869070Z [1023/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x4-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:29.1874800Z [1024/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x4-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:29.2017760Z [1025/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x4-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:29.2185140Z [1026/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x4-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:29.2325130Z [1027/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x2-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:29.2523620Z [1028/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x2-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:29.2610590Z [1029/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x4-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:29.2830140Z [1030/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x2-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:29.3036980Z [1031/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x2-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:29.3069210Z [1032/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x2-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:29.3136280Z [1033/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x4-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:29.3219840Z [1034/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x4-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:29.3336380Z [1035/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x4-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:29.3439710Z [1036/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x4-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:29.3491660Z [1037/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qu8-packw/gen/qs8-qu8-packw-x16c8-gemm-gio-scalar.c.o 2025-07-17T06:35:29.3619290Z [1038/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-scalar-u1.c.o 2025-07-17T06:35:29.3723880Z [1039/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x2-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:29.3728070Z [1040/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qu8-packw/gen/qs8-qu8-packw-x8c8-gemm-gio-scalar.c.o 2025-07-17T06:35:29.4202190Z [1041/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qu8-packw/gen/qs8-qu8-packw-x8c8-gemm-goi-scalar.c.o 2025-07-17T06:35:29.4339190Z [1042/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-scalar-u2.c.o 2025-07-17T06:35:29.4392810Z [1043/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:29.4421830Z [1044/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-scalar-u2.c.o 2025-07-17T06:35:29.4547240Z [1045/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-u2.c.o 2025-07-17T06:35:29.4555020Z [1046/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-scalar-u2.c.o 2025-07-17T06:35:29.4701620Z [1047/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-select-u1.c.o 2025-07-17T06:35:29.4732960Z [1048/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-select-u2.c.o 2025-07-17T06:35:29.4778330Z [1049/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-andxor-u1.c.o 2025-07-17T06:35:29.5047760Z [1050/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-andxor-u2.c.o 2025-07-17T06:35:29.5151010Z [1051/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-scalar-u1.c.o 2025-07-17T06:35:29.5369850Z [1052/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-scalar-u1.c.o 2025-07-17T06:35:29.5461680Z [1053/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-scalar-u2.c.o 2025-07-17T06:35:29.5541990Z [1054/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:29.5614250Z [1055/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:29.5784220Z [1056/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:29.5985610Z [1057/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:29.6155710Z [1058/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:29.6221800Z [1059/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:29.6361790Z [1060/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:29.6492980Z [1061/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:29.6502100Z [1062/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:29.6548040Z [1063/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:29.6550590Z [1064/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:29.6700300Z [1065/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:29.6729080Z [1066/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-scalar-u2.c.o 2025-07-17T06:35:29.7154580Z [1067/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:29.7369980Z [1068/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:29.7387450Z [1069/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:29.7510860Z [1070/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:29.7688900Z [1071/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:29.7819460Z [1072/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:29.7878360Z [1073/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:29.8033000Z [1074/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:29.8124810Z [1075/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:29.8183110Z [1076/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:29.8291750Z [1077/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:29.8405930Z [1078/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:29.8412120Z [1079/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:29.8760890Z [1080/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:29.8787300Z [1081/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:29.8998780Z [1082/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p4c-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:29.9001590Z [1083/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-rndnu-scalar.c.o 2025-07-17T06:35:29.9014980Z [1084/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p4c-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:29.9396840Z [1085/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p2c-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:29.9655400Z [1086/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p4c-minmax-rndnu-scalar.c.o 2025-07-17T06:35:29.9656340Z [1087/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-rndnu-scalar.c.o 2025-07-17T06:35:29.9657210Z [1088/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p4c-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:29.9658090Z [1089/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:30.0016500Z [1090/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p2c-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:30.0180380Z [1091/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p4c-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:30.0304090Z [1092/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p4c-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:30.0578000Z [1093/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-u2.c.o 2025-07-17T06:35:30.0583270Z [1094/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-u3.c.o 2025-07-17T06:35:30.0721960Z [1095/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:30.0726390Z [1096/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:30.0739900Z [1097/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-rndnu-scalar.c.o 2025-07-17T06:35:30.0893380Z [1098/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:30.0964860Z [1099/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p4c-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:30.1060180Z [1100/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:30.1626050Z [1101/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:30.1761690Z [1102/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:30.1798280Z [1103/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-rndnu-scalar.c.o 2025-07-17T06:35:30.1896050Z [1104/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-rndnu-scalar.c.o 2025-07-17T06:35:30.1925730Z [1105/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:30.1942270Z [1106/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:30.1951560Z [1107/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:30.2105140Z [1108/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:30.2149710Z [1109/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4-minmax-rndnu-scalar.c.o 2025-07-17T06:35:30.2361690Z [1110/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x2-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:30.2744790Z [1111/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x2-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:30.2985270Z [1112/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x2-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:30.2986090Z [1113/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x2-minmax-rndnu-scalar.c.o 2025-07-17T06:35:30.3181230Z [1114/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-rndnu-scalar.c.o 2025-07-17T06:35:30.3220360Z [1115/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:30.3313980Z [1116/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x2-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:30.3330440Z [1117/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x2-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:30.3521880Z [1118/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x2-minmax-rndnu-scalar.c.o 2025-07-17T06:35:30.3690940Z [1119/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:30.3819300Z [1120/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:30.3989720Z [1121/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x2-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:30.3996020Z [1122/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:30.4069630Z [1123/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:30.4223520Z [1124/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:30.4346720Z [1125/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4-minmax-rndnu-scalar.c.o 2025-07-17T06:35:30.4361250Z [1126/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:30.4404880Z [1127/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:30.4816420Z [1128/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-rndnu-scalar.c.o 2025-07-17T06:35:30.5011590Z [1129/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:30.5039850Z [1130/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:30.5287060Z [1131/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-rndnu-scalar.c.o 2025-07-17T06:35:30.5475400Z [1132/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:30.5503090Z [1133/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:30.5511940Z [1134/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x2-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:30.5666150Z [1135/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:30.5704710Z [1136/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-rndnu-scalar.c.o 2025-07-17T06:35:30.5707740Z [1137/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x2-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:30.5867050Z [1138/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4-minmax-rndnu-scalar.c.o 2025-07-17T06:35:30.6099450Z [1139/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x2-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:30.6339250Z [1140/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:30.6484970Z [1141/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:30.6670250Z [1142/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x2-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:30.6763790Z [1143/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x2-minmax-rndnu-scalar.c.o 2025-07-17T06:35:30.6789930Z [1144/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x2-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:30.6797380Z [1145/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:30.6934270Z [1146/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x2-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:30.7039940Z [1147/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-rndnu-scalar.c.o 2025-07-17T06:35:30.7327320Z [1148/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-2x2-scalar.c.o 2025-07-17T06:35:30.7594130Z [1149/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:30.7615570Z [1150/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-minmax-scalar-acc2.c.o 2025-07-17T06:35:30.7653460Z [1151/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x2-minmax-rndnu-scalar.c.o 2025-07-17T06:35:30.7713950Z [1152/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:30.7795060Z [1153/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-scalar-acc2.c.o 2025-07-17T06:35:30.7950280Z [1154/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-aarch64-neonfma-3x4.c.o 2025-07-17T06:35:30.8108690Z [1155/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-neon.c.o 2025-07-17T06:35:30.8256700Z [1156/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-neonfma.c.o 2025-07-17T06:35:30.8430840Z [1157/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-2x1-acc2.c.o 2025-07-17T06:35:30.8489390Z [1158/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-neon-2x4.c.o 2025-07-17T06:35:30.8665030Z [1159/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-4x1.c.o 2025-07-17T06:35:30.8831730Z [1160/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-2x1-acc2.c.o 2025-07-17T06:35:30.8916750Z [1161/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-aarch64-neonfma-2x4-acc2.c.o 2025-07-17T06:35:30.9030540Z [1162/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-neon-1x4.c.o 2025-07-17T06:35:30.9165760Z [1163/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-1x1-acc2.c.o 2025-07-17T06:35:30.9226830Z [1164/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-aarch64-neonfma-4x4.c.o 2025-07-17T06:35:30.9522620Z [1165/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1-acc5.c.o 2025-07-17T06:35:30.9551450Z [1166/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-neon-1x4.c.o 2025-07-17T06:35:30.9568250Z [1167/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-2x1-acc2.c.o 2025-07-17T06:35:30.9946930Z [1168/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-aarch64-neonfma-1x4-acc2.c.o 2025-07-17T06:35:31.0120070Z [1169/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-u4.c.o 2025-07-17T06:35:31.0199630Z [1170/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-neon-1x4.c.o 2025-07-17T06:35:31.0266940Z [1171/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1-acc5.c.o 2025-07-17T06:35:31.0276340Z [1172/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neon-u8.c.o 2025-07-17T06:35:31.0286660Z [1173/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neonfp16-u16.c.o 2025-07-17T06:35:31.0432940Z [1174/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-cortex-a53-prfm.S.o 2025-07-17T06:35:31.0529710Z [1175/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-u2.c.o 2025-07-17T06:35:31.0597480Z [1176/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-2x1-acc2.c.o 2025-07-17T06:35:31.0904950Z [1177/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-17T06:35:31.1100970Z [1178/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x4-minmax-scalar.c.o 2025-07-17T06:35:31.1141460Z [1179/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-07-17T06:35:31.1170490Z [1180/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-07-17T06:35:31.1286370Z [1181/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-07-17T06:35:31.1341720Z [1182/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc2.S.o 2025-07-17T06:35:31.1359930Z [1183/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x4-scalar.c.o 2025-07-17T06:35:31.1367010Z [1184/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc4.S.o 2025-07-17T06:35:31.1928160Z [1185/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x4-relu-scalar.c.o 2025-07-17T06:35:31.2037410Z [1186/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-asm-aarch64-neonfma-ld128.S.o 2025-07-17T06:35:31.2074850Z [1187/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-neon-lane-ld64.c.o 2025-07-17T06:35:31.2261650Z [1188/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-2x4-minmax-scalar.c.o 2025-07-17T06:35:31.2478040Z [1189/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8s4-minmax-neonfma.c.o 2025-07-17T06:35:31.2613520Z [1190/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-scalar.c.o 2025-07-17T06:35:31.2625130Z [1191/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-2x4-relu-scalar.c.o 2025-07-17T06:35:31.2698310Z [1192/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-2x4-scalar.c.o 2025-07-17T06:35:31.2760440Z [1193/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-17T06:35:31.2883880Z [1194/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-asm-aarch64-neonfma-cortex-a53-prfm.S.o 2025-07-17T06:35:31.2889760Z [1195/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-07-17T06:35:31.2891060Z [1196/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-neon-lane-ld64.c.o 2025-07-17T06:35:31.3177410Z [1197/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-scalar.c.o 2025-07-17T06:35:31.3566200Z [1198/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-07-17T06:35:31.3588250Z [1199/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-07-17T06:35:31.3600400Z [1200/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-07-17T06:35:31.3630770Z [1201/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-asm-aarch64-neonfma-cortex-a55.S.o 2025-07-17T06:35:31.3800950Z [1202/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x4-scalar.c.o 2025-07-17T06:35:31.3843940Z [1203/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x4-minmax-scalar.c.o 2025-07-17T06:35:31.3978190Z [1204/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-asm-aarch64-neonfma-cortex-a53-prfm.S.o 2025-07-17T06:35:31.4027470Z [1205/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x4-relu-scalar.c.o 2025-07-17T06:35:31.4333980Z [1206/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neon-lane-ld128.c.o 2025-07-17T06:35:31.4418230Z [1207/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-17T06:35:31.4559220Z [1208/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-asm-aarch64-neonfma-cortex-a55.S.o 2025-07-17T06:35:31.4662730Z [1209/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-07-17T06:35:31.4674990Z [1210/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-asm-aarch64-neonfma-cortex-a73.S.o 2025-07-17T06:35:31.4756130Z [1211/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-07-17T06:35:31.4863990Z [1212/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-07-17T06:35:31.5295900Z [1213/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8s4-minmax-neonfma.c.o 2025-07-17T06:35:31.5306940Z [1214/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neon-p8.c.o 2025-07-17T06:35:31.5414240Z [1215/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-6x8s4-minmax-neonfma.c.o 2025-07-17T06:35:31.5510750Z [1216/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/f32-igemm-4x8-minmax-asm-aarch64-neonfma-cortex-a55.S.o 2025-07-17T06:35:31.5524570Z [1217/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/f32-igemm-6x8-minmax-asm-aarch64-neonfma-cortex-a55.S.o 2025-07-17T06:35:31.5692070Z [1218/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-scalar-p4.c.o 2025-07-17T06:35:31.5806330Z [1219/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neonfma-p8.c.o 2025-07-17T06:35:31.6136540Z [1220/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/f32-igemm-6x8-minmax-asm-aarch64-neonfma-cortex-a73.S.o 2025-07-17T06:35:31.6209680Z [1221/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear/gen/f32-ibilinear-neon-c8.c.o 2025-07-17T06:35:31.6336070Z [1222/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear/gen/f32-ibilinear-scalar-c2.c.o 2025-07-17T06:35:31.6363000Z [1223/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear/gen/f32-ibilinear-neonfma-c8.c.o 2025-07-17T06:35:31.6366180Z [1224/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-asm-aarch64-neonfma-cortex-a53-prfm.S.o 2025-07-17T06:35:31.6380880Z [1225/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x4-relu-scalar.c.o 2025-07-17T06:35:31.6518180Z [1226/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x4-scalar.c.o 2025-07-17T06:35:31.6520190Z [1227/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x4-minmax-scalar.c.o 2025-07-17T06:35:31.6530820Z [1228/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-07-17T06:35:31.6677000Z [1229/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-17T06:35:31.6888700Z [1230/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-07-17T06:35:31.7011770Z [1231/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-07-17T06:35:31.7318730Z [1232/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-asm-aarch64-neonfma-ld64.S.o 2025-07-17T06:35:31.7412220Z [1233/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-07-17T06:35:31.7601670Z [1234/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-2x4-minmax-scalar.c.o 2025-07-17T06:35:31.7906210Z [1235/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8s4-minmax-neonfma.c.o 2025-07-17T06:35:31.7941830Z [1236/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-17T06:35:31.8098140Z [1237/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-neon-lane-ld64.c.o 2025-07-17T06:35:31.8106190Z [1238/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-2x4-scalar.c.o 2025-07-17T06:35:31.8155730Z [1239/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-neon-lane-ld64.c.o 2025-07-17T06:35:31.8177320Z [1240/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-asm-aarch64-neonfma-cortex-a53-prfm.S.o 2025-07-17T06:35:31.8297310Z [1241/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-2x4-relu-scalar.c.o 2025-07-17T06:35:31.8368320Z [1242/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-scalar.c.o 2025-07-17T06:35:31.8375900Z [1243/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-scalar.c.o 2025-07-17T06:35:31.8653340Z [1244/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-07-17T06:35:31.8753390Z [1245/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x4-minmax-scalar.c.o 2025-07-17T06:35:31.8900400Z [1246/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-07-17T06:35:31.8976950Z [1247/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x4-relu-scalar.c.o 2025-07-17T06:35:31.9025820Z [1248/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-07-17T06:35:31.9033850Z [1249/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-07-17T06:35:31.9370300Z [1250/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-asm-aarch64-neonfma-cortex-a53-prfm.S.o 2025-07-17T06:35:31.9477900Z [1251/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x4-scalar.c.o 2025-07-17T06:35:31.9683900Z [1252/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-07-17T06:35:31.9806420Z [1253/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neon-lane-ld128.c.o 2025-07-17T06:35:31.9855660Z [1254/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-07-17T06:35:31.9887930Z [1255/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-07-17T06:35:32.0447440Z [1256/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-17T06:35:32.0547760Z [1257/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-6x8s4-minmax-neonfma.c.o 2025-07-17T06:35:32.0580750Z [1258/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-17T06:35:32.0592710Z [1259/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-maxpool/f32-maxpool-9p8x-minmax-neon-c4.c.o 2025-07-17T06:35:32.0604850Z [1260/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x8s4-minmax-neonfma.c.o 2025-07-17T06:35:32.0742160Z [1261/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-maxpool/f32-maxpool-9p8x-minmax-scalar-c1.c.o 2025-07-17T06:35:32.0766680Z [1262/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9p8x-minmax-scalar-c1.c.o 2025-07-17T06:35:32.0783800Z [1263/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9x-minmax-scalar-c1.c.o 2025-07-17T06:35:32.1454840Z [1264/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9p8x-minmax-neon-c4.c.o 2025-07-17T06:35:32.1556020Z [1265/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc4.S.o 2025-07-17T06:35:32.1586430Z [1266/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9x-minmax-neon-c4.c.o 2025-07-17T06:35:32.1787860Z [1267/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x4-minmax-scalar.c.o 2025-07-17T06:35:32.1827070Z [1268/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-17T06:35:32.1828550Z [1269/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x4-minmax-scalar.c.o 2025-07-17T06:35:32.2008260Z [1270/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-neon-lane-ld64.c.o 2025-07-17T06:35:32.2023820Z [1271/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x8-minmax-neon-lane-ld64.c.o 2025-07-17T06:35:32.2030030Z [1272/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-6x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-17T06:35:32.2037510Z [1273/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-17T06:35:32.2331060Z [1274/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-07-17T06:35:32.2811430Z [1275/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x4-minmax-scalar.c.o 2025-07-17T06:35:32.2864640Z [1276/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-6x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-07-17T06:35:32.3064640Z [1277/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x4-minmax-scalar.c.o 2025-07-17T06:35:32.3175610Z [1278/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u1.c.o 2025-07-17T06:35:32.3298330Z [1279/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-neon-lane-ld64.c.o 2025-07-17T06:35:32.3312410Z [1280/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u4.c.o 2025-07-17T06:35:32.3443770Z [1281/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-6x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-17T06:35:32.3447930Z [1282/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neon-u32.c.o 2025-07-17T06:35:32.3464700Z [1283/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neonv8-u32.c.o 2025-07-17T06:35:32.3638670Z [1284/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x8-minmax-neon-lane-ld64.c.o 2025-07-17T06:35:32.4019020Z [1285/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neon-u32.c.o 2025-07-17T06:35:32.4185800Z [1286/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-u4.c.o 2025-07-17T06:35:32.4229680Z [1287/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-lut64-p2-u16-acc2.c.o 2025-07-17T06:35:32.4346150Z [1288/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neonv8-u32.c.o 2025-07-17T06:35:32.4401860Z [1289/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u4.c.o 2025-07-17T06:35:32.4413160Z [1290/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-u4.c.o 2025-07-17T06:35:32.4483580Z [1291/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u1.c.o 2025-07-17T06:35:32.4580630Z [1292/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-scalar.c.o 2025-07-17T06:35:32.4585960Z [1293/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-u4-acc2.c.o 2025-07-17T06:35:32.4776590Z [1294/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-neon-c16.c.o 2025-07-17T06:35:32.5182690Z [1295/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rmax-scalar-u4-acc4.c.o 2025-07-17T06:35:32.5259490Z [1296/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rmax-neon-u16-acc4.c.o 2025-07-17T06:35:32.5482120Z [1297/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rminmax-neon-u16-acc4.c.o 2025-07-17T06:35:32.5572460Z [1298/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rsum/gen/f32-rsum-scalar-u4-acc4.c.o 2025-07-17T06:35:32.5766740Z [1299/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neon.c.o 2025-07-17T06:35:32.5772630Z [1300/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rsum/gen/f32-rsum-neon-u16-acc4.c.o 2025-07-17T06:35:32.5900660Z [1301/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-32x2-minmax-aarch64-neonfma.c.o 2025-07-17T06:35:32.5936400Z [1302/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neonfma-pipelined.c.o 2025-07-17T06:35:32.6058560Z [1303/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-32x4-minmax-aarch64-neonfma.c.o 2025-07-17T06:35:32.6175510Z [1304/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u4-acc4.c.o 2025-07-17T06:35:32.6412150Z [1305/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-scalar.c.o 2025-07-17T06:35:32.6580040Z [1306/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-8x2-minmax-scalar.c.o 2025-07-17T06:35:32.6762090Z [1307/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vaddc-scalar-u8.c.o 2025-07-17T06:35:32.6771800Z [1308/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vadd-scalar-u8.c.o 2025-07-17T06:35:32.6829610Z [1309/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vadd-neon-u8.c.o 2025-07-17T06:35:32.7004410Z [1310/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdiv-scalar-u2.c.o 2025-07-17T06:35:32.7006580Z [1311/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vaddc-neon-u8.c.o 2025-07-17T06:35:32.7009060Z [1312/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-8x4-minmax-scalar.c.o 2025-07-17T06:35:32.7218330Z [1313/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdiv-aarch64-neon-u8.c.o 2025-07-17T06:35:32.7231390Z [1314/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdivc-aarch64-neon-u8.c.o 2025-07-17T06:35:32.7608290Z [1315/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdivc-scalar-u2.c.o 2025-07-17T06:35:32.7814300Z [1316/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmax-scalar-u8.c.o 2025-07-17T06:35:32.8024550Z [1317/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmaxc-neon-u8.c.o 2025-07-17T06:35:32.8128390Z [1318/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmax-neon-u8.c.o 2025-07-17T06:35:32.8156930Z [1319/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-scalar-u8.c.o 2025-07-17T06:35:32.8296750Z [1320/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-u8.c.o 2025-07-17T06:35:32.8311800Z [1321/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vminc-neon-u8.c.o 2025-07-17T06:35:32.8478810Z [1322/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vminc-scalar-u8.c.o 2025-07-17T06:35:32.8539150Z [1323/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-neon-u8.c.o 2025-07-17T06:35:32.8741610Z [1324/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmul-neon-u8.c.o 2025-07-17T06:35:32.8788320Z [1325/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmul-scalar-u8.c.o 2025-07-17T06:35:32.8850160Z [1326/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmulc-neon-u8.c.o 2025-07-17T06:35:32.9060650Z [1327/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmulc-scalar-u8.c.o 2025-07-17T06:35:32.9302070Z [1328/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vpreluc-scalar-u8.c.o 2025-07-17T06:35:32.9453280Z [1329/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vprelu-scalar-u8.c.o 2025-07-17T06:35:32.9497260Z [1330/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vprelu-neon-u8.c.o 2025-07-17T06:35:32.9666490Z [1331/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-u2.c.o 2025-07-17T06:35:32.9670200Z [1332/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vpreluc-neon-u8.c.o 2025-07-17T06:35:32.9827510Z [1333/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrdivc-aarch64-neon-u8.c.o 2025-07-17T06:35:33.0343670Z [1334/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrsubc-neon-u8.c.o 2025-07-17T06:35:33.0374050Z [1335/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrpreluc-scalar-u8.c.o 2025-07-17T06:35:33.0397070Z [1336/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-u8.c.o 2025-07-17T06:35:33.0437380Z [1337/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiffc-neon-u8.c.o 2025-07-17T06:35:33.0603300Z [1338/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrpreluc-neon-u8.c.o 2025-07-17T06:35:33.0686680Z [1339/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-u8.c.o 2025-07-17T06:35:33.0820340Z [1340/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiff-neon-u8.c.o 2025-07-17T06:35:33.0879640Z [1341/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p16c-minmax-fp32-neonv8-mla8-ld64.c.o 2025-07-17T06:35:33.1130020Z [1342/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-u8.c.o 2025-07-17T06:35:33.1432400Z [1343/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsub-neon-u8.c.o 2025-07-17T06:35:33.1535350Z [1344/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsub-scalar-u8.c.o 2025-07-17T06:35:33.1569270Z [1345/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vclamp/gen/f32-vclamp-neon-u16.c.o 2025-07-17T06:35:33.1699300Z [1346/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsubc-scalar-u8.c.o 2025-07-17T06:35:33.1727700Z [1347/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsubc-neon-u8.c.o 2025-07-17T06:35:33.1744870Z [1348/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vclamp/gen/f32-vclamp-scalar-u4.c.o 2025-07-17T06:35:33.1952700Z [1349/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcmul/gen/f32-vcmul-scalar-u4.c.o 2025-07-17T06:35:33.2101570Z [1350/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-scalar.c.o 2025-07-17T06:35:33.2112290Z [1351/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcmul/gen/f32-vcmul-neon-u8.c.o 2025-07-17T06:35:33.2239500Z [1352/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-neon.c.o 2025-07-17T06:35:33.2640670Z [1353/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-scalar.c.o 2025-07-17T06:35:33.2840970Z [1354/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-neon.c.o 2025-07-17T06:35:33.2929330Z [1355/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-neon.c.o 2025-07-17T06:35:33.3019770Z [1356/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-scalar.c.o 2025-07-17T06:35:33.3091200Z [1357/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-neon-rr2-lut16-p3-u8.c.o 2025-07-17T06:35:33.3123240Z [1358/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u2.c.o 2025-07-17T06:35:33.3317940Z [1359/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-lut16-p3-u16.c.o 2025-07-17T06:35:33.3508580Z [1360/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u4.c.o 2025-07-17T06:35:33.3525940Z [1361/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vexp/gen/f32-vexp-scalar-exp.c.o 2025-07-17T06:35:33.3531170Z [1362/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-p6-u8.c.o 2025-07-17T06:35:33.3798570Z [1363/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-scalar-rational-12-10-div.c.o 2025-07-17T06:35:33.4094800Z [1364/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-scalar-u4.c.o 2025-07-17T06:35:33.4107620Z [1365/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-neon-rational-12-10-div.c.o 2025-07-17T06:35:33.4113060Z [1366/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-neon-u8.c.o 2025-07-17T06:35:33.4375300Z [1367/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-neon-rational-3-3-div.c.o 2025-07-17T06:35:33.4400670Z [1368/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-scalar-rational-3-3-div.c.o 2025-07-17T06:35:33.4566490Z [1369/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-scalar-u4.c.o 2025-07-17T06:35:33.4711150Z [1370/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c4-minmax-neonfma-2x.c.o 2025-07-17T06:35:33.4753180Z [1371/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-neon-u16.c.o 2025-07-17T06:35:33.4812560Z [1372/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c1-minmax-scalar-2x.c.o 2025-07-17T06:35:33.4817620Z [1373/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrelu/gen/f32-vrelu-scalar-u8.c.o 2025-07-17T06:35:33.5335770Z [1374/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-scalar-libm-u1.c.o 2025-07-17T06:35:33.5362190Z [1375/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c4-minmax-neon-2x.c.o 2025-07-17T06:35:33.5427180Z [1376/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-neon-u8.c.o 2025-07-17T06:35:33.5614550Z [1377/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-neonv8-u8.c.o 2025-07-17T06:35:33.5641270Z [1378/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-neonv8-u8.c.o 2025-07-17T06:35:33.5728880Z [1379/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-u1.c.o 2025-07-17T06:35:33.5798460Z [1380/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-scalar-libm-u4.c.o 2025-07-17T06:35:33.5940010Z [1381/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-neon-u8.c.o 2025-07-17T06:35:33.6427780Z [1382/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-u4.c.o 2025-07-17T06:35:33.6449740Z [1383/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-neonv8-u8.c.o 2025-07-17T06:35:33.6472200Z [1384/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-neon-u8.c.o 2025-07-17T06:35:33.6630700Z [1385/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-u4.c.o 2025-07-17T06:35:33.6631680Z [1386/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-u1.c.o 2025-07-17T06:35:33.6676680Z [1387/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-neon-u8.c.o 2025-07-17T06:35:33.6792760Z [1388/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p2c-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:33.6824390Z [1389/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-neonv8-u8.c.o 2025-07-17T06:35:33.7095100Z [1390/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-scalar-libm-u4.c.o 2025-07-17T06:35:33.7487260Z [1391/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-scalar-libm-u1.c.o 2025-07-17T06:35:33.7602840Z [1392/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-scalar-rsqrt-u1.c.o 2025-07-17T06:35:33.7646100Z [1393/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p16c-minmax-fp32-neon-mla8-ld64.c.o 2025-07-17T06:35:33.7831180Z [1394/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr2recps-u16.c.o 2025-07-17T06:35:33.7834120Z [1395/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut64-p2-div-u2.c.o 2025-07-17T06:35:33.7972340Z [1396/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-neon-rsqrt-u16.c.o 2025-07-17T06:35:33.8023520Z [1397/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-scalar-rsqrt-u4.c.o 2025-07-17T06:35:33.8040660Z [1398/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-lut64-p2-nr2recps-u8.c.o 2025-07-17T06:35:33.8112060Z [1399/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsqrt/gen/f32-vsqrt-aarch64-neon-sqrt-u4.c.o 2025-07-17T06:35:33.8350940Z [1400/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vabs-neon.c.o 2025-07-17T06:35:33.8557650Z [1401/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsqrt/gen/f32-vsqrt-scalar-sqrt-u1.c.o 2025-07-17T06:35:33.8723870Z [1402/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-scalar-rational-9-8-div.c.o 2025-07-17T06:35:33.8862130Z [1403/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vabs-scalar.c.o 2025-07-17T06:35:33.8872760Z [1404/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-neon-rational-9-8-div.c.o 2025-07-17T06:35:33.9088340Z [1405/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vsqr-scalar.c.o 2025-07-17T06:35:33.9267210Z [1406/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vneg-scalar.c.o 2025-07-17T06:35:33.9350400Z [1407/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vneg-neon.c.o 2025-07-17T06:35:33.9364840Z [1408/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vsqr-neon.c.o 2025-07-17T06:35:33.9555030Z [1409/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/pf32-gemm/pf32-gemm-32x32-minmax-neonsme2.c.o 2025-07-17T06:35:33.9561450Z /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/XNNPACK/src/pf32-gemm/pf32-gemm-32x32-minmax-neonsme2.c:24:1: warning: non-void function does not return a value [-Wreturn-type] 2025-07-17T06:35:33.9565200Z } 2025-07-17T06:35:33.9565450Z ^ 2025-07-17T06:35:33.9566090Z /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/XNNPACK/src/pf32-gemm/pf32-gemm-32x32-minmax-neonsme2.c:34:1: warning: non-void function does not return a value [-Wreturn-type] 2025-07-17T06:35:33.9566730Z } 2025-07-17T06:35:33.9566950Z ^ 2025-07-17T06:35:33.9568970Z 2 warnings generated. 2025-07-17T06:35:34.0164810Z [1410/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-4x16c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:34.0244350Z [1411/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-1x16-minmax-neonfp16arith-mlal-lane.c.o 2025-07-17T06:35:34.0369060Z [1412/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-1x16c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:34.0478110Z [1413/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-1x16-minmax-neonfp16arith-mlal-lane.c.o 2025-07-17T06:35:34.0757580Z [1414/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-6x16-minmax-neonfp16arith-mlal-lane.c.o 2025-07-17T06:35:34.0993870Z [1415/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-1x16c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:34.1099280Z [1416/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-4x16c4-minmax-asm-aarch64-neondot-ld128.S.o 2025-07-17T06:35:34.1114360Z [1417/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-6x16-minmax-neonfp16arith-mlal-lane.c.o 2025-07-17T06:35:34.1117020Z [1418/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-4x16c4-minmax-asm-aarch64-neondotfp16arith-cortex-a55.S.o 2025-07-17T06:35:34.1131420Z [1419/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-4x16c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:34.1195630Z [1420/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-1x16c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:34.1389910Z [1421/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-1x8c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:34.1466130Z [1422/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-1x8c2s4-minmax-neonfp16arith.c.o 2025-07-17T06:35:34.2154440Z [1423/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-4x16c4-minmax-asm-aarch64-neondot-cortex-a55.S.o 2025-07-17T06:35:34.2355210Z [1424/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-4x16c4-minmax-asm-aarch64-neondot-ld128.S.o 2025-07-17T06:35:34.2440100Z [1425/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-4x16c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:34.2543410Z [1426/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-1x8c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:34.2544450Z [1427/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-4x8c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:34.2576590Z [1428/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-1x8c2s4-minmax-neonfp16arith-mlal.c.o 2025-07-17T06:35:34.2871990Z [1429/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-2x8c2s4-minmax-neonfp16arith.c.o 2025-07-17T06:35:34.2880940Z [1430/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-1x16c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:34.2891780Z [1431/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-4x16c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:34.2897230Z [1432/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-2x8c2s4-minmax-neonfp16arith-mlal.c.o 2025-07-17T06:35:34.3519380Z [1433/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-4x8c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:34.3754330Z [1434/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x16-minmax-neon-mlal-lane.c.o 2025-07-17T06:35:34.3806180Z [1435/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x16c4-minmax-neondot.c.o 2025-07-17T06:35:34.3831920Z [1436/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x4-minmax-scalar.c.o 2025-07-17T06:35:34.4022810Z [1437/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x4-minmax-scalar.c.o 2025-07-17T06:35:34.4027960Z [1438/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-4x16c4-minmax-neondot.c.o 2025-07-17T06:35:34.4277100Z [1439/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x16-minmax-neon-mlal-lane.c.o 2025-07-17T06:35:34.4486270Z [1440/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-6x16-minmax-neon-mlal-lane.c.o 2025-07-17T06:35:34.4588130Z [1441/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x16c4-minmax-neondot.c.o 2025-07-17T06:35:34.4689700Z [1442/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-4x4-minmax-scalar.c.o 2025-07-17T06:35:34.4694810Z [1443/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-4x16c4-minmax-neondot.c.o 2025-07-17T06:35:34.4802480Z [1444/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-4x4-minmax-scalar.c.o 2025-07-17T06:35:34.5214020Z [1445/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x2-minmax-scalar.c.o 2025-07-17T06:35:34.5278120Z [1446/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-6x16-minmax-neon-mlal-lane.c.o 2025-07-17T06:35:34.5351100Z [1447/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x16c4-minmax-neondot.c.o 2025-07-17T06:35:34.5518320Z [1448/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x16c4-minmax-asm-aarch64-neondot-cortex-a55.S.o 2025-07-17T06:35:34.5522680Z [1449/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x16c4-minmax-asm-aarch64-neondot-ld128.S.o 2025-07-17T06:35:34.5694380Z [1450/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x4-minmax-scalar.c.o 2025-07-17T06:35:34.5817970Z [1451/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x8c2s4-minmax-neon-mlal.c.o 2025-07-17T06:35:34.5819040Z [1452/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-2x2-minmax-scalar.c.o 2025-07-17T06:35:34.6282640Z [1453/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x8c4-minmax-neondot.c.o 2025-07-17T06:35:34.6518370Z [1454/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x2-minmax-scalar.c.o 2025-07-17T06:35:34.6525500Z [1455/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x4-minmax-scalar.c.o 2025-07-17T06:35:34.6630850Z [1456/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-2x8c2s4-minmax-neon-mlal.c.o 2025-07-17T06:35:34.6808090Z [1457/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x16c4-minmax-neondot.c.o 2025-07-17T06:35:34.6933840Z [1458/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x8c4-minmax-neondot.c.o 2025-07-17T06:35:34.7135830Z [1459/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x8c4-minmax-neondot.c.o 2025-07-17T06:35:34.7144530Z [1460/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x16c4-minmax-neondot.c.o 2025-07-17T06:35:34.7223550Z [1461/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x4-minmax-scalar.c.o 2025-07-17T06:35:34.7263030Z [1462/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x8c2s4-minmax-neon-mlal.c.o 2025-07-17T06:35:34.7270600Z [1463/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x16c4-minmax-asm-aarch64-neondot-ld128.S.o 2025-07-17T06:35:34.7275750Z [1464/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x16c4-minmax-asm-aarch64-neondot-cortex-a55.S.o 2025-07-17T06:35:34.7350960Z [1465/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-2x2-minmax-scalar.c.o 2025-07-17T06:35:34.8102420Z [1466/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x4-minmax-scalar.c.o 2025-07-17T06:35:34.8180250Z [1467/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x16c4-minmax-neondot.c.o 2025-07-17T06:35:34.8185310Z [1468/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qp8-f32-qb4w-gemm/qp8-f32-qb4w-gemm-minmax-1x4c16s2-aarch64-neondot.c.o 2025-07-17T06:35:34.8366060Z [1469/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-2x8c2s4-minmax-neon-mlal.c.o 2025-07-17T06:35:34.8368500Z [1470/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:34.8395410Z [1471/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qp8-f32-qb4w-gemm/qp8-f32-qb4w-gemm-minmax-1x8c16s2-aarch64-neondot.c.o 2025-07-17T06:35:34.8500730Z [1472/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:34.8632020Z [1473/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x8c4-minmax-neondot.c.o 2025-07-17T06:35:34.8721070Z [1474/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qp8-f32-qc4w-gemm/qp8-f32-qc4w-gemm-minmax-1x8c16s2-aarch64-neondot.c.o 2025-07-17T06:35:34.8756380Z [1475/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-rndnu-neon-mla8-ld64.c.o 2025-07-17T06:35:34.9365300Z [1476/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-rndnu-neon-mla8-ld64.c.o 2025-07-17T06:35:34.9387830Z [1477/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-rndnu-neon-mla8-ld64.c.o 2025-07-17T06:35:34.9438020Z [1478/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:34.9465430Z [1479/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:34.9644870Z [1480/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-u1.c.o 2025-07-17T06:35:34.9774940Z [1481/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:34.9871020Z [1482/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:35.0047430Z [1483/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p16c-minmax-fp32-neonv8-mla8-ld64.c.o 2025-07-17T06:35:35.0264900Z [1484/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-packw/gen/qs8-packw-x16c8-gemm-goi-scalar.c.o 2025-07-17T06:35:35.0306670Z [1485/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f16-vcvt/gen/qs8-f16-vcvt-neonfp16arith-u32.c.o 2025-07-17T06:35:35.0401720Z [1486/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-packw/gen/qs8-packw-x64c4-gemm-goi-scalar.c.o 2025-07-17T06:35:35.0421200Z [1487/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-neon-u32.c.o 2025-07-17T06:35:35.0524930Z [1488/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:35.0627050Z [1489/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:35.0706980Z [1490/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-u4.c.o 2025-07-17T06:35:35.1084400Z [1491/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p8c-minmax-fp32-neon-mla8-ld64.c.o 2025-07-17T06:35:35.1245290Z [1492/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p8c-minmax-fp32-neonv8-mla8-ld64.c.o 2025-07-17T06:35:35.1465890Z [1493/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p1c-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:35.1508590Z [1494/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p2c-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:35.1514190Z [1495/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p16c-minmax-fp32-neon-mla8-ld128.c.o 2025-07-17T06:35:35.1672630Z [1496/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:35.1676840Z [1497/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:35.1692130Z [1498/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:35.1752460Z [1499/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:35.1925790Z [1500/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p16c-minmax-fp32-neonv8-mla8-ld128.c.o 2025-07-17T06:35:35.2568400Z [1501/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c8-minmax-fp32-asm-aarch64-neon-mlal-cortex-a53-prfm.S.o 2025-07-17T06:35:35.2614280Z [1502/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c8-minmax-fp32-asm-aarch64-neon-mlal-prfm.S.o 2025-07-17T06:35:35.2623500Z [1503/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x2-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:35.2634550Z [1504/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x16c4-minmax-fp32-neondot.c.o 2025-07-17T06:35:35.2867460Z [1505/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:35.2882920Z [1506/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c8-minmax-fp32-asm-aarch64-neon-mlal.S.o 2025-07-17T06:35:35.2993630Z [1507/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x16-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-17T06:35:35.3104270Z [1508/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c4-minmax-fp32-neondot.c.o 2025-07-17T06:35:35.3208230Z [1509/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c2s4-minmax-fp32-neon-mlal.c.o 2025-07-17T06:35:35.3418610Z [1510/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c8-minmax-fp32-asm-aarch64-neon-mlal-cortex-a53-prfm.S.o 2025-07-17T06:35:35.3522680Z [1511/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c8-minmax-fp32-asm-aarch64-neon-mlal.S.o 2025-07-17T06:35:35.3651230Z [1512/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c8-minmax-fp32-asm-aarch64-neon-mlal-prfm.S.o 2025-07-17T06:35:35.3782570Z [1513/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c2s4-minmax-fp32-neonv8-mlal.c.o 2025-07-17T06:35:35.3861140Z [1514/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16-minmax-fp32-asm-aarch64-neon-mlal-lane-cortex-a53.S.o 2025-07-17T06:35:35.3911640Z [1515/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16-minmax-fp32-asm-aarch64-neon-mlal-lane-ld64.S.o 2025-07-17T06:35:35.4210900Z [1516/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16c4-minmax-fp32-asm-aarch64-neondot-cortex-a55.S.o 2025-07-17T06:35:35.4254320Z [1517/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16c4-minmax-fp32-asm-aarch64-neondot-ld128.S.o 2025-07-17T06:35:35.4286910Z [1518/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c2s4-minmax-fp32-neon-mlal.c.o 2025-07-17T06:35:35.4329760Z [1519/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x2-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:35.4330620Z [1520/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:35.4585870Z [1521/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c2s4-minmax-fp32-neonv8-mlal.c.o 2025-07-17T06:35:35.5285110Z [1522/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x16-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-17T06:35:35.5398120Z [1523/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c8-minmax-fp32-asm-aarch64-neon-mlal-cortex-a53-prfm.S.o 2025-07-17T06:35:35.5400970Z [1524/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x8c4-minmax-fp32-neondot.c.o 2025-07-17T06:35:35.5425300Z [1525/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x16c4-minmax-fp32-neondot.c.o 2025-07-17T06:35:35.5494070Z [1526/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:35.5583790Z [1527/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c4-minmax-fp32-neondot.c.o 2025-07-17T06:35:35.5723980Z [1528/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c2s4-minmax-fp32-neon-mlal.c.o 2025-07-17T06:35:35.5873480Z [1529/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c8-minmax-fp32-asm-aarch64-neon-mlal-prfm.S.o 2025-07-17T06:35:35.5908800Z [1530/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x2-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:35.6089690Z [1531/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c8-minmax-fp32-asm-aarch64-neon-mlal.S.o 2025-07-17T06:35:35.6092050Z [1532/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16c4-minmax-fp32-neondot.c.o 2025-07-17T06:35:35.6309600Z [1533/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c8-minmax-fp32-asm-aarch64-neon-mlal-cortex-a53-prfm.S.o 2025-07-17T06:35:35.6495180Z [1534/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c8-minmax-fp32-asm-aarch64-neon-mlal-prfm.S.o 2025-07-17T06:35:35.6746970Z [1535/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c2s4-minmax-fp32-neonv8-mlal.c.o 2025-07-17T06:35:35.6753360Z [1536/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c8-minmax-fp32-asm-aarch64-neon-mlal.S.o 2025-07-17T06:35:35.6770960Z [1537/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x16-minmax-fp32-asm-aarch64-neon-mlal-lane-ld64.S.o 2025-07-17T06:35:35.6810950Z [1538/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x16-minmax-fp32-asm-aarch64-neon-mlal-lane-cortex-a53.S.o 2025-07-17T06:35:35.6865060Z [1539/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c2s4-minmax-fp32-neonv8-mlal.c.o 2025-07-17T06:35:35.6916710Z [1540/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x2-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:35.7262410Z [1541/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c2s4-minmax-fp32-neon-mlal.c.o 2025-07-17T06:35:35.7265100Z [1542/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x16c4-minmax-fp32-asm-aarch64-neondot-cortex-a55.S.o 2025-07-17T06:35:35.7384000Z [1543/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:35.7598180Z [1544/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x16c4-minmax-fp32-asm-aarch64-neondot-ld128.S.o 2025-07-17T06:35:35.7852570Z [1545/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qu8-packw/gen/qs8-qu8-packw-x16c8-gemm-goi-scalar.c.o 2025-07-17T06:35:35.8077290Z [1546/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rdsum/gen/qs8-rdsum-minmax-fp32-scalar-u1-acc1.c.o 2025-07-17T06:35:35.8132710Z [1547/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rdsum/gen/qs8-rdsum-7p7x-minmax-fp32-neon-c32.c.o 2025-07-17T06:35:35.8273200Z [1548/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x16c4-minmax-fp32-neondot.c.o 2025-07-17T06:35:35.8302390Z [1549/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-neon-u32-acc2.c.o 2025-07-17T06:35:35.8457170Z [1550/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x8c4-minmax-fp32-neondot.c.o 2025-07-17T06:35:35.8511620Z [1551/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-scalar-u4.c.o 2025-07-17T06:35:35.8518160Z [1552/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-neondot-u32-acc2.c.o 2025-07-17T06:35:35.8703920Z [1553/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld64-u16.c.o 2025-07-17T06:35:35.8784160Z [1554/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-scalar-u1.c.o 2025-07-17T06:35:35.8848380Z [1555/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld64-u32.c.o 2025-07-17T06:35:35.9306640Z [1556/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-scalar-u4.c.o 2025-07-17T06:35:35.9314070Z [1557/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-u1.c.o 2025-07-17T06:35:35.9358070Z [1558/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld64-u16.c.o 2025-07-17T06:35:35.9502010Z [1559/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld64-u32.c.o 2025-07-17T06:35:35.9510000Z [1560/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-scalar-u4.c.o 2025-07-17T06:35:35.9784220Z [1561/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-scalar-u1.c.o 2025-07-17T06:35:35.9928570Z [1562/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-u4.c.o 2025-07-17T06:35:36.0040770Z [1563/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9p8x-minmax-fp32-scalar-imagic-c1.c.o 2025-07-17T06:35:36.0218000Z [1564/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-neon-u32.c.o 2025-07-17T06:35:36.0247540Z [1565/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-select-u4.c.o 2025-07-17T06:35:36.0262860Z [1566/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-andxor-u4.c.o 2025-07-17T06:35:36.0480520Z [1567/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-neon-u32.c.o 2025-07-17T06:35:36.0594220Z [1568/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-scalar-u4.c.o 2025-07-17T06:35:36.0607770Z [1569/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-scalar-u4.c.o 2025-07-17T06:35:36.0707470Z [1570/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmul/gen/qs8-vmul-minmax-rndnu-neon-ld64-u16.c.o 2025-07-17T06:35:36.1056220Z [1571/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-rndnu-neon-ld64-u16.c.o 2025-07-17T06:35:36.1159250Z [1572/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9x-minmax-fp32-scalar-imagic-c1.c.o 2025-07-17T06:35:36.1363850Z [1573/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:36.1376050Z [1574/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9x-minmax-fp32-neon-c8.c.o 2025-07-17T06:35:36.1522010Z [1575/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:36.1559760Z [1576/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:36.1564130Z [1577/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9p8x-minmax-fp32-neon-c8.c.o 2025-07-17T06:35:36.1648510Z [1578/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-rndnu-neon-mul8.c.o 2025-07-17T06:35:36.1819750Z [1579/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-rndnu-neon-mul8.c.o 2025-07-17T06:35:36.1823760Z [1580/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o 2025-07-17T06:35:36.2226920Z [1581/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:36.2326430Z [1582/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:36.2518500Z [1583/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l1c1s1r-minmax-scalar-acc2.c.o 2025-07-17T06:35:36.2543050Z [1584/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-u1.c.o 2025-07-17T06:35:36.2670550Z [1585/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-neon-u32.c.o 2025-07-17T06:35:36.2794110Z [1586/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-u4.c.o 2025-07-17T06:35:36.3061840Z [1587/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x16-minmax-rndnu-neon-mlal-lane.c.o 2025-07-17T06:35:36.3276270Z [1588/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-3x8-minmax-rndnu-neon-mlal-lane.c.o 2025-07-17T06:35:36.3280870Z [1589/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-4x16-minmax-rndnu-asm-aarch64-neon-mlal-lane-cortex-a53-prfm.S.o 2025-07-17T06:35:36.3405900Z [1590/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x8-minmax-rndnu-neon-mlal-lane.c.o 2025-07-17T06:35:36.3475320Z [1591/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x16-minmax-rndnu16-neon-mlal-lane.c.o 2025-07-17T06:35:36.3529410Z [1592/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-4x16-minmax-rndnu-asm-aarch64-neon-mlal-lane-cortex-a75-prfm.S.o 2025-07-17T06:35:36.3574430Z [1593/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:36.3678480Z [1594/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:36.3840220Z [1595/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-4x16-minmax-rndnu-asm-aarch64-neon-mlal-lane-cortex-a75.S.o 2025-07-17T06:35:36.3847090Z [1596/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:36.3847910Z [1597/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:36.4104190Z [1598/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-4x16-minmax-rndnu16-asm-aarch64-neon-mlal-lane-cortex-a53-prfm.S.o 2025-07-17T06:35:36.4775520Z [1599/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x16-minmax-rndnu-neon-mlal-lane.c.o 2025-07-17T06:35:36.4903050Z [1600/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-4x16-minmax-rndnu-asm-aarch64-neon-mlal-lane-cortex-a53-prfm.S.o 2025-07-17T06:35:36.4941460Z [1601/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x16-minmax-rndnu16-neon-mlal-lane.c.o 2025-07-17T06:35:36.4950550Z [1602/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:36.5145010Z [1603/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x8-minmax-rndnu-neon-mlal-lane.c.o 2025-07-17T06:35:36.5173760Z [1604/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-3x8-minmax-rndnu-neon-mlal-lane.c.o 2025-07-17T06:35:36.5178660Z [1605/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-4x16-minmax-rndnu-neon-mlal-lane.c.o 2025-07-17T06:35:36.5451500Z [1606/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-4x16-minmax-rndnu-asm-aarch64-neon-mlal-lane-cortex-a75-prfm.S.o 2025-07-17T06:35:36.5452930Z [1607/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:36.5565070Z [1608/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-4x16-minmax-rndnu-asm-aarch64-neon-mlal-lane-cortex-a75.S.o 2025-07-17T06:35:36.5567900Z [1609/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-4x16-minmax-rndnu16-asm-aarch64-neon-mlal-lane-cortex-a53-prfm.S.o 2025-07-17T06:35:36.5729640Z [1610/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-07-17T06:35:36.6099450Z [1611/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-fp32-scalar-imagic.c.o 2025-07-17T06:35:36.6200720Z [1612/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-4x16-minmax-rndnu-neon-mlal-lane.c.o 2025-07-17T06:35:36.6367710Z [1613/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rdsum/gen/qu8-rdsum-7p7x-neon-u16.c.o 2025-07-17T06:35:36.6393150Z [1614/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rdsum/gen/qu8-rdsum-scalar.c.o 2025-07-17T06:35:36.6546150Z [1615/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rdsum/gen/qu8-rdsum-7p7x-neon-u32.c.o 2025-07-17T06:35:36.6684110Z [1616/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-u1.c.o 2025-07-17T06:35:36.6813130Z [1617/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-neon-ld64-u32.c.o 2025-07-17T06:35:36.6920520Z [1618/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rsum/gen/qu8-rsum-scalar-u4.c.o 2025-07-17T06:35:36.7020460Z [1619/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rsum/gen/qu8-rsum-neon-u32-acc2.c.o 2025-07-17T06:35:36.7021200Z [1620/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-neon-ld64-u16.c.o 2025-07-17T06:35:36.7177570Z [1621/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-u4.c.o 2025-07-17T06:35:36.7303270Z [1622/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-u1.c.o 2025-07-17T06:35:36.7518060Z [1623/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-neon-ld64-u16.c.o 2025-07-17T06:35:36.7643070Z [1624/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-u1.c.o 2025-07-17T06:35:36.7738770Z [1625/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-neon-ld64-u32.c.o 2025-07-17T06:35:36.7908800Z [1626/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-neon-u32.c.o 2025-07-17T06:35:36.7964010Z [1627/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-u4.c.o 2025-07-17T06:35:36.7965760Z [1628/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-u4.c.o 2025-07-17T06:35:36.8065700Z [1629/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-andxor-u4.c.o 2025-07-17T06:35:36.8128000Z [1630/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-neon-u32.c.o 2025-07-17T06:35:36.8129910Z [1631/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-select-u4.c.o 2025-07-17T06:35:36.8526580Z [1632/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-scalar-u4.c.o 2025-07-17T06:35:36.8797500Z [1633/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmul/gen/qu8-vmul-minmax-rndnu-neon-ld64-u16.c.o 2025-07-17T06:35:36.9024660Z [1634/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-rndnu-neon-ld64-u16.c.o 2025-07-17T06:35:36.9182870Z [1635/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-scalar-u4.c.o 2025-07-17T06:35:36.9303990Z [1636/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-ibilinear/gen/s8-ibilinear-neon-c16.c.o 2025-07-17T06:35:36.9429540Z [1637/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s32-f32-vcvt/gen/s32-f32-vcvt-neon.c.o 2025-07-17T06:35:36.9433940Z [1638/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s32-f32-vcvt/gen/s32-f32-vcvt-scalar.c.o 2025-07-17T06:35:36.9562420Z [1639/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-vclamp/s8-vclamp-neon-u64.c.o 2025-07-17T06:35:36.9564450Z [1640/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-ibilinear/gen/s8-ibilinear-scalar-c1.c.o 2025-07-17T06:35:36.9849780Z [1641/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-maxpool/s8-maxpool-9p8x-minmax-scalar-c1.c.o 2025-07-17T06:35:36.9883520Z [1642/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-maxpool/s8-maxpool-9p8x-minmax-neon-c16.c.o 2025-07-17T06:35:37.0109710Z [1643/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-vclamp/s8-vclamp-scalar-u4.c.o 2025-07-17T06:35:37.0117960Z [1644/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-ibilinear/gen/s8-ibilinear-neon-c8.c.o 2025-07-17T06:35:37.0468060Z [1645/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-lut32norm/u8-lut32norm-scalar.c.o 2025-07-17T06:35:37.0524940Z [1646/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-ibilinear/gen/u8-ibilinear-scalar-c1.c.o 2025-07-17T06:35:37.0619960Z [1647/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-maxpool/u8-maxpool-9p8x-minmax-neon-c16.c.o 2025-07-17T06:35:37.0630820Z [1648/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-ibilinear/gen/u8-ibilinear-neon-c16.c.o 2025-07-17T06:35:37.0738040Z [1649/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-ibilinear/gen/u8-ibilinear-neon-c8.c.o 2025-07-17T06:35:37.0963690Z [1650/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-maxpool/u8-maxpool-9p8x-minmax-scalar-c1.c.o 2025-07-17T06:35:37.1031640Z [1651/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-rmax/u8-rmax-neon-u16.c.o 2025-07-17T06:35:37.1247420Z [1652/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-rmax/u8-rmax-scalar-u2.c.o 2025-07-17T06:35:37.1442250Z [1653/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-packw/gen/x16-packw-x8-gemm-goi-neon-ld4lane-u8-prfm.c.o 2025-07-17T06:35:37.1608710Z [1654/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-vclamp/u8-vclamp-neon-u64.c.o 2025-07-17T06:35:37.1740870Z [1655/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-vclamp/u8-vclamp-scalar-u4.c.o 2025-07-17T06:35:37.1817610Z [1656/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-packw/gen/x16-packw-x16-gemm-goi-neon-ld4lane-u8-prfm.c.o 2025-07-17T06:35:37.1855690Z [1657/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-dec-zip-neon.c.o 2025-07-17T06:35:37.1993770Z [1658/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x24-transposec/x24-transposec-4x4-aarch64-neon-tbl128.c.o 2025-07-17T06:35:37.2023110Z [1659/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-packw/gen/x16-packw-x64-gemm-goi-scalar-int-u4.c.o 2025-07-17T06:35:37.2121380Z [1660/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-transposec/gen/x16-transposec-2x4-scalar-int.c.o 2025-07-17T06:35:37.2122290Z [1661/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x24-transposec/gen/x24-transposec-1x2-scalar.c.o 2025-07-17T06:35:37.2579900Z [1662/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x24-transposec/x24-transposec-2x2-neon-tbl64.c.o 2025-07-17T06:35:37.2840460Z [1663/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x8-gemm-goi-neon-ld4lane-u4-prfm.c.o 2025-07-17T06:35:37.2851170Z [1664/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-pack-lh/x32-packlh-neonsme2.c.o 2025-07-17T06:35:37.2858670Z /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/XNNPACK/src/x32-pack-lh/x32-packlh-neonsme2.c:46:1: warning: non-void function does not return a value [-Wreturn-type] 2025-07-17T06:35:37.2906130Z } 2025-07-17T06:35:37.2907220Z ^ 2025-07-17T06:35:37.2907840Z 1 warning generated. 2025-07-17T06:35:37.3030290Z [1665/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x2-gemm-goi-scalar-float-u4.c.o 2025-07-17T06:35:37.3248820Z [1666/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-transposec/x32-transposec-4x4-aarch64-neon-tbl128.c.o 2025-07-17T06:35:37.3367050Z [1667/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x2-gemm-goi-neon-ld2lane-u2-prfm.c.o 2025-07-17T06:35:37.3373530Z [1668/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x8s4-gemm-goi-neon-ld4lane-u4-prfm.c.o 2025-07-17T06:35:37.3376910Z [1669/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-transposec/gen/x32-transposec-2x4-scalar-int.c.o 2025-07-17T06:35:37.3573910Z [1670/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-transposec/gen/x32-transposec-4x4-reuse-dec-zip-neon.c.o 2025-07-17T06:35:37.3679920Z [1671/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-unpool/x32-unpool-scalar.c.o 2025-07-17T06:35:37.3823960Z [1672/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-unpool/x32-unpool-neon.c.o 2025-07-17T06:35:37.3864130Z [1673/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x4-gemm-goi-scalar-float-u4.c.o 2025-07-17T06:35:37.3882690Z [1674/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x2-scalar.c.o 2025-07-17T06:35:37.4399950Z [1675/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x2-neon.c.o 2025-07-17T06:35:37.4424960Z [1676/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x3-scalar.c.o 2025-07-17T06:35:37.4571160Z [1677/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x3-neon.c.o 2025-07-17T06:35:37.4575070Z [1678/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x4-neon.c.o 2025-07-17T06:35:37.4584140Z [1679/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-xm-scalar.c.o 2025-07-17T06:35:37.4773440Z [1680/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x4-scalar.c.o 2025-07-17T06:35:37.4957510Z [1681/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-lut/gen/x8-lut-scalar-u4.c.o 2025-07-17T06:35:37.4959220Z [1682/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-xm-neon.c.o 2025-07-17T06:35:37.5170070Z [1683/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x64-transposec/gen/x64-transposec-2x2-reuse-dec-zip-neon.c.o 2025-07-17T06:35:37.5245400Z [1684/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-dec-zip-neon.c.o 2025-07-17T06:35:37.5457590Z [1685/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-lut/gen/x8-lut-aarch64-neon-tbx128x4-u64.c.o 2025-07-17T06:35:37.5675660Z [1686/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-transposec/gen/x8-transposec-16x16-reuse-dec-zip-neon.c.o 2025-07-17T06:35:37.5678790Z [1687/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packq/x8-packq-aarch64-neon-f32qp8-u2.c.o 2025-07-17T06:35:37.5706740Z [1688/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x64-transposec/gen/x64-transposec-4x2-scalar-int.c.o 2025-07-17T06:35:37.5714390Z [1689/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packq/x8-packq-scalar-f32qp8-u1.c.o 2025-07-17T06:35:37.5767500Z [1690/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x16-gemm-goi-scalar-u2.c.o 2025-07-17T06:35:37.5948430Z [1691/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x32-gemm-goi-scalar-u2.c.o 2025-07-17T06:35:37.6015340Z [1692/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x4-gemm-goi-scalar-u2.c.o 2025-07-17T06:35:37.6162630Z [1693/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x8-gemm-goi-scalar-u2.c.o 2025-07-17T06:35:37.6358130Z [1694/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x2-neon.c.o 2025-07-17T06:35:37.6600320Z [1695/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x2-scalar.c.o 2025-07-17T06:35:37.6757550Z [1696/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x3-scalar.c.o 2025-07-17T06:35:37.6759060Z [1697/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-transposec/gen/x8-transposec-2x4-scalar-int.c.o 2025-07-17T06:35:37.6789770Z [1698/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x4-scalar.c.o 2025-07-17T06:35:37.6919240Z [1699/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x4-neon.c.o 2025-07-17T06:35:37.6968020Z [1700/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-xm-scalar.c.o 2025-07-17T06:35:37.7307260Z [1701/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-fill/xx-fill-scalar-u16.c.o 2025-07-17T06:35:37.7319450Z [1702/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-copy/xx-copy-scalar-memcpy.c.o 2025-07-17T06:35:37.7390350Z [1703/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-xm-neon.c.o 2025-07-17T06:35:37.7554860Z [1704/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-fill/xx-fill-neon-u64.c.o 2025-07-17T06:35:37.7682790Z [1705/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-pad/xx-pad-p16-neon-u16.c.o 2025-07-17T06:35:37.7699690Z [1706/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-pad/xx-pad-p4-scalar-u16.c.o 2025-07-17T06:35:37.7849420Z [1707/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2-k-over-64.c.o 2025-07-17T06:35:37.7902560Z [1708/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x3-neon.c.o 2025-07-17T06:35:37.8008030Z [1709/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2-k-over-2048.c.o 2025-07-17T06:35:37.8175780Z [1710/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-transposev/xx-transposev-1x1-scalar-memcpy.c.o 2025-07-17T06:35:37.8183690Z [1711/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-16.c.o 2025-07-17T06:35:37.8339030Z [1712/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-8.c.o 2025-07-17T06:35:37.8343580Z [1713/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-32.c.o 2025-07-17T06:35:37.8527690Z [1714/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-64.c.o 2025-07-17T06:35:37.8544880Z [1715/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-2048.c.o 2025-07-17T06:35:37.8719990Z [1716/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/vlog.c.o 2025-07-17T06:35:37.8741880Z [1717/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-4.c.o 2025-07-17T06:35:37.9056050Z [1718/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l1c1s1r-scalar-acc2.c.o 2025-07-17T06:35:37.9193350Z [1719/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l1c1s1r-scalar.c.o 2025-07-17T06:35:37.9229820Z [1720/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p2c-scalar-acc2.c.o 2025-07-17T06:35:37.9347190Z [1721/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p2c-minmax-scalar.c.o 2025-07-17T06:35:37.9405460Z [1722/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l1c1s1r-minmax-scalar.c.o 2025-07-17T06:35:37.9422640Z [1723/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l1c1s1r-minmax-scalar.c.o 2025-07-17T06:35:37.9572980Z [1724/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l1c1s1r-minmax-scalar-acc2.c.o 2025-07-17T06:35:37.9698690Z [1725/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p2c-scalar.c.o 2025-07-17T06:35:38.2353000Z [1726/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/zero_copy_stream_impl.cc.o 2025-07-17T06:35:38.2376870Z [1727/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/any_lite.cc.o 2025-07-17T06:35:38.2384040Z [1728/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/generated_enum_util.cc.o 2025-07-17T06:35:38.2533950Z [1729/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/arena.cc.o 2025-07-17T06:35:38.2542150Z [1730/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/generated_message_table_driven_lite.cc.o 2025-07-17T06:35:38.2552940Z [1731/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/io_win32.cc.o 2025-07-17T06:35:38.2635160Z [1732/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/generated_message_util.cc.o 2025-07-17T06:35:38.2818390Z [1733/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/implicit_weak_message.cc.o 2025-07-17T06:35:38.2884890Z [1734/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/extension_set.cc.o 2025-07-17T06:35:38.3939180Z [1735/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/coded_stream.cc.o 2025-07-17T06:35:38.4538150Z [1736/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/zero_copy_stream_impl_lite.cc.o 2025-07-17T06:35:38.4614770Z [1737/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/strtod.cc.o 2025-07-17T06:35:38.4635540Z [1738/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/zero_copy_stream.cc.o 2025-07-17T06:35:38.4863330Z [1739/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/structurally_valid.cc.o 2025-07-17T06:35:38.5190070Z [1740/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/repeated_field.cc.o 2025-07-17T06:35:38.5462230Z [1741/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/message_lite.cc.o 2025-07-17T06:35:38.5941710Z [1742/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/parse_context.cc.o 2025-07-17T06:35:38.6267130Z [1743/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/common.cc.o 2025-07-17T06:35:38.6274330Z [1744/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/io_win32.cc.o 2025-07-17T06:35:38.6310860Z [1745/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/bytestream.cc.o 2025-07-17T06:35:38.6535620Z [1746/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/int128.cc.o 2025-07-17T06:35:38.6676710Z [1747/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/stringpiece.cc.o 2025-07-17T06:35:38.6733820Z [1748/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/statusor.cc.o 2025-07-17T06:35:38.6914440Z [1749/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/stringprintf.cc.o 2025-07-17T06:35:38.6981700Z [1750/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/status.cc.o 2025-07-17T06:35:38.8238170Z [1751/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/strutil.cc.o 2025-07-17T06:35:38.8339430Z /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/protobuf/src/google/protobuf/stubs/strutil.cc:507:11: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only. Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations] 2025-07-17T06:35:38.8444920Z sprintf(dest + used, (use_hex ? "\\x%02x" : "\\%03o"), 2025-07-17T06:35:38.8564540Z ^ 2025-07-17T06:35:38.8568350Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stdio.h:180:1: note: 'sprintf' has been explicitly marked deprecated here 2025-07-17T06:35:38.8569190Z __deprecated_msg("This function is provided for compatibility reasons only. Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.") 2025-07-17T06:35:38.8569720Z ^ 2025-07-17T06:35:38.8570110Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/cdefs.h:218:48: note: expanded from macro '__deprecated_msg' 2025-07-17T06:35:38.8570910Z #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg))) 2025-07-17T06:35:38.8571180Z ^ 2025-07-17T06:35:38.8571370Z 1 warning generated. 2025-07-17T06:35:38.8571760Z [1752/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/time.cc.o 2025-07-17T06:35:38.8572400Z [1753/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/coded_stream.cc.o 2025-07-17T06:35:38.8731440Z [1754/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/implicit_weak_message.cc.o 2025-07-17T06:35:38.8846800Z [1755/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/wire_format_lite.cc.o 2025-07-17T06:35:38.9647670Z [1756/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_message_util.cc.o 2025-07-17T06:35:38.9675020Z [1757/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_enum_util.cc.o 2025-07-17T06:35:38.9703460Z [1758/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/strtod.cc.o 2025-07-17T06:35:38.9832560Z [1759/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_message_table_driven_lite.cc.o 2025-07-17T06:35:39.0224860Z [1760/5148] Linking CXX static library lib/libprotobuf-lite.a 2025-07-17T06:35:39.0460530Z [1761/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/extension_set.cc.o 2025-07-17T06:35:39.0626280Z [1762/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/zero_copy_stream.cc.o 2025-07-17T06:35:39.1050170Z [1763/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/any_lite.cc.o 2025-07-17T06:35:39.1150800Z [1764/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/arena.cc.o 2025-07-17T06:35:39.1631900Z [1765/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/zero_copy_stream_impl.cc.o 2025-07-17T06:35:39.2003520Z [1766/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/parse_context.cc.o 2025-07-17T06:35:39.2131820Z [1767/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/zero_copy_stream_impl_lite.cc.o 2025-07-17T06:35:39.2193990Z [1768/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/repeated_field.cc.o 2025-07-17T06:35:39.2411550Z [1769/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/message_lite.cc.o 2025-07-17T06:35:39.2545920Z [1770/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/bytestream.cc.o 2025-07-17T06:35:39.2966340Z [1771/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/common.cc.o 2025-07-17T06:35:39.3365020Z [1772/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/int128.cc.o 2025-07-17T06:35:39.3366700Z [1773/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/status.cc.o 2025-07-17T06:35:39.4154270Z [1774/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/stringpiece.cc.o 2025-07-17T06:35:39.4253320Z [1775/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/statusor.cc.o 2025-07-17T06:35:39.4320570Z [1776/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/stringprintf.cc.o 2025-07-17T06:35:39.4722220Z [1777/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/strutil.cc.o 2025-07-17T06:35:39.4725830Z /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/protobuf/src/google/protobuf/stubs/strutil.cc:507:11: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only. Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations] 2025-07-17T06:35:39.4728570Z sprintf(dest + used, (use_hex ? "\\x%02x" : "\\%03o"), 2025-07-17T06:35:39.4729160Z ^ 2025-07-17T06:35:39.4730250Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stdio.h:180:1: note: 'sprintf' has been explicitly marked deprecated here 2025-07-17T06:35:39.4732430Z __deprecated_msg("This function is provided for compatibility reasons only. Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.") 2025-07-17T06:35:39.4733900Z ^ 2025-07-17T06:35:39.4734870Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/cdefs.h:218:48: note: expanded from macro '__deprecated_msg' 2025-07-17T06:35:39.4736260Z #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg))) 2025-07-17T06:35:39.4736930Z ^ 2025-07-17T06:35:39.4737410Z 1 warning generated. 2025-07-17T06:35:39.4836710Z [1778/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/time.cc.o 2025-07-17T06:35:39.4849340Z [1779/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/structurally_valid.cc.o 2025-07-17T06:35:39.5765490Z [1780/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/api.pb.cc.o 2025-07-17T06:35:39.5902980Z [1781/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/any.pb.cc.o 2025-07-17T06:35:39.6073960Z [1782/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/wire_format_lite.cc.o 2025-07-17T06:35:39.6717650Z [1783/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/any.cc.o 2025-07-17T06:35:39.7081150Z [1784/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/compiler/parser.cc.o 2025-07-17T06:35:39.7222970Z [1785/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/compiler/importer.cc.o 2025-07-17T06:35:39.7488580Z [1786/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/duration.pb.cc.o 2025-07-17T06:35:39.7533860Z [1787/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/descriptor.cc.o 2025-07-17T06:35:39.7911420Z [1788/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/descriptor.pb.cc.o 2025-07-17T06:35:39.8033050Z [1789/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/descriptor_database.cc.o 2025-07-17T06:35:39.8133810Z [1790/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/empty.pb.cc.o 2025-07-17T06:35:39.8559600Z [1791/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/dynamic_message.cc.o 2025-07-17T06:35:39.8701510Z [1792/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_message_table_driven.cc.o 2025-07-17T06:35:39.8881100Z [1793/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/gzip_stream.cc.o 2025-07-17T06:35:39.9233220Z [1794/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/extension_set_heavy.cc.o 2025-07-17T06:35:39.9583750Z [1795/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/field_mask.pb.cc.o 2025-07-17T06:35:39.9921940Z [1796/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/printer.cc.o 2025-07-17T06:35:40.0334870Z [1797/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_message_reflection.cc.o 2025-07-17T06:35:40.0716320Z [1798/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/tokenizer.cc.o 2025-07-17T06:35:40.0873590Z [1799/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/service.cc.o 2025-07-17T06:35:40.1562040Z [1800/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/struct.pb.cc.o 2025-07-17T06:35:40.1584100Z [1801/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/message.cc.o 2025-07-17T06:35:40.1834640Z [1802/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/reflection_ops.cc.o 2025-07-17T06:35:40.1942710Z [1803/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/map_field.cc.o 2025-07-17T06:35:40.2050930Z [1804/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/source_context.pb.cc.o 2025-07-17T06:35:40.2201180Z [1805/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/substitute.cc.o 2025-07-17T06:35:40.2552550Z [1806/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/text_format.cc.o 2025-07-17T06:35:40.2758300Z [1807/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/type.pb.cc.o 2025-07-17T06:35:40.3054630Z [1808/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/timestamp.pb.cc.o 2025-07-17T06:35:40.3282570Z [1809/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/unknown_field_set.cc.o 2025-07-17T06:35:40.4315200Z [1810/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/field_mask_utility.cc.o 2025-07-17T06:35:40.4495870Z [1811/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/delimited_message_util.cc.o 2025-07-17T06:35:40.4663930Z [1812/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/field_comparator.cc.o 2025-07-17T06:35:40.4827720Z [1813/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/default_value_objectwriter.cc.o 2025-07-17T06:35:40.4900980Z [1814/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/error_listener.cc.o 2025-07-17T06:35:40.5005620Z [1815/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/json_objectwriter.cc.o 2025-07-17T06:35:40.5249360Z [1816/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/datapiece.cc.o 2025-07-17T06:35:40.5393060Z [1817/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/field_mask_util.cc.o 2025-07-17T06:35:40.6142980Z [1818/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/json_escaping.cc.o 2025-07-17T06:35:40.6348060Z [1819/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/json_stream_parser.cc.o 2025-07-17T06:35:40.7017160Z [1820/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/protostream_objectsource.cc.o 2025-07-17T06:35:40.7193860Z [1821/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/object_writer.cc.o 2025-07-17T06:35:40.7549660Z [1822/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/protostream_objectwriter.cc.o 2025-07-17T06:35:40.7709140Z [1823/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/proto_writer.cc.o 2025-07-17T06:35:40.8087220Z [1824/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/type_info_test_helper.cc.o 2025-07-17T06:35:40.8372300Z [1825/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/type_info.cc.o 2025-07-17T06:35:40.8468250Z [1826/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/js/js_generator.cc.o 2025-07-17T06:35:40.8982110Z [1827/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/utility.cc.o 2025-07-17T06:35:40.9410800Z [1828/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/json_util.cc.o 2025-07-17T06:35:40.9854670Z [1829/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_enum_field.cc.o 2025-07-17T06:35:40.9966410Z [1830/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/message_differencer.cc.o 2025-07-17T06:35:40.9984850Z [1831/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_helpers.cc.o 2025-07-17T06:35:41.0218830Z [1832/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/wire_format.cc.o 2025-07-17T06:35:41.0325520Z [1833/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/time_util.cc.o 2025-07-17T06:35:41.1123150Z [1834/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/type_resolver_util.cc.o 2025-07-17T06:35:41.1290190Z [1835/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_generator.cc.o 2025-07-17T06:35:41.2132750Z [1836/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_message.cc.o 2025-07-17T06:35:41.2235530Z [1837/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/wrappers.pb.cc.o 2025-07-17T06:35:41.2371770Z [1838/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_reflection_class.cc.o 2025-07-17T06:35:41.2439940Z [1839/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_service.cc.o 2025-07-17T06:35:41.2803590Z [1840/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_enum_field.cc.o 2025-07-17T06:35:41.2874070Z [1841/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_message_field.cc.o 2025-07-17T06:35:41.2991320Z [1842/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_map_field.cc.o 2025-07-17T06:35:41.3202800Z [1843/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_primitive_field.cc.o 2025-07-17T06:35:41.3790270Z [1844/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_enum.cc.o 2025-07-17T06:35:41.4102200Z [1845/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_field_base.cc.o 2025-07-17T06:35:41.4505460Z [1846/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_doc_comment.cc.o 2025-07-17T06:35:41.4977930Z [1847/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_string_field.cc.o 2025-07-17T06:35:41.5293500Z [1848/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_message_field.cc.o 2025-07-17T06:35:41.5516650Z [1849/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_primitive_field.cc.o 2025-07-17T06:35:41.5777510Z [1850/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_map_field.cc.o 2025-07-17T06:35:41.5959490Z [1851/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_message.cc.o 2025-07-17T06:35:41.6071530Z [1852/5148] Linking CXX static library lib/libprotobuf.a 2025-07-17T06:35:41.6191450Z [1853/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_helpers.cc.o 2025-07-17T06:35:41.7013370Z [1854/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_generator.cc.o 2025-07-17T06:35:41.7286420Z [1855/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_file.cc.o 2025-07-17T06:35:41.7483600Z [1856/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_padding_optimizer.cc.o 2025-07-17T06:35:41.8066520Z [1857/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_field.cc.o 2025-07-17T06:35:41.8098350Z [1858/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_extension.cc.o 2025-07-17T06:35:41.8297470Z [1859/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_enum_field.cc.o 2025-07-17T06:35:41.8879100Z [1860/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/code_generator.cc.o 2025-07-17T06:35:41.8904510Z [1861/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_repeated_enum_field.cc.o 2025-07-17T06:35:41.8994100Z [1862/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_enum.cc.o 2025-07-17T06:35:41.9718050Z [1863/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_repeated_message_field.cc.o 2025-07-17T06:35:41.9935490Z [1864/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/command_line_interface.cc.o 2025-07-17T06:35:42.0506220Z [1865/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_source_generator_base.cc.o 2025-07-17T06:35:42.0534560Z [1866/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_wrapper_field.cc.o 2025-07-17T06:35:42.0757550Z [1867/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_context.cc.o 2025-07-17T06:35:42.0842160Z [1868/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_enum_field_lite.cc.o 2025-07-17T06:35:42.0913130Z [1869/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_repeated_primitive_field.cc.o 2025-07-17T06:35:42.1807880Z [1870/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_doc_comment.cc.o 2025-07-17T06:35:42.1847000Z [1871/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_enum.cc.o 2025-07-17T06:35:42.2218690Z [1872/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_extension_lite.cc.o 2025-07-17T06:35:42.2442540Z [1873/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_enum_field.cc.o 2025-07-17T06:35:42.3025530Z [1874/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_extension.cc.o 2025-07-17T06:35:42.3086580Z [1875/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_generator_factory.cc.o 2025-07-17T06:35:42.3189600Z [1876/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_enum_lite.cc.o 2025-07-17T06:35:42.3688880Z [1877/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_field.cc.o 2025-07-17T06:35:42.4053180Z [1878/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_map_field_lite.cc.o 2025-07-17T06:35:42.4397720Z [1879/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_file.cc.o 2025-07-17T06:35:42.5115130Z [1880/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_helpers.cc.o 2025-07-17T06:35:42.5166410Z [1881/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_generator.cc.o 2025-07-17T06:35:42.5304720Z [1882/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_map_field.cc.o 2025-07-17T06:35:42.5395320Z [1883/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_builder.cc.o 2025-07-17T06:35:42.5578070Z [1884/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_builder_lite.cc.o 2025-07-17T06:35:42.5731710Z [1885/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_field.cc.o 2025-07-17T06:35:42.6109190Z [1886/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message.cc.o 2025-07-17T06:35:42.6934320Z [1887/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_field_lite.cc.o 2025-07-17T06:35:42.7274010Z [1888/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/js/well_known_types_embed.cc.o 2025-07-17T06:35:42.7342770Z [1889/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_name_resolver.cc.o 2025-07-17T06:35:42.7500370Z [1890/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_primitive_field.cc.o 2025-07-17T06:35:42.7529510Z [1891/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_lite.cc.o 2025-07-17T06:35:42.8140590Z [1892/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_shared_code_generator.cc.o 2025-07-17T06:35:42.8150870Z [1893/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_string_field_lite.cc.o 2025-07-17T06:35:42.8349980Z [1894/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_service.cc.o 2025-07-17T06:35:42.8454670Z [1895/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_primitive_field_lite.cc.o 2025-07-17T06:35:42.9738460Z [1896/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_string_field.cc.o 2025-07-17T06:35:42.9764940Z [1897/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_file.cc.o 2025-07-17T06:35:42.9926230Z [1898/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_extension.cc.o 2025-07-17T06:35:42.9946380Z [1899/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_field.cc.o 2025-07-17T06:35:43.0092260Z [1900/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_enum.cc.o 2025-07-17T06:35:43.0169540Z [1901/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_generator.cc.o 2025-07-17T06:35:43.0969300Z [1902/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_map_field.cc.o 2025-07-17T06:35:43.1715900Z [1903/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_message.cc.o 2025-07-17T06:35:43.2072010Z [1904/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_message_field.cc.o 2025-07-17T06:35:43.2278980Z [1905/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_helpers.cc.o 2025-07-17T06:35:43.2283620Z [1906/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_primitive_field.cc.o 2025-07-17T06:35:43.2561480Z [1907/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/plugin.cc.o 2025-07-17T06:35:43.2595020Z [1908/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/python/python_generator.cc.o 2025-07-17T06:35:43.2734430Z [1909/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/php/php_generator.cc.o 2025-07-17T06:35:43.2892240Z [1910/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_oneof.cc.o 2025-07-17T06:35:43.3441370Z [1911/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/plugin.pb.cc.o 2025-07-17T06:35:43.3612520Z [1912/5148] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/api.c.o 2025-07-17T06:35:43.3663870Z [1913/5148] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/mach/topology.c.o 2025-07-17T06:35:43.3667050Z [1914/5148] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/arm/mach/init.c.o 2025-07-17T06:35:43.3738180Z [1915/5148] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/arm/cache.c.o 2025-07-17T06:35:43.3750080Z [1916/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/ruby/ruby_generator.cc.o 2025-07-17T06:35:43.3892900Z [1917/5148] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/arm/uarch.c.o 2025-07-17T06:35:43.4265380Z [1918/5148] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/log.c.o 2025-07-17T06:35:43.4348140Z [1919/5148] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/init.c.o 2025-07-17T06:35:43.4535480Z [1920/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/zip_writer.cc.o 2025-07-17T06:35:43.4537790Z [1921/5148] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/cache.c.o 2025-07-17T06:35:43.4705810Z [1922/5148] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/legacy-api.c.o 2025-07-17T06:35:43.4726800Z [1923/5148] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/api.c.o 2025-07-17T06:35:43.4951580Z [1924/5148] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/portable-api.c.o 2025-07-17T06:35:43.4962780Z [1925/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/subprocess.cc.o 2025-07-17T06:35:43.4976070Z [1926/5148] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/memory.c.o 2025-07-17T06:35:43.5195140Z [1927/5148] Linking C static library lib/libcpuinfo.a 2025-07-17T06:35:43.5239440Z [1928/5148] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/cache.c.o 2025-07-17T06:35:43.5405000Z [1929/5148] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/gcd.c.o 2025-07-17T06:35:43.5431430Z [1930/5148] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/init.c.o 2025-07-17T06:35:43.5621680Z [1931/5148] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/arm/uarch.c.o 2025-07-17T06:35:43.5667830Z [1932/5148] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/log.c.o 2025-07-17T06:35:43.5876150Z [1933/5148] Linking C static library lib/libpthreadpool.a 2025-07-17T06:35:43.6012620Z [1934/5148] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/arm/cache.c.o 2025-07-17T06:35:43.6025000Z [1935/5148] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/arm/mach/init.c.o 2025-07-17T06:35:43.6226580Z [1936/5148] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/mach/topology.c.o 2025-07-17T06:35:43.6418490Z [1937/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/init.c.o 2025-07-17T06:35:43.6492240Z [1938/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/add.c.o 2025-07-17T06:35:43.6584600Z [1939/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/average-pooling.c.o 2025-07-17T06:35:43.6726900Z [1940/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/clamp.c.o 2025-07-17T06:35:43.6729180Z [1941/5148] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8conv/8x8-aarch64-neon.S.o 2025-07-17T06:35:43.6740820Z [1942/5148] Linking C static library lib/libcpuinfo_internals.a 2025-07-17T06:35:43.7379890Z [1943/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/deconvolution.c.o 2025-07-17T06:35:43.7386370Z [1944/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/convolution.c.o 2025-07-17T06:35:43.7397970Z [1945/5148] Building CXX object third_party/protobuf/cmake/CMakeFiles/protoc.dir/__/src/google/protobuf/compiler/main.cc.o 2025-07-17T06:35:43.7555640Z [1946/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fully-connected-sparse.c.o 2025-07-17T06:35:43.7575030Z [1947/5148] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fc-prepack.cc.o 2025-07-17T06:35:43.7603930Z [1948/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/global-average-pooling.c.o 2025-07-17T06:35:43.7620070Z [1949/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/channel-shuffle.c.o 2025-07-17T06:35:43.7827980Z [1950/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fully-connected.c.o 2025-07-17T06:35:43.8019790Z [1951/5148] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/conv-prepack.cc.o 2025-07-17T06:35:43.8263380Z [1952/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/hardswish.c.o 2025-07-17T06:35:43.8356140Z [1953/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/hardsigmoid.c.o 2025-07-17T06:35:43.8422610Z [1954/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/leaky-relu.c.o 2025-07-17T06:35:43.8554520Z [1955/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/max-pooling.c.o 2025-07-17T06:35:43.8590280Z [1956/5148] Linking CXX static library lib/libprotoc.a 2025-07-17T06:35:43.8648200Z [1957/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/sigmoid.c.o 2025-07-17T06:35:43.8668940Z [1958/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/softargmax.c.o 2025-07-17T06:35:43.8868840Z [1959/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/tanh.c.o 2025-07-17T06:35:43.9475160Z [1960/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/operator-delete.c.o 2025-07-17T06:35:43.9576230Z [1961/5148] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fc-run.cc.o 2025-07-17T06:35:43.9668590Z [1962/5148] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/deconv-run.cc.o 2025-07-17T06:35:43.9833760Z [1963/5148] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fc-unpack.cc.o 2025-07-17T06:35:43.9844320Z [1964/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/indirection.c.o 2025-07-17T06:35:43.9956170Z [1965/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8lut32norm/scalar.c.o 2025-07-17T06:35:44.0104800Z [1966/5148] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fc-dynamic-run.cc.o 2025-07-17T06:35:44.0217910Z [1967/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8lut/scalar.c.o 2025-07-17T06:35:44.0553460Z [1968/5148] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/conv-run.cc.o 2025-07-17T06:35:44.0720940Z [1969/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/operator-run.c.o 2025-07-17T06:35:44.0734890Z [1970/5148] Linking CXX executable bin/protoc-3.13.0.0 2025-07-17T06:35:44.0748660Z [1971/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/sgemm/6x8-psimd.c.o 2025-07-17T06:35:44.0751160Z [1972/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8avgpool/mp8x9p8q-neon.c.o 2025-07-17T06:35:44.0930400Z [1973/5148] Creating executable symlink bin/protoc 2025-07-17T06:35:44.1072640Z [1974/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8avgpool/up8xm-neon.c.o 2025-07-17T06:35:44.1080720Z [1975/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8avgpool/up8x9-neon.c.o 2025-07-17T06:35:44.1221010Z [1976/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8conv/4x8-neon.c.o 2025-07-17T06:35:44.1407180Z [1977/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8conv/8x8-neon.c.o 2025-07-17T06:35:44.1461500Z [1978/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/mp8x25-neon.c.o 2025-07-17T06:35:44.2072160Z [1979/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gavgpool/mp8x7p7q-neon.c.o 2025-07-17T06:35:44.2087090Z [1980/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/up8x9-neon-per-channel.c.o 2025-07-17T06:35:44.2111100Z [1981/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/up8x9-neon.c.o 2025-07-17T06:35:44.2160180Z [1982/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/mp8x27-neon.c.o 2025-07-17T06:35:44.2272380Z [1983/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/mp8x25-neon-per-channel.c.o 2025-07-17T06:35:44.2277690Z [1984/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gavgpool/up8x7-neon.c.o 2025-07-17T06:35:44.2364670Z [1985/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gavgpool/up8xm-neon.c.o 2025-07-17T06:35:44.2394560Z [1986/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/4x-sumrows-neon.c.o 2025-07-17T06:35:44.2902380Z [1987/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/4x8-dq-neon.c.o 2025-07-17T06:35:44.3071520Z [1988/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/4x8-neon.c.o 2025-07-17T06:35:44.3401000Z [1989/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/sgemm/5x8-neon.c.o 2025-07-17T06:35:44.3441940Z [1990/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/6x4-neon.c.o 2025-07-17T06:35:44.3444700Z [1991/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8vadd/neon.c.o 2025-07-17T06:35:44.3460550Z [1992/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/8x8-neon.c.o 2025-07-17T06:35:44.3633800Z [1993/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8clamp/neon.c.o 2025-07-17T06:35:44.3650400Z [1994/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8maxpool/16x9p8q-neon.c.o 2025-07-17T06:35:44.3733850Z [1995/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/sgemm/6x8-neon.c.o 2025-07-17T06:35:44.3742960Z [1996/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/4x8c2-xzp-neon.c.o 2025-07-17T06:35:44.4457270Z [1997/5148] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/8x8-dq-aarch64-neon.S.o 2025-07-17T06:35:44.4503150Z [1998/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8rmax/neon.c.o 2025-07-17T06:35:44.4503860Z [1999/5148] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/8x8-aarch64-neon.S.o 2025-07-17T06:35:44.4554840Z [2000/5148] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm_sparse/8x8c1x4-dq-packedA-aarch64-neon.S.o 2025-07-17T06:35:44.4634140Z [2001/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8maxpool/sub16-neon.c.o 2025-07-17T06:35:44.4634900Z [2002/5148] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm_sparse/8x4-packA-aarch64-neon.S.o 2025-07-17T06:35:44.4692110Z [2003/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8zip/x2-neon.c.o 2025-07-17T06:35:44.4715400Z [2004/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8zip/xm-neon.c.o 2025-07-17T06:35:44.4732070Z [2005/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8zip/x3-neon.c.o 2025-07-17T06:35:44.4911760Z [2006/5148] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8zip/x4-neon.c.o 2025-07-17T06:35:44.5388300Z [2007/5148] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm_sparse/8x8c8x1-dq-packedA-aarch64-neon.S.o 2025-07-17T06:35:44.5632510Z [2008/5148] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/fully-connected-inference.c.o 2025-07-17T06:35:44.5668900Z [2009/5148] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/pooling-output.c.o 2025-07-17T06:35:44.5786350Z [2010/5148] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/init.c.o 2025-07-17T06:35:44.5822020Z [2011/5148] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/softmax-output.c.o 2025-07-17T06:35:44.6131720Z [2012/5148] Building C object confu-deps/clog/CMakeFiles/clog.dir/src/clog.c.o 2025-07-17T06:35:44.6181520Z [2013/5148] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/relu-output.c.o 2025-07-17T06:35:44.6238240Z [2014/5148] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/fully-connected-output.c.o 2025-07-17T06:35:44.6371270Z [2015/5148] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/relu-input-gradient.c.o 2025-07-17T06:35:44.6473570Z [2016/5148] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-inference.c.o 2025-07-17T06:35:44.6511870Z [2017/5148] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-input-gradient.c.o 2025-07-17T06:35:44.6543450Z [2018/5148] Linking C static library lib/libclog.a 2025-07-17T06:35:44.6647180Z [2019/5148] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-kernel-gradient.c.o 2025-07-17T06:35:44.6843330Z [2020/5148] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-output.c.o 2025-07-17T06:35:44.6848130Z [2021/5148] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/psimd/2d-fourier-8x8.c.o 2025-07-17T06:35:44.7036970Z [2022/5148] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/psimd/2d-fourier-16x16.c.o 2025-07-17T06:35:44.7416970Z [2023/5148] Linking CXX static library lib/libpytorch_qnnpack.a 2025-07-17T06:35:44.7484840Z [2024/5148] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/2d-winograd-8x8-3x3.c.o 2025-07-17T06:35:44.7487110Z [2025/5148] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/h4gemm.c.o 2025-07-17T06:35:44.7714070Z [2026/5148] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/s4gemm.c.o 2025-07-17T06:35:44.7808190Z [2027/5148] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/s4c2gemm-conjb.c.o 2025-07-17T06:35:44.7945240Z [2028/5148] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/2d-winograd-8x8-3x3-fp16.c.o 2025-07-17T06:35:44.8054640Z [2029/5148] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/c4gemm-conjb.c.o 2025-07-17T06:35:44.8063640Z [2030/5148] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/conv1x1.c.o 2025-07-17T06:35:44.8378190Z [2031/5148] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/relu.c.o 2025-07-17T06:35:44.8769090Z [2032/5148] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/psimd/softmax.c.o 2025-07-17T06:35:44.8777250Z [2033/5148] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/c4gemm.c.o 2025-07-17T06:35:44.8785290Z [2034/5148] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/sgemm.c.o 2025-07-17T06:35:44.8825910Z [2035/5148] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/psimd/blas/shdotxf.c.o 2025-07-17T06:35:44.8956220Z [2036/5148] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/convolution-output.c.o 2025-07-17T06:35:44.8976910Z [2037/5148] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/sdotxf.c.o 2025-07-17T06:35:44.8993240Z [2038/5148] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/c4gemm-conjb-transc.c.o 2025-07-17T06:35:44.9007880Z [2039/5148] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/s4c2gemm.c.o 2025-07-17T06:35:44.9016110Z [2040/5148] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/s4c2gemm-conjb-transc.c.o 2025-07-17T06:35:44.9182100Z [2041/5148] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/fully-connected-output.c.o 2025-07-17T06:35:44.9755150Z [2042/5148] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/max-pooling-output.c.o 2025-07-17T06:35:44.9763190Z [2043/5148] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/convolution-kernel.c.o 2025-07-17T06:35:44.9801790Z [2044/5148] Linking C static library lib/libnnpack.a 2025-07-17T06:35:44.9828060Z [2045/5148] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/convolution-input-gradient.c.o 2025-07-17T06:35:45.0039380Z [2046/5148] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/softmax-output.c.o 2025-07-17T06:35:45.0192870Z [2047/5148] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/relu-output.c.o 2025-07-17T06:35:45.0339480Z [2048/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-avgpool/f16-avgpool-9p8x-minmax-neonfp16arith-c8.c.o 2025-07-17T06:35:45.0597700Z [2049/5148] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/relu-input-gradient.c.o 2025-07-17T06:35:45.0635180Z [2050/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-25p8c-minmax-neonfp16arith-acc2.c.o 2025-07-17T06:35:45.0683630Z [2051/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-conv-hwc2chw/f16-conv-hwc2chw-3x3s2p1c3x4-neonfp16arith-2x2.c.o 2025-07-17T06:35:45.1054470Z [2052/5148] Linking C static library lib/libnnpack_reference_layers.a 2025-07-17T06:35:45.1086550Z [2053/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-3p16c-minmax-neonfp16arith.c.o 2025-07-17T06:35:45.1202440Z [2054/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-avgpool/f16-avgpool-9x-minmax-neonfp16arith-c8.c.o 2025-07-17T06:35:45.1438120Z [2055/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3s2p1-minmax-neonfp16arith-1x8.c.o 2025-07-17T06:35:45.1460120Z [2056/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3p1-minmax-neonfp16arith-2x8.c.o 2025-07-17T06:35:45.1685930Z [2057/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-9p8c-minmax-neonfp16arith.c.o 2025-07-17T06:35:45.1903460Z [2058/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-9p16c-minmax-neonfp16arith.c.o 2025-07-17T06:35:45.1908420Z [2059/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-1x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-07-17T06:35:45.1918410Z [2060/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5p2-minmax-neonfp16arith-1x8.c.o 2025-07-17T06:35:45.2046920Z [2061/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-4p16c-minmax-neonfp16arith.c.o 2025-07-17T06:35:45.2148180Z [2062/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int16-u16.c.o 2025-07-17T06:35:45.2150830Z [2063/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neonfp16-u16.c.o 2025-07-17T06:35:45.2312320Z [2064/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5s2p2-minmax-neonfp16arith-1x8.c.o 2025-07-17T06:35:45.2451610Z [2065/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-u1.c.o 2025-07-17T06:35:45.2804920Z [2066/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-4x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-07-17T06:35:45.2898370Z [2067/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a55.S.o 2025-07-17T06:35:45.2924770Z [2068/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-rdsum/gen/f16-f32acc-rdsum-7p7x-minmax-neonfp16arith-c16.c.o 2025-07-17T06:35:45.3043050Z [2069/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-u4.c.o 2025-07-17T06:35:45.3055390Z [2070/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a55r0.S.o 2025-07-17T06:35:45.3258920Z [2071/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a75.S.o 2025-07-17T06:35:45.3261240Z [2072/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16arith-u32-acc4.c.o 2025-07-17T06:35:45.3263400Z [2073/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-6x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-07-17T06:35:45.3507010Z [2074/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-1x8-minmax-neonfp16arith-ld64.c.o 2025-07-17T06:35:45.3779920Z [2075/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-1x16-minmax-neonfp16arith-ld64.c.o 2025-07-17T06:35:45.3929350Z [2076/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/f16-igemm-1x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-07-17T06:35:45.4052510Z [2077/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/f16-igemm-4x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-07-17T06:35:45.4070890Z [2078/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/f16-igemm-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a55r0.S.o 2025-07-17T06:35:45.4097630Z [2079/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/f16-igemm-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a55.S.o 2025-07-17T06:35:45.4267670Z [2080/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-ibilinear-chw/gen/f16-ibilinear-chw-neonfp16arith-p8.c.o 2025-07-17T06:35:45.4318460Z [2081/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-6x16-minmax-neonfp16arith-ld64.c.o 2025-07-17T06:35:45.4398590Z [2082/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/f16-igemm-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a75.S.o 2025-07-17T06:35:45.4545120Z [2083/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-ibilinear/gen/f16-ibilinear-neonfp16arith-c8.c.o 2025-07-17T06:35:45.4685330Z [2084/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-6x8-minmax-neonfp16arith-ld64.c.o 2025-07-17T06:35:45.4930370Z [2085/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/f16-igemm-6x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-07-17T06:35:45.5467880Z [2086/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/gen/f16-igemm-1x16-minmax-neonfp16arith-ld64.c.o 2025-07-17T06:35:45.5571560Z [2087/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/gen/f16-igemm-6x8-minmax-neonfp16arith-ld64.c.o 2025-07-17T06:35:45.5580580Z [2088/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-pavgpool/f16-pavgpool-9p8x-minmax-neonfp16arith-c8.c.o 2025-07-17T06:35:45.5582750Z [2089/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/gen/f16-igemm-1x8-minmax-neonfp16arith-ld64.c.o 2025-07-17T06:35:45.5591820Z [2090/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/gen/f16-igemm-6x16-minmax-neonfp16arith-ld64.c.o 2025-07-17T06:35:45.5602750Z [2091/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-maxpool/f16-maxpool-9p8x-minmax-neonfp16arith-c8.c.o 2025-07-17T06:35:45.6062520Z [2092/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u32.c.o 2025-07-17T06:35:45.6106790Z [2093/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-imagic-u4.c.o 2025-07-17T06:35:45.6198180Z [2094/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-neonfp16arith-u32.c.o 2025-07-17T06:35:45.6337920Z [2095/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-pavgpool/f16-pavgpool-9x-minmax-neonfp16arith-c8.c.o 2025-07-17T06:35:45.6535920Z [2096/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rminmax-scalar-u2-acc2.c.o 2025-07-17T06:35:45.6767880Z [2097/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u32-acc4.c.o 2025-07-17T06:35:45.6792670Z [2098/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-qu8-vcvt/gen/f16-qu8-vcvt-scalar-imagic-u4.c.o 2025-07-17T06:35:45.6829420Z [2099/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rmax-scalar-u2-acc2.c.o 2025-07-17T06:35:45.7127340Z [2100/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u32-acc4.c.o 2025-07-17T06:35:45.7384920Z [2101/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-spmm/gen/f16-spmm-32x1-minmax-neonfp16arith-pipelined.c.o 2025-07-17T06:35:45.7392990Z [2102/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vaddc-neonfp16arith-u16.c.o 2025-07-17T06:35:45.7424560Z [2103/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vdivc-aarch64-neonfp16arith-u8.c.o 2025-07-17T06:35:45.7741870Z [2104/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vdiv-fp16arith-u2.c.o 2025-07-17T06:35:45.7794890Z [2105/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vdiv-aarch64-neonfp16arith-u8.c.o 2025-07-17T06:35:45.7931010Z [2106/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vadd-neonfp16arith-u16.c.o 2025-07-17T06:35:45.7974670Z [2107/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmaxc-neonfp16arith-u16.c.o 2025-07-17T06:35:45.8217390Z [2108/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmax-neonfp16arith-u16.c.o 2025-07-17T06:35:45.8234420Z [2109/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vdivc-fp16arith-u2.c.o 2025-07-17T06:35:45.8367370Z [2110/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmin-neonfp16arith-u16.c.o 2025-07-17T06:35:45.8617310Z [2111/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vminc-neonfp16arith-u16.c.o 2025-07-17T06:35:45.8688740Z [2112/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmul-neonfp16arith-u16.c.o 2025-07-17T06:35:45.8710410Z [2113/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmulc-neonfp16arith-u16.c.o 2025-07-17T06:35:45.8996220Z [2114/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vprelu-neonfp16arith-u16.c.o 2025-07-17T06:35:45.9241270Z [2115/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l8c4s4r-minmax-neonfma-acc2.c.o 2025-07-17T06:35:45.9294000Z [2116/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vpreluc-neonfp16arith-u16.c.o 2025-07-17T06:35:45.9457180Z [2117/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrdivc-aarch64-neonfp16arith-u8.c.o 2025-07-17T06:35:45.9518250Z [2118/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vmulcaddc/gen/f16-vmulcaddc-c8-minmax-neonfp16arith-2x.c.o 2025-07-17T06:35:45.9631090Z [2119/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrdivc-fp16arith-u2.c.o 2025-07-17T06:35:45.9694550Z [2120/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l4c4s4r-minmax-neon-acc2.c.o 2025-07-17T06:35:46.0302450Z [2121/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsqrdiffc-neonfp16arith-u16.c.o 2025-07-17T06:35:46.0321780Z [2122/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsqrdiff-neonfp16arith-u16.c.o 2025-07-17T06:35:46.0396590Z [2123/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrsubc-neonfp16arith-u16.c.o 2025-07-17T06:35:46.0544860Z [2124/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsubc-neonfp16arith-u16.c.o 2025-07-17T06:35:46.0686970Z [2125/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsub-neonfp16arith-u16.c.o 2025-07-17T06:35:46.0781570Z [2126/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrpreluc-neonfp16arith-u16.c.o 2025-07-17T06:35:46.0787520Z [2127/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vcmul/gen/f16-vcmul-neonfp16arith-u16.c.o 2025-07-17T06:35:46.0858270Z [2128/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-velu/gen/f16-velu-neonfp16arith-rr1-p3-u16.c.o 2025-07-17T06:35:46.1016660Z [2129/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vclamp/gen/f16-vclamp-neonfp16arith-u16.c.o 2025-07-17T06:35:46.1204830Z [2130/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vhswish/gen/f16-vhswish-neonfp16arith-u16.c.o 2025-07-17T06:35:46.1483170Z [2131/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndd-neonfp16arith-u16.c.o 2025-07-17T06:35:46.1495640Z [2132/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vlrelu/gen/f16-vlrelu-neonfp16arith-u16.c.o 2025-07-17T06:35:46.1601730Z [2133/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndne-neonfp16arith-u16.c.o 2025-07-17T06:35:46.1743870Z [2134/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1recps-u16.c.o 2025-07-17T06:35:46.1896610Z [2135/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndu-neonfp16arith-u16.c.o 2025-07-17T06:35:46.2118630Z [2136/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1fma-u32.c.o 2025-07-17T06:35:46.2305520Z [2137/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndz-neonfp16arith-u16.c.o 2025-07-17T06:35:46.2442660Z [2138/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vtanh/gen/f16-vtanh-aarch64-neonfp16arith-expm1minus-rr1-p3h2ts-div-u32.c.o 2025-07-17T06:35:46.2457040Z [2139/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrsqrt/gen/f16-vrsqrt-neonfp16arith-rsqrt-u16.c.o 2025-07-17T06:35:46.2662290Z [2140/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vsqrt/gen/f16-vsqrt-aarch64-neonfp16arith-sqrt-u8.c.o 2025-07-17T06:35:46.2839070Z [2141/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1fma-u32.c.o 2025-07-17T06:35:46.2854310Z [2142/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vunary/gen/f16-vabs-neonfp16arith-u16.c.o 2025-07-17T06:35:46.3169150Z [2143/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vsqrt/gen/f16-vsqrt-neonfp16arith-nr1fma1adj-u8.c.o 2025-07-17T06:35:46.3213500Z [2144/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vunary/gen/f16-vsqr-neonfp16arith-u16.c.o 2025-07-17T06:35:46.3388700Z [2145/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vunary/gen/f16-vneg-neonfp16arith-u16.c.o 2025-07-17T06:35:46.3419730Z [2146/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-4x-neon-c4.c.o 2025-07-17T06:35:46.3643290Z [2147/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9p8x-neon-c4.c.o 2025-07-17T06:35:46.3659570Z [2148/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-aarch64-neonfma-2x2.c.o 2025-07-17T06:35:46.3691250Z [2149/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-4x-scalar-c1.c.o 2025-07-17T06:35:46.3723130Z [2150/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9x-scalar-c1.c.o 2025-07-17T06:35:46.3956730Z [2151/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9p8x-scalar-c1.c.o 2025-07-17T06:35:46.3965830Z [2152/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9x-neon-c4.c.o 2025-07-17T06:35:46.4163680Z [2153/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9p8x-minmax-scalar-c1.c.o 2025-07-17T06:35:46.4487750Z [2154/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9p8x-minmax-neon-c4.c.o 2025-07-17T06:35:46.4692610Z [2155/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/f32-dwconv-9p4c-minmax-asm-aarch64-neonfma-cortex-a55.S.o 2025-07-17T06:35:46.4699580Z [2156/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9x-minmax-neon-c4.c.o 2025-07-17T06:35:46.4744240Z [2157/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9x-minmax-scalar-c1.c.o 2025-07-17T06:35:46.4942430Z [2158/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-scalar-1x1.c.o 2025-07-17T06:35:46.5073500Z [2159/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-neon-2x2.c.o 2025-07-17T06:35:46.5078290Z [2160/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l4c1s1r-minmax-scalar-acc2.c.o 2025-07-17T06:35:46.5147760Z [2161/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-scalar-acc2.c.o 2025-07-17T06:35:46.5367140Z [2162/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-neon-acc2.c.o 2025-07-17T06:35:46.5633430Z [2163/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-scalar-acc2.c.o 2025-07-17T06:35:46.5729270Z [2164/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-minmax-scalar-acc2.c.o 2025-07-17T06:35:46.5844530Z [2165/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-minmax-scalar-acc2.c.o 2025-07-17T06:35:46.5971310Z [2166/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-neonfma-acc2.c.o 2025-07-17T06:35:46.6114280Z [2167/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-neon.c.o 2025-07-17T06:35:46.6121020Z [2168/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-minmax-scalar-acc2.c.o 2025-07-17T06:35:46.6282240Z [2169/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-neonfma.c.o 2025-07-17T06:35:46.6317400Z [2170/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-scalar-acc2.c.o 2025-07-17T06:35:46.6533510Z [2171/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-neon.c.o 2025-07-17T06:35:46.6823720Z [2172/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-neonfma.c.o 2025-07-17T06:35:46.6834000Z [2173/5148] Building C object sleef/src/common/CMakeFiles/addSuffix.dir/addSuffix.c.o 2025-07-17T06:35:46.6888610Z [2174/5148] Building C object caffe2/CMakeFiles/torch_global_deps.dir/__/torch/csrc/empty.c.o 2025-07-17T06:35:46.6937250Z [2175/5148] Building C object sleef/src/common/CMakeFiles/common.dir/common.c.o 2025-07-17T06:35:46.7072800Z [2176/5148] Building C object sleef/src/common/CMakeFiles/arraymap.dir/arraymap.c.o 2025-07-17T06:35:46.7093230Z [2177/5148] Building CXX object c10/CMakeFiles/c10.dir/core/AutogradState.cpp.o 2025-07-17T06:35:46.7854510Z [2178/5148] Linking C executable sleef/bin/addSuffix 2025-07-17T06:35:46.8643830Z [2179/5148] Linking C shared library lib/libtorch_global_deps.dylib 2025-07-17T06:35:46.9217920Z [2180/5148] Linking C static library lib/libmicrokernels-prod.a 2025-07-17T06:35:46.9509830Z [2181/5148] Building CXX object c10/CMakeFiles/c10.dir/core/ConstantSymNodeImpl.cpp.o 2025-07-17T06:35:46.9519100Z [2182/5148] Building CXX object c10/CMakeFiles/c10.dir/core/CopyBytes.cpp.o 2025-07-17T06:35:46.9535920Z [2183/5148] Building CXX object c10/CMakeFiles/c10.dir/core/Allocator.cpp.o 2025-07-17T06:35:46.9600640Z [2184/5148] Building CXX object c10/CMakeFiles/c10.dir/core/CPUAllocator.cpp.o 2025-07-17T06:35:46.9676240Z [2185/5148] Building CXX object c10/CMakeFiles/c10.dir/core/CachingDeviceAllocator.cpp.o 2025-07-17T06:35:46.9683670Z [2186/5148] Building CXX object c10/CMakeFiles/c10.dir/core/Device.cpp.o 2025-07-17T06:35:47.0217850Z [2187/5148] Building CXX object c10/CMakeFiles/c10.dir/core/DeviceType.cpp.o 2025-07-17T06:35:47.0324850Z [2188/5148] Building CXX object c10/CMakeFiles/c10.dir/core/DefaultDtype.cpp.o 2025-07-17T06:35:47.1097920Z [2189/5148] Building CXX object c10/CMakeFiles/c10.dir/core/GradMode.cpp.o 2025-07-17T06:35:47.1752740Z [2190/5148] Building CXX object c10/CMakeFiles/c10.dir/core/DispatchKeySet.cpp.o 2025-07-17T06:35:47.1854520Z [2191/5148] Building CXX object c10/CMakeFiles/c10.dir/core/DispatchKey.cpp.o 2025-07-17T06:35:47.2090020Z [2192/5148] Building CXX object c10/CMakeFiles/c10.dir/core/RefcountedDeleter.cpp.o 2025-07-17T06:35:47.2193530Z [2193/5148] Building CXX object c10/CMakeFiles/c10.dir/core/InferenceMode.cpp.o 2025-07-17T06:35:47.2309000Z [2194/5148] Building CXX object c10/CMakeFiles/c10.dir/core/SafePyObject.cpp.o 2025-07-17T06:35:47.2421480Z [2195/5148] Building CXX object c10/CMakeFiles/c10.dir/core/Scalar.cpp.o 2025-07-17T06:35:47.2794110Z [2196/5148] Building CXX object c10/CMakeFiles/c10.dir/core/GeneratorImpl.cpp.o 2025-07-17T06:35:47.4029860Z [2197/5148] Building CXX object c10/CMakeFiles/c10.dir/core/Storage.cpp.o 2025-07-17T06:35:47.4074630Z [2198/5148] Building CXX object c10/CMakeFiles/c10.dir/core/SymBool.cpp.o 2025-07-17T06:35:47.4081910Z [2199/5148] Building CXX object c10/CMakeFiles/c10.dir/core/StorageImpl.cpp.o 2025-07-17T06:35:47.4297400Z [2200/5148] Building CXX object c10/CMakeFiles/c10.dir/core/SymIntArrayRef.cpp.o 2025-07-17T06:35:47.4328170Z [2201/5148] Building CXX object c10/CMakeFiles/c10.dir/core/ScalarType.cpp.o 2025-07-17T06:35:47.4491050Z [2202/5148] Building CXX object c10/CMakeFiles/c10.dir/core/SymInt.cpp.o 2025-07-17T06:35:47.4734650Z [2203/5148] Building CXX object c10/CMakeFiles/c10.dir/core/SymFloat.cpp.o 2025-07-17T06:35:47.4786740Z [2204/5148] Building CXX object c10/CMakeFiles/c10.dir/core/Stream.cpp.o 2025-07-17T06:35:47.5097250Z [2205/5148] Building CXX object c10/CMakeFiles/c10.dir/core/SymNodeImpl.cpp.o 2025-07-17T06:35:47.5626590Z [2206/5148] Building CXX object c10/CMakeFiles/c10.dir/core/SymbolicShapeMeta.cpp.o 2025-07-17T06:35:47.6830610Z [2207/5148] Building CXX object c10/CMakeFiles/c10.dir/core/impl/DeviceGuardImplInterface.cpp.o 2025-07-17T06:35:47.6942700Z [2208/5148] Building CXX object c10/CMakeFiles/c10.dir/core/impl/COWDeleter.cpp.o 2025-07-17T06:35:47.7040450Z [2209/5148] Building CXX object c10/CMakeFiles/c10.dir/core/TensorOptions.cpp.o 2025-07-17T06:35:47.7044460Z [2210/5148] Building CXX object c10/CMakeFiles/c10.dir/core/UndefinedTensorImpl.cpp.o 2025-07-17T06:35:47.7204590Z [2211/5148] Building CXX object c10/CMakeFiles/c10.dir/core/impl/GPUTrace.cpp.o 2025-07-17T06:35:47.7251520Z [2212/5148] Building CXX object c10/CMakeFiles/c10.dir/core/WrapDimMinimal.cpp.o 2025-07-17T06:35:47.7378330Z [2213/5148] Building CXX object c10/CMakeFiles/c10.dir/core/TensorImpl.cpp.o 2025-07-17T06:35:47.7404430Z [2214/5148] Building CXX object c10/CMakeFiles/c10.dir/core/impl/COW.cpp.o 2025-07-17T06:35:47.7414300Z [2215/5148] Building CXX object c10/CMakeFiles/c10.dir/core/impl/HermeticPyObjectTLS.cpp.o 2025-07-17T06:35:47.8447340Z [2216/5148] Building CXX object c10/CMakeFiles/c10.dir/core/impl/LocalDispatchKeySet.cpp.o 2025-07-17T06:35:47.9673180Z [2217/5148] Building CXX object c10/CMakeFiles/c10.dir/core/impl/PythonDispatcherTLS.cpp.o 2025-07-17T06:35:47.9709580Z [2218/5148] Building CXX object c10/CMakeFiles/c10.dir/core/impl/PyObjectSlot.cpp.o 2025-07-17T06:35:47.9752710Z [2219/5148] Building CXX object c10/CMakeFiles/c10.dir/core/impl/SizesAndStrides.cpp.o 2025-07-17T06:35:47.9792130Z [2220/5148] Building CXX object c10/CMakeFiles/c10.dir/mobile/CPUCachingAllocator.cpp.o 2025-07-17T06:35:47.9928260Z [2221/5148] Building CXX object c10/CMakeFiles/c10.dir/mobile/CPUProfilingAllocator.cpp.o 2025-07-17T06:35:47.9967780Z [2222/5148] Building CXX object c10/CMakeFiles/c10.dir/core/impl/PyInterpreter.cpp.o 2025-07-17T06:35:47.9971550Z [2223/5148] Building CXX object c10/CMakeFiles/c10.dir/core/impl/alloc_cpu.cpp.o 2025-07-17T06:35:48.0020540Z [2224/5148] Building CXX object c10/CMakeFiles/c10.dir/core/impl/TorchDispatchModeTLS.cpp.o 2025-07-17T06:35:48.1812180Z [2225/5148] Building CXX object c10/CMakeFiles/c10.dir/util/C++17.cpp.o 2025-07-17T06:35:48.1820540Z [2226/5148] Building CXX object c10/CMakeFiles/c10.dir/util/Bfloat16.cpp.o 2025-07-17T06:35:48.1828100Z [2227/5148] Building CXX object c10/CMakeFiles/c10.dir/util/DeadlockDetection.cpp.o 2025-07-17T06:35:48.2050350Z [2228/5148] Building CXX object c10/CMakeFiles/c10.dir/core/thread_pool.cpp.o 2025-07-17T06:35:48.2178210Z [2229/5148] Building CXX object c10/CMakeFiles/c10.dir/util/Exception.cpp.o 2025-07-17T06:35:48.2280580Z [2230/5148] Building CXX object c10/CMakeFiles/c10.dir/util/ApproximateClock.cpp.o 2025-07-17T06:35:48.2316070Z [2231/5148] Building CXX object c10/CMakeFiles/c10.dir/util/Backtrace.cpp.o 2025-07-17T06:35:48.2606930Z [2232/5148] Building CXX object c10/CMakeFiles/c10.dir/util/DynamicCounter.cpp.o 2025-07-17T06:35:48.3823750Z [2233/5148] Building CXX object c10/CMakeFiles/c10.dir/util/Float8_e4m3fn.cpp.o 2025-07-17T06:35:48.3972240Z [2234/5148] Building CXX object c10/CMakeFiles/c10.dir/util/Float8_e5m2fnuz.cpp.o 2025-07-17T06:35:48.3991310Z [2235/5148] Building CXX object c10/CMakeFiles/c10.dir/util/Float8_e4m3fnuz.cpp.o 2025-07-17T06:35:48.4171860Z [2236/5148] Building CXX object c10/CMakeFiles/c10.dir/util/LeftRight.cpp.o 2025-07-17T06:35:48.4224530Z [2237/5148] Building CXX object c10/CMakeFiles/c10.dir/util/Float8_e8m0fnu.cpp.o 2025-07-17T06:35:48.4328730Z [2238/5148] Building CXX object c10/CMakeFiles/c10.dir/util/Half.cpp.o 2025-07-17T06:35:48.4567280Z [2239/5148] Building CXX object c10/CMakeFiles/c10.dir/util/Gauge.cpp.o 2025-07-17T06:35:48.4593760Z [2240/5148] Building CXX object c10/CMakeFiles/c10.dir/util/Float8_e5m2.cpp.o 2025-07-17T06:35:48.5198700Z [2241/5148] Building CXX object c10/CMakeFiles/c10.dir/util/Logging.cpp.o 2025-07-17T06:35:48.5556250Z [2242/5148] Building CXX object c10/CMakeFiles/c10.dir/util/MathConstants.cpp.o 2025-07-17T06:35:48.5673800Z [2243/5148] Building CXX object c10/CMakeFiles/c10.dir/util/Optional.cpp.o 2025-07-17T06:35:48.5709270Z [2244/5148] Building CXX object c10/CMakeFiles/c10.dir/util/ParallelGuard.cpp.o 2025-07-17T06:35:48.6390440Z [2245/5148] Building CXX object c10/CMakeFiles/c10.dir/util/Metaprogramming.cpp.o 2025-07-17T06:35:48.6548160Z [2246/5148] Building CXX object c10/CMakeFiles/c10.dir/util/NetworkFlow.cpp.o 2025-07-17T06:35:48.6903120Z [2247/5148] Building CXX object c10/CMakeFiles/c10.dir/util/Type_no_demangle.cpp.o 2025-07-17T06:35:48.7011400Z [2248/5148] Building CXX object c10/CMakeFiles/c10.dir/util/ThreadLocalDebugInfo.cpp.o 2025-07-17T06:35:48.7057630Z [2249/5148] Building CXX object c10/CMakeFiles/c10.dir/util/StringUtil.cpp.o 2025-07-17T06:35:48.7071560Z [2250/5148] Building CXX object c10/CMakeFiles/c10.dir/util/SmallVector.cpp.o 2025-07-17T06:35:48.7187710Z [2251/5148] Building CXX object c10/CMakeFiles/c10.dir/util/TypeCast.cpp.o 2025-07-17T06:35:48.7457040Z [2252/5148] Building CXX object c10/CMakeFiles/c10.dir/util/Unicode.cpp.o 2025-07-17T06:35:48.7579000Z [2253/5148] Building CXX object c10/CMakeFiles/c10.dir/util/TypeList.cpp.o 2025-07-17T06:35:48.8067800Z [2254/5148] Building CXX object c10/CMakeFiles/c10.dir/util/Type_demangle.cpp.o 2025-07-17T06:35:48.8176110Z [2255/5148] Building CXX object c10/CMakeFiles/c10.dir/util/TypeTraits.cpp.o 2025-07-17T06:35:48.8380950Z [2256/5148] Building CXX object c10/CMakeFiles/c10.dir/util/flags_use_gflags.cpp.o 2025-07-17T06:35:48.8441300Z [2257/5148] Building CXX object c10/CMakeFiles/c10.dir/util/UniqueVoidPtr.cpp.o 2025-07-17T06:35:48.9450210Z [2258/5148] Building CXX object c10/CMakeFiles/c10.dir/util/error.cpp.o 2025-07-17T06:35:48.9552210Z [2259/5148] Building CXX object c10/CMakeFiles/c10.dir/util/env.cpp.o 2025-07-17T06:35:48.9717700Z [2260/5148] Building CXX object c10/CMakeFiles/c10.dir/util/WaitCounter.cpp.o 2025-07-17T06:35:48.9794570Z [2261/5148] Building CXX object c10/CMakeFiles/c10.dir/util/flags_use_no_gflags.cpp.o 2025-07-17T06:35:48.9997260Z [2262/5148] Building CXX object c10/CMakeFiles/c10.dir/util/complex_math.cpp.o 2025-07-17T06:35:49.0153660Z [2263/5148] Building CXX object c10/CMakeFiles/c10.dir/util/int128.cpp.o 2025-07-17T06:35:49.0894320Z [2264/5148] Building CXX object c10/CMakeFiles/c10.dir/util/intrusive_ptr.cpp.o 2025-07-17T06:35:49.1054020Z [2265/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp4x8_4x4x32_neon_i8mm.c.o 2025-07-17T06:35:49.1057040Z [2266/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x16p2vlx2_x16p_sme.c.o 2025-07-17T06:35:49.1092540Z [2267/5148] Building CXX object c10/CMakeFiles/c10.dir/util/tempfile.cpp.o 2025-07-17T06:35:49.1199750Z [2268/5148] Building CXX object c10/CMakeFiles/c10.dir/util/numa.cpp.o 2025-07-17T06:35:49.1396340Z [2269/5148] Building CXX object c10/CMakeFiles/c10.dir/util/signal_handler.cpp.o 2025-07-17T06:35:49.1530740Z [2270/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp4x8_8x4x32_neon_i8mm.c.o 2025-07-17T06:35:49.1575440Z [2271/5148] Building CXX object c10/CMakeFiles/c10.dir/util/thread_name.cpp.o 2025-07-17T06:35:49.1827880Z [2272/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp8x8_4x8x32_neon_i8mm.c.o 2025-07-17T06:35:49.2157670Z [2273/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp8x8_8x8x32_neon_i8mm.c.o 2025-07-17T06:35:49.2318180Z [2274/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qsi4c32p4x8_16x4_neon_i8mm.c.o 2025-07-17T06:35:49.2331950Z [2275/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x32p2vlx1_x32p_sme.c.o 2025-07-17T06:35:49.2336900Z [2276/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qsi4c32p4x8_8x4x32_neon_i8mm.c.o 2025-07-17T06:35:49.2501710Z [2277/5148] Building CXX object c10/CMakeFiles/c10.dir/util/typeid.cpp.o 2025-07-17T06:35:49.2537630Z [2278/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_qsi8cxp2vlx4sb_qs8cx_f32_i32_sme.c.o 2025-07-17T06:35:49.2947530Z [2279/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi8cxp4x8_16x4_neon_i8mm.c.o 2025-07-17T06:35:49.3147820Z [2280/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_pack_f32p2vlx1_f32_sme.c.o 2025-07-17T06:35:49.3152270Z [2281/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_pack_x16p2vlx2_x16_sme.c.o 2025-07-17T06:35:49.3419230Z [2282/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_x16p2vlx2b_x16_x16_sme.c.o 2025-07-17T06:35:49.3469700Z [2283/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_x32p2vlx1b_x32_x32_sme.c.o 2025-07-17T06:35:49.3475680Z [2284/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x8p2vlx4_x8p_sme.c.o 2025-07-17T06:35:49.3662230Z [2285/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p16vlx1b_f32_f32_sme.c.o 2025-07-17T06:35:49.3839700Z [2286/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_pack_x8p2vlx4_x8_sme.c.o 2025-07-17T06:35:49.3891320Z [2287/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p2vlx1biasf32_f32_f32_sme.c.o 2025-07-17T06:35:49.4211070Z [2288/5148] Linking CXX shared library lib/libc10.dylib 2025-07-17T06:35:49.4413670Z [2289/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_x16p2vlx2b_x16_x16_sme.c.o 2025-07-17T06:35:49.4564440Z [2290/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_f32p2vlx1biasf32_f32_f32_sme.c.o 2025-07-17T06:35:49.4695600Z [2291/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_x16p2vlx2b_x16_x16_sme.c.o 2025-07-17T06:35:49.4967490Z [2292/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p/kai_imatmul_clamp_f16_f16p2vlx2_f16p2vlx2_2vlx2vl_sme2_mopa.c.o 2025-07-17T06:35:49.5019040Z [2293/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p/kai_imatmul_clamp_f32_f32p2vlx1_f32p2vlx1b_2vlx2vl_sme2_mopa.c.o 2025-07-17T06:35:49.5022640Z [2294/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p2vlx2b_1x16vl_sme2_dot.c.o 2025-07-17T06:35:49.5237190Z [2295/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp/kai_imatmul_clamp_qai8_qai8p2vlx4_qsi8cxpsb2vlx4_2vlx2vl_sme2_mopa.c.o 2025-07-17T06:35:49.5266400Z [2296/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p/kai_matmul_clamp_f16_f16p2vlx2_f16p2vlx2_2vlx2vl_sme2_mopa.c.o 2025-07-17T06:35:49.5344490Z [2297/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi8cxp2vlx4sb_qs8cx_f32_i32_sme.c.o 2025-07-17T06:35:49.5411920Z [2298/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p16vlx1b_1x16vl_sme2_mla.c.o 2025-07-17T06:35:49.5621590Z [2299/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p2vlx1b_1x16vl_sme2_mla.c.o 2025-07-17T06:35:49.5647110Z [2300/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p/kai_matmul_clamp_f32_f32p2vlx1_f32p2vlx1biasf32_sme2_mopa.c.o 2025-07-17T06:35:49.5866570Z [2301/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p2vlx2_bf16p2vlx2_2vlx2vl_sme2_mopa.c.o 2025-07-17T06:35:49.6375850Z [2302/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi4cxp4vlx4_1x4vl_sme2_sdot.c.o 2025-07-17T06:35:49.6390750Z [2303/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1vlx8_qsi4cxp4vlx8_1vlx4vl_sme2_mopa.c.o 2025-07-17T06:35:49.6587300Z [2304/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1vlx4_qsi4c32p4vlx4_1vlx4vl_sme2_mopa.c.o 2025-07-17T06:35:49.6603840Z [2305/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp/kai_matmul_clamp_qai8_qai8_qsi8cxp2vlx4sb_1x16vl_sme2_dot.c.o 2025-07-17T06:35:49.6782890Z [2306/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x4_qsi4c32p4vlx4_1x4vl_sme2_sdot.c.o 2025-07-17T06:35:49.6904990Z [2307/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_pack_bf16p2vlx2_f32_sme.c.o 2025-07-17T06:35:49.6945270Z [2308/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p2vlx2b_f32_x32_sme.c.o 2025-07-17T06:35:49.6952050Z [2309/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp/kai_matmul_clamp_qai8_qai8p2vlx4_qsi8cxpsb2vlx4_2vlx2vl_sme2_mopa.c.o 2025-07-17T06:35:49.7404170Z [2310/5148] Building CXX object third_party/fmt/CMakeFiles/fmt.dir/src/os.cc.o 2025-07-17T06:35:49.7670020Z [2311/5148] Building CXX object third_party/fmt/CMakeFiles/fmt.dir/src/format.cc.o 2025-07-17T06:35:49.8176720Z [2312/5148] Linking CXX static library lib/libfmt.a 2025-07-17T06:35:49.9069070Z [2313/5148] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_api.dir/src/ThreadUtil.cpp.o 2025-07-17T06:35:49.9174480Z /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto/src/ThreadUtil.cpp:86:23: warning: 'syscall' is deprecated: first deprecated in macOS 10.12 - syscall(2) is unsupported; please switch to a supported interface. For SYS_kdebug_trace use kdebug_signpost(). [-Wdeprecated-declarations] 2025-07-17T06:35:49.9176940Z sysTid = (int32_t)syscall(SYS_thread_selfid); 2025-07-17T06:35:49.9179130Z ^ 2025-07-17T06:35:49.9184910Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/unistd.h:748:6: note: 'syscall' has been explicitly marked deprecated here 2025-07-17T06:35:49.9185910Z int syscall(int, ...); 2025-07-17T06:35:49.9186550Z ^ 2025-07-17T06:35:49.9188330Z 1 warning generated. 2025-07-17T06:35:49.9406470Z [2314/5148] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_api.dir/src/libkineto_api.cpp.o 2025-07-17T06:35:49.9557380Z [2315/5148] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/AbstractConfig.cpp.o 2025-07-17T06:35:49.9586980Z [2316/5148] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ApproximateClock.cpp.o 2025-07-17T06:35:49.9847650Z [2317/5148] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/Config.cpp.o 2025-07-17T06:35:50.0073630Z [2318/5148] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ActivityProfilerController.cpp.o 2025-07-17T06:35:50.0175750Z [2319/5148] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ActivityType.cpp.o 2025-07-17T06:35:50.0392760Z [2320/5148] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ActivityProfilerProxy.cpp.o 2025-07-17T06:35:50.0432340Z [2321/5148] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/CuptiActivityProfiler.cpp.o 2025-07-17T06:35:50.0441280Z [2322/5148] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/DaemonConfigLoader.cpp.o 2025-07-17T06:35:50.1144670Z [2323/5148] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ConfigLoader.cpp.o 2025-07-17T06:35:50.1436290Z [2324/5148] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/CuptiActivityApi.cpp.o 2025-07-17T06:35:50.1740210Z [2325/5148] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/DeviceProperties.cpp.o 2025-07-17T06:35:50.1766360Z [2326/5148] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/IpcFabricConfigClient.cpp.o 2025-07-17T06:35:50.1767040Z [2327/5148] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/Demangle.cpp.o 2025-07-17T06:35:50.2211490Z [2328/5148] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/GenericTraceActivity.cpp.o 2025-07-17T06:35:50.2312490Z [2329/5148] Running gen_proto.py on onnx/onnx.in.proto 2025-07-17T06:35:50.2346840Z Processing /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/onnx.in.proto 2025-07-17T06:35:50.2348500Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto 2025-07-17T06:35:50.2349050Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto3 2025-07-17T06:35:50.2349570Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-ml.pb.h 2025-07-17T06:35:50.2350050Z generating /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_pb.py 2025-07-17T06:35:50.2699330Z [2330/5148] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/DeviceUtil.cpp.o 2025-07-17T06:35:50.3367470Z [2331/5148] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ILoggerObserver.cpp.o 2025-07-17T06:35:50.3472760Z [2332/5148] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/LoggingAPI.cpp.o 2025-07-17T06:35:50.3603000Z [2333/5148] Building C object confu-deps/XNNPACK/CMakeFiles/allocator.dir/src/allocator.c.o 2025-07-17T06:35:50.3722370Z [2334/5148] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/init.cpp.o 2025-07-17T06:35:50.3944310Z [2335/5148] Building C object confu-deps/XNNPACK/CMakeFiles/normalization.dir/src/normalization.c.o 2025-07-17T06:35:50.4166920Z [2336/5148] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/Logger.cpp.o 2025-07-17T06:35:50.4307760Z [2337/5148] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/output_csv.cpp.o 2025-07-17T06:35:50.4332000Z [2338/5148] Building CXX object confu-deps/XNNPACK/CMakeFiles/packing.dir/src/reference/packing.cc.o 2025-07-17T06:35:50.4491240Z [2339/5148] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/log.c.o 2025-07-17T06:35:50.4517550Z [2340/5148] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/operator-type.c.o 2025-07-17T06:35:50.4646480Z [2341/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microparams-init.dir/src/microparams-init.c.o 2025-07-17T06:35:50.4653600Z [2342/5148] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/node-type.c.o 2025-07-17T06:35:50.4667880Z [2343/5148] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/output_json.cpp.o 2025-07-17T06:35:50.4891940Z [2344/5148] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/microkernel-type.c.o 2025-07-17T06:35:50.5232020Z [2345/5148] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/datatype-strings.c.o 2025-07-17T06:35:50.5246970Z [2346/5148] Running C++ protocol buffer compiler on /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto 2025-07-17T06:35:50.5313460Z [2347/5148] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/allocation-type.c.o 2025-07-17T06:35:50.5520530Z [2348/5148] Building C object confu-deps/XNNPACK/CMakeFiles/indirection.dir/src/indirection.c.o 2025-07-17T06:35:50.5664020Z [2349/5148] Building C object confu-deps/XNNPACK/CMakeFiles/cache.dir/src/cache.c.o 2025-07-17T06:35:50.5724700Z [2350/5148] Building C object confu-deps/XNNPACK/CMakeFiles/hardware-config.dir/src/configs/hardware-config.c.o 2025-07-17T06:35:50.5827620Z [2351/5148] Building C object confu-deps/XNNPACK/CMakeFiles/datatype.dir/src/datatype.c.o 2025-07-17T06:35:50.5976040Z [2352/5148] Building C object confu-deps/XNNPACK/CMakeFiles/memory.dir/src/memory.c.o 2025-07-17T06:35:50.6086930Z [2353/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernel-utils.dir/src/microkernel-utils.c.o 2025-07-17T06:35:50.6259240Z [2354/5148] Building C object confu-deps/XNNPACK/CMakeFiles/mutex.dir/src/mutex.c.o 2025-07-17T06:35:50.6352160Z [2355/5148] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/argmax-pooling-nhwc.c.o 2025-07-17T06:35:50.6367700Z [2356/5148] Linking CXX static library lib/libkineto.a 2025-07-17T06:35:50.6541270Z [2357/5148] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operator-delete.c.o 2025-07-17T06:35:50.6543580Z [2358/5148] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/reduce-nd.c.o 2025-07-17T06:35:50.6731150Z [2359/5148] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/average-pooling-nhwc.c.o 2025-07-17T06:35:50.6972410Z [2360/5148] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/binary-elementwise-nd.c.o 2025-07-17T06:35:50.6991370Z [2361/5148] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/channel-shuffle-nc.c.o 2025-07-17T06:35:50.7154710Z [2362/5148] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/batch-matrix-multiply-nc.c.o 2025-07-17T06:35:50.7262010Z [2363/5148] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/constant-pad-nd.c.o 2025-07-17T06:35:50.7531120Z [2364/5148] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/dynamic-fully-connected-nc.c.o 2025-07-17T06:35:50.7533990Z [2365/5148] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/convolution-nhwc.c.o 2025-07-17T06:35:50.7537820Z [2366/5148] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/deconvolution-nhwc.c.o 2025-07-17T06:35:50.7682040Z [2367/5148] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/convolution-nchw.c.o 2025-07-17T06:35:50.7685820Z [2368/5148] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/fully-connected-nc.c.o 2025-07-17T06:35:50.7785100Z [2369/5148] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/max-pooling-nhwc.c.o 2025-07-17T06:35:50.8108100Z [2370/5148] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/resize-bilinear-nchw.c.o 2025-07-17T06:35:50.8158240Z [2371/5148] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/pack-lh.c.o 2025-07-17T06:35:50.8404030Z [2372/5148] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/slice-nd.c.o 2025-07-17T06:35:50.8446670Z [2373/5148] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/resize-bilinear-nhwc.c.o 2025-07-17T06:35:50.8684450Z [2374/5148] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/scaled-dot-product-attention-nhtc.c.o 2025-07-17T06:35:50.8727890Z [2375/5148] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/transpose-nd.c.o 2025-07-17T06:35:50.8897790Z [2376/5148] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/rope-nthc.c.o 2025-07-17T06:35:50.8926540Z [2377/5148] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/softmax-nc.c.o 2025-07-17T06:35:50.9005730Z [2378/5148] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/unary-elementwise-nc.c.o 2025-07-17T06:35:50.9122090Z [2379/5148] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/unpooling-nhwc.c.o 2025-07-17T06:35:50.9250860Z [2380/5148] Building C object confu-deps/XNNPACK/CMakeFiles/operator-utils.dir/src/operator-utils.c.o 2025-07-17T06:35:50.9452770Z [2381/5148] Building C object confu-deps/XNNPACK/CMakeFiles/operator-run.dir/src/operator-run.c.o 2025-07-17T06:35:50.9989130Z [2382/5148] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/memory-planner.c.o 2025-07-17T06:35:51.0046450Z [2383/5148] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/runtime.c.o 2025-07-17T06:35:51.0066600Z [2384/5148] Building CXX object confu-deps/XNNPACK/CMakeFiles/reference-ukernels.dir/src/reference/binary-elementwise.cc.o 2025-07-17T06:35:51.0231570Z [2385/5148] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/concatenate.c.o 2025-07-17T06:35:51.0264260Z [2386/5148] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/average-pooling-2d.c.o 2025-07-17T06:35:51.0318410Z [2387/5148] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph.c.o 2025-07-17T06:35:51.0320200Z [2388/5148] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/argmax-pooling-2d.c.o 2025-07-17T06:35:51.0402330Z [2389/5148] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/batch-matrix-multiply.c.o 2025-07-17T06:35:51.0581750Z [2390/5148] Building CXX object confu-deps/XNNPACK/CMakeFiles/reference-ukernels.dir/src/reference/unary-elementwise.cc.o 2025-07-17T06:35:51.0594270Z [2391/5148] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/binary.c.o 2025-07-17T06:35:51.1161350Z [2392/5148] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/deconvolution-2d.c.o 2025-07-17T06:35:51.1210950Z [2393/5148] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/copy.c.o 2025-07-17T06:35:51.1283490Z [2394/5148] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/convolution-2d.c.o 2025-07-17T06:35:51.1436050Z [2395/5148] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/depth-to-space-2d.c.o 2025-07-17T06:35:51.1455800Z [2396/5148] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/deprecated.c.o 2025-07-17T06:35:51.1481430Z [2397/5148] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/even-split.c.o 2025-07-17T06:35:51.1535950Z [2398/5148] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/depthwise-convolution-2d.c.o 2025-07-17T06:35:51.1720780Z [2399/5148] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/max-pooling-2d.c.o 2025-07-17T06:35:51.1729680Z [2400/5148] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/fully-connected.c.o 2025-07-17T06:35:51.2107040Z [2401/5148] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/fully-connected-sparse.c.o 2025-07-17T06:35:51.2266340Z [2402/5148] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/pack-lh.c.o 2025-07-17T06:35:51.2292280Z [2403/5148] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/reshape-helpers.c.o 2025-07-17T06:35:51.2462520Z [2404/5148] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/scaled-dot-product-attention.c.o 2025-07-17T06:35:51.2597070Z [2405/5148] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-constant-pad.c.o 2025-07-17T06:35:51.2605900Z [2406/5148] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/softmax.c.o 2025-07-17T06:35:51.2727840Z [2407/5148] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-resize-bilinear-2d.c.o 2025-07-17T06:35:51.2917970Z [2408/5148] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-reduce.c.o 2025-07-17T06:35:51.2962410Z [2409/5148] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-transpose.c.o 2025-07-17T06:35:51.3006660Z [2410/5148] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/space-to-depth-2d.c.o 2025-07-17T06:35:51.3338250Z [2411/5148] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/unpooling-2d.c.o 2025-07-17T06:35:51.3539130Z [2412/5148] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/unary.c.o 2025-07-17T06:35:51.3732790Z [2413/5148] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/validation.c.o 2025-07-17T06:35:51.3879450Z [2414/5148] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/tensor.c.o 2025-07-17T06:35:51.3892260Z [2415/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-1x8c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:51.4094040Z [2416/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-fp16arith-sqrt-u1.c.o 2025-07-17T06:35:51.4137980Z [2417/5148] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-slice.c.o 2025-07-17T06:35:51.4267020Z [2418/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-fp16arith-sqrt-u4.c.o 2025-07-17T06:35:51.4298290Z [2419/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-fp16arith-sqrt-u2.c.o 2025-07-17T06:35:51.4308940Z [2420/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-2x8c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:51.4770440Z [2421/5148] Generating build_identifier.c 2025-07-17T06:35:51.4962730Z [2422/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-2x16c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:51.4965260Z [2423/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-3x8c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:51.4979630Z [2424/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-3x16c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:51.5393820Z [2425/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-4x8c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:51.5512070Z [2426/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-5x8c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:51.5716390Z [2427/5148] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/argmaxpool-config.c.o 2025-07-17T06:35:51.5855550Z [2428/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-5x16c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:51.5900790Z [2429/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-1x8c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:51.6120770Z [2430/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-6x8c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:51.6128660Z [2431/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-6x16c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:51.6186150Z [2432/5148] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/binary-elementwise-config.c.o 2025-07-17T06:35:51.6339750Z [2433/5148] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/avgpool-config.c.o 2025-07-17T06:35:51.6477600Z [2434/5148] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/cmul-config.c.o 2025-07-17T06:35:51.6667090Z [2435/5148] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/conv-hwc2chw-config.c.o 2025-07-17T06:35:51.6749460Z [2436/5148] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/dwconv2d-chw-config.c.o 2025-07-17T06:35:51.6945580Z [2437/5148] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/ibilinear-chw-config.c.o 2025-07-17T06:35:51.7020960Z [2438/5148] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/dwconv-config.c.o 2025-07-17T06:35:51.7127840Z [2439/5148] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/lut32norm-config.c.o 2025-07-17T06:35:51.7232730Z [2440/5148] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/experiments-config.c.o 2025-07-17T06:35:51.7352590Z [2441/5148] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/ibilinear-config.c.o 2025-07-17T06:35:51.7462870Z [2442/5148] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/gemm-config.c.o 2025-07-17T06:35:51.7587620Z [2443/5148] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/maxpool-config.c.o 2025-07-17T06:35:51.7663490Z [2444/5148] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/raddstoreexpminusmax-config.c.o 2025-07-17T06:35:51.7696910Z [2445/5148] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/pavgpool-config.c.o 2025-07-17T06:35:51.7865050Z [2446/5148] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/pack-lh-config.c.o 2025-07-17T06:35:51.7999710Z [2447/5148] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/rmax-config.c.o 2025-07-17T06:35:51.8007400Z [2448/5148] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/reduce-config.c.o 2025-07-17T06:35:51.8220350Z [2449/5148] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/spmm-config.c.o 2025-07-17T06:35:51.8233230Z [2450/5148] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/transpose-config.c.o 2025-07-17T06:35:51.8328650Z [2451/5148] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/unary-elementwise-config.c.o 2025-07-17T06:35:51.8687170Z [2452/5148] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/vmulcaddc-config.c.o 2025-07-17T06:35:51.8792140Z [2453/5148] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/xx-pad-config.c.o 2025-07-17T06:35:51.8822190Z [2454/5148] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/unpool-config.c.o 2025-07-17T06:35:51.8995450Z [2455/5148] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/x8-lut-config.c.o 2025-07-17T06:35:51.8999760Z [2456/5148] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/xx-fill-config.c.o 2025-07-17T06:35:51.9060730Z [2457/5148] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/zip-config.c.o 2025-07-17T06:35:51.9239470Z [2458/5148] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/build_identifier.c.o 2025-07-17T06:35:51.9333400Z [2459/5148] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/params.c.o 2025-07-17T06:35:51.9339880Z [2460/5148] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/init.c.o 2025-07-17T06:35:51.9776200Z [2461/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-2x8c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:51.9993300Z [2462/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-2x16c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:52.0373570Z [2463/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-3x16c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:52.0473580Z [2464/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-5x16c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:52.0479060Z [2465/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-4x8c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:52.0482650Z [2466/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-5x8c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:52.0504340Z [2467/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-6x8c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:52.0767470Z [2468/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-6x16c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:52.0908910Z [2469/5148] Linking CXX static library lib/libXNNPACK.a 2025-07-17T06:35:52.1172560Z [2470/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-3x8c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:52.1462260Z [2471/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-2x8c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:52.1666680Z [2472/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-2x16c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:52.1786330Z [2473/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-3x8c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:52.1916330Z [2474/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-5x8c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:52.2027820Z [2475/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-6x16c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:52.2131870Z [2476/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-6x8c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:52.2238650Z [2477/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-3x16c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:52.2350740Z [2478/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-1x32c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:52.2368510Z [2479/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-5x16c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:52.2653080Z [2480/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-2x8c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:52.2898450Z [2481/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-2x32c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:52.3133300Z [2482/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-4x32c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:52.3154210Z [2483/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-2x16c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:52.3385340Z [2484/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-6x32c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:52.3590440Z [2485/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-6x8c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:52.3659320Z [2486/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-8x8c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:52.3673360Z [2487/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-6x16c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:52.3857770Z [2488/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-8x16c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:52.3971850Z [2489/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-8x32c4-minmax-neondotfp16arith.c.o 2025-07-17T06:35:52.4346850Z [2490/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p8c-minmax-neonfp16arith-acc2.c.o 2025-07-17T06:35:52.4449930Z [2491/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p32c-minmax-neonfp16arith-acc2.c.o 2025-07-17T06:35:52.4503340Z [2492/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p8c-minmax-neonfp16arith.c.o 2025-07-17T06:35:52.4516290Z [2493/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p16c-minmax-neonfp16arith-acc2.c.o 2025-07-17T06:35:52.4745350Z [2494/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p16c-minmax-neonfp16arith-acc2.c.o 2025-07-17T06:35:52.4755050Z [2495/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p8c-minmax-neonfp16arith-acc2.c.o 2025-07-17T06:35:52.4998060Z [2496/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p32c-minmax-neonfp16arith.c.o 2025-07-17T06:35:52.5177560Z [2497/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l8c8s4r-minmax-neonfp16arith-acc2.c.o 2025-07-17T06:35:52.5198820Z [2498/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p8c-minmax-neonfp16arith.c.o 2025-07-17T06:35:52.5792880Z [2499/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p32c-minmax-neonfp16arith.c.o 2025-07-17T06:35:52.5854040Z [2500/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p32c-minmax-neonfp16arith-acc2.c.o 2025-07-17T06:35:52.5913080Z [2501/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l16c8s4r-minmax-neonfp16arith-acc2.c.o 2025-07-17T06:35:52.6045330Z [2502/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l8c8s4r-minmax-neonfp16arith.c.o 2025-07-17T06:35:52.6057000Z [2503/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l16c8s4r-minmax-neonfp16arith.c.o 2025-07-17T06:35:52.6105630Z [2504/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l32c8s4r-minmax-neonfp16arith-acc2.c.o 2025-07-17T06:35:52.6115310Z [2505/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l32c8s4r-minmax-neonfp16arith.c.o 2025-07-17T06:35:52.6350130Z [2506/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l8c8s4r-minmax-neonfp16arith-acc2.c.o 2025-07-17T06:35:52.6834150Z [2507/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l16c8s4r-minmax-neonfp16arith-acc2.c.o 2025-07-17T06:35:52.6942250Z [2508/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l8c8s4r-minmax-neonfp16arith.c.o 2025-07-17T06:35:52.7084520Z [2509/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l16c8s4r-minmax-neonfp16arith.c.o 2025-07-17T06:35:52.7169630Z [2510/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l32c8s4r-minmax-neonfp16arith-acc2.c.o 2025-07-17T06:35:52.7260210Z [2511/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l32c8s4r-minmax-neonfp16arith.c.o 2025-07-17T06:35:52.7409140Z [2512/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l8c8s4r-minmax-neonfp16arith-acc2.c.o 2025-07-17T06:35:52.7435380Z [2513/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l8c8s4r-minmax-neonfp16arith.c.o 2025-07-17T06:35:52.7635880Z [2514/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l16c8s4r-minmax-neonfp16arith.c.o 2025-07-17T06:35:52.7659280Z [2515/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l32c8s4r-minmax-neonfp16arith-acc2.c.o 2025-07-17T06:35:52.7763850Z [2516/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l16c8s4r-minmax-neonfp16arith-acc2.c.o 2025-07-17T06:35:52.8310490Z [2517/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p16c-minmax-neonfp16arith-acc2.c.o 2025-07-17T06:35:52.8513470Z [2518/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p16c-minmax-neonfp16arith-acc2.c.o 2025-07-17T06:35:52.8530030Z [2519/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l32c8s4r-minmax-neonfp16arith.c.o 2025-07-17T06:35:52.8544140Z [2520/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p8c-minmax-neonfp16arith-acc2.c.o 2025-07-17T06:35:52.8847970Z [2521/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p32c-minmax-neonfp16arith.c.o 2025-07-17T06:35:52.8850260Z [2522/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p32c-minmax-neonfp16arith-acc2.c.o 2025-07-17T06:35:52.8853050Z [2523/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p16c-minmax-neonfp16arith.c.o 2025-07-17T06:35:52.9085490Z [2524/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p8c-minmax-neonfp16arith.c.o 2025-07-17T06:35:52.9181070Z [2525/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p32c-minmax-neonfp16arith.c.o 2025-07-17T06:35:52.9300270Z [2526/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p32c-minmax-neonfp16arith-acc2.c.o 2025-07-17T06:35:52.9722250Z [2527/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3p1-minmax-neonfp16arith-1x8-acc2.c.o 2025-07-17T06:35:52.9810470Z [2528/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3p1-minmax-neonfp16arith-1x8-acc3.c.o 2025-07-17T06:35:52.9988620Z [2529/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3p1-minmax-neonfp16arith-1x8-acc4.c.o 2025-07-17T06:35:53.0318110Z [2530/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3p1-minmax-neonfp16arith-4x8.c.o 2025-07-17T06:35:53.0339320Z [2531/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3p1-minmax-neonfp16arith-2x8-acc2.c.o 2025-07-17T06:35:53.0361680Z [2532/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3p1-minmax-neonfp16arith-3x8.c.o 2025-07-17T06:35:53.0499580Z [2533/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3p1-minmax-neonfp16arith-5x8.c.o 2025-07-17T06:35:53.0519270Z [2534/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3p1-minmax-neonfp16arith-1x8.c.o 2025-07-17T06:35:53.0536760Z [2535/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3p1-minmax-neonfp16arith-6x8.c.o 2025-07-17T06:35:53.0700570Z [2536/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3s2p1-minmax-neonfp16arith-1x8-acc2.c.o 2025-07-17T06:35:53.1326410Z [2537/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3s2p1-minmax-neonfp16arith-1x8-acc4.c.o 2025-07-17T06:35:53.1392590Z [2538/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3s2p1-minmax-neonfp16arith-1x8-acc3.c.o 2025-07-17T06:35:53.1515670Z [2539/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3s2p1-minmax-neonfp16arith-2x8-acc2.c.o 2025-07-17T06:35:53.1692630Z [2540/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3s2p1-minmax-neonfp16arith-2x8.c.o 2025-07-17T06:35:53.1832460Z [2541/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5p2-minmax-neonfp16arith-1x8-acc3.c.o 2025-07-17T06:35:53.1841510Z [2542/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3s2p1-minmax-neonfp16arith-3x8.c.o 2025-07-17T06:35:53.1852520Z [2543/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3s2p1-minmax-neonfp16arith-4x8.c.o 2025-07-17T06:35:53.1912980Z [2544/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5p2-minmax-neonfp16arith-1x8-acc2.c.o 2025-07-17T06:35:53.1928630Z [2545/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5p2-minmax-neonfp16arith-1x8-acc4.c.o 2025-07-17T06:35:53.1953050Z [2546/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5p2-minmax-neonfp16arith-1x8-acc5.c.o 2025-07-17T06:35:53.2647410Z [2547/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5p2-minmax-neonfp16arith-2x8-acc3.c.o 2025-07-17T06:35:53.2683430Z [2548/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5p2-minmax-neonfp16arith-2x8.c.o 2025-07-17T06:35:53.3027320Z [2549/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5p2-minmax-neonfp16arith-2x8-acc2.c.o 2025-07-17T06:35:53.3331120Z [2550/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5s2p2-minmax-neonfp16arith-1x8-acc3.c.o 2025-07-17T06:35:53.3341220Z [2551/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5p2-minmax-neonfp16arith-3x8-acc2.c.o 2025-07-17T06:35:53.3357800Z [2552/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5p2-minmax-neonfp16arith-5x8.c.o 2025-07-17T06:35:53.3541810Z [2553/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5p2-minmax-neonfp16arith-4x8.c.o 2025-07-17T06:35:53.3560500Z [2554/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5p2-minmax-neonfp16arith-3x8.c.o 2025-07-17T06:35:53.3575000Z [2555/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5p2-minmax-neonfp16arith-4x8-acc2.c.o 2025-07-17T06:35:53.3576310Z [2556/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5s2p2-minmax-neonfp16arith-1x8-acc2.c.o 2025-07-17T06:35:53.4059280Z [2557/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5s2p2-minmax-neonfp16arith-1x8-acc4.c.o 2025-07-17T06:35:53.4165160Z [2558/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5s2p2-minmax-neonfp16arith-1x8-acc5.c.o 2025-07-17T06:35:53.4268880Z [2559/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5s2p2-minmax-neonfp16arith-2x8-acc2.c.o 2025-07-17T06:35:53.4862320Z [2560/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16arith-u16-acc2.c.o 2025-07-17T06:35:53.4903430Z [2561/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32acc-rdsum/gen/f16-f32acc-rdsum-7p7x-minmax-neonfp16arith-c32.c.o 2025-07-17T06:35:53.4960540Z [2562/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5s2p2-minmax-neonfp16arith-3x8.c.o 2025-07-17T06:35:53.4970010Z [2563/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5s2p2-minmax-neonfp16arith-2x8.c.o 2025-07-17T06:35:53.5024760Z [2564/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5s2p2-minmax-neonfp16arith-2x8-acc3.c.o 2025-07-17T06:35:53.5106340Z [2565/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32acc-rdsum/gen/f16-f32acc-rdsum-7p7x-minmax-neonfp16arith-c64.c.o 2025-07-17T06:35:53.5177790Z [2566/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5s2p2-minmax-neonfp16arith-3x8-acc2.c.o 2025-07-17T06:35:53.5575660Z [2567/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16arith-u24-acc3.c.o 2025-07-17T06:35:53.5736460Z [2568/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16arith-u4.c.o 2025-07-17T06:35:53.5965920Z [2569/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16arith-u8.c.o 2025-07-17T06:35:53.6186380Z [2570/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16arith-u32-acc2.c.o 2025-07-17T06:35:53.6330230Z [2571/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-1x8-minmax-neonfp16arith-ld64.c.o 2025-07-17T06:35:53.6336270Z [2572/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-6x8-minmax-neonfp16arith-ld64.c.o 2025-07-17T06:35:53.6515240Z [2573/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-8x8-minmax-neonfp16arith-ld64.c.o 2025-07-17T06:35:53.6683260Z [2574/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-1x16-minmax-neonfp16arith-ld64.c.o 2025-07-17T06:35:53.6836960Z [2575/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-4x16-minmax-neonfp16arith-ld64.c.o 2025-07-17T06:35:53.7014350Z [2576/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-4x8-minmax-neonfp16arith-ld64.c.o 2025-07-17T06:35:53.7035340Z [2577/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-8x8-minmax-neonfp16arith-ld64.c.o 2025-07-17T06:35:53.7182270Z [2578/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-8x16-minmax-neonfp16arith-ld64.c.o 2025-07-17T06:35:53.7195710Z [2579/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-6x16-minmax-neonfp16arith-ld64.c.o 2025-07-17T06:35:53.7273160Z [2580/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-ibilinear-chw/gen/f16-ibilinear-chw-neonfp16arith-p4.c.o 2025-07-17T06:35:53.7580050Z [2581/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-ibilinear-chw/gen/f16-ibilinear-chw-neonfp16arith-p16.c.o 2025-07-17T06:35:53.7761520Z [2582/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-4x8-minmax-neonfp16arith-ld64.c.o 2025-07-17T06:35:53.7881030Z [2583/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-4x16-minmax-neonfp16arith-ld64.c.o 2025-07-17T06:35:53.8058960Z [2584/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-ibilinear/gen/f16-ibilinear-neonfp16arith-c16.c.o 2025-07-17T06:35:53.8367000Z [2585/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u32-acc2.c.o 2025-07-17T06:35:53.8405270Z [2586/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-neonfp16arith-u24.c.o 2025-07-17T06:35:53.8417130Z [2587/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-neonfp16arith-u16.c.o 2025-07-17T06:35:53.8617300Z [2588/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-8x8-minmax-neonfp16arith-ld64.c.o 2025-07-17T06:35:53.8645960Z [2589/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-8x16-minmax-neonfp16arith-ld64.c.o 2025-07-17T06:35:53.8861430Z [2590/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u32-acc4.c.o 2025-07-17T06:35:53.8867260Z [2591/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-neonfp16arith-u8.c.o 2025-07-17T06:35:53.9138820Z [2592/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u40-acc5.c.o 2025-07-17T06:35:53.9342430Z [2593/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-neonfp16arith-u64.c.o 2025-07-17T06:35:53.9396870Z [2594/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u40-acc2.c.o 2025-07-17T06:35:53.9541050Z [2595/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u48-acc2.c.o 2025-07-17T06:35:53.9548030Z [2596/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u48-acc3.c.o 2025-07-17T06:35:53.9682860Z [2597/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u40.c.o 2025-07-17T06:35:54.0068430Z [2598/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u64-acc2.c.o 2025-07-17T06:35:54.0209320Z [2599/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u64.c.o 2025-07-17T06:35:54.0261870Z [2600/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u48.c.o 2025-07-17T06:35:54.0381350Z [2601/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u72-acc3.c.o 2025-07-17T06:35:54.0465780Z [2602/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u72.c.o 2025-07-17T06:35:54.0636630Z [2603/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u80-acc2.c.o 2025-07-17T06:35:54.0706910Z [2604/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u80-acc5.c.o 2025-07-17T06:35:54.0919260Z [2605/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u64-acc4.c.o 2025-07-17T06:35:54.0932570Z [2606/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u80.c.o 2025-07-17T06:35:54.1065670Z [2607/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u96-acc2.c.o 2025-07-17T06:35:54.1359470Z [2608/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u96-acc3.c.o 2025-07-17T06:35:54.1387600Z [2609/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u96-acc6.c.o 2025-07-17T06:35:54.1547730Z [2610/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u8.c.o 2025-07-17T06:35:54.1610190Z [2611/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u96.c.o 2025-07-17T06:35:54.1845820Z [2612/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u16-acc2.c.o 2025-07-17T06:35:54.2045650Z [2613/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u24-acc3.c.o 2025-07-17T06:35:54.2152930Z [2614/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u8.c.o 2025-07-17T06:35:54.2353080Z [2615/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u16-acc2.c.o 2025-07-17T06:35:54.2543450Z [2616/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u32-acc2.c.o 2025-07-17T06:35:54.2554020Z [2617/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u16-acc1.c.o 2025-07-17T06:35:54.2781450Z [2618/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u24-acc3.c.o 2025-07-17T06:35:54.2908340Z [2619/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u24-acc2.c.o 2025-07-17T06:35:54.2918690Z [2620/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u32-acc2.c.o 2025-07-17T06:35:54.2927660Z [2621/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u32-acc4.c.o 2025-07-17T06:35:54.2945870Z [2622/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u24.c.o 2025-07-17T06:35:54.3137910Z [2623/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u32.c.o 2025-07-17T06:35:54.3531390Z [2624/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u64-acc2.c.o 2025-07-17T06:35:54.3614710Z [2625/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u64-acc4.c.o 2025-07-17T06:35:54.3903590Z [2626/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u8.c.o 2025-07-17T06:35:54.3952860Z [2627/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u64.c.o 2025-07-17T06:35:54.3990380Z [2628/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u16-acc1.c.o 2025-07-17T06:35:54.4261320Z [2629/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u24.c.o 2025-07-17T06:35:54.4353510Z [2630/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u24-acc3.c.o 2025-07-17T06:35:54.4483490Z [2631/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u24-acc2.c.o 2025-07-17T06:35:54.4568050Z [2632/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u32-acc2.c.o 2025-07-17T06:35:54.4700750Z [2633/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u16-acc2.c.o 2025-07-17T06:35:54.4705300Z [2634/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u32.c.o 2025-07-17T06:35:54.4890460Z [2635/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u64-acc2.c.o 2025-07-17T06:35:54.5217680Z [2636/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-8x1-minmax-neonfp16arith-pipelined.c.o 2025-07-17T06:35:54.5244790Z [2637/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u64-acc4.c.o 2025-07-17T06:35:54.5445640Z [2638/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u64.c.o 2025-07-17T06:35:54.5500670Z [2639/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x1-minmax-asm-aarch64-neonfma-ld64.S.o 2025-07-17T06:35:54.5585930Z [2640/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rsum/gen/f16-rsum-neonfp16arith-u16-acc2.c.o 2025-07-17T06:35:54.5611400Z [2641/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rsum/gen/f16-rsum-neonfp16arith-u24-acc3.c.o 2025-07-17T06:35:54.5738150Z [2642/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x12-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-07-17T06:35:54.5743770Z [2643/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rsum/gen/f16-rsum-neonfp16arith-u8.c.o 2025-07-17T06:35:54.5921930Z [2644/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rsum/gen/f16-rsum-neonfp16arith-u32-acc2.c.o 2025-07-17T06:35:54.6339150Z [2645/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rsum/gen/f16-rsum-neonfp16arith-u32-acc4.c.o 2025-07-17T06:35:54.6552860Z [2646/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-8x1-minmax-neonfp16arith-x2.c.o 2025-07-17T06:35:54.6562000Z [2647/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-16x1-minmax-neonfp16arith-pipelined.c.o 2025-07-17T06:35:54.6832060Z [2648/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-24x1-minmax-neonfp16arith-pipelined.c.o 2025-07-17T06:35:54.6974490Z [2649/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-16x1-minmax-neonfp16arith-x2.c.o 2025-07-17T06:35:54.6992410Z [2650/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-24x1-minmax-neonfp16arith.c.o 2025-07-17T06:35:54.7070430Z [2651/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-8x1-minmax-neonfp16arith.c.o 2025-07-17T06:35:54.7113300Z [2652/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-32x1-minmax-neonfp16arith-x2.c.o 2025-07-17T06:35:54.7491560Z [2653/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-24x1-minmax-neonfp16arith-x2.c.o 2025-07-17T06:35:54.7569850Z [2654/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-16x1-minmax-neonfp16arith.c.o 2025-07-17T06:35:54.7615540Z [2655/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-32x1-minmax-neonfp16arith.c.o 2025-07-17T06:35:54.7692210Z [2656/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vaddc-neonfp16arith-u8.c.o 2025-07-17T06:35:54.7855670Z [2657/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vadd-neonfp16arith-u8.c.o 2025-07-17T06:35:54.8248240Z [2658/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmaxc-neonfp16arith-u8.c.o 2025-07-17T06:35:54.8269620Z [2659/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmul-neonfp16arith-u8.c.o 2025-07-17T06:35:54.8518660Z [2660/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vminc-neonfp16arith-u8.c.o 2025-07-17T06:35:54.8671970Z [2661/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmin-neonfp16arith-u8.c.o 2025-07-17T06:35:54.8695760Z [2662/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmulc-neonfp16arith-u8.c.o 2025-07-17T06:35:54.8791800Z [2663/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vprelu-neonfp16arith-u8.c.o 2025-07-17T06:35:54.8934570Z [2664/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmax-neonfp16arith-u8.c.o 2025-07-17T06:35:54.8992520Z [2665/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrsubc-neonfp16arith-u8.c.o 2025-07-17T06:35:54.9173840Z [2666/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrpreluc-neonfp16arith-u8.c.o 2025-07-17T06:35:54.9474860Z [2667/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiff-neonfp16arith-u8.c.o 2025-07-17T06:35:54.9485500Z [2668/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vpreluc-neonfp16arith-u8.c.o 2025-07-17T06:35:54.9545010Z [2669/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiffc-neonfp16arith-u8.c.o 2025-07-17T06:35:54.9732610Z [2670/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsub-neonfp16arith-u8.c.o 2025-07-17T06:35:54.9882270Z [2671/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsubc-neonfp16arith-u8.c.o 2025-07-17T06:35:55.0050110Z [2672/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vclamp/gen/f16-vclamp-neonfp16arith-u8.c.o 2025-07-17T06:35:55.0113590Z [2673/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vmulcaddc/gen/f16-vmulcaddc-c16-minmax-neonfp16arith-2x.c.o 2025-07-17T06:35:55.0401350Z [2674/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vcmul/gen/f16-vcmul-neonfp16arith-u32.c.o 2025-07-17T06:35:55.0481090Z [2675/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-velu/gen/f16-velu-neonfp16arith-rr1-p3-u8.c.o 2025-07-17T06:35:55.0718760Z [2676/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vlrelu/gen/f16-vlrelu-neonfp16arith-u8.c.o 2025-07-17T06:35:55.0722720Z [2677/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vcmul/gen/f16-vcmul-neonfp16arith-u8.c.o 2025-07-17T06:35:55.0779400Z [2678/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vhswish/gen/f16-vhswish-neonfp16arith-u8.c.o 2025-07-17T06:35:55.0966990Z [2679/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndd-neonfp16arith-u8.c.o 2025-07-17T06:35:55.0997020Z [2680/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndne-neonfp16arith-u8.c.o 2025-07-17T06:35:55.1279670Z [2681/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1fma-u8.c.o 2025-07-17T06:35:55.1495630Z [2682/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndz-neonfp16arith-u8.c.o 2025-07-17T06:35:55.1581180Z [2683/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndu-neonfp16arith-u8.c.o 2025-07-17T06:35:55.1808120Z [2684/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrsqrt/gen/f16-vrsqrt-neonfp16arith-rsqrt-u8.c.o 2025-07-17T06:35:55.1958480Z [2685/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrsqrt/gen/f16-vrsqrt-neonfp16arith-rsqrt-u32.c.o 2025-07-17T06:35:55.2049490Z [2686/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1fma-u24.c.o 2025-07-17T06:35:55.2082750Z [2687/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1recps-u32.c.o 2025-07-17T06:35:55.2279790Z [2688/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1fma-u16.c.o 2025-07-17T06:35:55.2287110Z [2689/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1recps-u8.c.o 2025-07-17T06:35:55.2335600Z [2690/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1recps-u24.c.o 2025-07-17T06:35:55.2601790Z [2691/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1fma-u8.c.o 2025-07-17T06:35:55.2828450Z [2692/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1fma-u16.c.o 2025-07-17T06:35:55.2920210Z [2693/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-neonfp16arith-nr1fma1adj-u16.c.o 2025-07-17T06:35:55.3107140Z [2694/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-neonfp16arith-nr1fma1adj-u32.c.o 2025-07-17T06:35:55.3243380Z [2695/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1recps-u8.c.o 2025-07-17T06:35:55.3378230Z [2696/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1fma-u24.c.o 2025-07-17T06:35:55.3600780Z [2697/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1recps-u16.c.o 2025-07-17T06:35:55.3660590Z [2698/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1recps-u32.c.o 2025-07-17T06:35:55.3775040Z [2699/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1recps-u24.c.o 2025-07-17T06:35:55.3876040Z [2700/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-recpeadj-u8.c.o 2025-07-17T06:35:55.3990540Z [2701/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-recpeadj-u16.c.o 2025-07-17T06:35:55.4038360Z [2702/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-prfm.S.o 2025-07-17T06:35:55.4074800Z [2703/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-07-17T06:35:55.4217900Z [2704/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-recpeadj-u32.c.o 2025-07-17T06:35:55.4387700Z [2705/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-recpeadj-u24.c.o 2025-07-17T06:35:55.4610730Z [2706/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vunary/gen/f16-vabs-neonfp16arith-u8.c.o 2025-07-17T06:35:55.4964790Z [2707/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vunary/gen/f16-vsqr-neonfp16arith-u8.c.o 2025-07-17T06:35:55.5073500Z [2708/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vunary/gen/f16-vneg-neonfp16arith-u8.c.o 2025-07-17T06:35:55.5445540Z [2709/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-3x16-minmax-neonfp16arith-mlal-lane.c.o 2025-07-17T06:35:55.5452890Z [2710/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-3x16-minmax-neonfp16arith-mlal-lane-prfm.c.o 2025-07-17T06:35:55.5504170Z [2711/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-2x16-minmax-neonfp16arith-mlal-lane-prfm.c.o 2025-07-17T06:35:55.5514120Z [2712/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-2x16-minmax-neonfp16arith-mlal-lane.c.o 2025-07-17T06:35:55.5683860Z [2713/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-1x16-minmax-neonfp16arith-mlal-lane-prfm.c.o 2025-07-17T06:35:55.5757240Z [2714/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-4x16-minmax-neonfp16arith-mlal-lane-prfm.c.o 2025-07-17T06:35:55.6166340Z [2715/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-6x16-minmax-neonfp16arith-mlal-lane-prfm.c.o 2025-07-17T06:35:55.6418890Z [2716/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-2x16-minmax-neonfp16arith-mlal-lane-prfm.c.o 2025-07-17T06:35:55.6773130Z [2717/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-1x16-minmax-neonfp16arith-mlal-lane-prfm.c.o 2025-07-17T06:35:55.6819410Z [2718/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-4x16-minmax-neonfp16arith-mlal-lane.c.o 2025-07-17T06:35:55.6933220Z [2719/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-4x16-minmax-neonfp16arith-mlal-lane-prfm.c.o 2025-07-17T06:35:55.6991730Z [2720/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-3x16-minmax-neonfp16arith-mlal-lane.c.o 2025-07-17T06:35:55.7001220Z [2721/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-6x16-minmax-neonfp16arith-mlal-lane-prfm.c.o 2025-07-17T06:35:55.7138010Z [2722/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-2x16-minmax-neonfp16arith-mlal-lane.c.o 2025-07-17T06:35:55.7216630Z [2723/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-3x16-minmax-neonfp16arith-mlal-lane-prfm.c.o 2025-07-17T06:35:55.7402800Z [2724/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-4x16-minmax-neonfp16arith-mlal-lane.c.o 2025-07-17T06:35:55.7635900Z [2725/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f16-vcvt/gen/qs8-f16-vcvt-neonfp16arith-u8.c.o 2025-07-17T06:35:55.7760760Z [2726/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f16-vcvt/gen/qs8-f16-vcvt-neonfp16arith-u16.c.o 2025-07-17T06:35:55.7988850Z [2727/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f16-vcvt/gen/qs8-f16-vcvt-neonfp16arith-u24.c.o 2025-07-17T06:35:55.8006850Z [2728/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-aarch64-neonfp16arith-rr2-p2-div-u8.c.o 2025-07-17T06:35:55.8164060Z [2729/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-aarch64-neonfp16arith-rr2-p2-div-u16.c.o 2025-07-17T06:35:55.8516470Z [2730/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-aarch64-neonfp16arith-rr2-p2-div-u24.c.o 2025-07-17T06:35:55.8563880Z [2731/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdivc-aarch64-neonfp16arith-u16.c.o 2025-07-17T06:35:55.8584620Z [2732/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdiv-aarch64-neonfp16arith-u16.c.o 2025-07-17T06:35:55.8818100Z [2733/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-aarch64-neonfp16arith-rr2-p2-div-u32.c.o 2025-07-17T06:35:55.8955180Z [2734/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-aarch64-neonfp16arith-sqrt-u16.c.o 2025-07-17T06:35:55.9058980Z [2735/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-aarch64-neonfp16arith-sqrt-u32.c.o 2025-07-17T06:35:55.9066190Z [2736/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-aarch64-neonfp16arith-expm1minus-rr1-p3h2ts-div-u16.c.o 2025-07-17T06:35:55.9108150Z [2737/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrdivc-aarch64-neonfp16arith-u16.c.o 2025-07-17T06:35:55.9295260Z [2738/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-aarch64-neonfp16arith-expm1minus-rr1-p3h2ts-div-u8.c.o 2025-07-17T06:35:55.9449700Z [2739/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-aarch64-neonfp16arith-expm1minus-rr1-p3h2ts-div-u24.c.o 2025-07-17T06:35:56.0009740Z [2740/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x8c4-minmax-neondot.c.o 2025-07-17T06:35:56.0198710Z [2741/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-2x16c4-minmax-neondot.c.o 2025-07-17T06:35:56.0384820Z [2742/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-3x16c4-minmax-neondot.c.o 2025-07-17T06:35:56.0578380Z [2743/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-2x8c4-minmax-neondot.c.o 2025-07-17T06:35:56.0624600Z [2744/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-5x16c4-minmax-neondot.c.o 2025-07-17T06:35:56.0686670Z [2745/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-4x8c4-minmax-neondot.c.o 2025-07-17T06:35:56.0749560Z [2746/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-6x8c4-minmax-neondot.c.o 2025-07-17T06:35:56.0853900Z [2747/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-6x16c4-minmax-neondot.c.o 2025-07-17T06:35:56.0858790Z [2748/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-3x8c4-minmax-neondot.c.o 2025-07-17T06:35:56.1040960Z [2749/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-5x8c4-minmax-neondot.c.o 2025-07-17T06:35:56.1646370Z [2750/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x8c4-minmax-neondot.c.o 2025-07-17T06:35:56.1788520Z [2751/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-2x8c4-minmax-neondot.c.o 2025-07-17T06:35:56.1814660Z [2752/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-2x16c4-minmax-neondot.c.o 2025-07-17T06:35:56.1900090Z [2753/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-4x8c4-minmax-neondot.c.o 2025-07-17T06:35:56.1933430Z [2754/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-3x16c4-minmax-neondot.c.o 2025-07-17T06:35:56.2036580Z [2755/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-6x16c4-minmax-neondot.c.o 2025-07-17T06:35:56.2262950Z [2756/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x8c8-minmax-neondot-ld64.c.o 2025-07-17T06:35:56.2482530Z [2757/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x16c8-minmax-neondot-ld64.c.o 2025-07-17T06:35:56.2774790Z [2758/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-6x8c4-minmax-neondot.c.o 2025-07-17T06:35:56.2788020Z [2759/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-2x8c4-minmax-neondot.c.o 2025-07-17T06:35:56.3253970Z [2760/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-3x8c4-minmax-neondot.c.o 2025-07-17T06:35:56.3331500Z [2761/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-6x8c4-minmax-neondot.c.o 2025-07-17T06:35:56.3432550Z [2762/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-3x16c4-minmax-neondot.c.o 2025-07-17T06:35:56.3534430Z [2763/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-5x8c4-minmax-neondot.c.o 2025-07-17T06:35:56.3543930Z [2764/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-2x16c4-minmax-neondot.c.o 2025-07-17T06:35:56.3776490Z [2765/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-6x16c4-minmax-neondot.c.o 2025-07-17T06:35:56.3800840Z [2766/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-5x16c4-minmax-neondot.c.o 2025-07-17T06:35:56.4199270Z [2767/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x8c8-minmax-neondot-ld64.c.o 2025-07-17T06:35:56.4316640Z [2768/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x16c8-minmax-neondot-ld64.c.o 2025-07-17T06:35:56.4375770Z [2769/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x32c4-minmax-neondot.c.o 2025-07-17T06:35:56.4563470Z [2770/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-2x8c4-minmax-neondot.c.o 2025-07-17T06:35:56.4793850Z [2771/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-2x16c4-minmax-neondot.c.o 2025-07-17T06:35:56.5086360Z [2772/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-6x16c4-minmax-neondot.c.o 2025-07-17T06:35:56.5089120Z [2773/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x32c4-minmax-neondot.c.o 2025-07-17T06:35:56.5099650Z [2774/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-6x32c4-minmax-neondot.c.o 2025-07-17T06:35:56.5280980Z [2775/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-2x32c4-minmax-neondot.c.o 2025-07-17T06:35:56.5478550Z [2776/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-8x8c4-minmax-neondot.c.o 2025-07-17T06:35:56.5684590Z [2777/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-6x8c4-minmax-neondot.c.o 2025-07-17T06:35:56.5722880Z [2778/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-8x32c4-minmax-neondot.c.o 2025-07-17T06:35:56.5983870Z [2779/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-8x16c4-minmax-neondot.c.o 2025-07-17T06:35:56.6066870Z [2780/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c8-minmax-fp32-neondot-ld64.c.o 2025-07-17T06:35:56.6182560Z [2781/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x16c8-minmax-fp32-neondot-ld64.c.o 2025-07-17T06:35:56.6600810Z [2782/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-8x16c4-minmax-fp32-neondot.c.o 2025-07-17T06:35:56.6652460Z [2783/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-6x8c4-minmax-fp32-neondot.c.o 2025-07-17T06:35:56.6692630Z [2784/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-8x8c4-minmax-fp32-neondot.c.o 2025-07-17T06:35:56.6845040Z [2785/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-6x16c4-minmax-fp32-neondot.c.o 2025-07-17T06:35:56.6918810Z [2786/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c8-minmax-fp32-neondot-ld64.c.o 2025-07-17T06:35:56.7258570Z [2787/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-6x8c4-minmax-fp32-neondot.c.o 2025-07-17T06:35:56.7282500Z [2788/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-8x8c4-minmax-fp32-neondot.c.o 2025-07-17T06:35:56.7336240Z [2789/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-6x16c4-minmax-fp32-neondot.c.o 2025-07-17T06:35:56.7528670Z [2790/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x16c8-minmax-fp32-neondot-ld64.c.o 2025-07-17T06:35:56.7529560Z [2791/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-8x16c4-minmax-fp32-neondot.c.o 2025-07-17T06:35:56.7964530Z [2792/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-neondot-u16.c.o 2025-07-17T06:35:56.8123120Z [2793/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-neondot-u64-acc2.c.o 2025-07-17T06:35:56.8323270Z [2794/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x16c8-minmax-aarch64-neondot-ld128.c.o 2025-07-17T06:35:56.8482480Z [2795/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qp8-f32-qc4w-gemm/qp8-f32-qc4w-gemm-minmax-1x4c16s2-aarch64-neondot.c.o 2025-07-17T06:35:56.8706590Z [2796/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x16c8-minmax-aarch64-neondot-ld128.c.o 2025-07-17T06:35:56.8738060Z [2797/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-neondot-u64-acc4.c.o 2025-07-17T06:35:56.8841890Z [2798/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x8c8-minmax-aarch64-neondot-ld128.c.o 2025-07-17T06:35:56.8943740Z [2799/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c8-minmax-fp32-aarch64-neondot-ld128.c.o 2025-07-17T06:35:56.9008490Z [2800/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x8c8-minmax-aarch64-neondot-ld128.c.o 2025-07-17T06:35:56.9124650Z [2801/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-1x8-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-07-17T06:35:56.9127580Z [2802/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-1x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2025-07-17T06:35:56.9130330Z [2803/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x16c8-minmax-fp32-aarch64-neondot-ld128.c.o 2025-07-17T06:35:56.9197740Z [2804/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c8-minmax-fp32-aarch64-neondot-ld128.c.o 2025-07-17T06:35:56.9330910Z [2805/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x16c8-minmax-fp32-aarch64-neondot-ld128.c.o 2025-07-17T06:35:56.9559030Z [2806/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-4x8-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-07-17T06:35:56.9811430Z [2807/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-6x8-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-07-17T06:35:56.9934130Z [2808/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-1x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2025-07-17T06:35:56.9958370Z [2809/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-4x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2025-07-17T06:35:56.9966090Z [2810/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-6x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2025-07-17T06:35:56.9966940Z [2811/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-8x8-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-07-17T06:35:57.0030490Z [2812/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-1x8-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-07-17T06:35:57.0117190Z [2813/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-4x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2025-07-17T06:35:57.0135400Z [2814/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-4x8-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-07-17T06:35:57.0217290Z [2815/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-6x8-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-07-17T06:35:57.0543520Z [2816/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a55.S.o 2025-07-17T06:35:57.0828080Z [2817/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a75.S.o 2025-07-17T06:35:57.0848880Z [2818/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-8x8-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-07-17T06:35:57.0884050Z [2819/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/f16-igemm-1x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2025-07-17T06:35:57.1019300Z [2820/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-6x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2025-07-17T06:35:57.1058280Z [2821/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/f16-igemm-4x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2025-07-17T06:35:57.1079910Z [2822/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neon-ld128-acc2-prfm.S.o 2025-07-17T06:35:57.1091570Z [2823/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/f32-dwconv-9p4c-minmax-asm-aarch64-neonfma.S.o 2025-07-17T06:35:57.1095740Z [2824/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/f16-igemm-6x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2025-07-17T06:35:57.1103440Z [2825/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neon-ld128-acc2.S.o 2025-07-17T06:35:57.1577190Z [2826/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc2-prfm.S.o 2025-07-17T06:35:57.1819060Z [2827/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc2.S.o 2025-07-17T06:35:57.1821430Z [2828/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc4-prfm.S.o 2025-07-17T06:35:57.1873600Z [2829/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-prfm.S.o 2025-07-17T06:35:57.1963810Z [2830/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc4-prfm.S.o 2025-07-17T06:35:57.2004960Z [2831/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc2-prfm.S.o 2025-07-17T06:35:57.2009190Z [2832/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc4.S.o 2025-07-17T06:35:57.2014460Z [2833/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld64.S.o 2025-07-17T06:35:57.2091650Z [2834/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-07-17T06:35:57.2094820Z [2835/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x1-minmax-asm-aarch64-neonfma-ld128.S.o 2025-07-17T06:35:57.2660530Z [2836/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-07-17T06:35:57.2924080Z [2837/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-asm-aarch64-neonfma-ld64.S.o 2025-07-17T06:35:57.2969940Z [2838/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-asm-aarch64-neonfma-ld64.S.o 2025-07-17T06:35:57.2981150Z [2839/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-asm-aarch64-neonfma-ld64.S.o 2025-07-17T06:35:57.2987360Z [2840/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x12-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-07-17T06:35:57.2992690Z [2841/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-07-17T06:35:57.2994250Z [2842/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-07-17T06:35:57.3001130Z [2843/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-goi-1x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-07-17T06:35:57.3007060Z [2844/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-07-17T06:35:57.3014920Z [2845/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-goi-1x8-minmax-asm-aarch64-neonfma-ld128-prfm.S.o 2025-07-17T06:35:57.3753860Z [2846/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-goi-4x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-07-17T06:35:57.3894050Z [2847/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-07-17T06:35:57.3961870Z [2848/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-07-17T06:35:57.3976700Z [2849/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-07-17T06:35:57.3982840Z [2850/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x12-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-07-17T06:35:57.3993380Z [2851/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-07-17T06:35:57.4005710Z [2852/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-asm-aarch64-neonfma-cortex-a55.S.o 2025-07-17T06:35:57.4012720Z [2853/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-asm-aarch64-neonfma-ld64.S.o 2025-07-17T06:35:57.4025820Z [2854/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-07-17T06:35:57.4197510Z [2855/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-07-17T06:35:57.4719170Z [2856/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-asm-aarch64-neonfma-ld64.S.o 2025-07-17T06:35:57.4925780Z [2857/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-07-17T06:35:57.4965370Z [2858/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x12-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-07-17T06:35:57.4970620Z [2859/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-07-17T06:35:57.4977380Z [2860/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-07-17T06:35:57.4980850Z [2861/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-5x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-07-17T06:35:57.4994150Z [2862/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-asm-aarch64-neonfma-cortex-a55.S.o 2025-07-17T06:35:57.4995030Z [2863/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-asm-aarch64-neonfma-cortex-a73.S.o 2025-07-17T06:35:57.5015140Z [2864/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-5x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-07-17T06:35:57.5303520Z [2865/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-07-17T06:35:57.5952540Z [2866/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-asm-aarch64-neonfma-ld64.S.o 2025-07-17T06:35:57.6097940Z [2867/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/f32-igemm-4x12-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-07-17T06:35:57.6216300Z [2868/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-asm-aarch64-neonfma-ld64.S.o 2025-07-17T06:35:57.6225660Z [2869/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-asm-aarch64-neonfma-ld64-prfm.S.o 2025-07-17T06:35:57.6236850Z [2870/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/f32-igemm-1x12-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-07-17T06:35:57.6247260Z [2871/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-07-17T06:35:57.6254160Z [2872/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-07-17T06:35:57.6255220Z [2873/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-07-17T06:35:57.6259920Z [2874/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-asm-aarch64-neonfma-ld64.S.o 2025-07-17T06:35:57.6344630Z [2875/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-07-17T06:35:57.6925950Z [2876/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-07-17T06:35:57.6950300Z [2877/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-07-17T06:35:57.6971050Z [2878/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-07-17T06:35:57.6990270Z [2879/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-07-17T06:35:57.6997820Z [2880/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-asm-aarch64-neonfma-ld64.S.o 2025-07-17T06:35:57.7006720Z [2881/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-07-17T06:35:57.7025620Z [2882/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-07-17T06:35:57.7035000Z [2883/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-asm-aarch64-neonfma-ld128-prfm.S.o 2025-07-17T06:35:57.7307240Z [2884/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-asm-aarch64-neonfma-ld128-prfm.S.o 2025-07-17T06:35:57.7323390Z [2885/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-07-17T06:35:57.7950070Z [2886/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc2.S.o 2025-07-17T06:35:57.7979640Z [2887/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-prfm.S.o 2025-07-17T06:35:57.7987180Z [2888/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neon-ld128-acc2-prfm.S.o 2025-07-17T06:35:57.7990970Z [2889/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neon-ld128-acc2.S.o 2025-07-17T06:35:57.7996920Z [2890/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc2-prfm.S.o 2025-07-17T06:35:57.8055210Z [2891/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc4-prfm.S.o 2025-07-17T06:35:57.8126240Z [2892/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc4.S.o 2025-07-17T06:35:57.8177420Z [2893/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64.S.o 2025-07-17T06:35:57.8329340Z [2894/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc2-prfm.S.o 2025-07-17T06:35:57.8342770Z [2895/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc2.S.o 2025-07-17T06:35:57.8926150Z [2896/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x2-minmax-asm-aarch64-neonfma-ld64.S.o 2025-07-17T06:35:57.9055590Z [2897/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-07-17T06:35:57.9069700Z [2898/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc4.S.o 2025-07-17T06:35:57.9076170Z [2899/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x1-minmax-asm-aarch64-neonfma-ld128.S.o 2025-07-17T06:35:57.9078300Z [2900/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-prfm.S.o 2025-07-17T06:35:57.9079200Z [2901/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc4-prfm.S.o 2025-07-17T06:35:57.9080090Z [2902/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x1-minmax-asm-aarch64-neonfma-ld64.S.o 2025-07-17T06:35:57.9152460Z [2903/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x8-minmax-asm-aarch64-neonfma-ld64.S.o 2025-07-17T06:35:57.9162780Z [2904/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x2-minmax-asm-aarch64-neonfma-ld128.S.o 2025-07-17T06:35:57.9373120Z [2905/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-07-17T06:35:57.9985110Z [2906/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc4.S.o 2025-07-17T06:35:57.9986070Z [2907/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neon-ld128-acc2-prfm.S.o 2025-07-17T06:35:57.9995630Z [2908/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-prfm.S.o 2025-07-17T06:35:57.9999220Z [2909/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-6x8-minmax-asm-aarch64-neonfma-ld64.S.o 2025-07-17T06:35:58.0005410Z [2910/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-6x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-07-17T06:35:58.0013430Z [2911/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neon-ld128-acc2.S.o 2025-07-17T06:35:58.0022960Z [2912/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc2-prfm.S.o 2025-07-17T06:35:58.0046320Z [2913/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc2.S.o 2025-07-17T06:35:58.0174030Z [2914/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc4-prfm.S.o 2025-07-17T06:35:58.0262860Z [2915/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64.S.o 2025-07-17T06:35:58.0868220Z [2916/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc2.S.o 2025-07-17T06:35:58.0949830Z [2917/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc2-prfm.S.o 2025-07-17T06:35:58.0952750Z [2918/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x2-minmax-asm-aarch64-neonfma-ld128.S.o 2025-07-17T06:35:58.0970380Z [2919/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x1-minmax-asm-aarch64-neonfma-ld64.S.o 2025-07-17T06:35:58.0980880Z [2920/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc4-prfm.S.o 2025-07-17T06:35:58.1099460Z [2921/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-prfm.S.o 2025-07-17T06:35:58.1118670Z [2922/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x1-minmax-asm-aarch64-neonfma-ld128.S.o 2025-07-17T06:35:58.1182950Z [2923/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x8-minmax-asm-aarch64-neonfma-ld64.S.o 2025-07-17T06:35:58.1214190Z [2924/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x2-minmax-asm-aarch64-neonfma-ld64.S.o 2025-07-17T06:35:58.1251350Z [2925/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-07-17T06:35:58.1915990Z [2926/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c8-minmax-fp32-asm-aarch64-neon-mull.S.o 2025-07-17T06:35:58.1922750Z [2927/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-6x8-minmax-asm-aarch64-neonfma-ld64.S.o 2025-07-17T06:35:58.1927800Z [2928/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c8-minmax-fp32-asm-aarch64-neon-mlal-cortex-a53.S.o 2025-07-17T06:35:58.1928770Z [2929/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x16c4-minmax-asm-aarch64-neondot-ld64.S.o 2025-07-17T06:35:58.1942010Z [2930/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c8-minmax-fp32-asm-aarch64-neon-mlal-cortex-a53.S.o 2025-07-17T06:35:58.2002690Z [2931/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x16c4-minmax-fp32-asm-aarch64-neondot-ld32.S.o 2025-07-17T06:35:58.2006980Z [2932/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x16c4-minmax-fp32-asm-aarch64-neondot-ld64.S.o 2025-07-17T06:35:58.2146340Z [2933/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16-minmax-fp32-asm-aarch64-neon-mlal-lane-ld64-prfm.S.o 2025-07-17T06:35:58.2148050Z [2934/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c16-minmax-fp32-asm-aarch64-neon-mlal.S.o 2025-07-17T06:35:58.2173780Z [2935/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16-minmax-fp32-asm-aarch64-neon-mlal-lane-cortex-a53-prfm.S.o 2025-07-17T06:35:58.2922350Z [2936/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c16-minmax-fp32-asm-aarch64-neon-mlal.S.o 2025-07-17T06:35:58.2925640Z [2937/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c8-minmax-fp32-asm-aarch64-neon-mlal-cortex-a53.S.o 2025-07-17T06:35:58.2948080Z [2938/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c8-minmax-fp32-asm-aarch64-neon-mlal-cortex-a53.S.o 2025-07-17T06:35:58.2961240Z [2939/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x16c4-minmax-fp32-asm-aarch64-neondot-ld64.S.o 2025-07-17T06:35:58.2972570Z [2940/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16c4-minmax-fp32-asm-aarch64-neondot-ld32.S.o 2025-07-17T06:35:58.2976050Z [2941/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16c4-minmax-fp32-asm-aarch64-neondot-ld64.S.o 2025-07-17T06:35:58.3023680Z [2942/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x16-minmax-fp32-asm-aarch64-neon-mlal-lane-cortex-a53-prfm.S.o 2025-07-17T06:35:58.3041790Z [2943/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x16-minmax-fp32-asm-aarch64-neon-mlal-lane-ld64-prfm.S.o 2025-07-17T06:35:58.3090480Z [2944/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x16-minmax-rndnu-asm-aarch64-neon-mlal-lane-ld64-prfm.S.o 2025-07-17T06:35:58.3159830Z [2945/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x16-minmax-rndnu-asm-aarch64-neon-mlal-lane-cortex-a53.S.o 2025-07-17T06:35:58.4463850Z [2946/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x16-minmax-rndnu-asm-aarch64-neon-mlal-lane-ld64.S.o 2025-07-17T06:35:58.4539600Z [2947/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x16-minmax-rndnu-asm-aarch64-neon-mlal-lane-ld64.S.o 2025-07-17T06:35:58.4545440Z [2948/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x16-minmax-rndnu16-asm-aarch64-neon-mlal-lane-cortex-a53.S.o 2025-07-17T06:35:58.4551630Z [2949/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x16-minmax-rndnu16-asm-aarch64-neon-mlal-lane-cortex-a53.S.o 2025-07-17T06:35:58.4576490Z [2950/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x16-minmax-rndnu-asm-aarch64-neon-mlal-lane-cortex-a53.S.o 2025-07-17T06:35:58.4693300Z [2951/5148] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x16-minmax-rndnu-asm-aarch64-neon-mlal-lane-ld64-prfm.S.o 2025-07-17T06:35:58.5090820Z [2952/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qai8dxp_f32.c.o 2025-07-17T06:35:58.5129140Z [2953/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4cxp_qs4cxs1s0.c.o 2025-07-17T06:35:58.5174480Z [2954/5148] Running gen_proto.py on onnx/onnx-data.in.proto 2025-07-17T06:35:58.5175070Z Processing /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/onnx-data.in.proto 2025-07-17T06:35:58.5177520Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto 2025-07-17T06:35:58.5178110Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto3 2025-07-17T06:35:58.5178640Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data.pb.h 2025-07-17T06:35:58.5179140Z generating /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_data_pb.py 2025-07-17T06:35:58.5262940Z [2955/5148] Running gen_proto.py on onnx/onnx-operators.in.proto 2025-07-17T06:35:58.5265170Z Processing /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/onnx-operators.in.proto 2025-07-17T06:35:58.5265870Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto 2025-07-17T06:35:58.5266690Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto3 2025-07-17T06:35:58.5267270Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators-ml.pb.h 2025-07-17T06:35:58.5267800Z generating /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_operators_pb.py 2025-07-17T06:35:58.5435930Z [2956/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qai4c32p4x8_8x4_neon_i8mm.c.o 2025-07-17T06:35:58.5574820Z [2957/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32p_qsu4c32s1s0.c.o 2025-07-17T06:35:58.5744020Z [2958/5148] Running C++ protocol buffer compiler on /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto 2025-07-17T06:35:58.5756420Z [2959/5148] Running C++ protocol buffer compiler on /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto 2025-07-17T06:35:58.5896960Z [2960/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32pscalef16_qsu4c32s16s0.c.o 2025-07-17T06:35:58.5934850Z [2961/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi4cxp_qs4cxs1s0.c.o 2025-07-17T06:35:58.6101740Z [2962/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi4c32p_qsu4c32s1s0.c.o 2025-07-17T06:35:58.6124380Z [2963/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32p_f32.c.o 2025-07-17T06:35:58.6307180Z [2964/5148] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p8x1biasf32_6x8x4_neon_mla_asm.S.o 2025-07-17T06:35:58.6480460Z [2965/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p8x1biasf32_6x8x4_neon_mla.c.o 2025-07-17T06:35:58.6698020Z [2966/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p8x1biasf32_f32_f32_neon.c.o 2025-07-17T06:35:58.7294370Z [2967/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32p_f32_neon.c.o 2025-07-17T06:35:58.7471650Z [2968/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32ps1s0scalef16_qsu4c32s16s0_neon.c.o 2025-07-17T06:35:58.8191560Z [2969/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/assertions.cc.o 2025-07-17T06:35:58.8382980Z [2970/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/interned_strings.cc.o 2025-07-17T06:35:58.9169320Z [2971/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/model_helpers.cc.o 2025-07-17T06:35:58.9206480Z [2972/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/path.cc.o 2025-07-17T06:35:58.9222900Z [2973/5148] Building CXX object third_party/onnx/CMakeFiles/onnx_proto.dir/onnx/onnx-operators_onnx_torch-ml.pb.cc.o 2025-07-17T06:35:58.9379000Z [2974/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/checker.cc.o 2025-07-17T06:35:58.9523520Z [2975/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/ir_pb_converter.cc.o 2025-07-17T06:35:58.9698670Z [2976/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/status.cc.o 2025-07-17T06:35:58.9844310Z [2977/5148] Building CXX object third_party/onnx/CMakeFiles/onnx_proto.dir/onnx/onnx_onnx_torch-ml.pb.cc.o 2025-07-17T06:35:58.9958140Z [2978/5148] Building CXX object third_party/onnx/CMakeFiles/onnx_proto.dir/onnx/onnx-data_onnx_torch.pb.cc.o 2025-07-17T06:35:59.0629410Z [2979/5148] Linking CXX static library lib/libonnx_proto.a 2025-07-17T06:35:59.1800570Z [2980/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/controlflow/old.cc.o 2025-07-17T06:35:59.1866410Z [2981/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/controlflow/defs.cc.o 2025-07-17T06:35:59.1939760Z [2982/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/controlflow/utils.cc.o 2025-07-17T06:35:59.1956490Z [2983/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/data_type_utils.cc.o 2025-07-17T06:35:59.2131060Z [2984/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/function.cc.o 2025-07-17T06:35:59.2235600Z [2985/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/generator/defs.cc.o 2025-07-17T06:35:59.2382910Z [2986/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/attr_proto_util.cc.o 2025-07-17T06:35:59.2383810Z [2987/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/generator/old.cc.o 2025-07-17T06:35:59.4139070Z [2988/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/generator/utils.cc.o 2025-07-17T06:35:59.4156410Z [2989/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/image/defs.cc.o 2025-07-17T06:35:59.4908560Z [2990/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/logical/defs.cc.o 2025-07-17T06:35:59.4923990Z [2991/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/logical/old.cc.o 2025-07-17T06:35:59.5089060Z [2992/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/math/utils.cc.o 2025-07-17T06:35:59.5657150Z [2993/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/math/defs.cc.o 2025-07-17T06:35:59.5851430Z [2994/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/math/old.cc.o 2025-07-17T06:35:59.5883560Z [2995/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/object_detection/defs.cc.o 2025-07-17T06:35:59.5925340Z [2996/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/nn/defs.cc.o 2025-07-17T06:35:59.6231190Z [2997/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/nn/old.cc.o 2025-07-17T06:35:59.6892830Z [2998/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/optional/defs.cc.o 2025-07-17T06:35:59.6992670Z [2999/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/object_detection/old.cc.o 2025-07-17T06:35:59.7793420Z [3000/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/optional/old.cc.o 2025-07-17T06:35:59.7988030Z [3001/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/parser.cc.o 2025-07-17T06:35:59.8360810Z [3002/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/printer.cc.o 2025-07-17T06:35:59.9126570Z [3003/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/reduction/old.cc.o 2025-07-17T06:35:59.9290260Z [3004/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/quantization/old.cc.o 2025-07-17T06:35:59.9333470Z [3005/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/reduction/utils.cc.o 2025-07-17T06:35:59.9456260Z [3006/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/reduction/defs.cc.o 2025-07-17T06:35:59.9755670Z [3007/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/rnn/defs.cc.o 2025-07-17T06:35:59.9985600Z [3008/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/rnn/old.cc.o 2025-07-17T06:36:00.0617740Z [3009/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/quantization/defs.cc.o 2025-07-17T06:36:00.1494220Z [3010/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/schema.cc.o 2025-07-17T06:36:00.1609310Z [3011/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/shape_inference.cc.o 2025-07-17T06:36:00.1735550Z [3012/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/sequence/defs.cc.o 2025-07-17T06:36:00.1897430Z [3013/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor/defs.cc.o 2025-07-17T06:36:00.2032450Z [3014/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor_proto_util.cc.o 2025-07-17T06:36:00.2119390Z [3015/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor/utils.cc.o 2025-07-17T06:36:00.2683520Z [3016/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor_util.cc.o 2025-07-17T06:36:00.2799050Z [3017/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor/old.cc.o 2025-07-17T06:36:00.3111180Z [3018/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/text/defs.cc.o 2025-07-17T06:36:00.4024560Z [3019/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/traditionalml/defs.cc.o 2025-07-17T06:36:00.4455900Z [3020/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi8cxp_qsi8cx_neon.c.o 2025-07-17T06:36:00.4649950Z [3021/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/traditionalml/old.cc.o 2025-07-17T06:36:00.4684060Z [3022/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/training/defs.cc.o 2025-07-17T06:36:00.4767070Z [3023/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/inliner/inliner.cc.o 2025-07-17T06:36:00.4789860Z [3024/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/version_converter/helper.cc.o 2025-07-17T06:36:00.4855090Z [3025/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4cxps1s0_qsu4cxs1s0_neon.c.o 2025-07-17T06:36:00.4857420Z [3026/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qai4c32p_qau4c32s0s1_f32_f32_f32_neon.c.o 2025-07-17T06:36:00.5037350Z [3027/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/shape_inference/implementation.cc.o 2025-07-17T06:36:00.5541310Z [3028/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32pscalef32_f32_neon.c.o 2025-07-17T06:36:00.5557400Z [3029/5148] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/version_converter/convert.cc.o 2025-07-17T06:36:00.5568820Z [3030/5148] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p1x8_qai4c32p4x8_1x4_neon_dotprod_asm.S.o 2025-07-17T06:36:00.5734610Z [3031/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi8cxp_qsi8cx_neon.c.o 2025-07-17T06:36:00.5930410Z [3032/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p16x1biasf16_6x16x8_neon_mla.c.o 2025-07-17T06:36:00.6173230Z [3033/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32pscalef32_f16_neon.c.o 2025-07-17T06:36:00.6294130Z [3034/5148] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp1x8_qsi4cxp4x8_1x4_neon_dotprod_asm.S.o 2025-07-17T06:36:00.6297130Z [3035/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f16p16x1biasf16_f16_f16_neon.c.o 2025-07-17T06:36:00.6299720Z [3036/5148] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp1x4_qsi4cxp4x4_1x4_neon_dotprod_asm.S.o 2025-07-17T06:36:00.6474840Z [3037/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p1x8_qai4c32p4x8_1x4_neon_dotprod.c.o 2025-07-17T06:36:00.6484170Z [3038/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p1x4_bf16p12x4b_1x36_neon_dot.c.o 2025-07-17T06:36:00.6494180Z [3039/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qai8dxp_f16_neon.c.o 2025-07-17T06:36:00.6758320Z [3040/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp1x4_qsi4cxp4x4_1x4_neon_dotprod.c.o 2025-07-17T06:36:00.7046060Z [3041/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp1x8_qsi4cxp4x8_1x4_neon_dotprod.c.o 2025-07-17T06:36:00.7092020Z [3042/5148] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp4x4_qsi4cxp4x4_16x4_neon_dotprod_asm.S.o 2025-07-17T06:36:00.7095180Z [3043/5148] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp1x4_qsi8cxp4x4_1x4_neon_dotprod_asm.S.o 2025-07-17T06:36:00.7323180Z [3044/5148] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp1x8_qsi8cxp4x8_1x4_neon_dotprod_asm.S.o 2025-07-17T06:36:00.7590610Z [3045/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp4x4_qsi4cxp4x4_16x4_neon_dotprod.c.o 2025-07-17T06:36:00.7593860Z [3046/5148] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp4x4_qsi8cxp4x4_16x4_neon_dotprod_asm.S.o 2025-07-17T06:36:00.7774060Z [3047/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp1x4_qsi8cxp4x4_1x4_neon_dotprod.c.o 2025-07-17T06:36:00.7908900Z [3048/5148] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp4x8_qsi4cxp4x8_16x4_neon_i8mm_asm.S.o 2025-07-17T06:36:00.7917120Z [3049/5148] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p4x8_qai4c32p4x8_8x4_neon_i8mm_asm.S.o 2025-07-17T06:36:00.8068550Z [3050/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp4x4_qsi8cxp4x4_16x4_neon_dotprod.c.o 2025-07-17T06:36:00.8400590Z [3051/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p4x8_qai4c32p4x8_8x4_neon_i8mm.c.o 2025-07-17T06:36:00.8548110Z [3052/5148] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp4x8_qsi8cxp4x8_16x4_neon_i8mm_asm.S.o 2025-07-17T06:36:00.8677950Z [3053/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp1x8_qsi8cxp4x8_1x4_neon_dotprod.c.o 2025-07-17T06:36:00.8679000Z [3054/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp4x8_qsi4cxp4x8_16x4_neon_i8mm.c.o 2025-07-17T06:36:00.8849160Z [3055/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp4x8_qsi8cxp4x8_16x4_neon_i8mm.c.o 2025-07-17T06:36:00.9109920Z [3056/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_quant_pack_kxn_bf16p12x4biasf32_f32_neon.c.o 2025-07-17T06:36:00.9329020Z [3057/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p/kai_matmul_clamp_f16_bf16p8x4_bf16p12x4b_8x12_neon_mmla.c.o 2025-07-17T06:36:00.9357440Z [3058/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_bf16p1x4_f32_neon.c.o 2025-07-17T06:36:00.9422410Z [3059/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p8x4_bf16p12x4b_8x12_neon_mmla.c.o 2025-07-17T06:36:00.9912820Z [3060/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p12x4biasf16_f16_neon.c.o 2025-07-17T06:36:00.9922680Z [3061/5148] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x4_qsi4c32p4x4_1x4_neon_dotprod_asm.S.o 2025-07-17T06:36:00.9949180Z [3062/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p12x4biasf32_f16_neon.c.o 2025-07-17T06:36:01.0096290Z [3063/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_pack_bf16p8x4_f16_neon.c.o 2025-07-17T06:36:01.0097170Z [3064/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x4_qsi4c32p4x4_1x4_neon_dotprod.c.o 2025-07-17T06:36:01.0116230Z [3065/5148] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x4_qsi4c32p8x4_1x8_neon_dotprod_asm.S.o 2025-07-17T06:36:01.0143650Z [3066/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_bf16p8x4_f32_neon.c.o 2025-07-17T06:36:01.0580960Z [3067/5148] Linking CXX static library lib/libonnx.a 2025-07-17T06:36:01.0765490Z [3068/5148] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p8x8_1x8_neon_dotprod_asm.S.o 2025-07-17T06:36:01.0860430Z [3069/5148] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p8x8_1x8x32_neon_dotprod_asm.S.o 2025-07-17T06:36:01.0880310Z [3070/5148] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p4x8_1x4x32_neon_dotprod_asm.S.o 2025-07-17T06:36:01.0907630Z [3071/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p4x8_1x4x32_neon_dotprod.c.o 2025-07-17T06:36:01.0957250Z [3072/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x4_qsi4c32p8x4_1x8_neon_dotprod.c.o 2025-07-17T06:36:01.1048360Z [3073/5148] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x4_qsi4c32p4x4_16x4_neon_dotprod_asm.S.o 2025-07-17T06:36:01.1541240Z [3074/5148] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x4_qsi4c32p8x4_4x8_neon_dotprod_asm.S.o 2025-07-17T06:36:01.1673360Z [3075/5148] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p1x8_qai4c32p4x8_1x4_neon_dotprod_asm.S.o 2025-07-17T06:36:01.1720820Z [3076/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p8x8_1x8x32_neon_dotprod.c.o 2025-07-17T06:36:01.1935830Z [3077/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x4_qsi4c32p4x4_16x4_neon_dotprod.c.o 2025-07-17T06:36:01.2163270Z [3078/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi4cxp4x4_1x4_neon_dotprod.c.o 2025-07-17T06:36:01.2182160Z [3079/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x4_qsi4c32p8x4_4x8_neon_dotprod.c.o 2025-07-17T06:36:01.2303270Z [3080/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p8x8_1x8_neon_dotprod.c.o 2025-07-17T06:36:01.2328630Z [3081/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x8_qsi4cxp8x8_1x8x32_neon_dotprod.c.o 2025-07-17T06:36:01.2435790Z [3082/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x8_qsi4cxp4x8_1x4x32_neon_dotprod.c.o 2025-07-17T06:36:01.2536930Z [3083/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p1x8_qai4c32p4x8_1x4_neon_dotprod.c.o 2025-07-17T06:36:01.2680670Z [3084/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x4_qsi4cxp8x4_8x8x32_neon_dotprod.c.o 2025-07-17T06:36:01.3089960Z [3085/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi8cxp4x4_1x4_neon_dotprod.c.o 2025-07-17T06:36:01.3195770Z [3086/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp4x4_16x4x32_neon_dotprod.c.o 2025-07-17T06:36:01.3211390Z [3087/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1x8_qsi8cxp4x8_1x4_neon_dotprod.c.o 2025-07-17T06:36:01.3367190Z [3088/5148] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p4x8_16x4x32_neon_i8mm_asm.S.o 2025-07-17T06:36:01.3476010Z [3089/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x4_qsi4c32p4x4_1x4_neon_dotprod.c.o 2025-07-17T06:36:01.3580120Z [3090/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x8_qsi4c32p4x8_1x4x32_neon_dotprod.c.o 2025-07-17T06:36:01.3675420Z [3091/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p4x8_16x4x32_neon_i8mm.c.o 2025-07-17T06:36:01.3722440Z [3092/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp4x4_qsi8cxp4x4_16x4_neon_dotprod.c.o 2025-07-17T06:36:01.3807640Z [3093/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p4x4_qsi4c32p4x4_16x4_neon_dotprod.c.o 2025-07-17T06:36:01.4002070Z [3094/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p4x8_8x4x32_neon_i8mm.c.o 2025-07-17T06:36:01.4184190Z [3095/5148] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p8x8_4x8_neon_i8mm_asm.S.o 2025-07-17T06:36:01.4185320Z [3096/5148] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p4x8_8x4x32_neon_i8mm_asm.S.o 2025-07-17T06:36:01.4202920Z [3097/5148] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p8x8_4x8x32_neon_i8mm_asm.S.o 2025-07-17T06:36:01.4405520Z [3098/5148] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qai4c32p4x8_8x4_neon_i8mm_asm.S.o 2025-07-17T06:36:01.4732060Z [3099/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p8x8_4x8_neon_i8mm.c.o 2025-07-17T06:36:01.4932810Z [3100/5148] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p8x8_4x8x32_neon_i8mm.c.o 2025-07-17T06:36:01.5232710Z [3101/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x16-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-07-17T06:36:01.5284030Z [3102/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x8-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-07-17T06:36:01.5538950Z [3103/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x16-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-07-17T06:36:01.5541280Z [3104/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-6x8-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-07-17T06:36:01.5624130Z [3105/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x16-minmax-fp32-neon-mlal-lane.c.o 2025-07-17T06:36:01.5719960Z [3106/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x8-minmax-fp32-neon-mlal-lane.c.o 2025-07-17T06:36:01.5875350Z [3107/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-6x8-minmax-fp32-neon-mlal-lane.c.o 2025-07-17T06:36:01.6090970Z [3108/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-6x16-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-07-17T06:36:01.6144990Z [3109/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x16-minmax-fp32-neon-mlal-lane.c.o 2025-07-17T06:36:01.6380520Z [3110/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-neon-u16.c.o 2025-07-17T06:36:01.6442050Z [3111/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-6x16-minmax-fp32-neon-mlal-lane.c.o 2025-07-17T06:36:01.6627180Z [3112/5148] Linking C static library lib/libkleidiai.a 2025-07-17T06:36:01.6962130Z [3113/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-neon-u64-acc2.c.o 2025-07-17T06:36:01.6978070Z [3114/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rdsum/gen/qs8-rdsum-7p7x-minmax-fp32-neon-c16.c.o 2025-07-17T06:36:01.7076080Z [3115/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-neon-u8.c.o 2025-07-17T06:36:01.7193030Z [3116/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rdsum/gen/qs8-rdsum-7p7x-minmax-fp32-neon-c64.c.o 2025-07-17T06:36:01.7347920Z [3117/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld64-u8.c.o 2025-07-17T06:36:01.7366140Z [3118/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-neon-u64-acc4.c.o 2025-07-17T06:36:01.7677120Z [3119/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld128-u16.c.o 2025-07-17T06:36:01.7699300Z [3120/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld64-u24.c.o 2025-07-17T06:36:01.7931220Z [3121/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld128-u32.c.o 2025-07-17T06:36:01.7933130Z [3122/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld64-u8.c.o 2025-07-17T06:36:01.8261800Z [3123/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld64-u24.c.o 2025-07-17T06:36:01.8324400Z [3124/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld128-u16.c.o 2025-07-17T06:36:01.8497060Z [3125/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-neon-u16.c.o 2025-07-17T06:36:01.8517410Z [3126/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-neon-u16.c.o 2025-07-17T06:36:01.8705860Z [3127/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld128-u32.c.o 2025-07-17T06:36:01.8711090Z [3128/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-neon-u8.c.o 2025-07-17T06:36:01.9201100Z [3129/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-17T06:36:01.9211780Z [3130/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neon-ld64-u8.c.o 2025-07-17T06:36:01.9260050Z [3131/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neon-ld64-u16.c.o 2025-07-17T06:36:01.9498670Z [3132/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-rndnu-neon-ld128-u16.c.o 2025-07-17T06:36:01.9514730Z [3133/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-rndnu-neon-ld64-u8.c.o 2025-07-17T06:36:01.9578110Z [3134/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neon-ld128-u16.c.o 2025-07-17T06:36:01.9855630Z [3135/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neon-ld64-u16.c.o 2025-07-17T06:36:02.0157360Z [3136/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l8c8s8r-minmax-rndnu-neon-mul8.c.o 2025-07-17T06:36:02.0313760Z [3137/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neon-ld64-u8.c.o 2025-07-17T06:36:02.0500150Z [3138/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neon-ld128-u16.c.o 2025-07-17T06:36:02.0520660Z [3139/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-rndnu-neon-ld64-u8.c.o 2025-07-17T06:36:02.0696780Z [3140/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-rndnu-neon-ld128-u16.c.o 2025-07-17T06:36:02.0754580Z [3141/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l8c8s8r-minmax-rndnu-neon-mul16.c.o 2025-07-17T06:36:02.0770940Z [3142/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l16c8s8r-minmax-rndnu-neon-mul8.c.o 2025-07-17T06:36:02.0962420Z [3143/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-17T06:36:02.1017860Z [3144/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l16c8s8r-minmax-rndnu-neon-mul16.c.o 2025-07-17T06:36:02.1234780Z [3145/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-17T06:36:02.1482590Z [3146/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l32c8s8r-minmax-rndnu-neon-mul8.c.o 2025-07-17T06:36:02.1812980Z [3147/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l8c8s8r-minmax-rndnu-neon-mul8.c.o 2025-07-17T06:36:02.1844770Z [3148/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l32c8s8r-minmax-rndnu-neon-mul16.c.o 2025-07-17T06:36:02.2141750Z [3149/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-17T06:36:02.2170950Z [3150/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l8c8s8r-minmax-rndnu-neon-mul16.c.o 2025-07-17T06:36:02.2276950Z [3151/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l16c8s8r-minmax-rndnu-neon-mul8.c.o 2025-07-17T06:36:02.2379440Z [3152/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l16c8s8r-minmax-rndnu-neon-mul16.c.o 2025-07-17T06:36:02.2396650Z [3153/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-17T06:36:02.2632230Z [3154/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-17T06:36:02.2834420Z [3155/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l32c8s8r-minmax-rndnu-neon-mul8.c.o 2025-07-17T06:36:02.2890110Z [3156/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l32c8s8r-minmax-rndnu-neon-mul16.c.o 2025-07-17T06:36:02.3163090Z [3157/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-17T06:36:02.3358090Z [3158/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l8c8s8r-minmax-rndnu-neon-mul8.c.o 2025-07-17T06:36:02.3465100Z [3159/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l8c8s8r-minmax-rndnu-neon-mul16.c.o 2025-07-17T06:36:02.3535000Z [3160/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-17T06:36:02.3786920Z [3161/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-17T06:36:02.3969610Z [3162/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l16c8s8r-minmax-rndnu-neon-mul16.c.o 2025-07-17T06:36:02.4079050Z [3163/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l16c8s8r-minmax-rndnu-neon-mul8.c.o 2025-07-17T06:36:02.4240620Z [3164/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l32c8s8r-minmax-rndnu-neon-mul16.c.o 2025-07-17T06:36:02.4282590Z [3165/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-neon-mul16.c.o 2025-07-17T06:36:02.4417930Z [3166/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l32c8s8r-minmax-rndnu-neon-mul8.c.o 2025-07-17T06:36:02.4668290Z [3167/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-rndnu-neon-mul8.c.o 2025-07-17T06:36:02.4883460Z [3168/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-rndnu-neon-mul16.c.o 2025-07-17T06:36:02.5025090Z [3169/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-neon-mul16.c.o 2025-07-17T06:36:02.5055730Z [3170/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p32c-minmax-fp32-neon-mul16.c.o 2025-07-17T06:36:02.5061990Z [3171/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-rndnu-neon-mul16.c.o 2025-07-17T06:36:02.5437750Z [3172/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p32c-minmax-rndnu-neon-mul16.c.o 2025-07-17T06:36:02.5469950Z [3173/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p32c-minmax-rndnu-neon-mul8.c.o 2025-07-17T06:36:02.5722000Z [3174/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-rndnu-neon-mul16.c.o 2025-07-17T06:36:02.5749410Z [3175/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-neon-mul16.c.o 2025-07-17T06:36:02.5824460Z [3176/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-neon-mul16.c.o 2025-07-17T06:36:02.5996140Z [3177/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-rndnu-neon-mul8.c.o 2025-07-17T06:36:02.6409620Z [3178/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-rndnu-neon-mul16.c.o 2025-07-17T06:36:02.6525090Z [3179/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p32c-minmax-rndnu-neon-mul16.c.o 2025-07-17T06:36:02.6591100Z [3180/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p32c-minmax-fp32-neon-mul16.c.o 2025-07-17T06:36:02.6676520Z [3181/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p32c-minmax-rndnu-neon-mul8.c.o 2025-07-17T06:36:02.6805050Z [3182/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-neon-u8.c.o 2025-07-17T06:36:02.6842070Z [3183/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x8-minmax-fp32-neon-mlal-lane.c.o 2025-07-17T06:36:02.6985950Z [3184/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-neon-u16.c.o 2025-07-17T06:36:02.7169080Z [3185/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x16-minmax-fp32-neon-mlal-lane.c.o 2025-07-17T06:36:02.7390700Z [3186/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-neon-u24.c.o 2025-07-17T06:36:02.7443390Z [3187/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x8-minmax-rndnu-neon-mlal-lane.c.o 2025-07-17T06:36:02.8007490Z [3188/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x16-minmax-rndnu-neon-mlal-lane.c.o 2025-07-17T06:36:02.8134460Z [3189/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x16-minmax-rndnu-neon-mlal-lane.c.o 2025-07-17T06:36:02.8225330Z [3190/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x8-minmax-rndnu-neon-mlal-lane.c.o 2025-07-17T06:36:02.8243530Z [3191/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x8-minmax-fp32-neon-mlal-lane.c.o 2025-07-17T06:36:02.8280050Z [3192/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-6x8-minmax-rndnu-neon-mlal-lane.c.o 2025-07-17T06:36:02.8626400Z [3193/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x16-minmax-fp32-neon-mlal-lane.c.o 2025-07-17T06:36:02.8630130Z [3194/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-6x16-minmax-rndnu-neon-mlal-lane.c.o 2025-07-17T06:36:02.8903860Z [3195/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x16-minmax-fp32-neon-mlal-lane.c.o 2025-07-17T06:36:02.9017360Z [3196/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x8-minmax-fp32-neon-mlal-lane.c.o 2025-07-17T06:36:02.9081060Z [3197/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x8-minmax-rndnu-neon-mlal-lane.c.o 2025-07-17T06:36:02.9368860Z [3198/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x16-minmax-rndnu-neon-mlal-lane.c.o 2025-07-17T06:36:02.9486420Z [3199/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x16-minmax-rndnu-neon-mlal-lane.c.o 2025-07-17T06:36:02.9662520Z [3200/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x8-minmax-rndnu-neon-mlal-lane.c.o 2025-07-17T06:36:02.9766550Z [3201/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x8-minmax-fp32-neon-mlal-lane.c.o 2025-07-17T06:36:02.9828410Z [3202/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x16-minmax-fp32-neon-mlal-lane.c.o 2025-07-17T06:36:02.9999380Z [3203/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-6x16-minmax-rndnu-neon-mlal-lane.c.o 2025-07-17T06:36:03.0048360Z [3204/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-6x8-minmax-rndnu-neon-mlal-lane.c.o 2025-07-17T06:36:03.0267750Z [3205/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-rdsum/gen/qu8-rdsum-7p7x-neon-u64.c.o 2025-07-17T06:36:03.0498150Z [3206/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-rsum/gen/qu8-rsum-neon-u16.c.o 2025-07-17T06:36:03.0521180Z [3207/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-neon-u8.c.o 2025-07-17T06:36:03.0592710Z [3208/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-rsum/gen/qu8-rsum-neon-u64-acc2.c.o 2025-07-17T06:36:03.0847940Z [3209/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-rsum/gen/qu8-rsum-neon-u64-acc4.c.o 2025-07-17T06:36:03.1082230Z [3210/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-neon-ld128-u16.c.o 2025-07-17T06:36:03.1165930Z [3211/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-neon-ld128-u16.c.o 2025-07-17T06:36:03.1319830Z [3212/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-neon-ld64-u8.c.o 2025-07-17T06:36:03.1321790Z [3213/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-neon-u16.c.o 2025-07-17T06:36:03.1534650Z [3214/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-neon-ld64-u8.c.o 2025-07-17T06:36:03.1779940Z [3215/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-multi-dec-zip-neon.c.o 2025-07-17T06:36:03.1783540Z [3216/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-neon-u8.c.o 2025-07-17T06:36:03.1968090Z [3217/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neon-ld64-u8.c.o 2025-07-17T06:36:03.2012420Z [3218/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neon-ld64-u16.c.o 2025-07-17T06:36:03.2165320Z [3219/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-neon-u16.c.o 2025-07-17T06:36:03.2549770Z [3220/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-rndnu-neon-ld64-u8.c.o 2025-07-17T06:36:03.2704600Z [3221/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neon-ld64-u8.c.o 2025-07-17T06:36:03.2755110Z [3222/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neon-ld128-u16.c.o 2025-07-17T06:36:03.2921870Z [3223/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-rndnu-neon-ld128-u16.c.o 2025-07-17T06:36:03.3028490Z [3224/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neon-ld128-u16.c.o 2025-07-17T06:36:03.3074360Z [3225/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-rndnu-neon-ld64-u8.c.o 2025-07-17T06:36:03.3078790Z [3226/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-rndnu-neon-ld128-u16.c.o 2025-07-17T06:36:03.3144270Z [3227/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-maxpool/s8-maxpool-2p2x-minmax-neon-c16.c.o 2025-07-17T06:36:03.3247090Z [3228/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neon-ld64-u16.c.o 2025-07-17T06:36:03.3353230Z [3229/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-multi-mov-zip-neon.c.o 2025-07-17T06:36:03.3968480Z [3230/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-reuse-dec-zip-neon.c.o 2025-07-17T06:36:03.4021350Z [3231/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-maxpool/s8-maxpool-4p3x-minmax-neon-c16.c.o 2025-07-17T06:36:03.4134180Z [3232/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-multi-switch-zip-neon.c.o 2025-07-17T06:36:03.4296470Z [3233/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-reuse-multi-zip-neon.c.o 2025-07-17T06:36:03.4311120Z [3234/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-reuse-mov-zip-neon.c.o 2025-07-17T06:36:03.4437150Z [3235/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-16x16-reuse-mov-zip-neon.c.o 2025-07-17T06:36:03.4486900Z [3236/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-reuse-switch-zip-neon.c.o 2025-07-17T06:36:03.4671000Z [3237/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x8-gemm-goi-neon-ld4lane-u4-prfm.c.o 2025-07-17T06:36:03.4704790Z [3238/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x8-gemm-goi-neon-ld4lane-u12-prfm.c.o 2025-07-17T06:36:03.4708160Z [3239/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-16x16-reuse-switch-zip-neon.c.o 2025-07-17T06:36:03.5276740Z [3240/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x8-gemm-goi-neon-ld4lane-u8.c.o 2025-07-17T06:36:03.5510720Z [3241/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x8-gemm-goi-neon-ld4lane-u4.c.o 2025-07-17T06:36:03.5548920Z [3242/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x8-gemm-goi-neon-ld4lane-u12.c.o 2025-07-17T06:36:03.5678060Z [3243/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x16-gemm-goi-neon-ld4lane-u4-prfm.c.o 2025-07-17T06:36:03.5687350Z [3244/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x8-gemm-goi-neon-ld4lane-u16-prfm.c.o 2025-07-17T06:36:03.5809960Z [3245/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x16-gemm-goi-neon-ld4lane-u12-prfm.c.o 2025-07-17T06:36:03.6083130Z [3246/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x16-gemm-goi-neon-ld4lane-u4.c.o 2025-07-17T06:36:03.6170250Z [3247/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x8-gemm-goi-neon-ld4lane-u16.c.o 2025-07-17T06:36:03.6271970Z [3248/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x16-gemm-goi-neon-ld4lane-u12.c.o 2025-07-17T06:36:03.6387670Z [3249/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x16-gemm-goi-neon-ld4lane-u8.c.o 2025-07-17T06:36:03.6686040Z [3250/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x16-gemm-goi-neon-ld4lane-u16.c.o 2025-07-17T06:36:03.6752320Z [3251/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x16-gemm-goi-neon-ld4lane-u16-prfm.c.o 2025-07-17T06:36:03.6816900Z [3252/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-multi-dec-zip-neon.c.o 2025-07-17T06:36:03.6828170Z [3253/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-multi-mov-zip-neon.c.o 2025-07-17T06:36:03.6927090Z [3254/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-multi-switch-zip-neon.c.o 2025-07-17T06:36:03.7037770Z [3255/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-multi-multi-zip-neon.c.o 2025-07-17T06:36:03.7264560Z [3256/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-reuse-mov-zip-neon.c.o 2025-07-17T06:36:03.7656250Z [3257/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-reuse-switch-zip-neon.c.o 2025-07-17T06:36:03.7739880Z [3258/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-reuse-multi-zip-neon.c.o 2025-07-17T06:36:03.7879430Z [3259/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-multi-dec-zip-neon.c.o 2025-07-17T06:36:03.7944910Z [3260/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-multi-mov-zip-neon.c.o 2025-07-17T06:36:03.8058570Z [3261/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-reuse-dec-zip-neon.c.o 2025-07-17T06:36:03.8198680Z [3262/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-mov-zip-neon.c.o 2025-07-17T06:36:03.8201260Z [3263/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-switch-zip-neon.c.o 2025-07-17T06:36:03.8358220Z [3264/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-multi-zip-neon.c.o 2025-07-17T06:36:03.8479310Z [3265/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-multi-switch-zip-neon.c.o 2025-07-17T06:36:03.8981070Z [3266/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x8s4-gemm-goi-neon-ld4lane-u4.c.o 2025-07-17T06:36:03.9006910Z [3267/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-gio-neon-u2.c.o 2025-07-17T06:36:03.9056400Z [3268/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x8-gemm-goi-neon-ld4lane-u8-prfm.c.o 2025-07-17T06:36:03.9250120Z [3269/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x8s4-gemm-goi-neon-ld4lane-u8-prfm.c.o 2025-07-17T06:36:03.9296870Z [3270/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x2-gemm-goi-neon-ld2lane-u2.c.o 2025-07-17T06:36:03.9450330Z [3271/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x8-gemm-goi-neon-ld4lane-u8.c.o 2025-07-17T06:36:03.9487530Z [3272/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x8s4-gemm-goi-neon-ld4lane-u8.c.o 2025-07-17T06:36:03.9524160Z [3273/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x12-gemm-goi-neon-ld4lane-u4-prfm.c.o 2025-07-17T06:36:03.9728570Z [3274/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x8-gemm-goi-neon-ld4lane-u4.c.o 2025-07-17T06:36:03.9748650Z [3275/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x12-gemm-goi-neon-ld4lane-u8-prfm.c.o 2025-07-17T06:36:04.0161650Z [3276/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr2fma-u8.c.o 2025-07-17T06:36:04.0250250Z [3277/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x12-gemm-goi-neon-ld4lane-u4.c.o 2025-07-17T06:36:04.0251190Z [3278/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x12-gemm-goi-neon-ld4lane-u8.c.o 2025-07-17T06:36:04.0598870Z [3279/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x16-gemm-goi-neon-ld4lane-u4-prfm.c.o 2025-07-17T06:36:04.0837720Z [3280/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-4x-neon-st4-u4-prfm.c.o 2025-07-17T06:36:04.0847380Z [3281/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-4x-neon-st4-u4.c.o 2025-07-17T06:36:04.0857090Z [3282/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x16-gemm-goi-neon-ld4lane-u4.c.o 2025-07-17T06:36:04.0900860Z [3283/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x16-gemm-goi-neon-ld4lane-u8.c.o 2025-07-17T06:36:04.1029380Z [3284/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x16-gemm-goi-neon-ld4lane-u8-prfm.c.o 2025-07-17T06:36:04.1165120Z [3285/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-4x-neon-st4-u8-prfm.c.o 2025-07-17T06:36:04.1558210Z [3286/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-multi-mov-zip-neon.c.o 2025-07-17T06:36:04.1580020Z [3287/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-4x-neon-st4-u8.c.o 2025-07-17T06:36:04.1734080Z [3288/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-8x-neon-st4-u4-prfm.c.o 2025-07-17T06:36:04.1742990Z [3289/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-8x-neon-st4-u4.c.o 2025-07-17T06:36:04.2082000Z [3290/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-8x-neon-st4-u8.c.o 2025-07-17T06:36:04.2238850Z [3291/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-multi-dec-zip-neon.c.o 2025-07-17T06:36:04.2398270Z [3292/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-8x-neon-st4-u8-prfm.c.o 2025-07-17T06:36:04.2466790Z [3293/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-multi-multi-zip-neon.c.o 2025-07-17T06:36:04.2491000Z [3294/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-multi-switch-zip-neon.c.o 2025-07-17T06:36:04.2524410Z [3295/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-reuse-dec-zip-neon.c.o 2025-07-17T06:36:04.2788820Z [3296/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-reuse-mov-zip-neon.c.o 2025-07-17T06:36:04.3157690Z [3297/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-reuse-multi-zip-neon.c.o 2025-07-17T06:36:04.3250480Z [3298/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-multi-mov-zip-neon.c.o 2025-07-17T06:36:04.3357830Z [3299/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-reuse-switch-zip-neon.c.o 2025-07-17T06:36:04.3403670Z [3300/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-multi-dec-zip-neon.c.o 2025-07-17T06:36:04.3544940Z [3301/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-multi-multi-zip-neon.c.o 2025-07-17T06:36:04.3578240Z [3302/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-reuse-mov-zip-neon.c.o 2025-07-17T06:36:04.3696590Z [3303/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-multi-switch-zip-neon.c.o 2025-07-17T06:36:04.3750240Z [3304/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-reuse-switch-zip-neon.c.o 2025-07-17T06:36:04.3799440Z [3305/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-reuse-multi-zip-neon.c.o 2025-07-17T06:36:04.4319290Z [3306/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-mov-zip-neon.c.o 2025-07-17T06:36:04.4425580Z [3307/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-reuse-multi-zip-neon.c.o 2025-07-17T06:36:04.4524390Z [3308/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-multi-zip-neon.c.o 2025-07-17T06:36:04.4775710Z [3309/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-reuse-mov-zip-neon.c.o 2025-07-17T06:36:04.4877600Z [3310/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-reuse-switch-zip-neon.c.o 2025-07-17T06:36:04.4883120Z [3311/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-switch-zip-neon.c.o 2025-07-17T06:36:04.4945520Z [3312/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l4c4s4r-minmax-neonfma-acc2.c.o 2025-07-17T06:36:04.5047380Z [3313/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neonfp16-u8.c.o 2025-07-17T06:36:04.5232610Z [3314/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-1x4c8-minmax-neonfma-shland.c.o 2025-07-17T06:36:04.5818770Z [3315/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neonfp16-u8.c.o 2025-07-17T06:36:04.5878940Z [3316/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-2x4c8-minmax-neonfma-zip.c.o 2025-07-17T06:36:04.5895930Z [3317/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-2x4c8-minmax-neonfma-shland.c.o 2025-07-17T06:36:04.5999120Z [3318/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-1x4c8-minmax-neonfma-zip.c.o 2025-07-17T06:36:04.6112890Z [3319/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-3x4c8-minmax-neonfma-shland.c.o 2025-07-17T06:36:04.6426800Z [3320/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-4x4c8-minmax-neonfma-zip.c.o 2025-07-17T06:36:04.6482550Z [3321/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-4x4c8-minmax-neonfma-shland.c.o 2025-07-17T06:36:04.6757230Z [3322/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-3x4c8-minmax-neonfma-zip.c.o 2025-07-17T06:36:04.6845480Z [3323/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-5x4c8-minmax-neonfma-zip.c.o 2025-07-17T06:36:04.6929110Z [3324/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-5x4c8-minmax-neonfma-shland.c.o 2025-07-17T06:36:04.7032530Z [3325/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-neonfma-acc2.c.o 2025-07-17T06:36:04.7206240Z [3326/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p4c-minmax-neonfma-acc2.c.o 2025-07-17T06:36:04.7307320Z [3327/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-neonfma.c.o 2025-07-17T06:36:04.7327810Z [3328/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p4c-minmax-neonfma.c.o 2025-07-17T06:36:04.7401380Z [3329/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-neonfma-acc2.c.o 2025-07-17T06:36:04.7954270Z [3330/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p4c-minmax-neonfma.c.o 2025-07-17T06:36:04.7965690Z [3331/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p4c-minmax-neonfma-acc2.c.o 2025-07-17T06:36:04.8032630Z [3332/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-neonfma-acc2.c.o 2025-07-17T06:36:04.8298070Z [3333/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l4c4s4r-minmax-neonfma.c.o 2025-07-17T06:36:04.8337270Z [3334/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-neonfma-acc2.c.o 2025-07-17T06:36:04.8755340Z [3335/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l8c4s4r-minmax-neonfma-acc2.c.o 2025-07-17T06:36:04.8794610Z [3336/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l4c4s4r-minmax-neonfma.c.o 2025-07-17T06:36:04.8802790Z [3337/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l4c4s4r-minmax-neonfma-acc2.c.o 2025-07-17T06:36:04.9114640Z [3338/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l8c4s4r-minmax-neonfma.c.o 2025-07-17T06:36:04.9170020Z [3339/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-neonfma.c.o 2025-07-17T06:36:04.9314610Z [3340/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l8c4s4r-minmax-neonfma.c.o 2025-07-17T06:36:04.9321000Z [3341/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l4c4s4r-minmax-neonfma-acc2.c.o 2025-07-17T06:36:04.9542290Z [3342/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l4c4s4r-minmax-neonfma.c.o 2025-07-17T06:36:04.9716080Z [3343/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l8c4s4r-minmax-neonfma-acc2.c.o 2025-07-17T06:36:04.9752830Z [3344/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l8c4s4r-minmax-neonfma.c.o 2025-07-17T06:36:05.0264080Z [3345/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p4c-minmax-neonfma.c.o 2025-07-17T06:36:05.0271360Z [3346/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-neonfma-acc2.c.o 2025-07-17T06:36:05.0331950Z [3347/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p4c-minmax-neonfma-acc2.c.o 2025-07-17T06:36:05.0516840Z [3348/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr1recps1fma-u16.c.o 2025-07-17T06:36:05.0650490Z [3349/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-neonfma.c.o 2025-07-17T06:36:05.0654170Z [3350/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p4c-minmax-neonfma-acc2.c.o 2025-07-17T06:36:05.0831880Z [3351/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr2fma-u4.c.o 2025-07-17T06:36:05.1068620Z [3352/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-neonfma-acc2.c.o 2025-07-17T06:36:05.1216170Z [3353/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-neonfma.c.o 2025-07-17T06:36:05.1414890Z [3354/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p4c-minmax-neonfma.c.o 2025-07-17T06:36:05.1703350Z [3355/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-neonfma.c.o 2025-07-17T06:36:05.1719230Z [3356/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-neonfma-acc2.c.o 2025-07-17T06:36:05.1891400Z [3357/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-neonfma-dup-ld64.c.o 2025-07-17T06:36:05.2063390Z [3358/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neonfma-dup-ld64.c.o 2025-07-17T06:36:05.2065750Z [3359/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neonfma-dup-ld128.c.o 2025-07-17T06:36:05.2202350Z [3360/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-neonfma-dup-ld64.c.o 2025-07-17T06:36:05.2252870Z [3361/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neonfma-dup-ld64.c.o 2025-07-17T06:36:05.2872530Z [3362/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neonfma-dup-ld128.c.o 2025-07-17T06:36:05.2963240Z [3363/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neonfma-dup-ld64.c.o 2025-07-17T06:36:05.2971770Z [3364/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-8x8s4-minmax-neonfma.c.o 2025-07-17T06:36:05.3164730Z [3365/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neonfma-dup-ld64.c.o 2025-07-17T06:36:05.3167050Z [3366/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8s4-minmax-neonfma.c.o 2025-07-17T06:36:05.3485820Z [3367/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neonfma-dup-ld128.c.o 2025-07-17T06:36:05.3648650Z [3368/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8s4-minmax-neonfma.c.o 2025-07-17T06:36:05.3748490Z [3369/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8s4-minmax-neonfma.c.o 2025-07-17T06:36:05.3761860Z [3370/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-neonfma-dup-ld64.c.o 2025-07-17T06:36:05.3767240Z [3371/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neonfma-dup-ld128.c.o 2025-07-17T06:36:05.4277470Z [3372/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neonfma-p4.c.o 2025-07-17T06:36:05.4388330Z [3373/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neonfma-p16.c.o 2025-07-17T06:36:05.4526200Z [3374/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-8x8s4-minmax-neonfma.c.o 2025-07-17T06:36:05.4662430Z [3375/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-neonfma-dup-ld64.c.o 2025-07-17T06:36:05.4797090Z [3376/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-neonfma-c4.c.o 2025-07-17T06:36:05.4956920Z [3377/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neonfma-dup-ld64.c.o 2025-07-17T06:36:05.5120070Z [3378/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neonfma-dup-ld128.c.o 2025-07-17T06:36:05.5134310Z [3379/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x8-minmax-neonfma-dup-ld64.c.o 2025-07-17T06:36:05.5334030Z [3380/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neonfma-dup-ld64.c.o 2025-07-17T06:36:05.5518340Z [3381/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-8x8s4-minmax-neonfma.c.o 2025-07-17T06:36:05.5662050Z [3382/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neonfma-dup-ld128.c.o 2025-07-17T06:36:05.5805090Z [3383/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-6x8-minmax-neonfma-dup-ld64.c.o 2025-07-17T06:36:05.6050210Z [3384/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x8-minmax-neonfma-dup-ld64.c.o 2025-07-17T06:36:05.6274040Z [3385/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-6x8-minmax-neonfma-dup-ld64.c.o 2025-07-17T06:36:05.6415430Z [3386/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-neonfma-dup-ld64.c.o 2025-07-17T06:36:05.6609580Z [3387/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8s4-minmax-neonfma.c.o 2025-07-17T06:36:05.6623770Z [3388/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x8s4-minmax-neonfma.c.o 2025-07-17T06:36:05.6629470Z [3389/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-lut64-p2-u8-acc2.c.o 2025-07-17T06:36:05.6848350Z [3390/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-6x8s4-minmax-neonfma.c.o 2025-07-17T06:36:05.6850670Z [3391/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-lut64-p2-u16-acc4.c.o 2025-07-17T06:36:05.7088450Z [3392/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-p5-u8-acc2.c.o 2025-07-17T06:36:05.7290480Z [3393/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-lut64-p2-u4.c.o 2025-07-17T06:36:05.7302450Z [3394/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-p5-u4.c.o 2025-07-17T06:36:05.7525150Z [3395/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-p5-u16-acc2.c.o 2025-07-17T06:36:05.7829170Z [3396/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neonfma-pipelined.c.o 2025-07-17T06:36:05.7836720Z [3397/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neonfma.c.o 2025-07-17T06:36:05.7902320Z [3398/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neonfma-x2.c.o 2025-07-17T06:36:05.8102220Z [3399/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neonfma-pipelined.c.o 2025-07-17T06:36:05.8141570Z [3400/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-p5-u16-acc4.c.o 2025-07-17T06:36:05.8171610Z [3401/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neonfma-x2.c.o 2025-07-17T06:36:05.8424680Z [3402/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-12x1-minmax-neonfma.c.o 2025-07-17T06:36:05.8671650Z [3403/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neonfma-pipelined.c.o 2025-07-17T06:36:05.8760550Z [3404/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neonfma.c.o 2025-07-17T06:36:05.8883940Z [3405/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neonfma-x2.c.o 2025-07-17T06:36:05.9090920Z [3406/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neonfma-x2.c.o 2025-07-17T06:36:05.9223060Z [3407/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neonfma.c.o 2025-07-17T06:36:05.9387660Z [3408/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-lut16-p3-u4.c.o 2025-07-17T06:36:05.9495510Z [3409/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neonfma.c.o 2025-07-17T06:36:05.9658010Z [3410/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-lut16-p3-u8.c.o 2025-07-17T06:36:05.9684600Z [3411/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-lut16-p3-u12.c.o 2025-07-17T06:36:05.9785470Z [3412/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c8-minmax-neonfma-2x.c.o 2025-07-17T06:36:06.0116140Z [3413/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-p6-u12.c.o 2025-07-17T06:36:06.0226870Z [3414/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr1recps1fma-u8.c.o 2025-07-17T06:36:06.0610240Z [3415/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr2fma-u12.c.o 2025-07-17T06:36:06.0617530Z [3416/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-p6-u4.c.o 2025-07-17T06:36:06.0632320Z [3417/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-p6-u16.c.o 2025-07-17T06:36:06.0747380Z [3418/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr1recps1fma-u4.c.o 2025-07-17T06:36:06.0771840Z [3419/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr2fma-u16.c.o 2025-07-17T06:36:06.0925080Z [3420/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr1recps1fma-u12.c.o 2025-07-17T06:36:06.0928220Z [3421/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr2recps-u4.c.o 2025-07-17T06:36:06.0953000Z [3422/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr2recps-u8.c.o 2025-07-17T06:36:06.1255690Z [3423/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr2recps-u12.c.o 2025-07-17T06:36:06.1713340Z [3424/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr1recps1fma-u4.c.o 2025-07-17T06:36:06.1996580Z [3425/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr1recps1fma-u8.c.o 2025-07-17T06:36:06.2010700Z [3426/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr1recps1fma-u12.c.o 2025-07-17T06:36:06.2143250Z [3427/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr2fma-u4.c.o 2025-07-17T06:36:06.2146310Z [3428/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr1recps1fma-u16.c.o 2025-07-17T06:36:06.2290200Z [3429/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr2fma-u16.c.o 2025-07-17T06:36:06.2308020Z [3430/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr2fma-u12.c.o 2025-07-17T06:36:06.2337700Z [3431/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr2fma-u8.c.o 2025-07-17T06:36:06.2548040Z [3432/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr2recps-u8.c.o 2025-07-17T06:36:06.2658380Z [3433/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr2recps-u4.c.o 2025-07-17T06:36:06.3168400Z [3434/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr2recps-u12.c.o 2025-07-17T06:36:06.3251170Z [3435/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr2recps-u16.c.o 2025-07-17T06:36:06.3439760Z [3436/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr1recps1fma-u8.c.o 2025-07-17T06:36:06.3443390Z [3437/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr1recps1fma-u4.c.o 2025-07-17T06:36:06.3616800Z [3438/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr1recps1fma-u16.c.o 2025-07-17T06:36:06.3627460Z [3439/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr1recps1fma-u12.c.o 2025-07-17T06:36:06.3641360Z [3440/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2fma-u4.c.o 2025-07-17T06:36:06.3789890Z [3441/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2fma-u8.c.o 2025-07-17T06:36:06.3838250Z [3442/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2fma-u16.c.o 2025-07-17T06:36:06.4077370Z [3443/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2fma-u12.c.o 2025-07-17T06:36:06.4744690Z [3444/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2recps-u12.c.o 2025-07-17T06:36:06.4754510Z [3445/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2recps-u4.c.o 2025-07-17T06:36:06.4876330Z [3446/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-neonv8-u4.c.o 2025-07-17T06:36:06.4883420Z [3447/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2recps-u8.c.o 2025-07-17T06:36:06.4980870Z [3448/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neonv8-u8.c.o 2025-07-17T06:36:06.4986710Z [3449/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2recps-u16.c.o 2025-07-17T06:36:06.4989830Z [3450/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neonv8-u8.c.o 2025-07-17T06:36:06.5056460Z [3451/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neonv8-u24.c.o 2025-07-17T06:36:06.5388430Z [3452/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neonv8-u16.c.o 2025-07-17T06:36:06.5685640Z [3453/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-17T06:36:06.6017460Z [3454/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-neonv8-u4.c.o 2025-07-17T06:36:06.6156800Z [3455/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neonv8-u16.c.o 2025-07-17T06:36:06.6195160Z [3456/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-neonv8-u4.c.o 2025-07-17T06:36:06.6219240Z [3457/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-neonv8-u4.c.o 2025-07-17T06:36:06.6376630Z [3458/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neonv8-u24.c.o 2025-07-17T06:36:06.6434170Z [3459/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-17T06:36:06.6446920Z [3460/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-17T06:36:06.6771010Z [3461/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-17T06:36:06.7257250Z [3462/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-17T06:36:06.7381210Z [3463/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-17T06:36:06.7581560Z [3464/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-neonv8-mul16.c.o 2025-07-17T06:36:06.7584430Z [3465/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-17T06:36:06.7587190Z [3466/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-neonv8-mul16.c.o 2025-07-17T06:36:06.7615550Z [3467/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-17T06:36:06.7806340Z [3468/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-neonv8-mul16.c.o 2025-07-17T06:36:06.7838520Z [3469/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-17T06:36:06.7839380Z [3470/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p32c-minmax-fp32-neonv8-mul16.c.o 2025-07-17T06:36:06.8063660Z [3471/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-neonv8-mul16.c.o 2025-07-17T06:36:06.8907850Z [3472/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p8c-minmax-fp32-neonv8-mla8-ld64.c.o 2025-07-17T06:36:06.9011320Z [3473/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p32c-minmax-fp32-neonv8-mul16.c.o 2025-07-17T06:36:06.9076900Z [3474/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p16c-minmax-fp32-neonv8-mla8-ld64.c.o 2025-07-17T06:36:06.9229860Z [3475/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l16c8s8r-minmax-fp32-neonv8-mla8-ld64.c.o 2025-07-17T06:36:06.9237170Z [3476/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l16c8s8r-minmax-fp32-neonv8-mul8-ld128.c.o 2025-07-17T06:36:06.9239290Z [3477/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l8c8s8r-minmax-fp32-neonv8-mla8-ld64.c.o 2025-07-17T06:36:06.9287820Z [3478/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l16c8s8r-minmax-fp32-neonv8-mla8-ld128.c.o 2025-07-17T06:36:06.9456790Z [3479/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-17T06:36:06.9476490Z [3480/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l8c8s8r-minmax-fp32-neonv8-mul8-ld64.c.o 2025-07-17T06:36:06.9695480Z [3481/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l16c8s8r-minmax-fp32-neonv8-mul8-ld64.c.o 2025-07-17T06:36:07.0320470Z [3482/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-17T06:36:07.0518000Z [3483/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l8c8s8r-minmax-fp32-neonv8-mla8-ld64.c.o 2025-07-17T06:36:07.0522630Z [3484/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-17T06:36:07.0734940Z [3485/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-17T06:36:07.0851980Z [3486/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l16c8s8r-minmax-fp32-neonv8-mul8-ld128.c.o 2025-07-17T06:36:07.0958370Z [3487/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l8c8s8r-minmax-fp32-neonv8-mul8-ld64.c.o 2025-07-17T06:36:07.0960390Z [3488/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l16c8s8r-minmax-fp32-neonv8-mla8-ld128.c.o 2025-07-17T06:36:07.1122100Z [3489/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l16c8s8r-minmax-fp32-neonv8-mul8-ld64.c.o 2025-07-17T06:36:07.1361430Z [3490/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-17T06:36:07.1363640Z [3491/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l16c8s8r-minmax-fp32-neonv8-mla8-ld64.c.o 2025-07-17T06:36:07.1657960Z [3492/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l8c8s8r-minmax-fp32-neonv8-mla8-ld64.c.o 2025-07-17T06:36:07.1747370Z [3493/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-17T06:36:07.2042300Z [3494/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l8c8s8r-minmax-fp32-neonv8-mul8-ld64.c.o 2025-07-17T06:36:07.2255030Z [3495/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-17T06:36:07.2314070Z [3496/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l16c8s8r-minmax-fp32-neonv8-mla8-ld128.c.o 2025-07-17T06:36:07.2451930Z [3497/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l16c8s8r-minmax-fp32-neonv8-mul8-ld64.c.o 2025-07-17T06:36:07.2601210Z [3498/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-17T06:36:07.2644540Z [3499/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l16c8s8r-minmax-fp32-neonv8-mul8-ld128.c.o 2025-07-17T06:36:07.2662520Z [3500/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-17T06:36:07.2889730Z [3501/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l16c8s8r-minmax-fp32-neonv8-mla8-ld64.c.o 2025-07-17T06:36:07.3020770Z [3502/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p8c-minmax-fp32-neonv8-mul8-ld64.c.o 2025-07-17T06:36:07.3253150Z [3503/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p8c-minmax-fp32-neonv8-mla8-ld64.c.o 2025-07-17T06:36:07.3262680Z [3504/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p8c-minmax-fp32-neonv8-mul16.c.o 2025-07-17T06:36:07.3469610Z [3505/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p16c-minmax-fp32-neonv8-mul8-ld64.c.o 2025-07-17T06:36:07.3662180Z [3506/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p16c-minmax-fp32-neonv8-mul8-ld128.c.o 2025-07-17T06:36:07.3750950Z [3507/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p16c-minmax-fp32-neonv8-mla8-ld128.c.o 2025-07-17T06:36:07.4160110Z [3508/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p16c-minmax-fp32-neonv8-mul16.c.o 2025-07-17T06:36:07.4300950Z [3509/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p32c-minmax-fp32-neonv8-mul16.c.o 2025-07-17T06:36:07.4362440Z [3510/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p8c-minmax-fp32-neonv8-mul16.c.o 2025-07-17T06:36:07.4531980Z [3511/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p16c-minmax-fp32-neonv8-mla8-ld128.c.o 2025-07-17T06:36:07.4644510Z [3512/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p8c-minmax-fp32-neonv8-mul8-ld64.c.o 2025-07-17T06:36:07.4645880Z [3513/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p16c-minmax-fp32-neonv8-mul8-ld64.c.o 2025-07-17T06:36:07.5009890Z [3514/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p16c-minmax-fp32-neonv8-mul8-ld128.c.o 2025-07-17T06:36:07.5080100Z [3515/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p16c-minmax-fp32-neonv8-mul16.c.o 2025-07-17T06:36:07.5142370Z [3516/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p32c-minmax-fp32-neonv8-mul16.c.o 2025-07-17T06:36:07.5499060Z [3517/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-07-17T06:36:07.5720620Z [3518/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c2-minmax-fp32-neonv8-mlal-ld1r.c.o 2025-07-17T06:36:07.5794440Z [3519/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c2-minmax-fp32-neonv8-mlal-dup.c.o 2025-07-17T06:36:07.6000450Z [3520/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c4-minmax-fp32-neonv8-mlal-dup.c.o 2025-07-17T06:36:07.6015580Z [3521/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c2-minmax-fp32-neonv8-mlal-ld2r.c.o 2025-07-17T06:36:07.6018210Z [3522/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-17T06:36:07.6231660Z [3523/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c2-minmax-fp32-neonv8-mlal-ld4r.c.o 2025-07-17T06:36:07.6367290Z [3524/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c4-minmax-fp32-neonv8-mlal-ld1r.c.o 2025-07-17T06:36:07.6574650Z [3525/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c4-minmax-fp32-neonv8-mlal-ld2r.c.o 2025-07-17T06:36:07.6577010Z [3526/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c4s2-minmax-fp32-neonv8-mlal.c.o 2025-07-17T06:36:07.7130530Z [3527/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c8-minmax-fp32-neonv8-mlal.c.o 2025-07-17T06:36:07.7245350Z [3528/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c2-minmax-fp32-neonv8-mlal-ld1r.c.o 2025-07-17T06:36:07.7336720Z [3529/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-07-17T06:36:07.7511920Z [3530/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c2-minmax-fp32-neonv8-mlal-dup.c.o 2025-07-17T06:36:07.7593770Z [3531/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x16-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-07-17T06:36:07.7600870Z [3532/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-17T06:36:07.7893160Z [3533/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c2-minmax-fp32-neonv8-mlal-ld2r.c.o 2025-07-17T06:36:07.8282820Z [3534/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c2-minmax-fp32-neonv8-mlal-ld4r.c.o 2025-07-17T06:36:07.8352910Z [3535/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c4-minmax-fp32-neonv8-mlal-dup.c.o 2025-07-17T06:36:07.8398460Z [3536/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c4-minmax-fp32-neonv8-mlal-ld1r.c.o 2025-07-17T06:36:07.8593390Z [3537/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c4-minmax-fp32-neonv8-mlal-ld2r.c.o 2025-07-17T06:36:07.8659110Z [3538/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c4s2-minmax-fp32-neonv8-mlal.c.o 2025-07-17T06:36:07.8809720Z [3539/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x16-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-07-17T06:36:07.8861410Z [3540/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c8-minmax-fp32-neonv8-mlal.c.o 2025-07-17T06:36:07.9036450Z [3541/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x8-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-07-17T06:36:07.9194650Z [3542/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x16-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-17T06:36:07.9661340Z [3543/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x16-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-07-17T06:36:07.9810070Z [3544/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x8-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-17T06:36:07.9833000Z [3545/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x16-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-17T06:36:07.9894710Z [3546/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x8-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-17T06:36:08.0091280Z [3547/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x8-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-07-17T06:36:08.0094130Z [3548/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-07-17T06:36:08.0413780Z [3549/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-17T06:36:08.0682940Z [3550/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-6x16-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-07-17T06:36:08.0685220Z [3551/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-6x8-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-17T06:36:08.0884660Z [3552/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-6x8-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-07-17T06:36:08.1235900Z [3553/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c2-minmax-fp32-neonv8-mlal-ld1r.c.o 2025-07-17T06:36:08.1285160Z [3554/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-07-17T06:36:08.1503480Z [3555/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c2-minmax-fp32-neonv8-mlal-dup.c.o 2025-07-17T06:36:08.1505880Z [3556/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-17T06:36:08.1581820Z [3557/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c2-minmax-fp32-neonv8-mlal-ld2r.c.o 2025-07-17T06:36:08.1799260Z [3558/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-6x16-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-17T06:36:08.1821920Z [3559/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c2-minmax-fp32-neonv8-mlal-ld4r.c.o 2025-07-17T06:36:08.2171070Z [3560/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c4-minmax-fp32-neonv8-mlal-dup.c.o 2025-07-17T06:36:08.2181190Z [3561/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c4-minmax-fp32-neonv8-mlal-ld2r.c.o 2025-07-17T06:36:08.2519500Z [3562/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c4-minmax-fp32-neonv8-mlal-ld1r.c.o 2025-07-17T06:36:08.2739400Z [3563/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c8-minmax-fp32-neonv8-mlal.c.o 2025-07-17T06:36:08.2791450Z [3564/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x16-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-07-17T06:36:08.2952130Z [3565/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-07-17T06:36:08.2973220Z [3566/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-17T06:36:08.3196920Z [3567/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c2-minmax-fp32-neonv8-mlal-ld1r.c.o 2025-07-17T06:36:08.3217040Z [3568/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c4s2-minmax-fp32-neonv8-mlal.c.o 2025-07-17T06:36:08.3341190Z [3569/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c2-minmax-fp32-neonv8-mlal-dup.c.o 2025-07-17T06:36:08.3511760Z [3570/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c2-minmax-fp32-neonv8-mlal-ld2r.c.o 2025-07-17T06:36:08.3788900Z [3571/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c2-minmax-fp32-neonv8-mlal-ld4r.c.o 2025-07-17T06:36:08.3949790Z [3572/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c4-minmax-fp32-neonv8-mlal-dup.c.o 2025-07-17T06:36:08.4144560Z [3573/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c4-minmax-fp32-neonv8-mlal-ld1r.c.o 2025-07-17T06:36:08.4396980Z [3574/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c4s2-minmax-fp32-neonv8-mlal.c.o 2025-07-17T06:36:08.4411860Z [3575/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c4-minmax-fp32-neonv8-mlal-ld2r.c.o 2025-07-17T06:36:08.4481060Z [3576/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c8-minmax-fp32-neonv8-mlal.c.o 2025-07-17T06:36:08.4630620Z [3577/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x16-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-17T06:36:08.4885920Z [3578/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x8-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-07-17T06:36:08.5108300Z [3579/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x16-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-07-17T06:36:08.5211370Z [3580/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x16-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-17T06:36:08.5271260Z [3581/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x8-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-17T06:36:08.5389330Z [3582/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x8-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-07-17T06:36:08.5452650Z [3583/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x16-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-07-17T06:36:08.5895130Z [3584/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x8-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-17T06:36:08.5899780Z [3585/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x16-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-17T06:36:08.5958720Z [3586/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x16-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-07-17T06:36:08.5975810Z [3587/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-6x8-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-07-17T06:36:08.6360920Z [3588/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-6x8-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-17T06:36:08.6559570Z [3589/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-6x16-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-07-17T06:36:08.6696250Z [3590/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neonv8-ld64-u8.c.o 2025-07-17T06:36:08.6794370Z [3591/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-17T06:36:08.6897000Z [3592/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neonv8-ld64-u16.c.o 2025-07-17T06:36:08.7094820Z [3593/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-6x16-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-17T06:36:08.7289360Z [3594/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neonv8-ld64-u8.c.o 2025-07-17T06:36:08.7466470Z [3595/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-17T06:36:08.7477320Z [3596/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neonv8-ld64-u16.c.o 2025-07-17T06:36:08.7544510Z [3597/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neonv8-ld128-u16.c.o 2025-07-17T06:36:08.7673480Z [3598/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neonv8-ld128-u16.c.o 2025-07-17T06:36:08.8076120Z [3599/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-17T06:36:08.8102770Z [3600/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-17T06:36:08.8105310Z [3601/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-17T06:36:08.8171630Z [3602/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-17T06:36:08.8395160Z [3603/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-17T06:36:08.8828540Z [3604/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-17T06:36:08.8953430Z [3605/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-neonv8-mul16.c.o 2025-07-17T06:36:08.8969890Z [3606/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p32c-minmax-fp32-neonv8-mul16.c.o 2025-07-17T06:36:08.9195400Z [3607/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-17T06:36:08.9198340Z [3608/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-neonv8-mul16.c.o 2025-07-17T06:36:08.9501040Z [3609/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-neonv8-mul16.c.o 2025-07-17T06:36:08.9631430Z [3610/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p32c-minmax-fp32-neonv8-mul16.c.o 2025-07-17T06:36:08.9694070Z [3611/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-neonv8-mul16.c.o 2025-07-17T06:36:08.9721300Z [3612/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x16-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-17T06:36:08.9995180Z [3613/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x16-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-17T06:36:09.0257290Z [3614/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x16-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-17T06:36:09.0317760Z [3615/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x16-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-17T06:36:09.0360740Z [3616/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neonv8-ld64-u8.c.o 2025-07-17T06:36:09.0572400Z [3617/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neonv8-ld64-u16.c.o 2025-07-17T06:36:09.0722180Z [3618/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neonv8-ld128-u16.c.o 2025-07-17T06:36:09.0881810Z [3619/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x4-aarch64-neonfma-2x1.c.o 2025-07-17T06:36:09.0972130Z [3620/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neonv8-ld64-u8.c.o 2025-07-17T06:36:09.0978840Z [3621/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neonv8-ld64-u16.c.o 2025-07-17T06:36:09.0980990Z [3622/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neonv8-ld128-u16.c.o 2025-07-17T06:36:09.1352210Z [3623/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-aarch64-neon-u4.c.o 2025-07-17T06:36:09.1649170Z [3624/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-aarch64-neon-u4.c.o 2025-07-17T06:36:09.1689940Z [3625/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-aarch64-neon-u4.c.o 2025-07-17T06:36:09.1699740Z [3626/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-aarch64-neon-sqrt-u8.c.o 2025-07-17T06:36:09.1999660Z [3627/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-aarch64-neon-sqrt-u16.c.o 2025-07-17T06:36:09.2002790Z [3628/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-aarch64-neon-tbx128x4-u16.c.o 2025-07-17T06:36:09.2196970Z [3629/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-aarch64-neon-tbx128x4-u48.c.o 2025-07-17T06:36:09.2281420Z [3630/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-aarch64-neon-tbx128x4-u32.c.o 2025-07-17T06:36:09.2363110Z [3631/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x8-aarch64-neonfma-2x1.c.o 2025-07-17T06:36:09.2693740Z [3632/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x4-aarch64-neonfma-2x2.c.o 2025-07-17T06:36:09.2800520Z [3633/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x8-aarch64-neonfma-2x2.c.o 2025-07-17T06:36:09.3144010Z [3634/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x4-aarch64-neonfma-2x1.c.o 2025-07-17T06:36:09.3432850Z [3635/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-aarch64-neonfma-1x4-acc2.c.o 2025-07-17T06:36:09.3474700Z [3636/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x4-aarch64-neonfma-2x2.c.o 2025-07-17T06:36:09.3487080Z [3637/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x8-aarch64-neonfma-2x1.c.o 2025-07-17T06:36:09.3552630Z [3638/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-aarch64-neonfma-1x4-acc3.c.o 2025-07-17T06:36:09.3614930Z [3639/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x8-aarch64-neonfma-2x2.c.o 2025-07-17T06:36:09.3769730Z [3640/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-aarch64-neonfma-1x4.c.o 2025-07-17T06:36:09.4151040Z [3641/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-aarch64-neonfma-2x4.c.o 2025-07-17T06:36:09.4159770Z [3642/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-aarch64-neonfma-1x4-acc4.c.o 2025-07-17T06:36:09.4269100Z [3643/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-aarch64-neonfma-2x4-acc2.c.o 2025-07-17T06:36:09.4408280Z [3644/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-aarch64-neonfma-4x4.c.o 2025-07-17T06:36:09.4984400Z [3645/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-aarch64-neonfma-6x4.c.o 2025-07-17T06:36:09.4993200Z [3646/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-aarch64-neonfma-1x4-acc2.c.o 2025-07-17T06:36:09.5020910Z [3647/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-aarch64-neonfma-5x4.c.o 2025-07-17T06:36:09.5031100Z [3648/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-aarch64-neonfma-1x4-acc4.c.o 2025-07-17T06:36:09.5233280Z [3649/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-aarch64-neonfma-1x4.c.o 2025-07-17T06:36:09.5243830Z [3650/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-aarch64-neonfma-1x4-acc3.c.o 2025-07-17T06:36:09.5390540Z [3651/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-aarch64-neonfma-2x4.c.o 2025-07-17T06:36:09.5527560Z [3652/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-aarch64-neonfma-3x4.c.o 2025-07-17T06:36:09.5656490Z [3653/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-aarch64-neonfma-4x4.c.o 2025-07-17T06:36:09.5677430Z [3654/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-aarch64-neonfma-1x4-acc2.c.o 2025-07-17T06:36:09.6362600Z [3655/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-aarch64-neonfma-1x4-acc3.c.o 2025-07-17T06:36:09.6431590Z [3656/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-aarch64-neonfma-1x4-acc4.c.o 2025-07-17T06:36:09.6578690Z [3657/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-aarch64-neonfma-1x4.c.o 2025-07-17T06:36:09.6610600Z [3658/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-aarch64-neonfma-2x4-acc3.c.o 2025-07-17T06:36:09.6713740Z [3659/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-aarch64-neonfma-2x4-acc2.c.o 2025-07-17T06:36:09.6738260Z [3660/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-aarch64-neonfma-1x4-acc5.c.o 2025-07-17T06:36:09.6816490Z [3661/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-aarch64-neonfma-2x4.c.o 2025-07-17T06:36:09.7002160Z [3662/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-aarch64-neonfma-3x4-acc2.c.o 2025-07-17T06:36:09.7283370Z [3663/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-aarch64-neonfma-3x4.c.o 2025-07-17T06:36:09.7312700Z [3664/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-aarch64-neonfma-4x4-acc2.c.o 2025-07-17T06:36:09.7729420Z [3665/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-aarch64-neonfma-5x4.c.o 2025-07-17T06:36:09.7881020Z [3666/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-aarch64-neonfma-1x4-acc3.c.o 2025-07-17T06:36:09.7897740Z [3667/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-aarch64-neonfma-1x4-acc5.c.o 2025-07-17T06:36:09.8084630Z [3668/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-aarch64-neonfma-1x4-acc4.c.o 2025-07-17T06:36:09.8087110Z [3669/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-aarch64-neonfma-2x4-acc2.c.o 2025-07-17T06:36:09.8233620Z [3670/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-aarch64-neonfma-1x4.c.o 2025-07-17T06:36:09.8234550Z [3671/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-aarch64-neonfma-2x4-acc3.c.o 2025-07-17T06:36:09.8444820Z [3672/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-aarch64-neonfma-2x4.c.o 2025-07-17T06:36:09.8750750Z [3673/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-aarch64-neonfma-3x4-acc2.c.o 2025-07-17T06:36:09.8856920Z [3674/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-aarch64-neonfma-3x4.c.o 2025-07-17T06:36:09.9064080Z [3675/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-17T06:36:09.9558890Z [3676/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-2x16-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-17T06:36:09.9596950Z [3677/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-17T06:36:09.9626560Z [3678/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-3x16-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-17T06:36:09.9776350Z [3679/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x16-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-17T06:36:10.0029120Z [3680/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-17T06:36:10.0099580Z [3681/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-17T06:36:10.0177680Z [3682/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x16-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-17T06:36:10.0301060Z [3683/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x16-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-17T06:36:10.0327370Z [3684/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x2-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-17T06:36:10.0484500Z [3685/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-17T06:36:10.0899560Z [3686/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x16-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-17T06:36:10.1177270Z [3687/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-17T06:36:10.1285600Z [3688/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-17T06:36:10.1317620Z [3689/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-17T06:36:10.1564530Z [3690/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-5x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-17T06:36:10.1704780Z [3691/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x16-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-17T06:36:10.1711060Z [3692/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-17T06:36:10.1777690Z [3693/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-17T06:36:10.1986820Z [3694/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-17T06:36:10.2105090Z [3695/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-17T06:36:10.2718960Z [3696/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-17T06:36:10.2837070Z [3697/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-17T06:36:10.2848080Z [3698/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-3x16-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-17T06:36:10.2856600Z [3699/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-2x16-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-17T06:36:10.2945150Z [3700/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x16-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-17T06:36:10.3026490Z [3701/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x4-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-17T06:36:10.3087180Z [3702/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-17T06:36:10.3190100Z [3703/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x16-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-17T06:36:10.3221650Z [3704/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x2-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-17T06:36:10.3638790Z [3705/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x16-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-17T06:36:10.3887940Z [3706/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-aarch64-neonfma-prfm.c.o 2025-07-17T06:36:10.4133760Z [3707/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-aarch64-neonfma.c.o 2025-07-17T06:36:10.4164740Z [3708/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-aarch64-neonfma-prfm.c.o 2025-07-17T06:36:10.4298410Z [3709/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x16-minmax-aarch64-neonfma-prfm.c.o 2025-07-17T06:36:10.4306700Z [3710/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x16-minmax-aarch64-neonfma.c.o 2025-07-17T06:36:10.4654590Z [3711/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-17T06:36:10.4821840Z [3712/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-17T06:36:10.4923480Z [3713/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-5x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-17T06:36:10.5049930Z [3714/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-aarch64-neonfma.c.o 2025-07-17T06:36:10.5087120Z [3715/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-6x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-17T06:36:10.5428480Z [3716/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-17T06:36:10.5623440Z [3717/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x16-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-17T06:36:10.5692870Z [3718/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-17T06:36:10.5902630Z [3719/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x2-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-17T06:36:10.5904510Z [3720/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-17T06:36:10.5990030Z [3721/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x16-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-17T06:36:10.6285050Z [3722/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-aarch64-neonfma-rr1-lut64-p2-div-u4.c.o 2025-07-17T06:36:10.6766410Z [3723/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-5x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-17T06:36:10.6774410Z [3724/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x2-minmax-aarch64-neonfma.c.o 2025-07-17T06:36:10.6886040Z [3725/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-6x2-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-17T06:36:10.6893380Z [3726/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x4-minmax-aarch64-neonfma.c.o 2025-07-17T06:36:10.6941000Z [3727/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x2-minmax-aarch64-neonfma.c.o 2025-07-17T06:36:10.6952730Z [3728/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-6x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-17T06:36:10.7126050Z [3729/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x4-minmax-aarch64-neonfma.c.o 2025-07-17T06:36:10.7248060Z [3730/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-12x2-minmax-aarch64-neonfma.c.o 2025-07-17T06:36:10.7626840Z [3731/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-12x4-minmax-aarch64-neonfma.c.o 2025-07-17T06:36:10.7827740Z [3732/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x2-minmax-aarch64-neonfma.c.o 2025-07-17T06:36:10.8088870Z [3733/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-aarch64-neonfma-rr1-lut64-p2-div-u8.c.o 2025-07-17T06:36:10.8188770Z [3734/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-aarch64-neonfma-rr1-lut2048-p1-div-u4.c.o 2025-07-17T06:36:10.8195970Z [3735/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-aarch64-neonfma-rr1-lut2048-p1-div-u8.c.o 2025-07-17T06:36:10.8223600Z [3736/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x4-minmax-aarch64-neonfma.c.o 2025-07-17T06:36:10.8279910Z [3737/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-aarch64-neonfma-rr1-lut64-p2-div-u16.c.o 2025-07-17T06:36:10.8495900Z [3738/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-aarch64-neonfma-rr1-lut2048-p1-div-u12.c.o 2025-07-17T06:36:10.8515320Z [3739/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-aarch64-neonfma-rr1-lut64-p2-div-u12.c.o 2025-07-17T06:36:10.8831280Z [3740/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-aarch64-neonfma-rr1-lut2048-p1-div-u16.c.o 2025-07-17T06:36:10.8909350Z [3741/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-aarch64-neonfma-rr1-p5-div-u4.c.o 2025-07-17T06:36:10.9030120Z [3742/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-aarch64-neonfma-rr1-p5-div-u8.c.o 2025-07-17T06:36:10.9573290Z [3743/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vadd-fp16arith-u4.c.o 2025-07-17T06:36:10.9636770Z [3744/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vaddc-fp16arith-u2.c.o 2025-07-17T06:36:10.9647910Z [3745/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-aarch64-neonfma-rr1-p5-div-u12.c.o 2025-07-17T06:36:10.9700530Z [3746/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-aarch64-neonfma-rr1-p5-div-u16.c.o 2025-07-17T06:36:10.9889390Z [3747/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vadd-fp16arith-u2.c.o 2025-07-17T06:36:11.0028770Z [3748/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vaddc-fp16arith-u1.c.o 2025-07-17T06:36:11.0189630Z [3749/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-4x16-minmax-neonfp16arith-ld64.c.o 2025-07-17T06:36:11.0212890Z [3750/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdiv-fp16arith-u1.c.o 2025-07-17T06:36:11.0432480Z [3751/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vadd-fp16arith-u1.c.o 2025-07-17T06:36:11.0438470Z [3752/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vaddc-fp16arith-u4.c.o 2025-07-17T06:36:11.0959490Z [3753/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdivc-fp16arith-u1.c.o 2025-07-17T06:36:11.0964320Z [3754/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdiv-fp16arith-u4.c.o 2025-07-17T06:36:11.0977720Z [3755/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdivc-fp16arith-u4.c.o 2025-07-17T06:36:11.1222020Z [3756/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-8x16-minmax-neonfp16arith-ld64.c.o 2025-07-17T06:36:11.1247390Z [3757/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmax-fp16arith-u2.c.o 2025-07-17T06:36:11.1427690Z [3758/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmax-fp16arith-u1.c.o 2025-07-17T06:36:11.1608640Z [3759/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmaxc-fp16arith-u1.c.o 2025-07-17T06:36:11.1717610Z [3760/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmax-fp16arith-u4.c.o 2025-07-17T06:36:11.1827860Z [3761/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmaxc-fp16arith-u2.c.o 2025-07-17T06:36:11.1908880Z [3762/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmaxc-fp16arith-u4.c.o 2025-07-17T06:36:11.2381420Z [3763/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmin-fp16arith-u1.c.o 2025-07-17T06:36:11.2401640Z [3764/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vminc-fp16arith-u2.c.o 2025-07-17T06:36:11.2436520Z [3765/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vminc-fp16arith-u1.c.o 2025-07-17T06:36:11.2601130Z [3766/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmin-fp16arith-u2.c.o 2025-07-17T06:36:11.2618680Z [3767/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmin-fp16arith-u4.c.o 2025-07-17T06:36:11.2807180Z [3768/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vminc-fp16arith-u4.c.o 2025-07-17T06:36:11.3212390Z [3769/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmul-fp16arith-u1.c.o 2025-07-17T06:36:11.3321540Z [3770/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmul-fp16arith-u4.c.o 2025-07-17T06:36:11.3446370Z [3771/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmulc-fp16arith-u1.c.o 2025-07-17T06:36:11.3491390Z [3772/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmul-fp16arith-u2.c.o 2025-07-17T06:36:11.3651790Z [3773/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmulc-fp16arith-u2.c.o 2025-07-17T06:36:11.3799130Z [3774/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrsubc-fp16arith-u1.c.o 2025-07-17T06:36:11.3811240Z [3775/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmulc-fp16arith-u4.c.o 2025-07-17T06:36:11.3874630Z [3776/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrdivc-fp16arith-u1.c.o 2025-07-17T06:36:11.4003230Z [3777/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrdivc-fp16arith-u4.c.o 2025-07-17T06:36:11.4176280Z [3778/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrsubc-fp16arith-u2.c.o 2025-07-17T06:36:11.4608490Z [3779/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrsubc-fp16arith-u4.c.o 2025-07-17T06:36:11.4614080Z [3780/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiff-fp16arith-u2.c.o 2025-07-17T06:36:11.4824400Z [3781/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiff-fp16arith-u4.c.o 2025-07-17T06:36:11.4850080Z [3782/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiffc-fp16arith-u1.c.o 2025-07-17T06:36:11.5170250Z [3783/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiff-fp16arith-u1.c.o 2025-07-17T06:36:11.5260410Z [3784/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsub-fp16arith-u2.c.o 2025-07-17T06:36:11.5329760Z [3785/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsub-fp16arith-u1.c.o 2025-07-17T06:36:11.5458790Z [3786/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiffc-fp16arith-u4.c.o 2025-07-17T06:36:11.5493850Z [3787/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiffc-fp16arith-u2.c.o 2025-07-17T06:36:11.5689540Z [3788/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsub-fp16arith-u4.c.o 2025-07-17T06:36:11.5918510Z [3789/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsubc-fp16arith-u1.c.o 2025-07-17T06:36:11.6069430Z [3790/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsubc-fp16arith-u4.c.o 2025-07-17T06:36:11.6237710Z [3791/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsubc-fp16arith-u2.c.o 2025-07-17T06:36:11.6344290Z [3792/5148] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-4x8-minmax-neonfp16arith-ld64.c.o 2025-07-17T06:36:11.6501350Z [3793/5148] Building C object sleef/src/libm/CMakeFiles/mkalias.dir/mkalias.c.o 2025-07-17T06:36:11.6590620Z [3794/5148] Building C object sleef/src/libm/CMakeFiles/mkrename.dir/mkrename.c.o 2025-07-17T06:36:11.6598910Z [3795/5148] Building C object sleef/src/libm/CMakeFiles/mkdisp.dir/mkdisp.c.o 2025-07-17T06:36:11.6746530Z [3796/5148] Building C object sleef/src/libm/CMakeFiles/mkrename_gnuabi.dir/mkrename_gnuabi.c.o 2025-07-17T06:36:11.6892400Z [3797/5148] Building C object sleef/src/libm/CMakeFiles/mkmasked_gnuabi.dir/mkmasked_gnuabi.c.o 2025-07-17T06:36:11.7475640Z [3798/5148] Linking C executable sleef/bin/mkdisp 2025-07-17T06:36:11.7533560Z [3799/5148] Linking C executable sleef/bin/mkalias 2025-07-17T06:36:11.7536780Z [3800/5148] Linking C executable sleef/bin/mkrename 2025-07-17T06:36:11.7789910Z [3801/5148] Linking C executable sleef/bin/mkrename_gnuabi 2025-07-17T06:36:11.7898260Z [3802/5148] Linking C executable sleef/bin/mkmasked_gnuabi 2025-07-17T06:36:11.7912330Z [3803/5148] Generating dispscalar.c.body 2025-07-17T06:36:11.8175590Z [3804/5148] Generating alias_ADVSIMD_dp.h.tmp 2025-07-17T06:36:11.8335680Z [3805/5148] Generating /Users/ec2-user/runner/_work/pytorch/pytorch/torch/utils/data/datapipes/datapipe.pyi 2025-07-17T06:36:11.8422940Z [3806/5148] Generating sleeflibm_ADVSIMD.h.tmp 2025-07-17T06:36:11.8424640Z [3807/5148] Generating sleeflibm_ADVSIMDNOFMA.h.tmp 2025-07-17T06:36:11.8426340Z [3808/5148] Generating include/renamepurecfma_scalar.h 2025-07-17T06:36:11.8426820Z Generating renamepurecfma_scalar.h: mkrename finz_ 1 1 purecfma 2025-07-17T06:36:11.8428310Z [3809/5148] Generating include/renameadvsimd.h 2025-07-17T06:36:11.8428600Z Generating renameadvsimd.h: mkrename finz_ 2 4 advsimd 2025-07-17T06:36:11.8430340Z [3810/5148] Generating include/renamepurec_scalar.h 2025-07-17T06:36:11.8430620Z Generating renamepurec_scalar.h: mkrename cinz_ 1 1 purec 2025-07-17T06:36:11.8432280Z [3811/5148] Generating include/renamecuda.h 2025-07-17T06:36:11.8434710Z Generating renamecuda.h: mkrename finz_ 1 1 cuda 2025-07-17T06:36:11.8470250Z [3812/5148] Generating sleeflibm_PURECFMA_SCALAR.h.tmp 2025-07-17T06:36:11.8472090Z [3813/5148] Generating sleeflibm_PUREC_SCALAR.h.tmp 2025-07-17T06:36:11.8483710Z [3814/5148] Generating sleeflibm_SVE.h.tmp 2025-07-17T06:36:11.8493300Z [3815/5148] Generating sleeflibm_SVENOFMA.h.tmp 2025-07-17T06:36:11.8497100Z [3816/5148] Generating sleeflibm_ADVSIMD_.h.tmp 2025-07-17T06:36:11.8498690Z [3817/5148] Generating sleeflibm_DSP_SCALAR.h.tmp 2025-07-17T06:36:11.8527450Z [3818/5148] Generating alias_ADVSIMD_sp.h.tmp 2025-07-17T06:36:11.8539970Z [3819/5148] Generating include/renameadvsimdnofma.h 2025-07-17T06:36:11.8548720Z Generating renameadvsimdnofma.h: mkrename cinz_ 2 4 advsimdnofma 2025-07-17T06:36:11.8553170Z [3820/5148] Generating include/renamedspscalar.h 2025-07-17T06:36:11.8604100Z [3821/5148] Generating dispscalar.c 2025-07-17T06:36:11.8659630Z [3822/5148] Generating include/alias_advsimd.h 2025-07-17T06:36:11.8721260Z [3823/5148] Generating ../../../include/sleef.h 2025-07-17T06:36:11.9582100Z [3824/5148] Building C object sleef/src/libm/CMakeFiles/sleefdetpurec_scalar.dir/sleefsimdsp.c.o 2025-07-17T06:36:11.9604900Z [3825/5148] Building C object sleef/src/libm/CMakeFiles/sleefpurecfma_scalar.dir/sleefsimddp.c.o 2025-07-17T06:36:11.9677060Z [3826/5148] Building C object sleef/src/libm/CMakeFiles/sleefdetpurec_scalar.dir/sleefsimddp.c.o 2025-07-17T06:36:11.9688340Z [3827/5148] Building C object sleef/src/libm/CMakeFiles/sleefpurecfma_scalar.dir/sleefsimdsp.c.o 2025-07-17T06:36:11.9867040Z [3828/5148] Building C object sleef/src/libm/CMakeFiles/sleefdetpurecfma_scalar.dir/sleefsimdsp.c.o 2025-07-17T06:36:12.0136340Z [3829/5148] Building C object sleef/src/libm/CMakeFiles/sleefdetpurecfma_scalar.dir/sleefsimddp.c.o 2025-07-17T06:36:12.0815960Z [3830/5148] Building C object sleef/src/libm/CMakeFiles/dispscalar_obj.dir/dispscalar.c.o 2025-07-17T06:36:12.0841940Z [3831/5148] Building C object sleef/src/libm/CMakeFiles/sleefadvsimdnofma.dir/sleefsimdsp.c.o 2025-07-17T06:36:12.0955620Z [3832/5148] Building C object sleef/src/libm/CMakeFiles/sleefdetadvsimdnofma.dir/sleefsimdsp.c.o 2025-07-17T06:36:12.1016630Z [3833/5148] Building C object sleef/src/libm/CMakeFiles/sleefadvsimdnofma.dir/sleefsimddp.c.o 2025-07-17T06:36:12.1228570Z [3834/5148] Building C object sleef/src/libm/CMakeFiles/sleef.dir/rempitab.c.o 2025-07-17T06:36:12.1365140Z [3835/5148] Building C object sleef/src/libm/CMakeFiles/sleefdetadvsimdnofma.dir/sleefsimddp.c.o 2025-07-17T06:36:12.2138930Z [3836/5148] Building C object sleef/src/libm/CMakeFiles/sleefpurec_scalar.dir/sleefsimdsp.c.o 2025-07-17T06:36:12.2170190Z [3837/5148] Building C object sleef/src/libm/CMakeFiles/sleefadvsimd.dir/sleefsimdsp.c.o 2025-07-17T06:36:12.2185120Z [3838/5148] Building C object sleef/src/libm/CMakeFiles/sleefadvsimd.dir/sleefsimddp.c.o 2025-07-17T06:36:12.2207120Z [3839/5148] Building C object sleef/src/libm/CMakeFiles/sleefdetadvsimd.dir/sleefsimdsp.c.o 2025-07-17T06:36:12.2315940Z [3840/5148] Building C object sleef/src/libm/CMakeFiles/sleefpurec_scalar.dir/sleefsimddp.c.o 2025-07-17T06:36:12.2341380Z [3841/5148] Building C object sleef/src/libm/CMakeFiles/sleefdetadvsimd.dir/sleefsimddp.c.o 2025-07-17T06:36:12.3397560Z [3842/5148] Linking C static library sleef/lib/libsleef.a 2025-07-17T06:36:12.4531520Z [3843/5148] Linking C static library lib/libmicrokernels-all.a 2025-07-17T06:36:12.5956120Z [3844/5148] Regenerating version file... 2025-07-17T06:36:14.5725470Z [3845/5148] Generating /Users/ec2-user/runner/_work/pytorch/pytorch/torch/_C/__init__.pyi, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/_C/_VariableFunctions.pyi, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nn/functional.pyi 2025-07-17T06:36:15.8572240Z [3846/5148] Generating /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/Functions.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/ViewFuncs.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType_0.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType_1.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType_2.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType_3.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType_4.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/TraceType_0.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/TraceType_1.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/TraceType_2.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/TraceType_3.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/TraceType_4.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/ADInplaceOrViewType_0.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/ADInplaceOrViewType_1.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/inductor/aoti_torch/generated/c_shim_cpu.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/LazyNativeFunctions.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/RegisterAutogradLazy.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/RegisterLazy.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/inductor/aoti_torch/generated/c_shim_mps.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/Functions.h, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/variable_factories.h, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/ViewFuncs.h, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType.h, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/LazyIr.h, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/LazyNonNativeIr.h, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/LazyNativeFunctions.h, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions_0.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions_1.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions_2.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions_3.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions_4.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_variable_methods.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_torch_functions_0.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_torch_functions_1.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_torch_functions_2.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_nn_functions.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_fft_functions.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_linalg_functions.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_nested_functions.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_sparse_functions.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_special_functions.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_return_types.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_enum_tag.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions.h, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_return_types.h, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/testing/_internal/generated/annotated_fn_args.py, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/inductor/aoti_torch/generated/c_shim_cuda.cpp 2025-07-17T06:36:16.0091300Z [3847/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/read_adapter_interface.cc.o 2025-07-17T06:36:16.0147980Z [3848/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/crc.cc.o 2025-07-17T06:36:16.1155780Z [3849/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/threadpool/thread_pool_guard.cpp.o 2025-07-17T06:36:16.1415040Z [3850/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/threadpool/pthreadpool-cpp.cc.o 2025-07-17T06:36:16.1480830Z [3851/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/threadpool/ThreadPool.cc.o 2025-07-17T06:36:16.1803740Z [3852/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/string_utils.cc.o 2025-07-17T06:36:16.1904900Z [3853/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/proto_wrap.cc.o 2025-07-17T06:36:16.2103080Z [3854/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/perfkernels/embedding_lookup_idx.cc.o 2025-07-17T06:36:16.3874820Z [3855/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/ViewFuncs.cpp.o 2025-07-17T06:36:16.7201440Z [3856/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_0.cpp.o 2025-07-17T06:36:16.7997260Z [3857/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/Functions.cpp.o 2025-07-17T06:36:16.8211890Z [3858/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_4.cpp.o 2025-07-17T06:36:16.8512800Z [3859/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_1.cpp.o 2025-07-17T06:36:16.8666860Z [3860/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_0.cpp.o 2025-07-17T06:36:16.8797510Z [3861/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_3.cpp.o 2025-07-17T06:36:16.9103700Z [3862/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_2.cpp.o 2025-07-17T06:36:16.9126230Z [3863/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_1.cpp.o 2025-07-17T06:36:17.1002610Z [3864/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_3.cpp.o 2025-07-17T06:36:17.1170910Z [3865/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_2.cpp.o 2025-07-17T06:36:17.2096980Z [3866/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_4.cpp.o 2025-07-17T06:36:17.2889020Z [3867/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/generated/RegisterLazy.cpp.o 2025-07-17T06:36:17.3091880Z [3868/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/generated/RegisterAutogradLazy.cpp.o 2025-07-17T06:36:17.3192330Z [3869/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/generated/c_shim_cpu.cpp.o 2025-07-17T06:36:17.3423080Z [3870/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/generated/c_shim_mps.cpp.o 2025-07-17T06:36:17.4191020Z [3871/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/ADInplaceOrViewType_1.cpp.o 2025-07-17T06:36:17.4394370Z [3872/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/ADInplaceOrViewType_0.cpp.o 2025-07-17T06:36:17.5161010Z [3873/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/autograd.cpp.o 2025-07-17T06:36:17.5374670Z [3874/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/anomaly_mode.cpp.o 2025-07-17T06:36:17.6241590Z [3875/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/autograd_meta.cpp.o 2025-07-17T06:36:17.7456330Z [3876/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/generated/LazyNativeFunctions.cpp.o 2025-07-17T06:36:17.7881630Z [3877/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/cpp_hook.cpp.o 2025-07-17T06:36:17.8167040Z [3878/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/autograd_not_implemented_fallback.cpp.o 2025-07-17T06:36:17.8398460Z [3879/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/forward_grad.cpp.o 2025-07-17T06:36:17.8686160Z [3880/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/engine.cpp.o 2025-07-17T06:36:18.0002490Z [3881/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/custom_function.cpp.o 2025-07-17T06:36:18.1206980Z [3882/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/function.cpp.o 2025-07-17T06:36:18.1407830Z [3883/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/functions/utils.cpp.o 2025-07-17T06:36:18.1661740Z [3884/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/functions/accumulate_grad.cpp.o 2025-07-17T06:36:18.2494510Z [3885/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/jit_decomp_interface.cpp.o 2025-07-17T06:36:18.2594700Z [3886/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/input_metadata.cpp.o 2025-07-17T06:36:18.3345780Z [3887/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/functions/basic_ops.cpp.o 2025-07-17T06:36:18.4329100Z [3888/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/utils/warnings.cpp.o 2025-07-17T06:36:18.4710400Z [3889/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/profiler_kineto.cpp.o 2025-07-17T06:36:18.5141450Z [3890/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/saved_variable.cpp.o 2025-07-17T06:36:18.5331900Z [3891/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/input_buffer.cpp.o 2025-07-17T06:36:18.5565790Z [3892/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/functions/tensor.cpp.o 2025-07-17T06:36:18.5581140Z [3893/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/profiler_legacy.cpp.o 2025-07-17T06:36:18.5620860Z [3894/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/record_function_ops.cpp.o 2025-07-17T06:36:18.6994430Z [3895/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/variable_info.cpp.o 2025-07-17T06:36:18.7838150Z [3896/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/dynamo/compiled_autograd.cpp.o 2025-07-17T06:36:18.9201290Z [3897/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/mkldnn_tensor.cpp.o 2025-07-17T06:36:18.9361620Z [3898/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/shim_cpu.cpp.o 2025-07-17T06:36:18.9475010Z [3899/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_runner/model_container_runner.cpp.o 2025-07-17T06:36:18.9681010Z [3900/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_package/model_package_loader.cpp.o 2025-07-17T06:36:19.0177760Z [3901/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/variable.cpp.o 2025-07-17T06:36:19.0288690Z [3902/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_runner/model_container_runner_cpu.cpp.o 2025-07-17T06:36:19.0401410Z [3903/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/oss_proxy_executor.cpp.o 2025-07-17T06:36:19.1655690Z [3904/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/tensor_converter.cpp.o 2025-07-17T06:36:19.1964380Z [3905/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/shim_common.cpp.o 2025-07-17T06:36:19.4151350Z [3906/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_detail.cpp.o 2025-07-17T06:36:19.4189710Z [3907/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/api/object.cpp.o 2025-07-17T06:36:19.4398860Z [3908/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_interface.cpp.o 2025-07-17T06:36:19.4429830Z [3909/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_debug_info.cpp.o 2025-07-17T06:36:19.4586940Z [3910/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_debug_handler.cpp.o 2025-07-17T06:36:19.4913880Z [3911/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/api/function_impl.cpp.o 2025-07-17T06:36:19.4974940Z [3912/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/api/module.cpp.o 2025-07-17T06:36:19.7009220Z [3913/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/inductor_ops.cpp.o 2025-07-17T06:36:19.8304270Z [3914/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_resolver.cpp.o 2025-07-17T06:36:19.9450150Z [3915/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/builtin_functions.cpp.o 2025-07-17T06:36:20.0611940Z [3916/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/executor.cpp.o 2025-07-17T06:36:20.0733810Z [3917/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/codegen.cpp.o 2025-07-17T06:36:20.0784690Z [3918/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/edit_distance.cpp.o 2025-07-17T06:36:20.0935150Z [3919/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/fallback.cpp.o 2025-07-17T06:36:20.1155850Z [3920/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/kernel_cache.cpp.o 2025-07-17T06:36:20.1495150Z [3921/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/compiler.cpp.o 2025-07-17T06:36:20.1867430Z [3922/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/interface.cpp.o 2025-07-17T06:36:20.2862250Z [3923/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/canonicalize_modified_loop.cpp.o 2025-07-17T06:36:20.3669590Z [3924/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/name_mangler.cpp.o 2025-07-17T06:36:20.3930030Z [3925/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/parser.cpp.o 2025-07-17T06:36:20.4862710Z [3926/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/exit_transforms.cpp.o 2025-07-17T06:36:20.4895430Z [3927/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/convert_to_ssa.cpp.o 2025-07-17T06:36:20.5560040Z [3928/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/inline_loop_condition.cpp.o 2025-07-17T06:36:20.5610630Z [3929/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/ir_emitter.cpp.o 2025-07-17T06:36:20.5671930Z [3930/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/schema_matching.cpp.o 2025-07-17T06:36:20.6421240Z [3931/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/script_type_parser.cpp.o 2025-07-17T06:36:20.6851190Z [3932/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/sugared_value.cpp.o 2025-07-17T06:36:20.8268020Z [3933/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/tracer.cpp.o 2025-07-17T06:36:20.8472490Z [3934/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/versioned_symbols.cpp.o 2025-07-17T06:36:20.8812650Z [3935/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/attributes.cpp.o 2025-07-17T06:36:20.9844770Z [3936/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/alias_analysis.cpp.o 2025-07-17T06:36:21.0094900Z [3937/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/ir.cpp.o 2025-07-17T06:36:21.0467910Z [3938/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/scope.cpp.o 2025-07-17T06:36:21.1018410Z [3939/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/irparser.cpp.o 2025-07-17T06:36:21.1155910Z [3940/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/node_hashing.cpp.o 2025-07-17T06:36:21.2413800Z [3941/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/constants.cpp.o 2025-07-17T06:36:21.2496270Z [3942/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/graph_utils.cpp.o 2025-07-17T06:36:21.2759960Z [3943/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/jit_log.cpp.o 2025-07-17T06:36:21.3489920Z [3944/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/type_hashing.cpp.o 2025-07-17T06:36:21.3745940Z [3945/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/subgraph_matcher.cpp.o 2025-07-17T06:36:21.3998770Z [3946/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/function.cpp.o 2025-07-17T06:36:21.4470690Z [3947/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/jit_opt_limit.cpp.o 2025-07-17T06:36:21.5437490Z [3948/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/import.cpp.o 2025-07-17T06:36:21.6238690Z [3949/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/compatibility/model_compatibility.cpp.o 2025-07-17T06:36:21.7186780Z [3950/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/nnc/backend.cpp.o 2025-07-17T06:36:21.7219430Z [3951/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/module.cpp.o 2025-07-17T06:36:21.7236590Z [3952/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/compatibility/runtime_compatibility.cpp.o 2025-07-17T06:36:21.7564970Z [3953/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/nnc/registry.cpp.o 2025-07-17T06:36:21.8208220Z [3954/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/interpreter.cpp.o 2025-07-17T06:36:21.8529810Z [3955/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/observer.cpp.o 2025-07-17T06:36:22.0301320Z [3956/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/parse_bytecode.cpp.o 2025-07-17T06:36:22.0408170Z [3957/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/nnc/context.cpp.o 2025-07-17T06:36:22.0617930Z [3958/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/flatbuffer_loader.cpp.o 2025-07-17T06:36:22.1177360Z [3959/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/parse_operators.cpp.o 2025-07-17T06:36:22.1400500Z [3960/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/prim_ops_registery.cpp.o 2025-07-17T06:36:22.1617750Z [3961/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/nnc/aot_compiler.cpp.o 2025-07-17T06:36:22.1739660Z [3962/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/quantization.cpp.o 2025-07-17T06:36:22.2321490Z [3963/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/promoted_prim_ops.cpp.o 2025-07-17T06:36:22.3554680Z [3964/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/upgrader_mobile.cpp.o 2025-07-17T06:36:22.3753340Z [3965/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/operator_upgraders/version_map.cpp.o 2025-07-17T06:36:22.3840340Z [3966/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/register_ops_common_utils.cpp.o 2025-07-17T06:36:22.4589170Z [3967/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/operator_upgraders/utils.cpp.o 2025-07-17T06:36:22.4791910Z [3968/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/type_parser.cpp.o 2025-07-17T06:36:22.4794070Z [3969/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/operator_upgraders/upgraders.cpp.o 2025-07-17T06:36:22.5440470Z [3970/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/operator_upgraders/upgraders_entry.cpp.o 2025-07-17T06:36:22.6623080Z [3971/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/add_if_then_else.cpp.o 2025-07-17T06:36:22.6725640Z [3972/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/annotate_warns.cpp.o 2025-07-17T06:36:22.7997450Z [3973/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/canonicalize.cpp.o 2025-07-17T06:36:22.8637900Z [3974/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.cpp.o 2025-07-17T06:36:22.9259380Z [3975/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/check_strict_fusion.cpp.o 2025-07-17T06:36:23.0188940Z [3976/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/bailout_graph.cpp.o 2025-07-17T06:36:23.0930750Z [3977/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/clear_profiling.cpp.o 2025-07-17T06:36:23.1431080Z [3978/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/batch_mm.cpp.o 2025-07-17T06:36:23.1644490Z [3979/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/constant_pooling.cpp.o 2025-07-17T06:36:23.2017760Z [3980/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/common_subexpression_elimination.cpp.o 2025-07-17T06:36:23.2269610Z [3981/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/concat_opt.cpp.o 2025-07-17T06:36:23.2798130Z [3982/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/constant_propagation.cpp.o 2025-07-17T06:36:23.3040990Z [3983/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/create_autodiff_subgraphs.cpp.o 2025-07-17T06:36:23.3781980Z [3984/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/clear_undefinedness.cpp.o 2025-07-17T06:36:23.5047690Z [3985/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/dead_code_elimination.cpp.o 2025-07-17T06:36:23.5239810Z [3986/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/create_functional_graphs.cpp.o 2025-07-17T06:36:23.5933310Z [3987/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/decompose_ops.cpp.o 2025-07-17T06:36:23.5968470Z [3988/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/eliminate_no_ops.cpp.o 2025-07-17T06:36:23.6018080Z [3989/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/dbr_quantization/remove_redundant_aliases.cpp.o 2025-07-17T06:36:23.6300490Z [3990/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/device_type_analysis.cpp.o 2025-07-17T06:36:23.6469170Z [3991/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/dtype_analysis.cpp.o 2025-07-17T06:36:23.7857160Z [3992/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/erase_number_types.cpp.o 2025-07-17T06:36:23.8936180Z [3993/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fixup_trace_scope_blocks.cpp.o 2025-07-17T06:36:23.9239960Z [3994/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fold_linear_bn.cpp.o 2025-07-17T06:36:23.9553630Z [3995/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_graph_optimizations.cpp.o 2025-07-17T06:36:23.9587060Z [3996/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fold_conv_bn.cpp.o 2025-07-17T06:36:24.0185210Z [3997/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.cpp.o 2025-07-17T06:36:24.0387400Z [3998/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_concat_linear.cpp.o 2025-07-17T06:36:24.1684870Z [3999/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_conv_folding.cpp.o 2025-07-17T06:36:24.2654470Z [4000/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_linear_transpose.cpp.o 2025-07-17T06:36:24.2954630Z [4001/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/freeze_module.cpp.o 2025-07-17T06:36:24.3057070Z [4002/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_linear_folding.cpp.o 2025-07-17T06:36:24.3888650Z [4003/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fuse_linear.cpp.o 2025-07-17T06:36:24.3997570Z [4004/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fuse_relu.cpp.o 2025-07-17T06:36:24.5000210Z [4005/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/graph_rewrite_helper.cpp.o 2025-07-17T06:36:24.6421950Z [4006/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inline_autodiff_subgraphs.cpp.o 2025-07-17T06:36:24.6644180Z [4007/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inline_forked_closures.cpp.o 2025-07-17T06:36:24.6788280Z [4008/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_ops_to_mkldnn.cpp.o 2025-07-17T06:36:24.7024560Z [4009/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inline_fork_wait.cpp.o 2025-07-17T06:36:24.7198010Z [4010/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/graph_fuser.cpp.o 2025-07-17T06:36:24.7376090Z [4011/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/hoist_conv_packed_params.cpp.o 2025-07-17T06:36:24.8457330Z [4012/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/guard_elimination.cpp.o 2025-07-17T06:36:24.9369210Z [4013/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inplace_check.cpp.o 2025-07-17T06:36:24.9675190Z [4014/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inliner.cpp.o 2025-07-17T06:36:25.0893460Z [4015/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/integer_value_refinement.cpp.o 2025-07-17T06:36:25.1096580Z [4016/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/lift_closures.cpp.o 2025-07-17T06:36:25.2081300Z [4017/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/loop_unrolling.cpp.o 2025-07-17T06:36:25.2549720Z [4018/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/insert_guards.cpp.o 2025-07-17T06:36:25.2882190Z [4019/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/lower_grad_of.cpp.o 2025-07-17T06:36:25.3042330Z [4020/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/lower_tuples.cpp.o 2025-07-17T06:36:25.4765480Z [4021/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/liveness.cpp.o 2025-07-17T06:36:25.5132990Z [4022/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/normalize_ops.cpp.o 2025-07-17T06:36:25.5394160Z [4023/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/metal_rewrite.cpp.o 2025-07-17T06:36:25.5489020Z [4024/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/pass_manager.cpp.o 2025-07-17T06:36:25.5827640Z [4025/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole.cpp.o 2025-07-17T06:36:25.6660410Z [4026/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/mkldnn_rewrite.cpp.o 2025-07-17T06:36:25.6877060Z [4027/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole_alias_sensitive.cpp.o 2025-07-17T06:36:25.7275610Z [4028/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole_dict_idioms.cpp.o 2025-07-17T06:36:25.7870570Z [4029/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole_list_idioms.cpp.o 2025-07-17T06:36:25.8547160Z [4030/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole_non_tensor.cpp.o 2025-07-17T06:36:25.9565350Z [4031/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/quantization_type.cpp.o 2025-07-17T06:36:25.9941400Z [4032/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/fusion_passes.cpp.o 2025-07-17T06:36:25.9965510Z [4033/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/prepack_folding.cpp.o 2025-07-17T06:36:26.0743380Z [4034/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/dedup_module_uses.cpp.o 2025-07-17T06:36:26.0898250Z [4035/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/insert_observers.cpp.o 2025-07-17T06:36:26.1054960Z [4036/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_dropout.cpp.o 2025-07-17T06:36:26.1783580Z [4037/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/helper.cpp.o 2025-07-17T06:36:26.3085900Z [4038/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_exceptions.cpp.o 2025-07-17T06:36:26.3626730Z [4039/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/refine_tuple_types.cpp.o 2025-07-17T06:36:26.3986710Z [4040/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/finalize.cpp.o 2025-07-17T06:36:26.4089570Z [4041/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/insert_quant_dequant.cpp.o 2025-07-17T06:36:26.4579410Z [4042/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_expands.cpp.o 2025-07-17T06:36:26.5165250Z [4043/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/restore_mutation.cpp.o 2025-07-17T06:36:26.5436230Z [4044/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_mutation.cpp.o 2025-07-17T06:36:26.5924160Z [4045/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_redundant_profiles.cpp.o 2025-07-17T06:36:26.7086140Z [4046/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/replacement_of_old_operators.cpp.o 2025-07-17T06:36:26.7587500Z [4047/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/register_packed_params.cpp.o 2025-07-17T06:36:26.8392010Z [4048/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/subgraph_rewrite.cpp.o 2025-07-17T06:36:26.8492520Z [4049/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/requires_grad_analysis.cpp.o 2025-07-17T06:36:26.8891000Z [4050/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/shape_analysis.cpp.o 2025-07-17T06:36:26.9081620Z [4051/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/symbolic_shape_cache.cpp.o 2025-07-17T06:36:27.0334560Z [4052/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/symbolic_shape_analysis.cpp.o 2025-07-17T06:36:27.0606750Z [4053/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/memory_dag.cpp.o 2025-07-17T06:36:27.1863940Z [4054/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/op_registry.cpp.o 2025-07-17T06:36:27.2373700Z [4055/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/specialize_autogradzero.cpp.o 2025-07-17T06:36:27.2588980Z [4056/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.cpp.o 2025-07-17T06:36:27.2657900Z [4057/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/optimization_utils.cpp.o 2025-07-17T06:36:27.2799350Z [4058/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/subgraph_utils.cpp.o 2025-07-17T06:36:27.3761150Z [4059/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/python/utf8_decoding_ignore.cpp.o 2025-07-17T06:36:27.4036690Z [4060/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.cpp.o 2025-07-17T06:36:27.4053690Z [4061/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/value_refinement_utils.cpp.o 2025-07-17T06:36:27.4950500Z [4062/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/python/update_graph_executor_opt.cpp.o 2025-07-17T06:36:27.5333390Z [4063/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/tensorexpr_fuser.cpp.o 2025-07-17T06:36:27.5434490Z [4064/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/variadic_ops.cpp.o 2025-07-17T06:36:27.6551920Z [4065/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/instruction.cpp.o 2025-07-17T06:36:27.7000060Z [4066/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/argument_spec.cpp.o 2025-07-17T06:36:27.7001560Z [4067/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/autodiff.cpp.o 2025-07-17T06:36:27.7876580Z [4068/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/decomposition_registry.cpp.o 2025-07-17T06:36:27.8378240Z [4069/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/decomposition_registry_util.cpp.o 2025-07-17T06:36:27.9200070Z [4070/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/vulkan_rewrite.cpp.o 2025-07-17T06:36:28.0063720Z [4071/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/jit_exception.cpp.o 2025-07-17T06:36:28.0572550Z [4072/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/xnnpack_rewrite.cpp.o 2025-07-17T06:36:28.1261900Z [4073/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/interpreter/preprocess_graph.cpp.o 2025-07-17T06:36:28.1474700Z [4074/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/logging.cpp.o 2025-07-17T06:36:28.1579020Z [4075/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/print_handler.cpp.o 2025-07-17T06:36:28.2426200Z [4076/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/graph_executor.cpp.o 2025-07-17T06:36:28.3829160Z [4077/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/interpreter/frame.cpp.o 2025-07-17T06:36:28.4222900Z [4078/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/interpreter.cpp.o 2025-07-17T06:36:28.5571820Z [4079/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/jit_trace.cpp.o 2025-07-17T06:36:28.5601870Z [4080/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/script_profile.cpp.o 2025-07-17T06:36:28.7020160Z [4081/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/operator.cpp.o 2025-07-17T06:36:28.7408890Z [4082/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_c10_ops.cpp.o 2025-07-17T06:36:28.8149350Z [4083/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/profiling_graph_executor_impl.cpp.o 2025-07-17T06:36:28.8462000Z [4084/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/serialized_shape_function_registry.cpp.o 2025-07-17T06:36:28.8780330Z [4085/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_ops_utils.cpp.o 2025-07-17T06:36:28.8941880Z [4086/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/profiling_record.cpp.o 2025-07-17T06:36:28.9390420Z [4087/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/slice_indices_adjust.cpp.o 2025-07-17T06:36:29.0301760Z [4088/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/fusion.cpp.o 2025-07-17T06:36:29.1572400Z [4089/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_prim_ops.cpp.o 2025-07-17T06:36:29.2806570Z [4090/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/memory_planner.cpp.o 2025-07-17T06:36:29.3392450Z [4091/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/impl.cpp.o 2025-07-17T06:36:29.3445420Z [4092/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/passes.cpp.o 2025-07-17T06:36:29.3960740Z [4093/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/simple_graph_executor_impl.cpp.o 2025-07-17T06:36:29.4841380Z [4094/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSEvent.mm.o 2025-07-17T06:36:29.6420100Z [4095/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/generated_ops.cpp.o 2025-07-17T06:36:29.6535740Z [4096/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/symbolic_script.cpp.o 2025-07-17T06:36:29.6802790Z [4097/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/native_ops.cpp.o 2025-07-17T06:36:29.7171520Z [4098/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/ops.cpp.o 2025-07-17T06:36:29.7638640Z [4099/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/symbolic_shape_registry.cpp.o 2025-07-17T06:36:29.8472440Z [4100/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/symbolic_shape_registry_util.cpp.o 2025-07-17T06:36:30.0326480Z [4101/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/te_wrapper.cpp.o 2025-07-17T06:36:30.0426970Z [4102/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/import_export_helpers.cpp.o 2025-07-17T06:36:30.0540050Z [4103/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/callstack_debug_info_serialization.cpp.o 2025-07-17T06:36:30.1115610Z [4104/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/vararg_functions.cpp.o 2025-07-17T06:36:30.1138950Z [4105/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/import_read.cpp.o 2025-07-17T06:36:30.1423930Z [4106/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/pickle.cpp.o 2025-07-17T06:36:30.1600440Z [4107/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/import.cpp.o 2025-07-17T06:36:30.1690590Z [4108/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/import_source.cpp.o 2025-07-17T06:36:30.5122100Z [4109/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/python_print.cpp.o 2025-07-17T06:36:30.5329350Z [4110/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/source_range_serialization.cpp.o 2025-07-17T06:36:30.5451150Z [4111/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/type_name_uniquer.cpp.o 2025-07-17T06:36:30.6764980Z [4112/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/pickler_helper.cpp.o 2025-07-17T06:36:30.6989910Z [4113/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/pickler.cpp.o 2025-07-17T06:36:30.7165800Z [4114/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/block_codegen.cpp.o 2025-07-17T06:36:30.7727160Z [4115/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/unpickler.cpp.o 2025-07-17T06:36:30.8283230Z [4116/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/bounds_inference.cpp.o 2025-07-17T06:36:31.1050950Z [4117/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/bounds_overlap.cpp.o 2025-07-17T06:36:31.1685940Z [4118/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/codegen.cpp.o 2025-07-17T06:36:31.2063690Z [4119/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/expr.cpp.o 2025-07-17T06:36:31.2221100Z [4120/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/cpp_codegen.cpp.o 2025-07-17T06:36:31.2389940Z [4121/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/eval.cpp.o 2025-07-17T06:36:31.2725190Z [4122/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/intrinsic_symbols.cpp.o 2025-07-17T06:36:31.3379100Z [4123/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/external_functions_registry.cpp.o 2025-07-17T06:36:31.3738550Z [4124/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/external_functions_core.cpp.o 2025-07-17T06:36:31.5169200Z [4125/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/external_functions.cpp.o 2025-07-17T06:36:31.5407820Z [4126/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/external_functions_codegen.cpp.o 2025-07-17T06:36:31.6515350Z [4127/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir.cpp.o 2025-07-17T06:36:31.7095280Z [4128/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/hash_provider.cpp.o 2025-07-17T06:36:31.8635000Z [4129/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/graph_opt.cpp.o 2025-07-17T06:36:31.8939320Z [4130/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_cloner.cpp.o 2025-07-17T06:36:31.9041940Z [4131/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_mutator.cpp.o 2025-07-17T06:36:31.9148920Z [4132/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/llvm_codegen.cpp.o 2025-07-17T06:36:31.9176200Z [4133/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/llvm_jit.cpp.o 2025-07-17T06:36:31.9433430Z [4134/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_printer.cpp.o 2025-07-17T06:36:32.0579330Z [4135/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_verifier.cpp.o 2025-07-17T06:36:32.1203510Z [4136/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_simplifier.cpp.o 2025-07-17T06:36:32.2639060Z [4137/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_visitor.cpp.o 2025-07-17T06:36:32.3709650Z [4138/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/kernel.cpp.o 2025-07-17T06:36:32.6040100Z [4139/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/loopnest.cpp.o 2025-07-17T06:36:32.6229780Z [4140/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/loopnest_randomization.cpp.o 2025-07-17T06:36:32.6393270Z [4141/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/matmul.cpp.o 2025-07-17T06:36:32.6550240Z [4142/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/mem_dependency_checker.cpp.o 2025-07-17T06:36:32.6952320Z [4143/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/conv2d.cpp.o 2025-07-17T06:36:32.7242010Z [4144/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/lowerings.cpp.o 2025-07-17T06:36:32.8577770Z [4145/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/misc.cpp.o 2025-07-17T06:36:32.9859630Z [4146/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/reduction.cpp.o 2025-07-17T06:36:33.0119770Z [4147/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/norm.cpp.o 2025-07-17T06:36:33.1102250Z [4148/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/tensor.cpp.o 2025-07-17T06:36:33.2177780Z [4149/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/types.cpp.o 2025-07-17T06:36:33.2350560Z [4150/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/pointwise.cpp.o 2025-07-17T06:36:33.2543390Z [4151/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/registerizer.cpp.o 2025-07-17T06:36:33.2722510Z [4152/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/quantization.cpp.o 2025-07-17T06:36:33.2780590Z [4153/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/unique_name_manager.cpp.o 2025-07-17T06:36:33.3962040Z [4154/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/softmax.cpp.o 2025-07-17T06:36:33.4096860Z [4155/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/reduction.cpp.o 2025-07-17T06:36:33.5032120Z [4156/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/testing/file_check.cpp.o 2025-07-17T06:36:33.5236410Z [4157/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/config.cpp.o 2025-07-17T06:36:33.5670590Z [4158/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/testing/hooks_for_testing.cpp.o 2025-07-17T06:36:33.6218440Z [4159/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/backend/backend_device.cpp.o 2025-07-17T06:36:33.6492510Z [4160/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/hash.cpp.o 2025-07-17T06:36:33.7316720Z [4161/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/debug_util.cpp.o 2025-07-17T06:36:33.7459780Z [4162/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/backend/backend_interface.cpp.o 2025-07-17T06:36:33.7617020Z [4163/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/backend/lowering_context.cpp.o 2025-07-17T06:36:33.9103440Z [4164/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ir.cpp.o 2025-07-17T06:36:33.9172790Z [4165/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/helpers.cpp.o 2025-07-17T06:36:33.9439820Z [4166/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ir_metadata.cpp.o 2025-07-17T06:36:33.9475650Z [4167/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ir_dump_util.cpp.o 2025-07-17T06:36:33.9729590Z [4168/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ir_util.cpp.o 2025-07-17T06:36:34.0279850Z [4169/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/multi_wait.cpp.o 2025-07-17T06:36:34.1427320Z [4170/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/metrics.cpp.o 2025-07-17T06:36:34.1527660Z [4171/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/lazy_graph_executor.cpp.o 2025-07-17T06:36:34.2281620Z [4172/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ops/arithmetic_ir_ops.cpp.o 2025-07-17T06:36:34.2613910Z [4173/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/permutation_util.cpp.o 2025-07-17T06:36:34.3219280Z [4174/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ops/utils.cpp.o 2025-07-17T06:36:34.3854300Z [4175/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/tensor_impl.cpp.o 2025-07-17T06:36:34.4010060Z [4176/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/thread_pool.cpp.o 2025-07-17T06:36:34.4248490Z [4177/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/shape.cpp.o 2025-07-17T06:36:34.4474930Z [4178/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/tensor_util.cpp.o 2025-07-17T06:36:34.4914260Z [4179/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/tensor.cpp.o 2025-07-17T06:36:34.5057600Z [4180/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/monitor/counters.cpp.o 2025-07-17T06:36:34.5750060Z [4181/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/monitor/events.cpp.o 2025-07-17T06:36:34.5778660Z [4182/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/trie.cpp.o 2025-07-17T06:36:34.7775000Z [4183/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/combined_traceback.cpp.o 2025-07-17T06:36:34.8126930Z [4184/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/kineto_client_interface.cpp.o 2025-07-17T06:36:34.8357860Z [4185/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/kineto_shim.cpp.o 2025-07-17T06:36:34.8581760Z [4186/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/data_flow.cpp.o 2025-07-17T06:36:34.8835500Z [4187/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/shape_inference.cpp.o 2025-07-17T06:36:34.8838880Z [4188/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/mtia/profiler/MTIAMemoryProfiler.cpp.o 2025-07-17T06:36:34.9075320Z [4189/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/collection.cpp.o 2025-07-17T06:36:34.9324110Z [4190/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/orchestration/observer.cpp.o 2025-07-17T06:36:34.9521940Z [4191/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/perf.cpp.o 2025-07-17T06:36:35.1227750Z [4192/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/unwind/unwind.cpp.o 2025-07-17T06:36:35.1420490Z [4193/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/orchestration/python_tracer.cpp.o 2025-07-17T06:36:35.1525060Z [4194/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/unwind/unwind_fb.cpp.o 2025-07-17T06:36:35.1639870Z [4195/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/stubs/base.cpp.o 2025-07-17T06:36:35.1979530Z [4196/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/orchestration/vulkan.cpp.o 2025-07-17T06:36:35.2687640Z [4197/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/standalone/nvtx_observer.cpp.o 2025-07-17T06:36:35.2798360Z [4198/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/standalone/itt_observer.cpp.o 2025-07-17T06:36:35.2869970Z [4199/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/standalone/privateuse1_observer.cpp.o 2025-07-17T06:36:35.3402210Z [4200/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/standalone/execution_trace_observer.cpp.o 2025-07-17T06:36:35.4340640Z [4201/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/cpp_stacktraces.cpp.o 2025-07-17T06:36:35.5580100Z [4202/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/variadic.cpp.o 2025-07-17T06:36:35.6314180Z [4203/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/util.cpp.o 2025-07-17T06:36:35.6480910Z [4204/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/schema_info.cpp.o 2025-07-17T06:36:35.6834580Z [4205/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_inplace_ops.cpp.o 2025-07-17T06:36:35.7291220Z [4206/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/lower_graph.cpp.o 2025-07-17T06:36:35.8679320Z [4207/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/tensor_flatten.cpp.o 2025-07-17T06:36:35.8782110Z [4208/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/check_alias_annotation.cpp.o 2025-07-17T06:36:36.0323270Z [4209/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/autocast.cpp.o 2025-07-17T06:36:36.0482980Z [4210/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/cuda/interface.cpp.o 2025-07-17T06:36:36.1334380Z [4211/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/graph/GraphSignature.cpp.o 2025-07-17T06:36:36.1491260Z [4212/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/graph/Graph.cpp.o 2025-07-17T06:36:36.1625430Z [4213/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSDevice.mm.o 2025-07-17T06:36:36.2044220Z [4214/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/graph/GraphPasses.cpp.o 2025-07-17T06:36:36.3207720Z [4215/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/graph/TensorMeta.cpp.o 2025-07-17T06:36:36.3378330Z [4216/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/Placement.cpp.o 2025-07-17T06:36:36.3663300Z [4217/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_special_ops.cpp.o 2025-07-17T06:36:36.3813370Z [4218/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_prim_ops_fulljit.cpp.o 2025-07-17T06:36:36.4201070Z [4219/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/graph/Serialization.cpp.o 2025-07-17T06:36:36.5266090Z [4220/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/DelegateExecutor.cpp.o 2025-07-17T06:36:36.5740810Z [4221/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/ExecutionPlanner.cpp.o 2025-07-17T06:36:36.6890690Z [4222/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/PlacementUtils.cpp.o 2025-07-17T06:36:36.9002380Z [4223/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/ExecutionFrame.cpp.o 2025-07-17T06:36:36.9380810Z [4224/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/Executor.cpp.o 2025-07-17T06:36:36.9670910Z [4225/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/GraphExecutorBase.cpp.o 2025-07-17T06:36:36.9773930Z [4226/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/Weights.cpp.o 2025-07-17T06:36:36.9811590Z [4227/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/memory/FunctionSchema.cpp.o 2025-07-17T06:36:37.0511590Z [4228/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/ConstantFolder.cpp.o 2025-07-17T06:36:37.0575240Z [4229/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/common/FileUtil.cpp.o 2025-07-17T06:36:37.1031150Z [4230/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/OpKernel.cpp.o 2025-07-17T06:36:37.2070610Z [4231/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/SerialGraphExecutor.cpp.o 2025-07-17T06:36:37.2212680Z [4232/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/memory/GreedyBySize.cpp.o 2025-07-17T06:36:37.2268150Z [4233/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/memory/Bump.cpp.o 2025-07-17T06:36:37.4170390Z [4234/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/detail/ITree.cpp.o 2025-07-17T06:36:37.5386560Z [4235/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/memory/DisjointStorageGroups.cpp.o 2025-07-17T06:36:37.7101820Z [4236/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/AutoFunctionalizeKernel.cpp.o 2025-07-17T06:36:37.7508580Z [4237/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/HigherOrderKernel.cpp.o 2025-07-17T06:36:37.8659300Z [4238/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/C10Kernel.cpp.o 2025-07-17T06:36:37.8818210Z [4239/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/CallTorchBindKernel.cpp.o 2025-07-17T06:36:37.8828670Z [4240/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/memory/LayoutPlanner.cpp.o 2025-07-17T06:36:37.9033810Z [4241/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/ParallelGraphExecutor.cpp.o 2025-07-17T06:36:37.9414270Z [4242/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/KernelFactory.cpp.o 2025-07-17T06:36:37.9731370Z [4243/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/PrimKernelRegistry.cpp.o 2025-07-17T06:36:37.9733550Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/PrimKernelRegistry.cpp:13:63: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:37.9736230Z C10_DEFINE_REGISTRY(PrimKernelRegistry, OpKernel, const Node*); 2025-07-17T06:36:37.9736920Z ^ 2025-07-17T06:36:37.9738530Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/PrimKernelRegistry.cpp:62:1: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:37.9740260Z REGISTER_PRIM_KERNEL("prim.ListUnpack", prim_listunpack, { 2025-07-17T06:36:37.9740850Z ^ 2025-07-17T06:36:37.9741950Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/PrimKernelRegistry.h:24:68: note: expanded from macro 'REGISTER_PRIM_KERNEL' 2025-07-17T06:36:37.9743420Z C10_REGISTER_TYPED_CLASS(PrimKernelRegistry, name, OpKernel_##id); 2025-07-17T06:36:37.9744100Z ^ 2025-07-17T06:36:37.9745690Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/PrimKernelRegistry.cpp:71:1: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:37.9747320Z REGISTER_PRIM_KERNEL("prim.Input", prim_input, {}); 2025-07-17T06:36:37.9747850Z ^ 2025-07-17T06:36:37.9748940Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/PrimKernelRegistry.h:24:68: note: expanded from macro 'REGISTER_PRIM_KERNEL' 2025-07-17T06:36:37.9750380Z C10_REGISTER_TYPED_CLASS(PrimKernelRegistry, name, OpKernel_##id); 2025-07-17T06:36:37.9751050Z ^ 2025-07-17T06:36:37.9752640Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/PrimKernelRegistry.cpp:72:1: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:37.9754300Z REGISTER_PRIM_KERNEL("prim.Output", prim_output, {}); 2025-07-17T06:36:37.9754850Z ^ 2025-07-17T06:36:37.9755940Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/PrimKernelRegistry.h:24:68: note: expanded from macro 'REGISTER_PRIM_KERNEL' 2025-07-17T06:36:37.9757370Z C10_REGISTER_TYPED_CLASS(PrimKernelRegistry, name, OpKernel_##id); 2025-07-17T06:36:37.9758040Z ^ 2025-07-17T06:36:37.9758540Z 4 warnings generated. 2025-07-17T06:36:38.1069490Z [4244/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/memory/AliasAnalyzer.cpp.o 2025-07-17T06:36:38.1495380Z [4245/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/config.cpp.o 2025-07-17T06:36:38.3099740Z [4246/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/dynamic_ir.cpp.o 2025-07-17T06:36:38.3441480Z [4247/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/debug_info.cpp.o 2025-07-17T06:36:38.4141500Z [4248/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/memory/LayoutManager.cpp.o 2025-07-17T06:36:38.4743410Z [4249/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ops/device_data.cpp.o 2025-07-17T06:36:38.6150270Z [4250/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/NativeKernels.cpp.o 2025-07-17T06:36:38.6152390Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/NativeKernels.cpp:16:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.6156820Z }); 2025-07-17T06:36:38.6157060Z ^ 2025-07-17T06:36:38.6157700Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/NativeKernels.cpp:24:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.6158280Z }); 2025-07-17T06:36:38.6158380Z ^ 2025-07-17T06:36:38.6159110Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/NativeKernels.cpp:30:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.6159650Z }); 2025-07-17T06:36:38.6159750Z ^ 2025-07-17T06:36:38.6160220Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/NativeKernels.cpp:36:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.6160750Z }); 2025-07-17T06:36:38.6160850Z ^ 2025-07-17T06:36:38.6161320Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/NativeKernels.cpp:42:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.6161840Z }); 2025-07-17T06:36:38.6161940Z ^ 2025-07-17T06:36:38.6162410Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/NativeKernels.cpp:49:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.6162940Z }); 2025-07-17T06:36:38.6163030Z ^ 2025-07-17T06:36:38.6163510Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/NativeKernels.cpp:56:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.6164030Z }); 2025-07-17T06:36:38.6164130Z ^ 2025-07-17T06:36:38.6164600Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/NativeKernels.cpp:67:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.6165130Z }); 2025-07-17T06:36:38.6165230Z ^ 2025-07-17T06:36:38.6165710Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/NativeKernels.cpp:78:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.6166240Z }); 2025-07-17T06:36:38.6166340Z ^ 2025-07-17T06:36:38.6166820Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/NativeKernels.cpp:83:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.6167340Z }); 2025-07-17T06:36:38.6167450Z ^ 2025-07-17T06:36:38.6167920Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/NativeKernels.cpp:111:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.6168450Z }); 2025-07-17T06:36:38.6168550Z ^ 2025-07-17T06:36:38.6168660Z 11 warnings generated. 2025-07-17T06:36:38.6371640Z [4251/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ops/generic.cpp.o 2025-07-17T06:36:38.6445950Z [4252/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/tensor_aten_ops.cpp.o 2025-07-17T06:36:38.6944560Z [4253/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/GeneratedNativeStaticDispatchKernels.cpp.o 2025-07-17T06:36:38.7045100Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedNativeStaticDispatchKernels.cpp:42:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7151770Z }); 2025-07-17T06:36:38.7253460Z ^ 2025-07-17T06:36:38.7312160Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedNativeStaticDispatchKernels.cpp:51:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7316310Z }); 2025-07-17T06:36:38.7319460Z ^ 2025-07-17T06:36:38.7322750Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedNativeStaticDispatchKernels.cpp:57:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7325580Z }); 2025-07-17T06:36:38.7329870Z ^ 2025-07-17T06:36:38.7334080Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedNativeStaticDispatchKernels.cpp:63:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7335130Z }); 2025-07-17T06:36:38.7335330Z ^ 2025-07-17T06:36:38.7336000Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedNativeStaticDispatchKernels.cpp:69:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7336800Z }); 2025-07-17T06:36:38.7336950Z ^ 2025-07-17T06:36:38.7337560Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedNativeStaticDispatchKernels.cpp:75:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7338210Z }); 2025-07-17T06:36:38.7338310Z ^ 2025-07-17T06:36:38.7338880Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedNativeStaticDispatchKernels.cpp:84:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7339510Z }); 2025-07-17T06:36:38.7339610Z ^ 2025-07-17T06:36:38.7340180Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedNativeStaticDispatchKernels.cpp:93:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7340790Z }); 2025-07-17T06:36:38.7340890Z ^ 2025-07-17T06:36:38.7341460Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedNativeStaticDispatchKernels.cpp:102:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7342070Z }); 2025-07-17T06:36:38.7342170Z ^ 2025-07-17T06:36:38.7342730Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedNativeStaticDispatchKernels.cpp:114:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7343350Z }); 2025-07-17T06:36:38.7343460Z ^ 2025-07-17T06:36:38.7344030Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedNativeStaticDispatchKernels.cpp:126:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7344640Z }); 2025-07-17T06:36:38.7344740Z ^ 2025-07-17T06:36:38.7345300Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedNativeStaticDispatchKernels.cpp:136:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7345910Z }); 2025-07-17T06:36:38.7346020Z ^ 2025-07-17T06:36:38.7346580Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedNativeStaticDispatchKernels.cpp:147:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7347190Z }); 2025-07-17T06:36:38.7347470Z ^ 2025-07-17T06:36:38.7348050Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedNativeStaticDispatchKernels.cpp:155:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7355030Z }); 2025-07-17T06:36:38.7355140Z ^ 2025-07-17T06:36:38.7355710Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedNativeStaticDispatchKernels.cpp:163:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7356320Z }); 2025-07-17T06:36:38.7356420Z ^ 2025-07-17T06:36:38.7357000Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedNativeStaticDispatchKernels.cpp:172:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7357610Z }); 2025-07-17T06:36:38.7357720Z ^ 2025-07-17T06:36:38.7358410Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedNativeStaticDispatchKernels.cpp:181:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7359200Z }); 2025-07-17T06:36:38.7359300Z ^ 2025-07-17T06:36:38.7359870Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedNativeStaticDispatchKernels.cpp:187:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7360480Z }); 2025-07-17T06:36:38.7360580Z ^ 2025-07-17T06:36:38.7361140Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedNativeStaticDispatchKernels.cpp:193:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7361750Z }); 2025-07-17T06:36:38.7361850Z ^ 2025-07-17T06:36:38.7362410Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedNativeStaticDispatchKernels.cpp:202:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7363020Z }); 2025-07-17T06:36:38.7363120Z ^ 2025-07-17T06:36:38.7363680Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedNativeStaticDispatchKernels.cpp:208:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7364290Z }); 2025-07-17T06:36:38.7364390Z ^ 2025-07-17T06:36:38.7364950Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedNativeStaticDispatchKernels.cpp:218:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7365560Z }); 2025-07-17T06:36:38.7365660Z ^ 2025-07-17T06:36:38.7366230Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedNativeStaticDispatchKernels.cpp:227:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7366840Z }); 2025-07-17T06:36:38.7366940Z ^ 2025-07-17T06:36:38.7367510Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedNativeStaticDispatchKernels.cpp:236:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7368120Z }); 2025-07-17T06:36:38.7368220Z ^ 2025-07-17T06:36:38.7368780Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedNativeStaticDispatchKernels.cpp:243:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7369400Z }); 2025-07-17T06:36:38.7369500Z ^ 2025-07-17T06:36:38.7370080Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedNativeStaticDispatchKernels.cpp:249:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7370700Z }); 2025-07-17T06:36:38.7370800Z ^ 2025-07-17T06:36:38.7371430Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedNativeStaticDispatchKernels.cpp:257:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7372090Z }); 2025-07-17T06:36:38.7372190Z ^ 2025-07-17T06:36:38.7372750Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedNativeStaticDispatchKernels.cpp:267:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7373380Z }); 2025-07-17T06:36:38.7373490Z ^ 2025-07-17T06:36:38.7374060Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedNativeStaticDispatchKernels.cpp:277:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7374670Z }); 2025-07-17T06:36:38.7374770Z ^ 2025-07-17T06:36:38.7375340Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedNativeStaticDispatchKernels.cpp:286:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7376030Z }); 2025-07-17T06:36:38.7376130Z ^ 2025-07-17T06:36:38.7376710Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedNativeStaticDispatchKernels.cpp:300:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7377330Z }); 2025-07-17T06:36:38.7377430Z ^ 2025-07-17T06:36:38.7378010Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedNativeStaticDispatchKernels.cpp:312:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7378630Z }); 2025-07-17T06:36:38.7378730Z ^ 2025-07-17T06:36:38.7379300Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedNativeStaticDispatchKernels.cpp:323:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7379930Z }); 2025-07-17T06:36:38.7380030Z ^ 2025-07-17T06:36:38.7380610Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedNativeStaticDispatchKernels.cpp:334:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7381230Z }); 2025-07-17T06:36:38.7381330Z ^ 2025-07-17T06:36:38.7381910Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedNativeStaticDispatchKernels.cpp:346:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7382520Z }); 2025-07-17T06:36:38.7382620Z ^ 2025-07-17T06:36:38.7383210Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedNativeStaticDispatchKernels.cpp:352:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7383830Z }); 2025-07-17T06:36:38.7383930Z ^ 2025-07-17T06:36:38.7384040Z 36 warnings generated. 2025-07-17T06:36:38.7384430Z [4254/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp.o 2025-07-17T06:36:38.7385290Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:44:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7385900Z }); 2025-07-17T06:36:38.7386000Z ^ 2025-07-17T06:36:38.7386570Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:55:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7387200Z }); 2025-07-17T06:36:38.7387300Z ^ 2025-07-17T06:36:38.7387960Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:66:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7388570Z }); 2025-07-17T06:36:38.7388670Z ^ 2025-07-17T06:36:38.7389210Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:77:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7389800Z }); 2025-07-17T06:36:38.7389900Z ^ 2025-07-17T06:36:38.7390440Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:88:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7391040Z }); 2025-07-17T06:36:38.7391140Z ^ 2025-07-17T06:36:38.7391680Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:101:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7392280Z }); 2025-07-17T06:36:38.7392370Z ^ 2025-07-17T06:36:38.7392920Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:113:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7393840Z }); 2025-07-17T06:36:38.7393940Z ^ 2025-07-17T06:36:38.7394490Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:126:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7395110Z }); 2025-07-17T06:36:38.7395200Z ^ 2025-07-17T06:36:38.7395750Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:141:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7396350Z }); 2025-07-17T06:36:38.7396450Z ^ 2025-07-17T06:36:38.7397000Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:156:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7397600Z }); 2025-07-17T06:36:38.7397700Z ^ 2025-07-17T06:36:38.7398250Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:169:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7398860Z }); 2025-07-17T06:36:38.7398960Z ^ 2025-07-17T06:36:38.7399500Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:182:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7400090Z }); 2025-07-17T06:36:38.7400190Z ^ 2025-07-17T06:36:38.7400730Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:195:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7401320Z }); 2025-07-17T06:36:38.7401420Z ^ 2025-07-17T06:36:38.7401970Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:206:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7402560Z }); 2025-07-17T06:36:38.7402660Z ^ 2025-07-17T06:36:38.7403210Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:217:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7403790Z }); 2025-07-17T06:36:38.7403890Z ^ 2025-07-17T06:36:38.7404420Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:228:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7405020Z }); 2025-07-17T06:36:38.7405120Z ^ 2025-07-17T06:36:38.7405730Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:239:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7406340Z }); 2025-07-17T06:36:38.7406440Z ^ 2025-07-17T06:36:38.7406980Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:250:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7407560Z }); 2025-07-17T06:36:38.7407660Z ^ 2025-07-17T06:36:38.7408200Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:261:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7408780Z }); 2025-07-17T06:36:38.7408880Z ^ 2025-07-17T06:36:38.7409420Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:272:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7410000Z }); 2025-07-17T06:36:38.7410170Z ^ 2025-07-17T06:36:38.7410720Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:283:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7411320Z }); 2025-07-17T06:36:38.7411410Z ^ 2025-07-17T06:36:38.7411950Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:294:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7412540Z }); 2025-07-17T06:36:38.7412630Z ^ 2025-07-17T06:36:38.7413180Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:309:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7413770Z }); 2025-07-17T06:36:38.7413870Z ^ 2025-07-17T06:36:38.7414410Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:323:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7415010Z }); 2025-07-17T06:36:38.7415120Z ^ 2025-07-17T06:36:38.7415660Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:335:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7416260Z }); 2025-07-17T06:36:38.7416360Z ^ 2025-07-17T06:36:38.7416900Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:349:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7417480Z }); 2025-07-17T06:36:38.7417580Z ^ 2025-07-17T06:36:38.7418130Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:364:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7418720Z }); 2025-07-17T06:36:38.7418820Z ^ 2025-07-17T06:36:38.7419360Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:379:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7419950Z }); 2025-07-17T06:36:38.7420050Z ^ 2025-07-17T06:36:38.7420600Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:394:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7421230Z }); 2025-07-17T06:36:38.7421330Z ^ 2025-07-17T06:36:38.7421960Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:405:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7422560Z }); 2025-07-17T06:36:38.7422660Z ^ 2025-07-17T06:36:38.7423210Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:418:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7423800Z }); 2025-07-17T06:36:38.7423900Z ^ 2025-07-17T06:36:38.7424440Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:431:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7425030Z }); 2025-07-17T06:36:38.7425130Z ^ 2025-07-17T06:36:38.7425670Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:446:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7426250Z }); 2025-07-17T06:36:38.7426360Z ^ 2025-07-17T06:36:38.7426910Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:458:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7427560Z }); 2025-07-17T06:36:38.7427660Z ^ 2025-07-17T06:36:38.7428200Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:471:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7428780Z }); 2025-07-17T06:36:38.7428880Z ^ 2025-07-17T06:36:38.7429420Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:483:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7430000Z }); 2025-07-17T06:36:38.7430100Z ^ 2025-07-17T06:36:38.7430650Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:495:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7431250Z }); 2025-07-17T06:36:38.7431340Z ^ 2025-07-17T06:36:38.7431880Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:506:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7432470Z }); 2025-07-17T06:36:38.7432570Z ^ 2025-07-17T06:36:38.7433100Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:517:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7433690Z }); 2025-07-17T06:36:38.7433790Z ^ 2025-07-17T06:36:38.7434330Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:530:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7434920Z }); 2025-07-17T06:36:38.7435030Z ^ 2025-07-17T06:36:38.7435560Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:545:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7436150Z }); 2025-07-17T06:36:38.7436250Z ^ 2025-07-17T06:36:38.7436780Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:557:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7437370Z }); 2025-07-17T06:36:38.7437470Z ^ 2025-07-17T06:36:38.7438000Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:570:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7438600Z }); 2025-07-17T06:36:38.7438690Z ^ 2025-07-17T06:36:38.7439290Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:582:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7439880Z }); 2025-07-17T06:36:38.7439980Z ^ 2025-07-17T06:36:38.7440520Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:597:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7441120Z }); 2025-07-17T06:36:38.7441220Z ^ 2025-07-17T06:36:38.7441760Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:609:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7442350Z }); 2025-07-17T06:36:38.7442440Z ^ 2025-07-17T06:36:38.7442990Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:621:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7443570Z }); 2025-07-17T06:36:38.7443720Z ^ 2025-07-17T06:36:38.7444260Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:632:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7444850Z }); 2025-07-17T06:36:38.7444950Z ^ 2025-07-17T06:36:38.7445480Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:643:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7446070Z }); 2025-07-17T06:36:38.7446170Z ^ 2025-07-17T06:36:38.7446700Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:654:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7447290Z }); 2025-07-17T06:36:38.7447380Z ^ 2025-07-17T06:36:38.7447920Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:665:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7448510Z }); 2025-07-17T06:36:38.7448610Z ^ 2025-07-17T06:36:38.7449150Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:676:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7449730Z }); 2025-07-17T06:36:38.7449830Z ^ 2025-07-17T06:36:38.7450370Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:687:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7450960Z }); 2025-07-17T06:36:38.7451050Z ^ 2025-07-17T06:36:38.7451600Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:698:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7452190Z }); 2025-07-17T06:36:38.7452280Z ^ 2025-07-17T06:36:38.7452820Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:710:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7453400Z }); 2025-07-17T06:36:38.7453500Z ^ 2025-07-17T06:36:38.7454030Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:722:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7454620Z }); 2025-07-17T06:36:38.7454720Z ^ 2025-07-17T06:36:38.7455260Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:739:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7455850Z }); 2025-07-17T06:36:38.7456040Z ^ 2025-07-17T06:36:38.7456600Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:757:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7457210Z }); 2025-07-17T06:36:38.7457310Z ^ 2025-07-17T06:36:38.7457850Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:775:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7458440Z }); 2025-07-17T06:36:38.7458540Z ^ 2025-07-17T06:36:38.7459080Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:793:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7459670Z }); 2025-07-17T06:36:38.7459770Z ^ 2025-07-17T06:36:38.7460320Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:805:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7461020Z }); 2025-07-17T06:36:38.7461120Z ^ 2025-07-17T06:36:38.7461660Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:817:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7462250Z }); 2025-07-17T06:36:38.7462350Z ^ 2025-07-17T06:36:38.7462890Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:828:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7463480Z }); 2025-07-17T06:36:38.7463590Z ^ 2025-07-17T06:36:38.7464140Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:839:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7464740Z }); 2025-07-17T06:36:38.7464840Z ^ 2025-07-17T06:36:38.7465380Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:850:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7465980Z }); 2025-07-17T06:36:38.7466080Z ^ 2025-07-17T06:36:38.7466620Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:865:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7467220Z }); 2025-07-17T06:36:38.7467320Z ^ 2025-07-17T06:36:38.7467870Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:880:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7468460Z }); 2025-07-17T06:36:38.7468570Z ^ 2025-07-17T06:36:38.7469110Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:892:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7469710Z }); 2025-07-17T06:36:38.7469810Z ^ 2025-07-17T06:36:38.7470380Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:908:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7470980Z }); 2025-07-17T06:36:38.7471080Z ^ 2025-07-17T06:36:38.7471630Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:923:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7472220Z }); 2025-07-17T06:36:38.7472330Z ^ 2025-07-17T06:36:38.7472940Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:938:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7473550Z }); 2025-07-17T06:36:38.7473650Z ^ 2025-07-17T06:36:38.7474200Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:953:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7474790Z }); 2025-07-17T06:36:38.7474890Z ^ 2025-07-17T06:36:38.7475440Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:965:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7476050Z }); 2025-07-17T06:36:38.7476150Z ^ 2025-07-17T06:36:38.7476700Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:977:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7477290Z }); 2025-07-17T06:36:38.7482550Z ^ 2025-07-17T06:36:38.7483190Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:989:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7483800Z }); 2025-07-17T06:36:38.7483900Z ^ 2025-07-17T06:36:38.7484440Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1001:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7485030Z }); 2025-07-17T06:36:38.7485130Z ^ 2025-07-17T06:36:38.7485700Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1012:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7486290Z }); 2025-07-17T06:36:38.7486380Z ^ 2025-07-17T06:36:38.7486930Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1023:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7487530Z }); 2025-07-17T06:36:38.7487620Z ^ 2025-07-17T06:36:38.7488160Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1037:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7488750Z }); 2025-07-17T06:36:38.7488850Z ^ 2025-07-17T06:36:38.7489400Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1048:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7489990Z }); 2025-07-17T06:36:38.7490080Z ^ 2025-07-17T06:36:38.7490630Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1059:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7491230Z }); 2025-07-17T06:36:38.7491320Z ^ 2025-07-17T06:36:38.7491860Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1070:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7492450Z }); 2025-07-17T06:36:38.7492540Z ^ 2025-07-17T06:36:38.7493080Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1082:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7493670Z }); 2025-07-17T06:36:38.7493770Z ^ 2025-07-17T06:36:38.7494310Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1094:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7495040Z }); 2025-07-17T06:36:38.7495140Z ^ 2025-07-17T06:36:38.7495690Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1109:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7496280Z }); 2025-07-17T06:36:38.7496380Z ^ 2025-07-17T06:36:38.7496920Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1125:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7497510Z }); 2025-07-17T06:36:38.7497610Z ^ 2025-07-17T06:36:38.7498160Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1136:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7498750Z }); 2025-07-17T06:36:38.7498840Z ^ 2025-07-17T06:36:38.7499380Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1147:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7500040Z }); 2025-07-17T06:36:38.7500140Z ^ 2025-07-17T06:36:38.7500680Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1162:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7501280Z }); 2025-07-17T06:36:38.7501380Z ^ 2025-07-17T06:36:38.7501920Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1173:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7502510Z }); 2025-07-17T06:36:38.7502610Z ^ 2025-07-17T06:36:38.7503150Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1184:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7503760Z }); 2025-07-17T06:36:38.7503850Z ^ 2025-07-17T06:36:38.7504400Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1195:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7504990Z }); 2025-07-17T06:36:38.7505090Z ^ 2025-07-17T06:36:38.7505630Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1206:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7506230Z }); 2025-07-17T06:36:38.7506320Z ^ 2025-07-17T06:36:38.7506860Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1217:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7507450Z }); 2025-07-17T06:36:38.7507550Z ^ 2025-07-17T06:36:38.7508100Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1230:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7508690Z }); 2025-07-17T06:36:38.7508790Z ^ 2025-07-17T06:36:38.7509340Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1241:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7509930Z }); 2025-07-17T06:36:38.7510030Z ^ 2025-07-17T06:36:38.7510570Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1252:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7511160Z }); 2025-07-17T06:36:38.7511260Z ^ 2025-07-17T06:36:38.7511850Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1264:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7512450Z }); 2025-07-17T06:36:38.7512550Z ^ 2025-07-17T06:36:38.7513090Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1278:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7513680Z }); 2025-07-17T06:36:38.7513780Z ^ 2025-07-17T06:36:38.7514320Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1289:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7514910Z }); 2025-07-17T06:36:38.7515000Z ^ 2025-07-17T06:36:38.7515540Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1300:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7516130Z }); 2025-07-17T06:36:38.7516280Z ^ 2025-07-17T06:36:38.7516820Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1316:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7517410Z }); 2025-07-17T06:36:38.7517510Z ^ 2025-07-17T06:36:38.7518050Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1333:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7518650Z }); 2025-07-17T06:36:38.7518750Z ^ 2025-07-17T06:36:38.7519300Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1344:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7519890Z }); 2025-07-17T06:36:38.7519990Z ^ 2025-07-17T06:36:38.7520540Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1355:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7521140Z }); 2025-07-17T06:36:38.7521230Z ^ 2025-07-17T06:36:38.7521770Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1370:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7522360Z }); 2025-07-17T06:36:38.7522460Z ^ 2025-07-17T06:36:38.7523000Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1383:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7523590Z }); 2025-07-17T06:36:38.7523690Z ^ 2025-07-17T06:36:38.7524240Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1398:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7524830Z }); 2025-07-17T06:36:38.7524930Z ^ 2025-07-17T06:36:38.7525480Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1419:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7526070Z }); 2025-07-17T06:36:38.7526170Z ^ 2025-07-17T06:36:38.7526710Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1437:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7527300Z }); 2025-07-17T06:36:38.7527400Z ^ 2025-07-17T06:36:38.7528010Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1451:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7528620Z }); 2025-07-17T06:36:38.7528720Z ^ 2025-07-17T06:36:38.7529260Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1465:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7529850Z }); 2025-07-17T06:36:38.7529950Z ^ 2025-07-17T06:36:38.7530490Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1480:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7531080Z }); 2025-07-17T06:36:38.7531180Z ^ 2025-07-17T06:36:38.7531720Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1498:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7532310Z }); 2025-07-17T06:36:38.7532410Z ^ 2025-07-17T06:36:38.7532960Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1515:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7533620Z }); 2025-07-17T06:36:38.7533720Z ^ 2025-07-17T06:36:38.7534270Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1536:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7534860Z }); 2025-07-17T06:36:38.7534960Z ^ 2025-07-17T06:36:38.7535510Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1548:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7536100Z }); 2025-07-17T06:36:38.7536200Z ^ 2025-07-17T06:36:38.7536740Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1560:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7537340Z }); 2025-07-17T06:36:38.7537440Z ^ 2025-07-17T06:36:38.7537980Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1575:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7538570Z }); 2025-07-17T06:36:38.7538670Z ^ 2025-07-17T06:36:38.7539220Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1590:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7539820Z }); 2025-07-17T06:36:38.7539920Z ^ 2025-07-17T06:36:38.7540480Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1605:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7541070Z }); 2025-07-17T06:36:38.7541180Z ^ 2025-07-17T06:36:38.7541730Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1620:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7542330Z }); 2025-07-17T06:36:38.7542430Z ^ 2025-07-17T06:36:38.7542970Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1635:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7543560Z }); 2025-07-17T06:36:38.7543660Z ^ 2025-07-17T06:36:38.7544210Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1647:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7544800Z }); 2025-07-17T06:36:38.7544900Z ^ 2025-07-17T06:36:38.7545510Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1659:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7546110Z }); 2025-07-17T06:36:38.7546210Z ^ 2025-07-17T06:36:38.7546750Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1670:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7547340Z }); 2025-07-17T06:36:38.7547440Z ^ 2025-07-17T06:36:38.7547980Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1683:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7548570Z }); 2025-07-17T06:36:38.7548660Z ^ 2025-07-17T06:36:38.7549210Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1696:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7549850Z }); 2025-07-17T06:36:38.7549950Z ^ 2025-07-17T06:36:38.7550480Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1711:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7551080Z }); 2025-07-17T06:36:38.7551170Z ^ 2025-07-17T06:36:38.7551720Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1724:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7552310Z }); 2025-07-17T06:36:38.7552410Z ^ 2025-07-17T06:36:38.7552950Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1736:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7553560Z }); 2025-07-17T06:36:38.7553660Z ^ 2025-07-17T06:36:38.7554200Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1748:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7554790Z }); 2025-07-17T06:36:38.7554890Z ^ 2025-07-17T06:36:38.7555420Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1760:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7556010Z }); 2025-07-17T06:36:38.7556110Z ^ 2025-07-17T06:36:38.7556650Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1772:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7559850Z }); 2025-07-17T06:36:38.7560170Z ^ 2025-07-17T06:36:38.7561730Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1784:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7563410Z }); 2025-07-17T06:36:38.7563690Z ^ 2025-07-17T06:36:38.7565200Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1796:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7566860Z }); 2025-07-17T06:36:38.7567140Z ^ 2025-07-17T06:36:38.7568650Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1808:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7570310Z }); 2025-07-17T06:36:38.7570580Z ^ 2025-07-17T06:36:38.7572970Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1820:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7575670Z }); 2025-07-17T06:36:38.7575960Z ^ 2025-07-17T06:36:38.7577500Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1832:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7579160Z }); 2025-07-17T06:36:38.7579450Z ^ 2025-07-17T06:36:38.7581180Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1844:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7582860Z }); 2025-07-17T06:36:38.7583130Z ^ 2025-07-17T06:36:38.7584650Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1856:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7586310Z }); 2025-07-17T06:36:38.7586600Z ^ 2025-07-17T06:36:38.7588110Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1872:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7590170Z }); 2025-07-17T06:36:38.7590470Z ^ 2025-07-17T06:36:38.7591990Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1887:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7593630Z }); 2025-07-17T06:36:38.7593930Z ^ 2025-07-17T06:36:38.7595440Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1901:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7597080Z }); 2025-07-17T06:36:38.7597350Z ^ 2025-07-17T06:36:38.7598870Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1915:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7600530Z }); 2025-07-17T06:36:38.7600810Z ^ 2025-07-17T06:36:38.7602310Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1929:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7603960Z }); 2025-07-17T06:36:38.7604240Z ^ 2025-07-17T06:36:38.7605740Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1949:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7607390Z }); 2025-07-17T06:36:38.7607680Z ^ 2025-07-17T06:36:38.7609190Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1965:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7610840Z }); 2025-07-17T06:36:38.7611130Z ^ 2025-07-17T06:36:38.7612650Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1980:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7614290Z }); 2025-07-17T06:36:38.7614580Z ^ 2025-07-17T06:36:38.7616100Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:1992:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7617740Z }); 2025-07-17T06:36:38.7618020Z ^ 2025-07-17T06:36:38.7619520Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2007:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7621170Z }); 2025-07-17T06:36:38.7621440Z ^ 2025-07-17T06:36:38.7623200Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2018:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7624900Z }); 2025-07-17T06:36:38.7625180Z ^ 2025-07-17T06:36:38.7626690Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2033:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7628330Z }); 2025-07-17T06:36:38.7628630Z ^ 2025-07-17T06:36:38.7630150Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2044:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7631790Z }); 2025-07-17T06:36:38.7632070Z ^ 2025-07-17T06:36:38.7633580Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2055:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7635440Z }); 2025-07-17T06:36:38.7635710Z ^ 2025-07-17T06:36:38.7637220Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2066:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7638880Z }); 2025-07-17T06:36:38.7639150Z ^ 2025-07-17T06:36:38.7640670Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2078:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7642310Z }); 2025-07-17T06:36:38.7642590Z ^ 2025-07-17T06:36:38.7644090Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2090:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7645750Z }); 2025-07-17T06:36:38.7646030Z ^ 2025-07-17T06:36:38.7647540Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2104:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7649230Z }); 2025-07-17T06:36:38.7649500Z ^ 2025-07-17T06:36:38.7651010Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2116:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7652650Z }); 2025-07-17T06:36:38.7652920Z ^ 2025-07-17T06:36:38.7654440Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2128:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7656100Z }); 2025-07-17T06:36:38.7656380Z ^ 2025-07-17T06:36:38.7657910Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2140:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7659650Z }); 2025-07-17T06:36:38.7659780Z ^ 2025-07-17T06:36:38.7660370Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2152:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7660990Z }); 2025-07-17T06:36:38.7661090Z ^ 2025-07-17T06:36:38.7661650Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2167:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7662260Z }); 2025-07-17T06:36:38.7662360Z ^ 2025-07-17T06:36:38.7663360Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2179:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7663980Z }); 2025-07-17T06:36:38.7664080Z ^ 2025-07-17T06:36:38.7664640Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2191:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7665240Z }); 2025-07-17T06:36:38.7665340Z ^ 2025-07-17T06:36:38.7665890Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2203:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7666480Z }); 2025-07-17T06:36:38.7666580Z ^ 2025-07-17T06:36:38.7667120Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2215:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7667710Z }); 2025-07-17T06:36:38.7667810Z ^ 2025-07-17T06:36:38.7668350Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2227:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7669060Z }); 2025-07-17T06:36:38.7669150Z ^ 2025-07-17T06:36:38.7669690Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2243:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7670280Z }); 2025-07-17T06:36:38.7670380Z ^ 2025-07-17T06:36:38.7670920Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2262:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7671510Z }); 2025-07-17T06:36:38.7671610Z ^ 2025-07-17T06:36:38.7672160Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2273:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7672750Z }); 2025-07-17T06:36:38.7672850Z ^ 2025-07-17T06:36:38.7673390Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2284:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7673970Z }); 2025-07-17T06:36:38.7678900Z ^ 2025-07-17T06:36:38.7679480Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2295:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7680080Z }); 2025-07-17T06:36:38.7680170Z ^ 2025-07-17T06:36:38.7680720Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2309:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7681310Z }); 2025-07-17T06:36:38.7681410Z ^ 2025-07-17T06:36:38.7681950Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2326:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7682540Z }); 2025-07-17T06:36:38.7682650Z ^ 2025-07-17T06:36:38.7683200Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2345:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7683790Z }); 2025-07-17T06:36:38.7683890Z ^ 2025-07-17T06:36:38.7684430Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2358:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7685030Z }); 2025-07-17T06:36:38.7685130Z ^ 2025-07-17T06:36:38.7685780Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2379:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7686380Z }); 2025-07-17T06:36:38.7686490Z ^ 2025-07-17T06:36:38.7687030Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2396:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7687620Z }); 2025-07-17T06:36:38.7687720Z ^ 2025-07-17T06:36:38.7688270Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2412:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7688860Z }); 2025-07-17T06:36:38.7688960Z ^ 2025-07-17T06:36:38.7689500Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2426:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7690160Z }); 2025-07-17T06:36:38.7690260Z ^ 2025-07-17T06:36:38.7690810Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2453:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7691400Z }); 2025-07-17T06:36:38.7691500Z ^ 2025-07-17T06:36:38.7692040Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2465:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7692630Z }); 2025-07-17T06:36:38.7692730Z ^ 2025-07-17T06:36:38.7693270Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2479:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7693850Z }); 2025-07-17T06:36:38.7693960Z ^ 2025-07-17T06:36:38.7694500Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2494:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7695090Z }); 2025-07-17T06:36:38.7695190Z ^ 2025-07-17T06:36:38.7695730Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2507:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7696330Z }); 2025-07-17T06:36:38.7696430Z ^ 2025-07-17T06:36:38.7696970Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2521:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7697560Z }); 2025-07-17T06:36:38.7697660Z ^ 2025-07-17T06:36:38.7698210Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2540:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7698800Z }); 2025-07-17T06:36:38.7698900Z ^ 2025-07-17T06:36:38.7699450Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2554:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7700040Z }); 2025-07-17T06:36:38.7700140Z ^ 2025-07-17T06:36:38.7700680Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2567:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7701270Z }); 2025-07-17T06:36:38.7701370Z ^ 2025-07-17T06:36:38.7701970Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2586:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7702580Z }); 2025-07-17T06:36:38.7702680Z ^ 2025-07-17T06:36:38.7703220Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2601:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7703810Z }); 2025-07-17T06:36:38.7703910Z ^ 2025-07-17T06:36:38.7704460Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2618:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7705050Z }); 2025-07-17T06:36:38.7705150Z ^ 2025-07-17T06:36:38.7705690Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2629:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7706280Z }); 2025-07-17T06:36:38.7706450Z ^ 2025-07-17T06:36:38.7706990Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2640:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7707580Z }); 2025-07-17T06:36:38.7707680Z ^ 2025-07-17T06:36:38.7708220Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2654:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7708810Z }); 2025-07-17T06:36:38.7708910Z ^ 2025-07-17T06:36:38.7709460Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2668:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7710050Z }); 2025-07-17T06:36:38.7710150Z ^ 2025-07-17T06:36:38.7710690Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2682:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7711290Z }); 2025-07-17T06:36:38.7711390Z ^ 2025-07-17T06:36:38.7711930Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2696:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7712520Z }); 2025-07-17T06:36:38.7712620Z ^ 2025-07-17T06:36:38.7713160Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2710:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7713750Z }); 2025-07-17T06:36:38.7713850Z ^ 2025-07-17T06:36:38.7714390Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2724:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7714980Z }); 2025-07-17T06:36:38.7715080Z ^ 2025-07-17T06:36:38.7715620Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2738:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7716210Z }); 2025-07-17T06:36:38.7716310Z ^ 2025-07-17T06:36:38.7716850Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2752:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7717440Z }); 2025-07-17T06:36:38.7717550Z ^ 2025-07-17T06:36:38.7718140Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2766:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7718730Z }); 2025-07-17T06:36:38.7718840Z ^ 2025-07-17T06:36:38.7719390Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2780:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7719970Z }); 2025-07-17T06:36:38.7720080Z ^ 2025-07-17T06:36:38.7720620Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2794:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7721210Z }); 2025-07-17T06:36:38.7721310Z ^ 2025-07-17T06:36:38.7721860Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2808:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7722440Z }); 2025-07-17T06:36:38.7722550Z ^ 2025-07-17T06:36:38.7723090Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2822:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7723730Z }); 2025-07-17T06:36:38.7723830Z ^ 2025-07-17T06:36:38.7724370Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2837:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7724970Z }); 2025-07-17T06:36:38.7725080Z ^ 2025-07-17T06:36:38.7725620Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2852:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7726210Z }); 2025-07-17T06:36:38.7726310Z ^ 2025-07-17T06:36:38.7726850Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2867:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7727440Z }); 2025-07-17T06:36:38.7727540Z ^ 2025-07-17T06:36:38.7728090Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2881:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7728670Z }); 2025-07-17T06:36:38.7728770Z ^ 2025-07-17T06:36:38.7729320Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2895:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7729910Z }); 2025-07-17T06:36:38.7730000Z ^ 2025-07-17T06:36:38.7730540Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2909:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7731140Z }); 2025-07-17T06:36:38.7731250Z ^ 2025-07-17T06:36:38.7731790Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2923:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7732380Z }); 2025-07-17T06:36:38.7732470Z ^ 2025-07-17T06:36:38.7733010Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2938:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7733600Z }); 2025-07-17T06:36:38.7733700Z ^ 2025-07-17T06:36:38.7734240Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2952:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7734920Z }); 2025-07-17T06:36:38.7735030Z ^ 2025-07-17T06:36:38.7735570Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2966:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7736170Z }); 2025-07-17T06:36:38.7736270Z ^ 2025-07-17T06:36:38.7736810Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2981:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7737400Z }); 2025-07-17T06:36:38.7737500Z ^ 2025-07-17T06:36:38.7738050Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:2995:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7738640Z }); 2025-07-17T06:36:38.7738750Z ^ 2025-07-17T06:36:38.7739290Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:3010:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7740120Z }); 2025-07-17T06:36:38.7740220Z ^ 2025-07-17T06:36:38.7740760Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:3025:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7741350Z }); 2025-07-17T06:36:38.7741450Z ^ 2025-07-17T06:36:38.7742000Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:3040:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7742580Z }); 2025-07-17T06:36:38.7742680Z ^ 2025-07-17T06:36:38.7743230Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:3056:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7743830Z }); 2025-07-17T06:36:38.7743930Z ^ 2025-07-17T06:36:38.7744470Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:3070:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7745060Z }); 2025-07-17T06:36:38.7745160Z ^ 2025-07-17T06:36:38.7745710Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:3085:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7746300Z }); 2025-07-17T06:36:38.7746400Z ^ 2025-07-17T06:36:38.7746940Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:3099:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7747540Z }); 2025-07-17T06:36:38.7747640Z ^ 2025-07-17T06:36:38.7748180Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:3113:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7748770Z }); 2025-07-17T06:36:38.7748870Z ^ 2025-07-17T06:36:38.7749420Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:3124:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7750000Z }); 2025-07-17T06:36:38.7750100Z ^ 2025-07-17T06:36:38.7750640Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:3136:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7751230Z }); 2025-07-17T06:36:38.7751330Z ^ 2025-07-17T06:36:38.7751930Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:3148:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7752530Z }); 2025-07-17T06:36:38.7752630Z ^ 2025-07-17T06:36:38.7753170Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:3163:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7753760Z }); 2025-07-17T06:36:38.7753860Z ^ 2025-07-17T06:36:38.7754400Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:3179:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7754990Z }); 2025-07-17T06:36:38.7755090Z ^ 2025-07-17T06:36:38.7755630Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:3194:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7756280Z }); 2025-07-17T06:36:38.7756390Z ^ 2025-07-17T06:36:38.7756930Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp:3209:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:38.7757520Z }); 2025-07-17T06:36:38.7757620Z ^ 2025-07-17T06:36:38.7757730Z 236 warnings generated. 2025-07-17T06:36:38.8961430Z [4255/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_autograd_functions.cpp.o 2025-07-17T06:36:38.9474180Z [4256/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_lowering_context.cpp.o 2025-07-17T06:36:39.0360510Z [4257/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_eager_fallback.cpp.o 2025-07-17T06:36:39.0787150Z [4258/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/KernelRegistry.cpp.o 2025-07-17T06:36:39.0790400Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:248:17: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0791600Z c10::Device); 2025-07-17T06:36:39.0793320Z ^ 2025-07-17T06:36:39.0793940Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:297:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0794500Z }); 2025-07-17T06:36:39.0794690Z ^ 2025-07-17T06:36:39.0795390Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:308:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0796020Z }); 2025-07-17T06:36:39.0796300Z ^ 2025-07-17T06:36:39.0796910Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:321:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0797550Z }); 2025-07-17T06:36:39.0797750Z ^ 2025-07-17T06:36:39.0798330Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:332:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0798890Z }); 2025-07-17T06:36:39.0798990Z ^ 2025-07-17T06:36:39.0799490Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:343:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0800030Z }); 2025-07-17T06:36:39.0800130Z ^ 2025-07-17T06:36:39.0800800Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:355:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0801350Z }); 2025-07-17T06:36:39.0801450Z ^ 2025-07-17T06:36:39.0801970Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:367:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0802520Z }); 2025-07-17T06:36:39.0802620Z ^ 2025-07-17T06:36:39.0803130Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:381:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0803670Z }); 2025-07-17T06:36:39.0803770Z ^ 2025-07-17T06:36:39.0804250Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:392:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0804770Z }); 2025-07-17T06:36:39.0804880Z ^ 2025-07-17T06:36:39.0805350Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:402:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0805990Z }); 2025-07-17T06:36:39.0806090Z ^ 2025-07-17T06:36:39.0806580Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:436:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0807110Z }); 2025-07-17T06:36:39.0807210Z ^ 2025-07-17T06:36:39.0807690Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:449:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0808220Z }); 2025-07-17T06:36:39.0808320Z ^ 2025-07-17T06:36:39.0808800Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:462:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0809330Z }); 2025-07-17T06:36:39.0809440Z ^ 2025-07-17T06:36:39.0809920Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:477:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0810450Z }); 2025-07-17T06:36:39.0810550Z ^ 2025-07-17T06:36:39.0811030Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:494:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0811560Z }); 2025-07-17T06:36:39.0811660Z ^ 2025-07-17T06:36:39.0812140Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:515:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0812670Z }); 2025-07-17T06:36:39.0812770Z ^ 2025-07-17T06:36:39.0813250Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:532:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0813790Z }); 2025-07-17T06:36:39.0813890Z ^ 2025-07-17T06:36:39.0814370Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:549:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0814900Z }); 2025-07-17T06:36:39.0815000Z ^ 2025-07-17T06:36:39.0815480Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:563:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0816010Z }); 2025-07-17T06:36:39.0816110Z ^ 2025-07-17T06:36:39.0816590Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:575:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0817120Z }); 2025-07-17T06:36:39.0817220Z ^ 2025-07-17T06:36:39.0817760Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:587:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0818320Z }); 2025-07-17T06:36:39.0818420Z ^ 2025-07-17T06:36:39.0818900Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:597:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0819430Z }); 2025-07-17T06:36:39.0819520Z ^ 2025-07-17T06:36:39.0820000Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:608:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0820530Z }); 2025-07-17T06:36:39.0820630Z ^ 2025-07-17T06:36:39.0821110Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:619:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0821700Z }); 2025-07-17T06:36:39.0821810Z ^ 2025-07-17T06:36:39.0822280Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:632:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0822810Z }); 2025-07-17T06:36:39.0822910Z ^ 2025-07-17T06:36:39.0823390Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:646:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0823910Z }); 2025-07-17T06:36:39.0824010Z ^ 2025-07-17T06:36:39.0824480Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:663:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0825010Z }); 2025-07-17T06:36:39.0825110Z ^ 2025-07-17T06:36:39.0825600Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:680:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0826140Z }); 2025-07-17T06:36:39.0826240Z ^ 2025-07-17T06:36:39.0826710Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:695:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0827240Z }); 2025-07-17T06:36:39.0827340Z ^ 2025-07-17T06:36:39.0827820Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:715:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0828360Z }); 2025-07-17T06:36:39.0828460Z ^ 2025-07-17T06:36:39.0828950Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:731:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0829480Z }); 2025-07-17T06:36:39.0829580Z ^ 2025-07-17T06:36:39.0830060Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:746:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0835880Z }); 2025-07-17T06:36:39.0836020Z ^ 2025-07-17T06:36:39.0836520Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:763:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0837050Z }); 2025-07-17T06:36:39.0837150Z ^ 2025-07-17T06:36:39.0837630Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:777:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0838170Z }); 2025-07-17T06:36:39.0838260Z ^ 2025-07-17T06:36:39.0838910Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:801:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0839450Z }); 2025-07-17T06:36:39.0839560Z ^ 2025-07-17T06:36:39.0840050Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:817:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0840570Z }); 2025-07-17T06:36:39.0840670Z ^ 2025-07-17T06:36:39.0841150Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:830:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0841680Z }); 2025-07-17T06:36:39.0841780Z ^ 2025-07-17T06:36:39.0842260Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:843:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0842810Z }); 2025-07-17T06:36:39.0842910Z ^ 2025-07-17T06:36:39.0843400Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:854:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0844080Z }); 2025-07-17T06:36:39.0844180Z ^ 2025-07-17T06:36:39.0844660Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:869:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0845190Z }); 2025-07-17T06:36:39.0845290Z ^ 2025-07-17T06:36:39.0845770Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:891:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0846300Z }); 2025-07-17T06:36:39.0846400Z ^ 2025-07-17T06:36:39.0846890Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:903:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0847430Z }); 2025-07-17T06:36:39.0847530Z ^ 2025-07-17T06:36:39.0848000Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:923:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0848530Z }); 2025-07-17T06:36:39.0848630Z ^ 2025-07-17T06:36:39.0849110Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:959:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0849640Z }); 2025-07-17T06:36:39.0849730Z ^ 2025-07-17T06:36:39.0850210Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:981:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0850740Z }); 2025-07-17T06:36:39.0850840Z ^ 2025-07-17T06:36:39.0851360Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:1002:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0851900Z }); 2025-07-17T06:36:39.0852010Z ^ 2025-07-17T06:36:39.0852490Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:1020:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0853070Z }); 2025-07-17T06:36:39.0853180Z ^ 2025-07-17T06:36:39.0853670Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:1034:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0854230Z }); 2025-07-17T06:36:39.0854330Z ^ 2025-07-17T06:36:39.0854880Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:1047:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0855430Z }); 2025-07-17T06:36:39.0855530Z ^ 2025-07-17T06:36:39.0856030Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:1077:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0856570Z }); 2025-07-17T06:36:39.0856670Z ^ 2025-07-17T06:36:39.0857160Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:1107:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0857690Z }); 2025-07-17T06:36:39.0857800Z ^ 2025-07-17T06:36:39.0858280Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:1124:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0858810Z }); 2025-07-17T06:36:39.0858910Z ^ 2025-07-17T06:36:39.0859400Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:1143:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0860020Z }); 2025-07-17T06:36:39.0860120Z ^ 2025-07-17T06:36:39.0860600Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:1168:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0861140Z }); 2025-07-17T06:36:39.0861240Z ^ 2025-07-17T06:36:39.0861730Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:1179:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0862270Z }); 2025-07-17T06:36:39.0862370Z ^ 2025-07-17T06:36:39.0862860Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:1197:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0863390Z }); 2025-07-17T06:36:39.0863490Z ^ 2025-07-17T06:36:39.0863980Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:1213:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0864510Z }); 2025-07-17T06:36:39.0864600Z ^ 2025-07-17T06:36:39.0865090Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:1227:7: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0865620Z }); 2025-07-17T06:36:39.0865720Z ^ 2025-07-17T06:36:39.0866220Z /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nativert/kernels/KernelRegistry.cpp:1239:3: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi] 2025-07-17T06:36:39.0866780Z }); 2025-07-17T06:36:39.0866890Z ^ 2025-07-17T06:36:39.0867010Z 60 warnings generated. 2025-07-17T06:36:39.0989420Z [4259/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_backend_impl.cpp.o 2025-07-17T06:36:39.1041430Z [4260/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_node.cpp.o 2025-07-17T06:36:39.2765020Z [4261/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/train/export_data.cpp.o 2025-07-17T06:36:39.3083770Z [4262/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_node_lowering.cpp.o 2025-07-17T06:36:39.4210070Z [4263/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_native_functions.cpp.o 2025-07-17T06:36:39.4790580Z [4264/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/import_data.cpp.o 2025-07-17T06:36:39.5092370Z [4265/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/out_types.cpp.o 2025-07-17T06:36:39.6892900Z [4266/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/train/optim/sgd.cpp.o 2025-07-17T06:36:39.7259960Z [4267/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/TraceTypeManual.cpp.o 2025-07-17T06:36:39.7534470Z [4268/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/train/sequential.cpp.o 2025-07-17T06:36:39.8145680Z [4269/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/train/random.cpp.o 2025-07-17T06:36:39.8373450Z [4270/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/flatbuffer_serializer.cpp.o 2025-07-17T06:36:39.8781020Z [4271/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/FunctionsManual.cpp.o 2025-07-17T06:36:39.8794330Z [4272/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/jit.cpp.o 2025-07-17T06:36:40.0103170Z [4273/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/compatibility/backport.cpp.o 2025-07-17T06:36:40.1371540Z [4274/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/VariableTypeManual.cpp.o 2025-07-17T06:36:40.1473780Z [4275/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/onnx.cpp.o 2025-07-17T06:36:40.1507600Z [4276/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/compatibility/backport_manager.cpp.o 2025-07-17T06:36:40.1684500Z [4277/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/export_bytecode.cpp.o 2025-07-17T06:36:40.3174010Z [4278/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/byte_order.cpp.o 2025-07-17T06:36:40.3430330Z [4279/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/api/module_save.cpp.o 2025-07-17T06:36:40.4598610Z [4280/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/cuda.cpp.o 2025-07-17T06:36:40.5155630Z [4281/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/export.cpp.o 2025-07-17T06:36:40.5760440Z [4282/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/cpu/fused_kernel.cpp.o 2025-07-17T06:36:40.6163750Z [4283/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/enum.cpp.o 2025-07-17T06:36:40.7136040Z [4284/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/export_module.cpp.o 2025-07-17T06:36:40.8689080Z [4285/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/datasets/mnist.cpp.o 2025-07-17T06:36:40.8791520Z [4286/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/imethod.cpp.o 2025-07-17T06:36:40.8908780Z [4287/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/mps.cpp.o 2025-07-17T06:36:40.9092950Z [4288/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/samplers/distributed.cpp.o 2025-07-17T06:36:40.9857900Z [4289/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/samplers/random.cpp.o 2025-07-17T06:36:41.0152410Z [4290/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/samplers/sequential.cpp.o 2025-07-17T06:36:41.1722100Z [4291/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/samplers/stream.cpp.o 2025-07-17T06:36:41.3529650Z [4292/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/serialize.cpp.o 2025-07-17T06:36:41.4741660Z [4293/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/init.cpp.o 2025-07-17T06:36:41.5107370Z [4294/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/module.cpp.o 2025-07-17T06:36:41.5633840Z [4295/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/adaptive.cpp.o 2025-07-17T06:36:41.5791390Z [4296/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/activation.cpp.o 2025-07-17T06:36:41.5973130Z [4297/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/batchnorm.cpp.o 2025-07-17T06:36:41.6194230Z [4298/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/_functions.cpp.o 2025-07-17T06:36:41.7383270Z [4299/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/normalization.cpp.o 2025-07-17T06:36:41.9888370Z [4300/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/dropout.cpp.o 2025-07-17T06:36:42.0164960Z [4301/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/instancenorm.cpp.o 2025-07-17T06:36:42.0638790Z [4302/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/conv.cpp.o 2025-07-17T06:36:42.2388130Z [4303/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/distance.cpp.o 2025-07-17T06:36:42.2648860Z [4304/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/embedding.cpp.o 2025-07-17T06:36:42.2961070Z [4305/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/fold.cpp.o 2025-07-17T06:36:42.3777550Z [4306/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/linear.cpp.o 2025-07-17T06:36:42.5393820Z [4307/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/loss.cpp.o 2025-07-17T06:36:42.6724930Z [4308/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/padding.cpp.o 2025-07-17T06:36:42.7092810Z [4309/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/pixelshuffle.cpp.o 2025-07-17T06:36:42.8406020Z [4310/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/rnn.cpp.o 2025-07-17T06:36:42.8802730Z [4311/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/upsampling.cpp.o 2025-07-17T06:36:42.8904790Z [4312/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/container/functional.cpp.o 2025-07-17T06:36:42.9134170Z [4313/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/transformer.cpp.o 2025-07-17T06:36:42.9516210Z [4314/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/pooling.cpp.o 2025-07-17T06:36:42.9802490Z [4315/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/adaptive.cpp.o 2025-07-17T06:36:43.2601940Z [4316/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/activation.cpp.o 2025-07-17T06:36:43.2805650Z [4317/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/batchnorm.cpp.o 2025-07-17T06:36:43.4080760Z [4318/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/embedding.cpp.o 2025-07-17T06:36:43.4251740Z [4319/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/instancenorm.cpp.o 2025-07-17T06:36:43.5995410Z [4320/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/conv.cpp.o 2025-07-17T06:36:43.6227050Z [4321/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/normalization.cpp.o 2025-07-17T06:36:43.6425900Z [4322/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/dropout.cpp.o 2025-07-17T06:36:43.6899490Z [4323/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/linear.cpp.o 2025-07-17T06:36:43.8708210Z [4324/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/pooling.cpp.o 2025-07-17T06:36:43.8908370Z [4325/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/padding.cpp.o 2025-07-17T06:36:44.0445800Z [4326/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/vision.cpp.o 2025-07-17T06:36:44.0641100Z [4327/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/rnn.cpp.o 2025-07-17T06:36:44.2265600Z [4328/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/adagrad.cpp.o 2025-07-17T06:36:44.2438320Z [4329/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/transformer.cpp.o 2025-07-17T06:36:44.4057050Z [4330/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/adam.cpp.o 2025-07-17T06:36:44.4349890Z [4331/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/lbfgs.cpp.o 2025-07-17T06:36:44.4526250Z [4332/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/optimizer.cpp.o 2025-07-17T06:36:44.4803200Z [4333/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/schedulers/lr_scheduler.cpp.o 2025-07-17T06:36:44.5048150Z [4334/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/adamw.cpp.o 2025-07-17T06:36:44.5999570Z [4335/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/rmsprop.cpp.o 2025-07-17T06:36:44.6581690Z [4336/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/serialize.cpp.o 2025-07-17T06:36:44.7055720Z [4337/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/schedulers/step_lr.cpp.o 2025-07-17T06:36:44.8064580Z [4338/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/xpu.cpp.o 2025-07-17T06:36:44.8873260Z [4339/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/sgd.cpp.o 2025-07-17T06:36:44.8974010Z [4340/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/schedulers/reduce_on_plateau_scheduler.cpp.o 2025-07-17T06:36:45.0487440Z [4341/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSGeneratorImpl.mm.o 2025-07-17T06:36:45.0754780Z [4342/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/serialize/input-archive.cpp.o 2025-07-17T06:36:45.2385830Z [4343/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/serialize/output-archive.cpp.o 2025-07-17T06:36:45.2625540Z [4344/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/EmptyTensor.cpp.o 2025-07-17T06:36:45.4014420Z [4345/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSAllocator.mm.o 2025-07-17T06:36:45.4219500Z [4346/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSFallback.mm.o 2025-07-17T06:36:45.4946630Z [4347/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Equal.cpp.o 2025-07-17T06:36:45.5146880Z [4348/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSGuardImpl.mm.o 2025-07-17T06:36:45.5178500Z [4349/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSHooks.mm.o 2025-07-17T06:36:45.6883260Z [4350/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSStream.mm.o 2025-07-17T06:36:45.8309050Z [4351/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSProfiler.mm.o 2025-07-17T06:36:45.8583270Z [4352/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/TensorFactory.cpp.o 2025-07-17T06:36:46.1174940Z [4353/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Activation.mm.o 2025-07-17T06:36:46.1222270Z [4354/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/ActivationKernel.mm.o 2025-07-17T06:36:46.1536650Z [4355/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/OperationUtils.mm.o 2025-07-17T06:36:46.1642960Z [4356/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Attention.mm.o 2025-07-17T06:36:46.2857530Z [4357/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/AdaptivePooling.mm.o 2025-07-17T06:36:46.3351090Z [4358/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Amp.mm.o 2025-07-17T06:36:46.3911820Z [4359/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/BinaryKernel.mm.o 2025-07-17T06:36:46.5208470Z [4360/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/BitwiseOps.mm.o 2025-07-17T06:36:46.8140830Z [4361/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Blas.mm.o 2025-07-17T06:36:46.8275660Z [4362/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/BinaryOps.mm.o 2025-07-17T06:36:46.8448600Z [4363/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/ConstantOps.mm.o 2025-07-17T06:36:46.9002280Z [4364/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Bucketization.mm.o 2025-07-17T06:36:46.9201100Z [4365/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Convolution.mm.o 2025-07-17T06:36:46.9246100Z [4366/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Col2Im.mm.o 2025-07-17T06:36:47.0718350Z [4367/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Copy.mm.o 2025-07-17T06:36:47.1494320Z [4368/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/CrossKernel.mm.o 2025-07-17T06:36:47.2159720Z [4369/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamKernel.mm.o 2025-07-17T06:36:47.4268000Z [4370/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamWKernel.mm.o 2025-07-17T06:36:47.4839130Z [4371/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Eye.mm.o 2025-07-17T06:36:47.5350410Z [4372/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FastFourierTransform.mm.o 2025-07-17T06:36:47.5401700Z [4373/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Distributions.mm.o 2025-07-17T06:36:47.6096800Z [4374/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamAmsgradKernelImpl.mm.o 2025-07-17T06:36:47.6408120Z [4375/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/GridSampler.mm.o 2025-07-17T06:36:47.6929280Z [4376/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamKernelImpl.mm.o 2025-07-17T06:36:47.9297490Z [4377/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamWAmsgradKernelImpl.mm.o 2025-07-17T06:36:48.1624300Z [4378/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamWKernelImpl.mm.o 2025-07-17T06:36:48.1755180Z [4379/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/HistogramKernel.mm.o 2025-07-17T06:36:48.1919560Z [4380/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Gamma.mm.o 2025-07-17T06:36:48.2124580Z [4381/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedSgdKernel.mm.o 2025-07-17T06:36:48.2524470Z [4382/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Im2Col.mm.o 2025-07-17T06:36:48.2808060Z [4383/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Lerp.mm.o 2025-07-17T06:36:48.3194270Z [4384/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Indexing.mm.o 2025-07-17T06:36:48.5272670Z [4385/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Linear.mm.o 2025-07-17T06:36:48.5374170Z /Users/ec2-user/runner/_work/pytorch/pytorch/aten/src/ATen/native/mps/operations/Linear.mm:50:17: warning: instance method '-encodeToCommandEncoder:commandBuffer:sourceArrays:destinationArray:' not found (return type defaults to 'id') [-Wobjc-method-access] 2025-07-17T06:36:48.5472970Z [kernel encodeToCommandEncoder:computeEncoder 2025-07-17T06:36:48.5524350Z ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-17T06:36:48.5528090Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/Headers/MPSNDArrayMatrixMultiplication.h:37:12: note: receiver is instance of class declared here 2025-07-17T06:36:48.5531470Z @interface MPSNDArrayMatrixMultiplication : MPSNDArrayMultiaryKernel 2025-07-17T06:36:48.5533960Z ^ 2025-07-17T06:36:48.5540460Z /Users/ec2-user/runner/_work/pytorch/pytorch/aten/src/ATen/native/mps/operations/Linear.mm:61:17: warning: instance method '-encodeToCommandEncoder:commandBuffer:sourceArrays:destinationArray:' not found (return type defaults to 'id') [-Wobjc-method-access] 2025-07-17T06:36:48.5542690Z [kernel encodeToCommandEncoder:computeEncoder 2025-07-17T06:36:48.5543300Z ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-17T06:36:48.5545450Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/Headers/MPSNDArrayMatrixMultiplication.h:37:12: note: receiver is instance of class declared here 2025-07-17T06:36:48.5547080Z @interface MPSNDArrayMatrixMultiplication : MPSNDArrayMultiaryKernel 2025-07-17T06:36:48.5547350Z ^ 2025-07-17T06:36:48.5547480Z 2 warnings generated. 2025-07-17T06:36:48.8332380Z [4386/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Normalization.mm.o 2025-07-17T06:36:48.8417030Z [4387/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/LinearAlgebra.mm.o 2025-07-17T06:36:48.8423190Z /Users/ec2-user/runner/_work/pytorch/pytorch/aten/src/ATen/native/mps/operations/LinearAlgebra.mm:853:21: warning: instance method '-encodeToCommandEncoder:commandBuffer:sourceArrays:destinationArray:' not found (return type defaults to 'id') [-Wobjc-method-access] 2025-07-17T06:36:48.8494160Z [matmul encodeToCommandEncoder:computeEncoder 2025-07-17T06:36:48.8589960Z ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-17T06:36:48.8592680Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/Headers/MPSNDArrayMatrixMultiplication.h:37:12: note: receiver is instance of class declared here 2025-07-17T06:36:48.8593630Z @interface MPSNDArrayMatrixMultiplication : MPSNDArrayMultiaryKernel 2025-07-17T06:36:48.8597440Z ^ 2025-07-17T06:36:48.8599840Z 1 warning generated. 2025-07-17T06:36:48.8716500Z [4388/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/LossOps.mm.o 2025-07-17T06:36:48.9384200Z [4389/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/PixelShuffle.mm.o 2025-07-17T06:36:48.9953400Z [4390/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/PointwiseOps.mm.o 2025-07-17T06:36:49.0209350Z [4391/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Quantized.mm.o 2025-07-17T06:36:49.0354810Z [4392/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Pad.mm.o 2025-07-17T06:36:49.2410420Z [4393/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Pooling.mm.o 2025-07-17T06:36:49.4655330Z [4394/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/RMSNorm.mm.o 2025-07-17T06:36:49.5309170Z [4395/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/RnnOps.mm.o 2025-07-17T06:36:49.6010240Z [4396/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/RenormKernel.mm.o 2025-07-17T06:36:49.6382450Z [4397/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Repeat.mm.o 2025-07-17T06:36:49.6423070Z [4398/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/ReduceOps.mm.o 2025-07-17T06:36:49.7289590Z [4399/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/RangeFactories.mm.o 2025-07-17T06:36:49.7465420Z [4400/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Scalar.mm.o 2025-07-17T06:36:49.9542000Z [4401/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/ScanKernel.mm.o 2025-07-17T06:36:50.1664760Z [4402/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/ScatterGather.mm.o 2025-07-17T06:36:50.2036430Z [4403/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Shape.mm.o 2025-07-17T06:36:50.2333110Z [4404/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/SoftMax.mm.o 2025-07-17T06:36:50.2384660Z [4405/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Sort.mm.o 2025-07-17T06:36:50.3053760Z [4406/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/SpecialOps.mm.o 2025-07-17T06:36:50.3436790Z [4407/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/TensorCompare.mm.o 2025-07-17T06:36:50.4054400Z [4408/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/SummaryOps.mm.o 2025-07-17T06:36:50.5482960Z [4409/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/UnaryOps.mm.o 2025-07-17T06:36:50.7982570Z [4410/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/shim_mps.cpp.o 2025-07-17T06:36:50.8409440Z [4411/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/TriangularOps.mm.o 2025-07-17T06:36:50.8752830Z [4412/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/UnaryKernel.mm.o 2025-07-17T06:36:50.9016360Z [4413/5148] Building CXX object caffe2/CMakeFiles/torch.dir/__/empty.cpp.o 2025-07-17T06:36:50.9601510Z [4414/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/UnfoldBackward.mm.o 2025-07-17T06:36:50.9640240Z [4415/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Unique.mm.o 2025-07-17T06:36:50.9681660Z [4416/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/View.mm.o 2025-07-17T06:36:51.0571600Z [4417/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/WeightNorm.mm.o 2025-07-17T06:36:51.0774650Z [4418/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/UpSample.mm.o 2025-07-17T06:36:51.1771680Z [4419/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_runner/model_container_runner_mps.cpp.o 2025-07-17T06:36:51.2575890Z [4420/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/AffineQuantizer.cpp.o 2025-07-17T06:36:51.2813230Z [4421/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/AffineQuantizerBase.cpp.o 2025-07-17T06:36:51.3080960Z [4422/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorUtils.cpp.o 2025-07-17T06:36:51.4006070Z [4423/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/shim_mps.mm.o 2025-07-17T06:36:51.5636510Z [4424/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorUnaryOps.cpp.o 2025-07-17T06:36:51.5837680Z [4425/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/ACLUtils.cpp.o 2025-07-17T06:36:51.7115400Z [4426/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/Copy.cpp.o 2025-07-17T06:36:51.7243850Z [4427/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/TensorFactories.cpp.o 2025-07-17T06:36:51.8542910Z [4428/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/QTensor.cpp.o 2025-07-17T06:36:51.8747790Z [4429/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/FakeQuantPerChannelAffine.cpp.o 2025-07-17T06:36:51.8855200Z [4430/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/ChannelShuffle.cpp.o 2025-07-17T06:36:51.9176750Z [4431/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/TensorCompare.cpp.o 2025-07-17T06:36:51.9302010Z [4432/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/TensorAdvancedIndexing.cpp.o 2025-07-17T06:36:51.9665830Z [4433/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/FakeQuantPerTensorAffine.cpp.o 2025-07-17T06:36:52.0654990Z [4434/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/AveragePool3d.cpp.o 2025-07-17T06:36:52.0757170Z [4435/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/AveragePool2d.cpp.o 2025-07-17T06:36:52.2397800Z [4436/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/BinaryOps.cpp.o 2025-07-17T06:36:52.2500440Z [4437/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/Normalization.cpp.o 2025-07-17T06:36:52.2635000Z [4438/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/AdaptiveAveragePooling.cpp.o 2025-07-17T06:36:52.2641930Z [4439/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/RuyUtils.cpp.o 2025-07-17T06:36:52.2661170Z [4440/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/LinearUnpackImpl.cpp.o 2025-07-17T06:36:52.2716130Z [4441/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/ReduceOps.cpp.o 2025-07-17T06:36:52.3479640Z [4442/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/IntReprQuant.cpp.o 2025-07-17T06:36:52.4077120Z [4443/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/MakePerTensorQuantizedTensor.cpp.o 2025-07-17T06:36:52.4914940Z [4444/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/Pooling.cpp.o 2025-07-17T06:36:52.6128220Z [4445/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/Sorting.cpp.o 2025-07-17T06:36:52.6706530Z [4446/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/UpSampleBilinear2d.cpp.o 2025-07-17T06:36:52.6808780Z [4447/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/TensorOperators.cpp.o 2025-07-17T06:36:52.6974430Z [4448/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/TensorShape.cpp.o 2025-07-17T06:36:52.7019040Z [4449/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/UpSampleNearest3d.cpp.o 2025-07-17T06:36:52.7079130Z [4450/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/UpSampleNearest2d.cpp.o 2025-07-17T06:36:52.8637340Z [4451/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/init_qnnpack.cpp.o 2025-07-17T06:36:52.8836560Z [4452/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/fbgemm_utils.cpp.o 2025-07-17T06:36:53.0259850Z [4453/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/fused_obs_fake_quant.cpp.o 2025-07-17T06:36:53.0390930Z [4454/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qclamp.cpp.o 2025-07-17T06:36:53.0726750Z [4455/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qconv.cpp.o 2025-07-17T06:36:53.0890550Z [4456/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qconv_dynamic.cpp.o 2025-07-17T06:36:53.0911840Z [4457/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qelu.cpp.o 2025-07-17T06:36:53.1502260Z [4458/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qconv_prepack.cpp.o 2025-07-17T06:36:53.1663870Z [4459/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/XnnpackUtils.cpp.o 2025-07-17T06:36:53.3715390Z [4460/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qembeddingbag.cpp.o 2025-07-17T06:36:53.4265200Z [4461/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qlinear.cpp.o 2025-07-17T06:36:53.4425500Z [4462/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qembeddingbag_prepack.cpp.o 2025-07-17T06:36:53.4709840Z [4463/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qgelu.cpp.o 2025-07-17T06:36:53.5159160Z [4464/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qconv_unpack_impl.cpp.o 2025-07-17T06:36:53.5261240Z [4465/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qhardsigmoid.cpp.o 2025-07-17T06:36:53.5570350Z [4466/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qembeddingbag_unpack.cpp.o 2025-07-17T06:36:53.7265780Z [4467/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qdropout.cpp.o 2025-07-17T06:36:53.8135030Z [4468/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qlinear_dynamic.cpp.o 2025-07-17T06:36:53.8196760Z [4469/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qnormalization.cpp.o 2025-07-17T06:36:53.8446690Z [4470/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qmul.cpp.o 2025-07-17T06:36:53.8585400Z [4471/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qhardswish.cpp.o 2025-07-17T06:36:53.8695960Z [4472/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qlinear_prepack.cpp.o 2025-07-17T06:36:53.9443260Z [4473/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qsigmoid.cpp.o 2025-07-17T06:36:54.0086710Z [4474/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qrelu.cpp.o 2025-07-17T06:36:54.1285560Z [4475/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qmatmul.cpp.o 2025-07-17T06:36:54.1387130Z [4476/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/MklAllocationHelper.cpp.o 2025-07-17T06:36:54.1485120Z [4477/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qtanh.cpp.o 2025-07-17T06:36:54.2267770Z [4478/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/LinearAlgebra.cpp.o 2025-07-17T06:36:54.3062710Z [4479/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qthreshold.cpp.o 2025-07-17T06:36:54.3257900Z [4480/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/library.cpp.o 2025-07-17T06:36:54.3459770Z [4481/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/qconv_unpack.cpp.o 2025-07-17T06:36:54.4162050Z [4482/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/SparseBlasImpl.cpp.o 2025-07-17T06:36:54.4993720Z [4483/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qsoftmax.cpp.o 2025-07-17T06:36:54.5315290Z [4484/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/SparseCsrLinearAlgebra.cpp.o 2025-07-17T06:36:54.5958880Z [4485/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/BinaryOps.cpp.o 2025-07-17T06:36:54.6077680Z [4486/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/IDeepRegistration.cpp.o 2025-07-17T06:36:54.6112460Z [4487/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/qlinear_unpack.cpp.o 2025-07-17T06:36:54.6333910Z [4488/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Conv.cpp.o 2025-07-17T06:36:54.6908920Z [4489/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Copy.cpp.o 2025-07-17T06:36:54.7102060Z [4490/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/SpectralOps.cpp.o 2025-07-17T06:36:54.7456900Z [4491/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Gelu.cpp.o 2025-07-17T06:36:54.9331080Z [4492/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/MKLDNNCommon.cpp.o 2025-07-17T06:36:54.9400150Z [4493/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Linear.cpp.o 2025-07-17T06:36:55.0040260Z [4494/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/MkldnnTensorMath.cpp.o 2025-07-17T06:36:55.0283860Z [4495/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/ConvPrepack.cpp.o 2025-07-17T06:36:55.0637030Z [4496/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Normalization.cpp.o 2025-07-17T06:36:55.0764240Z [4497/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Matmul.cpp.o 2025-07-17T06:36:55.0861380Z [4498/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/MKLDNNConversions.cpp.o 2025-07-17T06:36:55.2002120Z [4499/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/RegisterMkldnnOpContextClass.cpp.o 2025-07-17T06:36:55.2989170Z [4500/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Pooling.cpp.o 2025-07-17T06:36:55.3290730Z [4501/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/SoftMax.cpp.o 2025-07-17T06:36:55.3425320Z [4502/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/OpContext.cpp.o 2025-07-17T06:36:55.4368200Z [4503/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Relu.cpp.o 2025-07-17T06:36:55.4495670Z [4504/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/TensorFactories.cpp.o 2025-07-17T06:36:55.4847060Z [4505/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/UnaryOps.cpp.o 2025-07-17T06:36:55.5285130Z [4506/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Prelu.cpp.o 2025-07-17T06:36:55.6415200Z [4507/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/TensorShape.cpp.o 2025-07-17T06:36:55.6513650Z [4508/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Utils.cpp.o 2025-07-17T06:36:55.7191250Z [4509/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/RNN.cpp.o 2025-07-17T06:36:55.7208010Z [4510/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/transformers/sdp_utils_cpp.cpp.o 2025-07-17T06:36:55.7215350Z [4511/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/file_adapter.cc.o 2025-07-17T06:36:55.7501550Z [4512/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/istream_adapter.cc.o 2025-07-17T06:36:55.7771340Z [4513/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/transformers/attention.cpp.o 2025-07-17T06:36:55.9356000Z [4514/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Integration.cpp.o 2025-07-17T06:36:55.9656720Z [4515/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/IndexingUtils.cpp.o 2025-07-17T06:36:56.0819530Z [4516/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Itertools.cpp.o 2025-07-17T06:36:56.0942330Z [4517/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LegacyBatching.cpp.o 2025-07-17T06:36:56.0949080Z [4518/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Lerp.cpp.o 2025-07-17T06:36:56.1611520Z [4519/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Linear.cpp.o 2025-07-17T06:36:56.2041700Z [4520/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossCTC.cpp.o 2025-07-17T06:36:56.2156730Z [4521/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LinearAlgebra.cpp.o 2025-07-17T06:36:56.2321940Z [4522/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Loss.cpp.o 2025-07-17T06:36:56.2808190Z [4523/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalUpsamplingNearest.mm.o 2025-07-17T06:36:56.3989370Z [4524/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossMultiLabelMargin.cpp.o 2025-07-17T06:36:56.4137030Z [4525/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossMultiMargin.cpp.o 2025-07-17T06:36:56.5330880Z [4526/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/MetaTensor.cpp.o 2025-07-17T06:36:56.5577670Z [4527/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/MaxPooling.cpp.o 2025-07-17T06:36:56.5668290Z [4528/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossNLL2d.cpp.o 2025-07-17T06:36:56.6177610Z [4529/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossNLL.cpp.o 2025-07-17T06:36:56.6214210Z [4530/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/MaxUnpooling.cpp.o 2025-07-17T06:36:56.6354880Z [4531/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Memory.cpp.o 2025-07-17T06:36:56.6667340Z [4532/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NNPACK.cpp.o 2025-07-17T06:36:56.7482540Z [4533/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NaiveConvolutionTranspose2d.cpp.o 2025-07-17T06:36:56.9056090Z [4534/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NamedTensor.cpp.o 2025-07-17T06:36:56.9424590Z [4535/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NaiveConvolutionTranspose3d.cpp.o 2025-07-17T06:36:56.9801780Z [4536/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NaiveDilatedConvolution.cpp.o 2025-07-17T06:36:57.0206270Z [4537/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Onehot.cpp.o 2025-07-17T06:36:57.0307680Z [4538/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NegateFallback.cpp.o 2025-07-17T06:36:57.0309860Z [4539/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/PackedSequence.cpp.o 2025-07-17T06:36:57.0472370Z [4540/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/PadNd.cpp.o 2025-07-17T06:36:57.0745290Z [4541/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Normalization.cpp.o 2025-07-17T06:36:57.2377370Z [4542/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/PointwiseOps.cpp.o 2025-07-17T06:36:57.2614090Z [4543/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/PixelShuffle.cpp.o 2025-07-17T06:36:57.3242570Z [4544/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Pow.cpp.o 2025-07-17T06:36:57.3489210Z [4545/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Pooling.cpp.o 2025-07-17T06:36:57.3794620Z [4546/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/QuantizedLinear.cpp.o 2025-07-17T06:36:57.4609950Z [4547/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/RangeFactories.cpp.o 2025-07-17T06:36:57.4817780Z [4548/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ReduceAllOps.cpp.o 2025-07-17T06:36:57.5144050Z [4549/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/RNN.cpp.o 2025-07-17T06:36:57.5841960Z [4550/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ReflectionPad.cpp.o 2025-07-17T06:36:57.6060700Z [4551/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ReduceOps.cpp.o 2025-07-17T06:36:57.7236770Z [4552/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Repeat.cpp.o 2025-07-17T06:36:57.7337240Z [4553/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ReplicationPadding.cpp.o 2025-07-17T06:36:57.7725830Z [4554/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Resize.cpp.o 2025-07-17T06:36:57.8521330Z [4555/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Scalar.cpp.o 2025-07-17T06:36:57.8699800Z [4556/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SobolEngineOps.cpp.o 2025-07-17T06:36:57.8703350Z [4557/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/RowwisePrune.cpp.o 2025-07-17T06:36:57.9487820Z [4558/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SegmentReduce.cpp.o 2025-07-17T06:36:58.0658710Z [4559/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SoftMax.cpp.o 2025-07-17T06:36:58.0708200Z [4560/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Sorting.cpp.o 2025-07-17T06:36:58.0768120Z [4561/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SobolEngineOpsUtils.cpp.o 2025-07-17T06:36:58.1648050Z [4562/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SpectralOps.cpp.o 2025-07-17T06:36:58.1823020Z [4563/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SummaryOps.cpp.o 2025-07-17T06:36:58.3677560Z [4564/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorCompare.cpp.o 2025-07-17T06:36:58.4103920Z [4565/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SparseTensorUtils.cpp.o 2025-07-17T06:36:58.4154220Z [4566/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorFactories.cpp.o 2025-07-17T06:36:58.4895030Z [4567/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorIteratorReduce.cpp.o 2025-07-17T06:36:58.4995310Z [4568/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorProperties.cpp.o 2025-07-17T06:36:58.6365380Z [4569/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorShape.cpp.o 2025-07-17T06:36:58.6725130Z [4570/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorConversions.cpp.o 2025-07-17T06:36:58.6825840Z [4571/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorTransformations.cpp.o 2025-07-17T06:36:58.6936440Z [4572/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TestOps.cpp.o 2025-07-17T06:36:58.7307840Z [4573/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorAdvancedIndexing.cpp.o 2025-07-17T06:36:58.7974940Z [4574/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TypeProperties.cpp.o 2025-07-17T06:36:58.8179160Z [4575/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TriangularOps.cpp.o 2025-07-17T06:36:58.8180920Z [4576/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Unfold2d.cpp.o 2025-07-17T06:36:58.8319140Z [4577/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UnaryOps.cpp.o 2025-07-17T06:36:58.9100950Z [4578/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Unfold3d.cpp.o 2025-07-17T06:36:59.0906880Z [4579/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSample.cpp.o 2025-07-17T06:36:59.1663730Z [4580/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleBicubic2d.cpp.o 2025-07-17T06:36:59.1878550Z [4581/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleNearest2d.cpp.o 2025-07-17T06:36:59.1964260Z [4582/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleBilinear2d.cpp.o 2025-07-17T06:36:59.2028570Z [4583/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleLinear1d.cpp.o 2025-07-17T06:36:59.2045770Z [4584/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UnfoldBackward.cpp.o 2025-07-17T06:36:59.2148730Z [4585/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleNearest3d.cpp.o 2025-07-17T06:36:59.2375130Z [4586/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Unique.cpp.o 2025-07-17T06:36:59.3145540Z [4587/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/verbose_wrapper.cpp.o 2025-07-17T06:36:59.5179330Z [4588/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleNearest1d.cpp.o 2025-07-17T06:36:59.5309740Z [4589/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/VariableMethodStubs.cpp.o 2025-07-17T06:36:59.5451190Z [4590/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/prim_native_functions.cpp.o 2025-07-17T06:36:59.5501600Z [4591/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleTrilinear3d.cpp.o 2025-07-17T06:36:59.5690180Z [4592/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/layer_norm.cpp.o 2025-07-17T06:36:59.6020890Z [4593/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/group_norm.cpp.o 2025-07-17T06:36:59.6174910Z [4594/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/library.cpp.o 2025-07-17T06:36:59.6238780Z [4595/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/WeightNorm.cpp.o 2025-07-17T06:36:59.8356000Z [4596/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear.cpp.o 2025-07-17T06:36:59.8947510Z [4597/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/fbgemm_utils.cpp.o 2025-07-17T06:36:59.9548630Z [4598/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/ParamUtils.cpp.o 2025-07-17T06:36:59.9660630Z [4599/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SoftMax.cpp.o 2025-07-17T06:36:59.9728950Z [4600/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_prepack.cpp.o 2025-07-17T06:37:00.0385760Z [4601/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_dynamic.cpp.o 2025-07-17T06:37:00.1844240Z [4602/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_unpack.cpp.o 2025-07-17T06:37:00.1965090Z [4603/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/FlattenIndicesKernel.cpp.o 2025-07-17T06:37:00.2696500Z [4604/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_deserialize.cpp.o 2025-07-17T06:37:00.2730250Z [4605/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseBlasImpl.cpp.o 2025-07-17T06:37:00.3219010Z [4606/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_serialize.cpp.o 2025-07-17T06:37:00.3341600Z [4607/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseCsrTensor.cpp.o 2025-07-17T06:37:00.4238280Z [4608/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseBinaryOpIntersectionKernel.cpp.o 2025-07-17T06:37:00.4863900Z [4609/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseBlas.cpp.o 2025-07-17T06:37:00.5359630Z [4610/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseCsrTensorMath.cpp.o 2025-07-17T06:37:00.5690500Z [4611/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseMatMul.cpp.o 2025-07-17T06:37:00.5996520Z [4612/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseFactories.cpp.o 2025-07-17T06:37:00.6294780Z [4613/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseTensor.cpp.o 2025-07-17T06:37:00.6956930Z [4614/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseUnaryOps.cpp.o 2025-07-17T06:37:00.8334000Z [4615/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseTensorMath.cpp.o 2025-07-17T06:37:00.8406150Z [4616/5148] Building C object caffe2/CMakeFiles/torch_cpu.dir/__/third_party/miniz-3.0.2/miniz.c.o 2025-07-17T06:37:00.9526420Z [4617/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/ValidateCompressedIndicesKernel.cpp.o 2025-07-17T06:37:01.1158780Z [4618/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorAliases.cpp.o 2025-07-17T06:37:01.1334580Z [4619/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorMatmul.cpp.o 2025-07-17T06:37:01.1584460Z [4620/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorFactories.cpp.o 2025-07-17T06:37:01.1651920Z [4621/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorBackward.cpp.o 2025-07-17T06:37:01.1832390Z [4622/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorBinaryOps.cpp.o 2025-07-17T06:37:01.1894120Z [4623/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/inline_container.cc.o 2025-07-17T06:37:01.2516310Z [4624/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorMath.cpp.o 2025-07-17T06:37:01.3439610Z [4625/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/MPSHooksInterface.cpp.o 2025-07-17T06:37:01.4073660Z [4626/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/MetaGuardImpl.cpp.o 2025-07-17T06:37:01.4962090Z [4627/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/MTIAHooksInterface.cpp.o 2025-07-17T06:37:01.5164740Z [4628/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/PrivateUse1HooksInterface.cpp.o 2025-07-17T06:37:01.5653730Z [4629/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/XPUHooksInterface.cpp.o 2025-07-17T06:37:01.7427810Z [4630/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorTransformerFunctions.cpp.o 2025-07-17T06:37:01.7829870Z [4631/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/ADInterpreters.cpp.o 2025-07-17T06:37:01.8896710Z [4632/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/core/common.cc.o 2025-07-17T06:37:02.0893780Z [4633/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesActivation.cpp.o 2025-07-17T06:37:02.1295050Z [4634/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesConvolution.cpp.o 2025-07-17T06:37:02.1664640Z [4635/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesBinaryOps.cpp.o 2025-07-17T06:37:02.1812480Z [4636/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesDecompositions.cpp.o 2025-07-17T06:37:02.2444450Z [4637/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesFactory.cpp.o 2025-07-17T06:37:02.3125230Z [4638/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesHelper.cpp.o 2025-07-17T06:37:02.3872430Z [4639/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesDynamic.cpp.o 2025-07-17T06:37:02.6558350Z [4640/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesIndexing.cpp.o 2025-07-17T06:37:02.8239550Z [4641/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesLinearAlgebra.cpp.o 2025-07-17T06:37:02.8442640Z [4642/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesModules.cpp.o 2025-07-17T06:37:02.8548630Z [4643/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesPooling.cpp.o 2025-07-17T06:37:02.8768590Z [4644/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesLoss.cpp.o 2025-07-17T06:37:02.9012410Z [4645/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesNorm.cpp.o 2025-07-17T06:37:02.9214440Z [4646/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesRandomness.cpp.o 2025-07-17T06:37:02.9646190Z [4647/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesReduceOps.cpp.o 2025-07-17T06:37:03.2986420Z [4648/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchedTensorImpl.cpp.o 2025-07-17T06:37:03.3088840Z [4649/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/FunctionalizeInterpreter.cpp.o 2025-07-17T06:37:03.3571610Z [4650/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesScatterOps.cpp.o 2025-07-17T06:37:03.3926610Z [4651/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesUnaryOps.cpp.o 2025-07-17T06:37:03.4832700Z [4652/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesViews.cpp.o 2025-07-17T06:37:03.6160790Z [4653/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchedFallback.cpp.o 2025-07-17T06:37:03.6422860Z [4654/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/DynamicLayer.cpp.o 2025-07-17T06:37:03.6689320Z [4655/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/PlumbingHelper.cpp.o 2025-07-17T06:37:03.6735790Z [4656/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/Interpreter.cpp.o 2025-07-17T06:37:03.7140050Z [4657/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/LegacyBatchingRegistrations.cpp.o 2025-07-17T06:37:03.7633250Z [4658/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/TensorWrapper.cpp.o 2025-07-17T06:37:03.7648290Z [4659/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/ATenGeneral.cpp.o 2025-07-17T06:37:03.9594290Z [4660/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/CachingHostAllocator.cpp.o 2025-07-17T06:37:03.9909700Z [4661/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/VmapInterpreter.cpp.o 2025-07-17T06:37:04.0130870Z [4662/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/PyTorchOperatorHacks.cpp.o 2025-07-17T06:37:04.0134890Z [4663/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/record_function.cpp.o 2025-07-17T06:37:04.1157920Z [4664/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/LegacyVmapTransforms.cpp.o 2025-07-17T06:37:04.1236790Z [4665/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/BackendSelectFallbackKernel.cpp.o 2025-07-17T06:37:04.1238500Z [4666/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/DeprecatedTypeProperties.cpp.o 2025-07-17T06:37:04.1496230Z [4667/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Dimname.cpp.o 2025-07-17T06:37:04.1577500Z [4668/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/DeprecatedTypePropertiesRegistry.cpp.o 2025-07-17T06:37:04.2204240Z [4669/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/VmapModeRegistrations.cpp.o 2025-07-17T06:37:04.3441800Z [4670/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/GeneratorForPrivateuseone.cpp.o 2025-07-17T06:37:04.3976390Z [4671/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Generator.cpp.o 2025-07-17T06:37:04.4643830Z [4672/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Dict.cpp.o 2025-07-17T06:37:04.4695010Z [4673/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Formatting.cpp.o 2025-07-17T06:37:04.4977590Z [4674/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/NamedTensor.cpp.o 2025-07-17T06:37:04.5590680Z [4675/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/NestedIntSymNodeImpl.cpp.o 2025-07-17T06:37:04.5973390Z [4676/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/NamedRegistrations.cpp.o 2025-07-17T06:37:04.6014850Z [4677/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/List.cpp.o 2025-07-17T06:37:04.6029970Z [4678/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/MetaFallbackKernel.cpp.o 2025-07-17T06:37:04.7082250Z [4679/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/PythonFallbackKernel.cpp.o 2025-07-17T06:37:04.7282870Z [4680/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Range.cpp.o 2025-07-17T06:37:04.7440440Z [4681/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/PythonOpRegistrationTrampoline.cpp.o 2025-07-17T06:37:04.8746960Z [4682/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Tensor.cpp.o 2025-07-17T06:37:04.8847890Z [4683/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Vitals.cpp.o 2025-07-17T06:37:04.9062170Z [4684/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/VariableFallbackKernel.cpp.o 2025-07-17T06:37:04.9386170Z [4685/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/TorchDispatchUtils.cpp.o 2025-07-17T06:37:04.9835700Z [4686/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/blob.cpp.o 2025-07-17T06:37:05.0036770Z [4687/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/VariableHooksInterface.cpp.o 2025-07-17T06:37:05.1156750Z [4688/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/boxing/KernelFunction.cpp.o 2025-07-17T06:37:05.1260200Z [4689/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dispatch/ObservedOperators.cpp.o 2025-07-17T06:37:05.1263560Z [4690/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/adaption.cpp.o 2025-07-17T06:37:05.1611890Z [4691/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/class_type.cpp.o 2025-07-17T06:37:05.2440100Z [4692/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/custom_class.cpp.o 2025-07-17T06:37:05.2709920Z [4693/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dispatch/Dispatcher.cpp.o 2025-07-17T06:37:05.2771240Z [4694/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dispatch/DispatchKeyExtractor.cpp.o 2025-07-17T06:37:05.4410070Z [4695/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/interned_strings.cpp.o 2025-07-17T06:37:05.4523600Z [4696/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dispatch/OperatorEntry.cpp.o 2025-07-17T06:37:05.4690020Z [4697/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dynamic_type.cpp.o 2025-07-17T06:37:05.5127510Z [4698/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/function_schema.cpp.o 2025-07-17T06:37:05.5327410Z [4699/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/register_symbols.cpp.o 2025-07-17T06:37:05.5793980Z [4700/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/ivalue.cpp.o 2025-07-17T06:37:05.6091860Z [4701/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/op_registration/infer_schema.cpp.o 2025-07-17T06:37:05.6259930Z [4702/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/operator_name.cpp.o 2025-07-17T06:37:05.6799100Z [4703/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/library.cpp.o 2025-07-17T06:37:05.7853790Z [4704/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/op_registration/op_registration.cpp.o 2025-07-17T06:37:05.7954700Z [4705/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/tensor_type.cpp.o 2025-07-17T06:37:05.7989230Z [4706/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/error_report.cpp.o 2025-07-17T06:37:05.8290310Z [4707/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/type_factory.cpp.o 2025-07-17T06:37:05.8980780Z [4708/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/strtod.cpp.o 2025-07-17T06:37:05.9119400Z [4709/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/lexer.cpp.o 2025-07-17T06:37:05.9234360Z [4710/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/union_type.cpp.o 2025-07-17T06:37:05.9415000Z [4711/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/type.cpp.o 2025-07-17T06:37:06.1093290Z [4712/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/schema_type_parser.cpp.o 2025-07-17T06:37:06.1664020Z [4713/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/function_schema_parser.cpp.o 2025-07-17T06:37:06.1738690Z [4714/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AdaptiveAveragePooling.cpp.o 2025-07-17T06:37:06.1980600Z [4715/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AdaptiveMaxPooling2d.cpp.o 2025-07-17T06:37:06.2029660Z [4716/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AdaptiveAveragePooling3d.cpp.o 2025-07-17T06:37:06.2081250Z [4717/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/source_range.cpp.o 2025-07-17T06:37:06.2081930Z [4718/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Activation.cpp.o 2025-07-17T06:37:06.2492430Z [4719/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AdaptiveMaxPooling3d.cpp.o 2025-07-17T06:37:06.4556450Z [4720/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AmpKernels.cpp.o 2025-07-17T06:37:06.5021410Z [4721/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AffineGridGenerator.cpp.o 2025-07-17T06:37:06.5246730Z [4722/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AutogradComposite.cpp.o 2025-07-17T06:37:06.5302060Z [4723/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AveragePool2d.cpp.o 2025-07-17T06:37:06.5596270Z [4724/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/BinaryOps.cpp.o 2025-07-17T06:37:06.5947270Z [4725/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AveragePool3d.cpp.o 2025-07-17T06:37:06.7333350Z [4726/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Blas.cpp.o 2025-07-17T06:37:06.7741790Z [4727/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/BatchLinearAlgebraKernel.cpp.o 2025-07-17T06:37:06.7836550Z [4728/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/BlasKernel.cpp.o 2025-07-17T06:37:06.8048740Z [4729/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/BatchLinearAlgebra.cpp.o 2025-07-17T06:37:06.8384880Z [4730/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Bucketization.cpp.o 2025-07-17T06:37:06.9131190Z [4731/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ChanelShuffle.cpp.o 2025-07-17T06:37:06.9381090Z [4732/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/CPUFallback.cpp.o 2025-07-17T06:37:07.0128110Z [4733/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/CPUBlas.cpp.o 2025-07-17T06:37:07.1572860Z [4734/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Col2Im.cpp.o 2025-07-17T06:37:07.1696730Z [4735/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ComparisonUtils.cpp.o 2025-07-17T06:37:07.2298390Z [4736/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ConvolutionMM2d.cpp.o 2025-07-17T06:37:07.2313920Z [4737/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ConvolutionMM3d.cpp.o 2025-07-17T06:37:07.2477770Z [4738/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ConvolutionTBC.cpp.o 2025-07-17T06:37:07.2893080Z [4739/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Constraints.cpp.o 2025-07-17T06:37:07.3219270Z [4740/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Convolution.cpp.o 2025-07-17T06:37:07.4396760Z [4741/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Correlation.cpp.o 2025-07-17T06:37:07.4498480Z [4742/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Copy.cpp.o 2025-07-17T06:37:07.4611960Z [4743/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/DispatchStub.cpp.o 2025-07-17T06:37:07.4738820Z [4744/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Cross.cpp.o 2025-07-17T06:37:07.5963120Z [4745/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/DilatedMaxPool3d.cpp.o 2025-07-17T06:37:07.6085610Z [4746/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Distance.cpp.o 2025-07-17T06:37:07.6192200Z [4747/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/DilatedMaxPool2d.cpp.o 2025-07-17T06:37:07.7280300Z [4748/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Dropout.cpp.o 2025-07-17T06:37:07.7551070Z [4749/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Distributions.cpp.o 2025-07-17T06:37:07.7596500Z [4750/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Embedding.cpp.o 2025-07-17T06:37:07.8914030Z [4751/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FractionalMaxPool2d.cpp.o 2025-07-17T06:37:07.9125410Z [4752/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Fill.cpp.o 2025-07-17T06:37:08.0125630Z [4753/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FractionalMaxPool3d.cpp.o 2025-07-17T06:37:08.0139620Z [4754/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FusedAdagrad.cpp.o 2025-07-17T06:37:08.0389780Z [4755/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FunctionOfAMatrixUtils.cpp.o 2025-07-17T06:37:08.0597970Z [4756/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/EmbeddingBag.cpp.o 2025-07-17T06:37:08.0884330Z [4757/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ForeachOpsKernels.cpp.o 2025-07-17T06:37:08.1567110Z [4758/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FusedAdam.cpp.o 2025-07-17T06:37:08.2472440Z [4759/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FusedSGD.cpp.o 2025-07-17T06:37:08.2572760Z [4760/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/GatedLinearUnit.cpp.o 2025-07-17T06:37:08.3162550Z [4761/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/GridSampler.cpp.o 2025-07-17T06:37:08.3453720Z [4762/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/EmptyTensor.cpp.o 2025-07-17T06:37:08.3587100Z [4763/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorGeometry.cpp.o 2025-07-17T06:37:08.3821250Z [4764/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Histogram.cpp.o 2025-07-17T06:37:08.4507990Z [4765/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Im2Col.cpp.o 2025-07-17T06:37:08.5376410Z [4766/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Context.cpp.o 2025-07-17T06:37:08.5406760Z [4767/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ConjugateFallback.cpp.o 2025-07-17T06:37:08.6975220Z [4768/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/DeviceAccelerator.cpp.o 2025-07-17T06:37:08.7141770Z [4769/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ThreadLocalPythonObjects.cpp.o 2025-07-17T06:37:08.7298450Z [4770/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/AccumulateType.cpp.o 2025-07-17T06:37:08.7737580Z [4771/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/CachedTensorUtils.cpp.o 2025-07-17T06:37:08.8585320Z [4772/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/CPUGeneratorImpl.cpp.o 2025-07-17T06:37:08.9041610Z [4773/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Dispatch.cpp.o 2025-07-17T06:37:08.9383270Z [4774/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/DLConvertor.cpp.o 2025-07-17T06:37:08.9583880Z [4775/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FuncTorchTLS.cpp.o 2025-07-17T06:37:09.0071360Z [4776/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ThreadLocalState.cpp.o 2025-07-17T06:37:09.0551140Z [4777/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/DynamicLibrary.cpp.o 2025-07-17T06:37:09.0694690Z [4778/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FunctionalizeFallbackKernel.cpp.o 2025-07-17T06:37:09.1568630Z [4779/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ExpandUtils.cpp.o 2025-07-17T06:37:09.2391550Z [4780/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorUtils.cpp.o 2025-07-17T06:37:09.2494060Z [4781/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorMeta.cpp.o 2025-07-17T06:37:09.2723780Z [4782/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FunctionalStorageImpl.cpp.o 2025-07-17T06:37:09.3689590Z [4783/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorIndexing.cpp.o 2025-07-17T06:37:09.3984860Z [4784/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FunctionalTensorWrapper.cpp.o 2025-07-17T06:37:09.4608110Z [4785/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorNames.cpp.o 2025-07-17T06:37:09.5699240Z [4786/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FunctionalInverses.cpp.o 2025-07-17T06:37:09.5964120Z [4787/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyVmapMode.cpp.o 2025-07-17T06:37:09.6119720Z [4788/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Utils.cpp.o 2025-07-17T06:37:09.6143330Z [4789/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorIterator.cpp.o 2025-07-17T06:37:09.7104500Z [4790/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyBatchedTensorImpl.cpp.o 2025-07-17T06:37:09.7579350Z [4791/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/MapAllocator.cpp.o 2025-07-17T06:37:09.7771580Z [4792/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/SequenceNumber.cpp.o 2025-07-17T06:37:09.8115390Z [4793/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyBatchedFallback.cpp.o 2025-07-17T06:37:09.8272830Z [4794/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/MemoryOverlap.cpp.o 2025-07-17T06:37:10.0457210Z [4795/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/SavedTensorHooks.cpp.o 2025-07-17T06:37:10.0582320Z [4796/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyVmapTransforms.cpp.o 2025-07-17T06:37:10.0662460Z [4797/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/PythonTorchFunctionTLS.cpp.o 2025-07-17T06:37:10.0767430Z [4798/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ScalarOps.cpp.o 2025-07-17T06:37:10.0982380Z [4799/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyBatchingRegistrations.cpp.o 2025-07-17T06:37:10.1572450Z [4800/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ParallelNative.cpp.o 2025-07-17T06:37:10.2525170Z [4801/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/StorageUtils.cpp.o 2025-07-17T06:37:10.3417530Z [4802/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/SparseCsrTensorImpl.cpp.o 2025-07-17T06:37:10.3659650Z [4803/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ParallelOpenMP.cpp.o 2025-07-17T06:37:10.3715550Z [4804/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ParallelCommon.cpp.o 2025-07-17T06:37:10.4236410Z [4805/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ParallelThreadPoolNative.cpp.o 2025-07-17T06:37:10.4338920Z [4806/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/NamedTensorUtils.cpp.o 2025-07-17T06:37:10.4555330Z [4807/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/SparseTensorImpl.cpp.o 2025-07-17T06:37:10.4619010Z [4808/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Version.cpp.o 2025-07-17T06:37:10.5039530Z [4809/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/cpu/Utils.cpp.o 2025-07-17T06:37:10.5149670Z [4810/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/cpu/FlushDenormal.cpp.o 2025-07-17T06:37:10.6817690Z [4811/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/VmapModeRegistrations.cpp.o 2025-07-17T06:37:10.7071370Z [4812/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/CUDAHooksInterface.cpp.o 2025-07-17T06:37:10.7136170Z [4813/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/CPUGuardImpl.cpp.o 2025-07-17T06:37:10.7170630Z [4814/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/HPUHooksInterface.cpp.o 2025-07-17T06:37:10.7358020Z [4815/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/HIPHooksInterface.cpp.o 2025-07-17T06:37:10.8737600Z [4816/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/NestedTensorImpl.cpp.o 2025-07-17T06:37:10.9084090Z [4817/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/IPUHooksInterface.cpp.o 2025-07-17T06:37:10.9545880Z [4818/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/MAIAHooksInterface.cpp.o 2025-07-17T06:37:11.0368010Z [4819/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/RangeFactoriesKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:11.0681150Z [4820/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ZeroTensorFallback.cpp.o 2025-07-17T06:37:11.1447010Z [4821/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PowKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:11.1752120Z [4822/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/autocast_mode.cpp.o 2025-07-17T06:37:11.1781320Z [4823/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ReduceAllOpsKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:11.2107380Z [4824/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ReduceOpsKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:11.2116560Z [4825/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PointwiseOpsKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:11.2638630Z [4826/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PixelShuffleKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:11.3171900Z [4827/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PaddingKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:11.3536820Z [4828/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/NativeMultiheadAttnKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:11.4166140Z [4829/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MaxUnpoolKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:11.4838510Z [4830/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MultinomialKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:11.5420350Z [4831/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MaxPooling.cpp.DEFAULT.cpp.o 2025-07-17T06:37:11.6334460Z [4832/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/LerpKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:11.6431440Z [4833/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/IndexKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:11.6778310Z [4834/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FusedSGDKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:11.6862610Z [4835/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/HistogramKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:11.6873580Z [4836/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/LinearAlgebraKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:11.7935770Z [4837/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MaxPoolKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:11.8062670Z [4838/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/GridSamplerKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:11.8239500Z [4839/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FusedAdamKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:11.8797660Z [4840/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FillKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:11.9360650Z [4841/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FusedAdagradKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:12.0567600Z [4842/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FunctionOfAMatrixUtilsKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:12.1122800Z [4843/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:12.1190380Z [4844/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/DistributionKernels.cpp.DEFAULT.cpp.o 2025-07-17T06:37:12.1269680Z [4845/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/CrossKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:12.2275770Z [4846/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FlashAttentionKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:12.2427490Z [4847/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/DepthwiseConvKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:12.2781650Z [4848/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ComplexKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:12.3651110Z [4849/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ChannelShuffleKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:12.4270540Z [4850/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/CatKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:12.4516460Z [4851/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/BlasKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:12.5066460Z [4852/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/kleidiai/kai_ukernel_interface.cpp.o 2025-07-17T06:37:12.5399390Z [4853/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:12.5571480Z [4854/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/Activation.cpp.DEFAULT.cpp.o 2025-07-17T06:37:12.5883940Z [4855/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AvgPoolKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:12.6436110Z [4856/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AdaptiveMaxPoolKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:12.6518630Z [4857/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/CopyKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:12.6656750Z [4858/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AmpGradScalerKernels.cpp.DEFAULT.cpp.o 2025-07-17T06:37:12.8484390Z [4859/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AdaptiveAvgPoolKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:12.8505710Z [4860/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/metal/Context.cpp.o 2025-07-17T06:37:12.8652060Z [4861/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/kleidiai/kai_kernels.cpp.o 2025-07-17T06:37:12.8764400Z [4862/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/vulkan/Context.cpp.o 2025-07-17T06:37:12.9042690Z [4863/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalConvParams.mm.o 2025-07-17T06:37:13.0069570Z [4864/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalGuardImpl.cpp.o 2025-07-17T06:37:13.1412990Z [4865/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalCommandBuffer.mm.o 2025-07-17T06:37:13.2005380Z [4866/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalContext.mm.o 2025-07-17T06:37:13.4917090Z [4867/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSCNNClampOp.mm.o 2025-07-17T06:37:13.5056990Z [4868/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSImage+Tensor.mm.o 2025-07-17T06:37:13.5169450Z [4869/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalTensorImplStorage.mm.o 2025-07-17T06:37:13.5370650Z [4870/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalPrepackOpRegister.cpp.o 2025-07-17T06:37:13.5873980Z [4871/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalTensorUtils.mm.o 2025-07-17T06:37:13.6409550Z [4872/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSCNNUtils.mm.o 2025-07-17T06:37:13.7512840Z [4873/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalAten.mm.o 2025-07-17T06:37:13.9244760Z [4874/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSCNNConvOp.mm.o 2025-07-17T06:37:13.9765540Z [4875/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSCNNNeuronOp.mm.o 2025-07-17T06:37:14.2165010Z [4876/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSImageWrapper.mm.o 2025-07-17T06:37:14.2444650Z [4877/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalBinaryElementwise.mm.o 2025-07-17T06:37:14.3217550Z [4878/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalClamp.mm.o 2025-07-17T06:37:14.4174080Z [4879/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSCNNFullyConnectedOp.mm.o 2025-07-17T06:37:14.5080710Z [4880/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalChunk.mm.o 2025-07-17T06:37:14.5449670Z [4881/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSImageUtils.mm.o 2025-07-17T06:37:14.5652720Z [4882/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalAddmm.mm.o 2025-07-17T06:37:14.6859070Z [4883/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalConcat.mm.o 2025-07-17T06:37:14.8738920Z [4884/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalCopy.mm.o 2025-07-17T06:37:15.0268680Z [4885/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalHardshrink.mm.o 2025-07-17T06:37:15.0449900Z [4886/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalHardswish.mm.o 2025-07-17T06:37:15.0609490Z [4887/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalLeakyReLU.mm.o 2025-07-17T06:37:15.1161790Z [4888/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalNeurons.mm.o 2025-07-17T06:37:15.1782290Z [4889/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalConvolution.mm.o 2025-07-17T06:37:15.1811620Z [4890/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalPadding.mm.o 2025-07-17T06:37:15.2848910Z [4891/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalPooling.mm.o 2025-07-17T06:37:15.4014360Z [4892/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/transformers/transformer.cpp.o 2025-07-17T06:37:15.4102400Z [4893/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Activation.cpp.o 2025-07-17T06:37:15.4272140Z [4894/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/utils/Factory.cpp.o 2025-07-17T06:37:15.4284790Z [4895/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/AveragePooling.cpp.o 2025-07-17T06:37:15.4836240Z [4896/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/ChannelShuffle.cpp.o 2025-07-17T06:37:15.5904050Z [4897/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Init.cpp.o 2025-07-17T06:37:15.6180070Z [4898/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Convolution.cpp.o 2025-07-17T06:37:15.6233330Z [4899/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Shim.cpp.o 2025-07-17T06:37:15.6787760Z [4900/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalReshape.mm.o 2025-07-17T06:37:15.7260650Z [4901/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Linear.cpp.o 2025-07-17T06:37:15.7517510Z [4902/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/MaxPooling.cpp.o 2025-07-17T06:37:15.8829890Z [4903/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalReduce.mm.o 2025-07-17T06:37:15.8880620Z [4904/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/OpContext.cpp.o 2025-07-17T06:37:15.8886400Z [4905/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/RegisterOpContextClass.cpp.o 2025-07-17T06:37:16.1551840Z [4906/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/CompositeViewCopyKernels.cpp.o 2025-07-17T06:37:16.1683210Z [4907/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Functions.cpp.o 2025-07-17T06:37:16.1794500Z [4908/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_0.cpp.o 2025-07-17T06:37:16.2216700Z [4909/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_1.cpp.o 2025-07-17T06:37:16.2538280Z [4910/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_4.cpp.o 2025-07-17T06:37:16.2634220Z [4911/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_2.cpp.o 2025-07-17T06:37:16.3001090Z [4912/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterBackendSelect.cpp.o 2025-07-17T06:37:16.3235880Z [4913/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_3.cpp.o 2025-07-17T06:37:16.5728810Z [4914/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCPU_0.cpp.o 2025-07-17T06:37:16.6549280Z [4915/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCPU_2.cpp.o 2025-07-17T06:37:16.6952960Z [4916/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCPU_3.cpp.o 2025-07-17T06:37:16.7053440Z [4917/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCPU_1.cpp.o 2025-07-17T06:37:16.7214090Z [4918/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCompositeExplicitAutograd_0.cpp.o 2025-07-17T06:37:16.8390480Z [4919/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCompositeImplicitAutograd_0.cpp.o 2025-07-17T06:37:16.8526150Z [4920/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCompositeImplicitAutogradNestedTensor_0.cpp.o 2025-07-17T06:37:16.8770870Z [4921/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterMeta_0.cpp.o 2025-07-17T06:37:16.9494840Z [4922/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCompositeExplicitAutogradNonFunctional_0.cpp.o 2025-07-17T06:37:16.9942700Z [4923/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterFunctionalization_0.cpp.o 2025-07-17T06:37:17.1645630Z [4924/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterFunctionalization_1.cpp.o 2025-07-17T06:37:17.1689910Z [4925/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterFunctionalization_2.cpp.o 2025-07-17T06:37:17.1992830Z [4926/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterMkldnnCPU_0.cpp.o 2025-07-17T06:37:17.2583780Z [4927/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterFunctionalization_3.cpp.o 2025-07-17T06:37:17.2956860Z [4928/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterNestedTensorMeta_0.cpp.o 2025-07-17T06:37:17.3219410Z [4929/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterNestedTensorHPU_0.cpp.o 2025-07-17T06:37:17.3340540Z [4930/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterNestedTensorCPU_0.cpp.o 2025-07-17T06:37:17.3504000Z [4931/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterMPS_0.cpp.o 2025-07-17T06:37:17.4640170Z [4932/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterNestedTensorXPU_0.cpp.o 2025-07-17T06:37:17.5603690Z [4933/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterQuantizedCPU_0.cpp.o 2025-07-17T06:37:17.6021850Z [4934/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSchema.cpp.o 2025-07-17T06:37:17.6720680Z [4935/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterQuantizedMeta_0.cpp.o 2025-07-17T06:37:17.6953650Z [4936/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseCsrMPS_0.cpp.o 2025-07-17T06:37:17.7176780Z [4937/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseCsrCPU_0.cpp.o 2025-07-17T06:37:17.7377880Z [4938/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseCPU_0.cpp.o 2025-07-17T06:37:17.7581240Z [4939/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseCsrXPU_0.cpp.o 2025-07-17T06:37:17.8072570Z [4940/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseCsrMeta_0.cpp.o 2025-07-17T06:37:17.9133490Z [4941/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseMPS_0.cpp.o 2025-07-17T06:37:17.9594350Z [4942/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/ATenOpList.cpp.o 2025-07-17T06:37:18.0053090Z [4943/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/UfuncCPU_add.cpp.o 2025-07-17T06:37:18.0324750Z [4944/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterZeroTensor_0.cpp.o 2025-07-17T06:37:18.0370540Z [4945/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseXPU_0.cpp.o 2025-07-17T06:37:18.0580040Z [4946/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/TensorMethods.cpp.o 2025-07-17T06:37:18.0840050Z [4947/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseMeta_0.cpp.o 2025-07-17T06:37:18.0907100Z [4948/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/quantized/QTensorImpl.cpp.o 2025-07-17T06:37:18.1966930Z [4949/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/nnapi/nnapi_model_loader.cpp.o 2025-07-17T06:37:18.3133840Z [4950/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/nnapi/nnapi_wrapper.cpp.o 2025-07-17T06:37:18.3833610Z [4951/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/UfuncCPUKernel_add.cpp.DEFAULT.cpp.o 2025-07-17T06:37:18.4788890Z [4952/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/scaled_modified_bessel_k1.cpp.DEFAULT.cpp.o 2025-07-17T06:37:18.4975520Z [4953/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/quantized/Quantizer.cpp.o 2025-07-17T06:37:18.4986510Z [4954/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/spherical_bessel_j0.cpp.DEFAULT.cpp.o 2025-07-17T06:37:18.5545550Z [4955/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/nnapi/nnapi_bind.cpp.o 2025-07-17T06:37:18.5862210Z [4956/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/scaled_modified_bessel_k0.cpp.DEFAULT.cpp.o 2025-07-17T06:37:18.6095590Z [4957/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/kernels/QuantizedOpKernels.cpp.DEFAULT.cpp.o 2025-07-17T06:37:18.6973380Z [4958/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/nnapi/nnapi_register.cpp.o 2025-07-17T06:37:18.7076010Z [4959/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/int8mm_kernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:18.8344790Z [4960/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/airy_ai.cpp.DEFAULT.cpp.o 2025-07-17T06:37:18.8487880Z [4961/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/layer_norm_kernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:18.9154190Z [4962/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/int4mm_kernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:18.9354030Z [4963/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/group_norm_kernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:18.9599240Z [4964/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/Unfold2d.cpp.DEFAULT.cpp.o 2025-07-17T06:37:18.9792990Z [4965/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/batch_norm_kernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:18.9932360Z [4966/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/WeightNormKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:19.0856490Z [4967/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UpSampleKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:19.1431520Z [4968/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UpSampleMoreKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:19.1624430Z [4969/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UnfoldBackwardKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:19.2791950Z [4970/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/StackKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:19.2902120Z [4971/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SparseFactories.cpp.DEFAULT.cpp.o 2025-07-17T06:37:19.3166820Z [4972/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SumKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:19.3865060Z [4973/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SortingKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:19.3889210Z [4974/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UnaryOpsKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:19.4023540Z [4975/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/TensorCompareKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:19.5008470Z [4976/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SpmmReduceKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:19.5340270Z [4977/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ReducedPrecisionFloatGemvFastPathKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:19.5855680Z [4978/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SoftMaxKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:19.6490950Z [4979/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/RenormKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:19.7744400Z [4980/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SampledAddmmKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:19.8272600Z [4981/5148] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ScatterGatherKernel.cpp.DEFAULT.cpp.o 2025-07-17T06:37:20.2323190Z [4982/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalSoftmax.mm.o 2025-07-17T06:37:20.2576160Z [4983/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_functions_0.cpp.o 2025-07-17T06:37:20.2719130Z [4984/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_functions_1.cpp.o 2025-07-17T06:37:20.2921400Z [4985/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_functions_2.cpp.o 2025-07-17T06:37:20.3075180Z [4986/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_functions_3.cpp.o 2025-07-17T06:37:20.3194310Z [4987/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_variable_methods.cpp.o 2025-07-17T06:37:20.3216470Z [4988/5148] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalTranspose.mm.o 2025-07-17T06:37:20.3626000Z [4989/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_functions_4.cpp.o 2025-07-17T06:37:20.7297360Z [4990/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_torch_functions_0.cpp.o 2025-07-17T06:37:20.7905030Z [4991/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_torch_functions_1.cpp.o 2025-07-17T06:37:20.8447700Z [4992/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_nn_functions.cpp.o 2025-07-17T06:37:20.8936850Z [4993/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/DataLoader.cpp.o 2025-07-17T06:37:20.9123920Z [4994/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_linalg_functions.cpp.o 2025-07-17T06:37:20.9167560Z [4995/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_torch_functions_2.cpp.o 2025-07-17T06:37:20.9375670Z [4996/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_fft_functions.cpp.o 2025-07-17T06:37:20.9607500Z [4997/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_nested_functions.cpp.o 2025-07-17T06:37:21.1188040Z [4998/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_sparse_functions.cpp.o 2025-07-17T06:37:21.3623390Z [4999/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_return_types.cpp.o 2025-07-17T06:37:21.4122180Z [5000/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_special_functions.cpp.o 2025-07-17T06:37:21.4200020Z [5001/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Dtype.cpp.o 2025-07-17T06:37:21.4387580Z [5002/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/DeviceAccelerator.cpp.o 2025-07-17T06:37:21.4563400Z [5003/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_enum_tag.cpp.o 2025-07-17T06:37:21.4767790Z [5004/5148] Linking CXX shared library lib/libtorch_cpu.dylib 2025-07-17T06:37:21.4896070Z ld: warning: ignoring duplicate libraries: 'lib/libcpuinfo.a', 'lib/libnnpack.a', 'lib/libpthreadpool.a' 2025-07-17T06:37:21.4972620Z [5005/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Device.cpp.o 2025-07-17T06:37:21.7107510Z [5006/5148] Linking CXX shared library lib/libtorch.dylib 2025-07-17T06:37:21.7758260Z [5007/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Layout.cpp.o 2025-07-17T06:37:21.8270510Z [5008/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/QScheme.cpp.o 2025-07-17T06:37:21.8529960Z [5009/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/MemoryFormat.cpp.o 2025-07-17T06:37:21.8735700Z [5010/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/DynamicTypes.cpp.o 2025-07-17T06:37:21.9260890Z [5011/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Exceptions.cpp.o 2025-07-17T06:37:22.0374720Z [5012/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Generator.cpp.o 2025-07-17T06:37:22.1077330Z [5013/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/python_dimname.cpp.o 2025-07-17T06:37:22.1673950Z [5014/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Size.cpp.o 2025-07-17T06:37:22.3197070Z [5015/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/PyInterpreter.cpp.o 2025-07-17T06:37:22.3975630Z [5016/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Module.cpp.o 2025-07-17T06:37:22.5970380Z [5017/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Storage.cpp.o 2025-07-17T06:37:22.6743680Z [5018/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/StorageSharing.cpp.o 2025-07-17T06:37:22.6867570Z [5019/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Stream.cpp.o 2025-07-17T06:37:22.7110460Z [5020/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/StorageMethods.cpp.o 2025-07-17T06:37:22.7713380Z [5021/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Event.cpp.o 2025-07-17T06:37:22.7893190Z [5022/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/TypeInfo.cpp.o 2025-07-17T06:37:22.9278960Z [5023/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/api/src/python/init.cpp.o 2025-07-17T06:37:22.9835360Z [5024/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/functions/init.cpp.o 2025-07-17T06:37:23.0141510Z [5025/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/profiler_python.cpp.o 2025-07-17T06:37:23.0846170Z [5026/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_anomaly_mode.cpp.o 2025-07-17T06:37:23.1381350Z [5027/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_cpp_function.cpp.o 2025-07-17T06:37:23.4325240Z [5028/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/init.cpp.o 2025-07-17T06:37:23.4471030Z [5029/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_saved_variable_hooks.cpp.o 2025-07-17T06:37:23.5152290Z [5030/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_hook.cpp.o 2025-07-17T06:37:23.5556230Z [5031/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_engine.cpp.o 2025-07-17T06:37:23.6282270Z [5032/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_legacy_variable.cpp.o 2025-07-17T06:37:23.6565880Z [5033/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_function.cpp.o 2025-07-17T06:37:23.6973150Z [5034/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_variable_indexing.cpp.o 2025-07-17T06:37:23.7486590Z [5035/5148] Building C object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/cpython_defs.c.o 2025-07-17T06:37:23.7725430Z [5036/5148] Building C object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/eval_frame.c.o 2025-07-17T06:37:23.7887480Z [5037/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_nested_functions_manual.cpp.o 2025-07-17T06:37:23.9085660Z [5038/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/cpp_shim.cpp.o 2025-07-17T06:37:23.9396810Z [5039/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/cache_entry.cpp.o 2025-07-17T06:37:24.0647370Z [5040/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/eval_frame_cpp.cpp.o 2025-07-17T06:37:24.0828780Z [5041/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/extra_state.cpp.o 2025-07-17T06:37:24.1453000Z [5042/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/framelocals_mapping.cpp.o 2025-07-17T06:37:24.1994590Z [5043/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/utils.cpp.o 2025-07-17T06:37:24.2137600Z [5044/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_torch_functions_manual.cpp.o 2025-07-17T06:37:24.2620190Z [5045/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_variable.cpp.o 2025-07-17T06:37:24.3292030Z [5046/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/fx/node.cpp.o 2025-07-17T06:37:24.4730730Z [5047/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/python_compiled_autograd.cpp.o 2025-07-17T06:37:24.5124140Z [5048/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/export/upgrader.cpp.o 2025-07-17T06:37:24.5151970Z [5049/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/init.cpp.o 2025-07-17T06:37:24.6465310Z [5050/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/export/example_upgraders.cpp.o 2025-07-17T06:37:24.7532900Z [5051/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/export/pybind.cpp.o 2025-07-17T06:37:24.7892680Z [5052/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/inductor/aoti_package/pybind.cpp.o 2025-07-17T06:37:24.7992720Z [5053/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/inductor/static_cuda_launcher.cpp.o 2025-07-17T06:37:24.8338350Z [5054/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/guards.cpp.o 2025-07-17T06:37:24.8535560Z [5055/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/mtia/Module.cpp.o 2025-07-17T06:37:24.9136460Z [5056/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/mps/Module.cpp.o 2025-07-17T06:37:24.9349970Z [5057/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/functorch/init.cpp.o 2025-07-17T06:37:24.9458720Z [5058/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/inductor/aoti_runner/pybind.cpp.o 2025-07-17T06:37:25.1846030Z [5059/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/inductor/aoti_eager/kernel_meta_info.cpp.o 2025-07-17T06:37:25.1925440Z [5060/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/inductor/resize_storage_bytes.cpp.o 2025-07-17T06:37:25.2425110Z [5061/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/inductor/aoti_eager/kernel_holder.cpp.o 2025-07-17T06:37:25.4626190Z [5062/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/cast_all_constant_to_floating.cpp.o 2025-07-17T06:37:25.4931470Z [5063/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/deduplicate_initializers.cpp.o 2025-07-17T06:37:25.5085850Z [5064/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/backends/backend_init.cpp.o 2025-07-17T06:37:25.5195190Z [5065/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/constant_fold.cpp.o 2025-07-17T06:37:25.6621340Z [5066/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/eval_peephole.cpp.o 2025-07-17T06:37:25.6828620Z [5067/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/init.cpp.o 2025-07-17T06:37:25.7022270Z [5068/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx.cpp.o 2025-07-17T06:37:25.7138000Z [5069/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/eliminate_unused_items.cpp.o 2025-07-17T06:37:25.8926850Z [5070/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/peephole.cpp.o 2025-07-17T06:37:25.9173750Z [5071/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/constant_map.cpp.o 2025-07-17T06:37:25.9395690Z [5072/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/list_model_parameters.cpp.o 2025-07-17T06:37:25.9598540Z [5073/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/function_substitution.cpp.o 2025-07-17T06:37:26.0772810Z [5074/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/helper.cpp.o 2025-07-17T06:37:26.0895570Z [5075/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/preprocess_for_onnx.cpp.o 2025-07-17T06:37:26.1352310Z [5076/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/prepare_division_for_onnx.cpp.o 2025-07-17T06:37:26.1828130Z [5077/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/onnx_log.cpp.o 2025-07-17T06:37:26.2215400Z [5078/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/scalar_type_analysis.cpp.o 2025-07-17T06:37:26.3938200Z [5079/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/remove_inplace_ops_for_onnx.cpp.o 2025-07-17T06:37:26.4274640Z [5080/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/unpack_quantized_weights.cpp.o 2025-07-17T06:37:26.4656500Z [5081/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/fixup_onnx_controlflow.cpp.o 2025-07-17T06:37:26.4767780Z [5082/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/naming.cpp.o 2025-07-17T06:37:26.5004410Z [5083/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/function_extraction.cpp.o 2025-07-17T06:37:26.5328460Z [5084/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/pattern_conversion/autograd_function_process.cpp.o 2025-07-17T06:37:26.6725360Z [5085/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/pybind_utils.cpp.o 2025-07-17T06:37:26.7651640Z [5086/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/pattern_conversion/common.cpp.o 2025-07-17T06:37:26.7886180Z [5087/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/shape_type_inference.cpp.o 2025-07-17T06:37:26.8609680Z [5088/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/pattern_conversion/pattern_encapsulation.cpp.o 2025-07-17T06:37:27.0142380Z [5089/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_dict.cpp.o 2025-07-17T06:37:27.0545540Z [5090/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_arg_flatten.cpp.o 2025-07-17T06:37:27.0656000Z [5091/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_custom_class.cpp.o 2025-07-17T06:37:27.0690550Z [5092/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/pattern_conversion/pattern_conversion.cpp.o 2025-07-17T06:37:27.2116550Z [5093/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_list.cpp.o 2025-07-17T06:37:27.3108040Z [5094/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/frontend/tree_views.cpp.o 2025-07-17T06:37:27.3446750Z [5095/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_ir.cpp.o 2025-07-17T06:37:27.4237970Z [5096/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/frontend/concrete_module_type.cpp.o 2025-07-17T06:37:27.4645510Z [5097/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_interpreter.cpp.o 2025-07-17T06:37:27.5139900Z [5098/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_tree_views.cpp.o 2025-07-17T06:37:27.6633070Z [5099/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_sugared_value.cpp.o 2025-07-17T06:37:27.6920360Z [5100/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/runtime/static/init.cpp.o 2025-07-17T06:37:27.7003950Z [5101/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/multiprocessing/init.cpp.o 2025-07-17T06:37:27.7424660Z [5102/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/monitor/python_init.cpp.o 2025-07-17T06:37:27.8228910Z [5103/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_tracer.cpp.o 2025-07-17T06:37:27.8460900Z [5104/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/script_init.cpp.o 2025-07-17T06:37:28.0182390Z [5105/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/profiler/python/combined_traceback.cpp.o 2025-07-17T06:37:28.0647250Z [5106/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/profiler/python/init.cpp.o 2025-07-17T06:37:28.1521920Z [5107/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/tensorexpr/tensorexpr_init.cpp.o 2025-07-17T06:37:28.3167570Z [5108/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/onnx/init.cpp.o 2025-07-17T06:37:28.3464620Z [5109/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/device_lazy_init.cpp.o 2025-07-17T06:37:28.3744230Z [5110/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/tensor/python_tensor.cpp.o 2025-07-17T06:37:28.3902790Z [5111/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/serialization.cpp.o 2025-07-17T06:37:28.4756290Z [5112/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/object_ptr.cpp.o 2025-07-17T06:37:28.4948460Z [5113/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/invalid_arguments.cpp.o 2025-07-17T06:37:28.5765940Z [5114/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/init.cpp.o 2025-07-17T06:37:28.6029550Z [5115/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/throughput_benchmark.cpp.o 2025-07-17T06:37:28.6618950Z [5116/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils.cpp.o 2025-07-17T06:37:28.7713380Z [5117/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/pyobject_preservation.cpp.o 2025-07-17T06:37:28.8603830Z [5118/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/python_symnode.cpp.o 2025-07-17T06:37:28.8894060Z [5119/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/pybind.cpp.o 2025-07-17T06:37:28.9968550Z [5120/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/structseq.cpp.o 2025-07-17T06:37:29.0457670Z [5121/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/nested.cpp.o 2025-07-17T06:37:29.1440320Z [5122/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/python_arg_parser.cpp.o 2025-07-17T06:37:29.1471530Z [5123/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_dtypes.cpp.o 2025-07-17T06:37:29.2020880Z [5124/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_memoryformats.cpp.o 2025-07-17T06:37:29.2289100Z [5125/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/python_dispatch.cpp.o 2025-07-17T06:37:29.2391880Z [5126/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_layouts.cpp.o 2025-07-17T06:37:29.3118630Z [5127/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_apply.cpp.o 2025-07-17T06:37:29.3528820Z [5128/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_qschemes.cpp.o 2025-07-17T06:37:29.5890760Z [5129/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_types.cpp.o 2025-07-17T06:37:29.6322490Z [5130/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_list.cpp.o 2025-07-17T06:37:29.6360440Z [5131/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/disable_torch_function.cpp.o 2025-07-17T06:37:29.6485310Z [5132/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/cpu/Module.cpp.o 2025-07-17T06:37:29.6693950Z [5133/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/verbose.cpp.o 2025-07-17T06:37:29.6798070Z [5134/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/instruction_counter/Module.cpp.o 2025-07-17T06:37:29.8027390Z [5135/5148] Building CXX object functorch/CMakeFiles/functorch.dir/csrc/dim/dim.cpp.o 2025-07-17T06:37:29.8030770Z [5136/5148] Building C object functorch/CMakeFiles/functorch.dir/csrc/dim/dim_opcode.c.o 2025-07-17T06:37:29.8198150Z [5137/5148] Building CXX object caffe2/torch/lib/libshm/CMakeFiles/shm.dir/core.cpp.o 2025-07-17T06:37:29.8370890Z [5138/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_new.cpp.o 2025-07-17T06:37:29.8493680Z [5139/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_numpy.cpp.o 2025-07-17T06:37:29.8627390Z [5140/5148] Building CXX object caffe2/torch/lib/libshm/CMakeFiles/torch_shm_manager.dir/manager.cpp.o 2025-07-17T06:37:29.8860780Z [5141/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/lazy/python/python_util.cpp.o 2025-07-17T06:37:29.9514420Z [5142/5148] Linking CXX shared library lib/libshm.dylib 2025-07-17T06:37:30.0016260Z [5143/5148] Linking CXX executable bin/torch_shm_manager 2025-07-17T06:37:30.1468000Z [5144/5148] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/lazy/python/init.cpp.o 2025-07-17T06:37:30.2203370Z [5145/5148] Building CXX object functorch/CMakeFiles/functorch.dir/csrc/init_dim_only.cpp.o 2025-07-17T06:37:30.3350370Z [5146/5148] Linking CXX shared library lib/libtorch_python.dylib 2025-07-17T06:37:30.4368750Z [5147/5148] Linking CXX shared module functorch/functorch.so 2025-07-17T06:37:30.4369020Z [5147/5148] Install the project... 2025-07-17T06:37:30.4429830Z -- Install configuration: "Release" 2025-07-17T06:37:37.1616670Z -- Checkout nccl release tag: v2.27.5-1 2025-07-17T06:37:37.1617580Z running bdist_wheel 2025-07-17T06:37:41.7639570Z running build 2025-07-17T06:37:41.7644230Z running build_py 2025-07-17T06:37:41.7673570Z creating build/lib.macosx-14.0-arm64-cpython-312 2025-07-17T06:37:41.7674180Z creating build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:41.7674790Z copying torch/_storage_docs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:41.7682810Z copying torch/_meta_registrations.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:41.7685850Z copying torch/version.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:41.7686900Z copying torch/library.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:41.7689060Z copying torch/_jit_internal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:41.7724060Z copying torch/_thread_safe_fork.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:41.7724630Z copying torch/_custom_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:41.7740190Z copying torch/return_types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:41.7751120Z copying torch/_size_docs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:41.7757580Z copying torch/_torch_docs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:41.7765940Z copying torch/_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:41.7777660Z copying torch/_utils_internal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:41.7778590Z copying torch/quasirandom.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:41.7786340Z copying torch/torch_version.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:41.7794010Z copying torch/_VF.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:41.7800200Z copying torch/_streambase.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:41.7806380Z copying torch/_tensor_docs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:41.7813880Z copying torch/_weights_only_unpickler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:41.7827220Z copying torch/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:41.7828700Z copying torch/overrides.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:41.7862110Z copying torch/_namedtensor_internals.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:41.7869700Z copying torch/types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:41.7876720Z copying torch/_linalg_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:41.7888940Z copying torch/__config__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:41.7895780Z copying torch/_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:41.7941390Z copying torch/random.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:41.7948770Z copying torch/hub.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:41.7968630Z copying torch/_tensor_str.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:41.7982640Z copying torch/_sources.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:41.7989920Z copying torch/_vmap_internals.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:41.7996760Z copying torch/functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:41.8038810Z copying torch/_lowrank.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:41.8047920Z copying torch/_appdirs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:41.8062830Z copying torch/_environment.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:41.8070270Z copying torch/storage.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:41.8091260Z copying torch/_compile.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:41.8098090Z copying torch/_lobpcg.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:41.8119620Z copying torch/__future__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:41.8126230Z copying torch/_guards.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:41.8146600Z copying torch/_python_dispatcher.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:41.8154340Z copying torch/_classes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:41.8160620Z copying torch/serialization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:41.8202820Z copying torch/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:41.8246640Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-07-17T06:37:41.8247040Z copying torchgen/native_function_generation.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-07-17T06:37:41.8248530Z copying torchgen/gen_vmap_plumbing.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-07-17T06:37:41.8249670Z copying torchgen/gen.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-07-17T06:37:41.8251820Z copying torchgen/local.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-07-17T06:37:41.8252720Z copying torchgen/gen_functionalization_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-07-17T06:37:41.8254310Z copying torchgen/code_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-07-17T06:37:41.8255320Z copying torchgen/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-07-17T06:37:41.8256500Z copying torchgen/yaml_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-07-17T06:37:41.8257600Z copying torchgen/gen_aoti_c_shim.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-07-17T06:37:41.8259050Z copying torchgen/model.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-07-17T06:37:41.8270230Z copying torchgen/gen_schema_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-07-17T06:37:41.8282640Z copying torchgen/context.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-07-17T06:37:41.8283370Z copying torchgen/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-07-17T06:37:41.8284770Z copying torchgen/gen_backend_stubs.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-07-17T06:37:41.8286150Z copying torchgen/gen_lazy_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-07-17T06:37:41.8298990Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch 2025-07-17T06:37:41.8299340Z copying functorch/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch 2025-07-17T06:37:41.8309670Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-17T06:37:41.8310120Z copying torch/_higher_order_ops/flat_apply.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-17T06:37:41.8316830Z copying torch/_higher_order_ops/foreach_map.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-17T06:37:41.8322900Z copying torch/_higher_order_ops/effects.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-17T06:37:41.8329840Z copying torch/_higher_order_ops/_invoke_quant.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-17T06:37:41.8336280Z copying torch/_higher_order_ops/invoke_subgraph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-17T06:37:41.8353660Z copying torch/_higher_order_ops/aoti_call_delegate.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-17T06:37:41.8361740Z copying torch/_higher_order_ops/while_loop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-17T06:37:41.8375630Z copying torch/_higher_order_ops/base_hop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-17T06:37:41.8382700Z copying torch/_higher_order_ops/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-17T06:37:41.8388840Z copying torch/_higher_order_ops/strict_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-17T06:37:41.8395510Z copying torch/_higher_order_ops/torchbind.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-17T06:37:41.8402760Z copying torch/_higher_order_ops/cond.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-17T06:37:41.8423320Z copying torch/_higher_order_ops/map.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-17T06:37:41.8432810Z copying torch/_higher_order_ops/hints_wrap.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-17T06:37:41.8441590Z copying torch/_higher_order_ops/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-17T06:37:41.8455020Z copying torch/_higher_order_ops/out_dtype.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-17T06:37:41.8461910Z copying torch/_higher_order_ops/executorch_call_delegate.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-17T06:37:41.8468590Z copying torch/_higher_order_ops/scan.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-17T06:37:41.8487850Z copying torch/_higher_order_ops/run_const_graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-17T06:37:41.8495120Z copying torch/_higher_order_ops/associative_scan.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-17T06:37:41.8507910Z copying torch/_higher_order_ops/auto_functionalize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-17T06:37:41.8539320Z copying torch/_higher_order_ops/triton_kernel_wrap.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-17T06:37:41.8567320Z copying torch/_higher_order_ops/flex_attention.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-17T06:37:41.8581450Z copying torch/_higher_order_ops/wrap.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-17T06:37:41.8589250Z copying torch/_higher_order_ops/schema.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-17T06:37:41.8598290Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_prims 2025-07-17T06:37:41.8598670Z copying torch/_prims/debug_prims.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_prims 2025-07-17T06:37:41.8606170Z copying torch/_prims/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_prims 2025-07-17T06:37:41.8666230Z copying torch/_prims/context.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_prims 2025-07-17T06:37:41.8672780Z copying torch/_prims/rng_prims.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_prims 2025-07-17T06:37:41.8679790Z copying torch/_prims/executor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_prims 2025-07-17T06:37:41.8688070Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_logging 2025-07-17T06:37:41.8688560Z copying torch/_logging/_internal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_logging 2025-07-17T06:37:41.8703210Z copying torch/_logging/scribe.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_logging 2025-07-17T06:37:41.8710540Z copying torch/_logging/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_logging 2025-07-17T06:37:41.8716790Z copying torch/_logging/_registrations.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_logging 2025-07-17T06:37:41.8723500Z copying torch/_logging/structured.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_logging 2025-07-17T06:37:41.8731990Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-07-17T06:37:41.8732400Z copying torch/_functorch/partitioners.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-07-17T06:37:41.8776480Z copying torch/_functorch/compile_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-07-17T06:37:41.8788880Z copying torch/_functorch/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-07-17T06:37:41.8802000Z copying torch/_functorch/autograd_function.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-07-17T06:37:41.8818020Z copying torch/_functorch/python_key.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-07-17T06:37:41.8830180Z copying torch/_functorch/pytree_hacks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-07-17T06:37:41.8837270Z copying torch/_functorch/pyfunctorch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-07-17T06:37:41.8844080Z copying torch/_functorch/deprecated.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-07-17T06:37:41.8851620Z copying torch/_functorch/top_operators_github_usage.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-07-17T06:37:41.8865780Z copying torch/_functorch/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-07-17T06:37:41.8872940Z copying torch/_functorch/batch_norm_replacement.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-07-17T06:37:41.8879720Z copying torch/_functorch/fx_minifier.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-07-17T06:37:41.8893760Z copying torch/_functorch/apis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-07-17T06:37:41.8908580Z copying torch/_functorch/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-07-17T06:37:41.8915330Z copying torch/_functorch/aot_autograd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-07-17T06:37:41.8955800Z copying torch/_functorch/compilers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-07-17T06:37:41.8963600Z copying torch/_functorch/eager_transforms.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-07-17T06:37:41.8995210Z copying torch/_functorch/vmap.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-07-17T06:37:41.9009120Z copying torch/_functorch/benchmark_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-07-17T06:37:41.9016100Z copying torch/_functorch/make_functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-07-17T06:37:41.9030530Z copying torch/_functorch/functional_call.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-07-17T06:37:41.9039990Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-07-17T06:37:41.9040380Z copying torch/_numpy/_reductions_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-07-17T06:37:41.9047970Z copying torch/_numpy/_getlimits.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-07-17T06:37:41.9055050Z copying torch/_numpy/_unary_ufuncs_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-07-17T06:37:41.9061910Z copying torch/_numpy/_casting_dicts.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-07-17T06:37:41.9077870Z copying torch/_numpy/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-07-17T06:37:41.9086290Z copying torch/_numpy/_binary_ufuncs_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-07-17T06:37:41.9092570Z copying torch/_numpy/random.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-07-17T06:37:41.9098560Z copying torch/_numpy/_dtypes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-07-17T06:37:41.9104870Z copying torch/_numpy/linalg.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-07-17T06:37:41.9111750Z copying torch/_numpy/_ndarray.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-07-17T06:37:41.9124830Z copying torch/_numpy/_ufuncs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-07-17T06:37:41.9134800Z copying torch/_numpy/_util.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-07-17T06:37:41.9143430Z copying torch/_numpy/_normalizations.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-07-17T06:37:41.9150230Z copying torch/_numpy/_dtypes_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-07-17T06:37:41.9156690Z copying torch/_numpy/fft.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-07-17T06:37:41.9164200Z copying torch/_numpy/_funcs_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-07-17T06:37:41.9184940Z copying torch/_numpy/_funcs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-07-17T06:37:41.9193720Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-07-17T06:37:41.9194080Z copying torch/_export/error.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-07-17T06:37:41.9201070Z copying torch/_export/tools.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-07-17T06:37:41.9208510Z copying torch/_export/converter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-07-17T06:37:41.9235450Z copying torch/_export/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-07-17T06:37:41.9242820Z copying torch/_export/pass_base.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-07-17T06:37:41.9269150Z copying torch/_export/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-07-17T06:37:41.9289340Z copying torch/_export/wrappers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-07-17T06:37:41.9295570Z copying torch/_export/non_strict_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-07-17T06:37:41.9308790Z copying torch/_export/verifier.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-07-17T06:37:41.9322800Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/monitor 2025-07-17T06:37:41.9323170Z copying torch/monitor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/monitor 2025-07-17T06:37:41.9330720Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_dispatch 2025-07-17T06:37:41.9331110Z copying torch/_dispatch/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dispatch 2025-07-17T06:37:41.9331980Z copying torch/_dispatch/python.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dispatch 2025-07-17T06:37:41.9341550Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-07-17T06:37:41.9342070Z copying torch/_subclasses/functional_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-07-17T06:37:41.9357700Z copying torch/_subclasses/meta_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-07-17T06:37:41.9394140Z copying torch/_subclasses/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-07-17T06:37:41.9401850Z copying torch/_subclasses/_fake_tensor_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-07-17T06:37:41.9410210Z copying torch/_subclasses/fake_impls.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-07-17T06:37:41.9411320Z copying torch/_subclasses/fake_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-07-17T06:37:41.9439520Z copying torch/_subclasses/schema_check_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-07-17T06:37:41.9446920Z copying torch/_subclasses/fake_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-07-17T06:37:41.9454380Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/futures 2025-07-17T06:37:41.9454750Z copying torch/futures/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/futures 2025-07-17T06:37:41.9462590Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/linalg 2025-07-17T06:37:41.9462950Z copying torch/linalg/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/linalg 2025-07-17T06:37:41.9491520Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_custom_op 2025-07-17T06:37:41.9491910Z copying torch/_custom_op/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_custom_op 2025-07-17T06:37:41.9492740Z copying torch/_custom_op/autograd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_custom_op 2025-07-17T06:37:41.9500020Z copying torch/_custom_op/impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_custom_op 2025-07-17T06:37:41.9514860Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-07-17T06:37:41.9515200Z copying torch/nn/common_types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-07-17T06:37:41.9522450Z copying torch/nn/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-07-17T06:37:41.9529130Z copying torch/nn/_reduction.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-07-17T06:37:41.9535530Z copying torch/nn/cpp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-07-17T06:37:41.9542430Z copying torch/nn/functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-07-17T06:37:41.9584160Z copying torch/nn/init.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-07-17T06:37:41.9610630Z copying torch/nn/grad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-07-17T06:37:41.9617690Z copying torch/nn/parameter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-07-17T06:37:41.9625730Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/mps 2025-07-17T06:37:41.9626070Z copying torch/mps/event.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/mps 2025-07-17T06:37:41.9632750Z copying torch/mps/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/mps 2025-07-17T06:37:41.9640010Z copying torch/mps/profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/mps 2025-07-17T06:37:41.9650120Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-17T06:37:41.9650480Z copying torch/onnx/_type_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-17T06:37:41.9658600Z copying torch/onnx/_constants.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-17T06:37:41.9666290Z copying torch/onnx/symbolic_opset15.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-17T06:37:41.9673530Z copying torch/onnx/_onnx_supported_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-17T06:37:41.9681000Z copying torch/onnx/symbolic_opset7.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-17T06:37:41.9688040Z copying torch/onnx/symbolic_opset11.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-17T06:37:41.9711190Z copying torch/onnx/verification.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-17T06:37:41.9733920Z copying torch/onnx/_flags.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-17T06:37:41.9741140Z copying torch/onnx/symbolic_opset10.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-17T06:37:41.9765720Z copying torch/onnx/symbolic_opset20.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-17T06:37:41.9778600Z copying torch/onnx/symbolic_opset14.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-17T06:37:41.9789100Z copying torch/onnx/_globals.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-17T06:37:41.9796080Z copying torch/onnx/symbolic_helper.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-17T06:37:41.9854910Z copying torch/onnx/symbolic_opset9.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-17T06:37:41.9889320Z copying torch/onnx/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-17T06:37:41.9902900Z copying torch/onnx/symbolic_opset8.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-17T06:37:41.9909920Z copying torch/onnx/symbolic_opset19.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-17T06:37:41.9916540Z copying torch/onnx/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-17T06:37:41.9943340Z copying torch/onnx/_experimental.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-17T06:37:41.9950750Z copying torch/onnx/symbolic_opset18.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-17T06:37:41.9957800Z copying torch/onnx/errors.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-17T06:37:41.9965100Z copying torch/onnx/symbolic_opset13.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-17T06:37:41.9978200Z copying torch/onnx/operators.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-17T06:37:41.9984610Z copying torch/onnx/symbolic_opset17.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-17T06:37:41.9991030Z copying torch/onnx/symbolic_opset16.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-17T06:37:41.9998260Z copying torch/onnx/symbolic_opset12.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-17T06:37:42.0005730Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor 2025-07-17T06:37:42.0006090Z copying torch/_vendor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor 2025-07-17T06:37:42.0007740Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/cpu 2025-07-17T06:37:42.0008440Z copying torch/cpu/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cpu 2025-07-17T06:37:42.0018550Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-07-17T06:37:42.0018990Z copying torch/distributed/_composable_state.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-07-17T06:37:42.0033950Z copying torch/distributed/logging_handlers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-07-17T06:37:42.0040390Z copying torch/distributed/rendezvous.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-07-17T06:37:42.0047550Z copying torch/distributed/run.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-07-17T06:37:42.0064040Z copying torch/distributed/_state_dict_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-07-17T06:37:42.0079250Z copying torch/distributed/_serialization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-07-17T06:37:42.0087000Z copying torch/distributed/distributed_c10d.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-07-17T06:37:42.0132500Z copying torch/distributed/argparse_util.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-07-17T06:37:42.0140980Z copying torch/distributed/_checkpointable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-07-17T06:37:42.0147760Z copying torch/distributed/constants.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-07-17T06:37:42.0155830Z copying torch/distributed/c10d_logger.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-07-17T06:37:42.0164050Z copying torch/distributed/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-07-17T06:37:42.0170850Z copying torch/distributed/_dist2.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-07-17T06:37:42.0178480Z copying torch/distributed/collective_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-07-17T06:37:42.0186000Z copying torch/distributed/_functional_collectives.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-07-17T06:37:42.0187490Z copying torch/distributed/launch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-07-17T06:37:42.0194880Z copying torch/distributed/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-07-17T06:37:42.0203140Z copying torch/distributed/remote_device.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-07-17T06:37:42.0210050Z copying torch/distributed/device_mesh.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-07-17T06:37:42.0233580Z copying torch/distributed/_functional_collectives_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-07-17T06:37:42.0241960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-07-17T06:37:42.0242360Z copying torch/autograd/anomaly_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-07-17T06:37:42.0249840Z copying torch/autograd/graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-07-17T06:37:42.0265160Z copying torch/autograd/forward_ad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-07-17T06:37:42.0273210Z copying torch/autograd/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-07-17T06:37:42.0290300Z copying torch/autograd/variable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-07-17T06:37:42.0298780Z copying torch/autograd/functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-07-17T06:37:42.0321830Z copying torch/autograd/grad_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-07-17T06:37:42.0331010Z copying torch/autograd/profiler_util.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-07-17T06:37:42.0345900Z copying torch/autograd/profiler_legacy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-07-17T06:37:42.0353900Z copying torch/autograd/gradcheck.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-07-17T06:37:42.0384040Z copying torch/autograd/profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-07-17T06:37:42.0405530Z copying torch/autograd/function.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-07-17T06:37:42.0428140Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-07-17T06:37:42.0428520Z copying torch/fx/_pytree.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-07-17T06:37:42.0439520Z copying torch/fx/graph_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-07-17T06:37:42.0440660Z copying torch/fx/operator_schemas.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-07-17T06:37:42.0456210Z copying torch/fx/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-07-17T06:37:42.0462470Z copying torch/fx/proxy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-07-17T06:37:42.0477100Z copying torch/fx/_lazy_graph_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-07-17T06:37:42.0477950Z copying torch/fx/traceback.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-07-17T06:37:42.0479150Z copying torch/fx/graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-07-17T06:37:42.0500780Z copying torch/fx/tensor_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-07-17T06:37:42.0507900Z copying torch/fx/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-07-17T06:37:42.0515230Z copying torch/fx/immutable_collections.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-07-17T06:37:42.0521510Z copying torch/fx/annotate.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-07-17T06:37:42.0528730Z copying torch/fx/subgraph_rewriter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-07-17T06:37:42.0536040Z copying torch/fx/interpreter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-07-17T06:37:42.0550260Z copying torch/fx/_symbolic_trace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-07-17T06:37:42.0570680Z copying torch/fx/node.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-07-17T06:37:42.0584420Z copying torch/fx/_compatibility.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-07-17T06:37:42.0591400Z copying torch/fx/_graph_pickler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-07-17T06:37:42.0606090Z copying torch/fx/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-07-17T06:37:42.0613190Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_prims_common 2025-07-17T06:37:42.0613600Z copying torch/_prims_common/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_prims_common 2025-07-17T06:37:42.0634720Z copying torch/_prims_common/wrappers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_prims_common 2025-07-17T06:37:42.0650870Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing 2025-07-17T06:37:42.0651300Z copying torch/multiprocessing/queue.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing 2025-07-17T06:37:42.0658240Z copying torch/multiprocessing/_atfork.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing 2025-07-17T06:37:42.0665020Z copying torch/multiprocessing/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing 2025-07-17T06:37:42.0672280Z copying torch/multiprocessing/spawn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing 2025-07-17T06:37:42.0679590Z copying torch/multiprocessing/reductions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing 2025-07-17T06:37:42.0694490Z copying torch/multiprocessing/pool.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing 2025-07-17T06:37:42.0703570Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-07-17T06:37:42.0703940Z copying torch/cuda/_pin_memory_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-07-17T06:37:42.0714560Z copying torch/cuda/gds.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-07-17T06:37:42.0726170Z copying torch/cuda/streams.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-07-17T06:37:42.0736230Z copying torch/cuda/error.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-07-17T06:37:42.0741520Z copying torch/cuda/comm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-07-17T06:37:42.0748780Z copying torch/cuda/memory.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-07-17T06:37:42.0762710Z copying torch/cuda/jiterator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-07-17T06:37:42.0770320Z copying torch/cuda/nccl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-07-17T06:37:42.0776990Z copying torch/cuda/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-07-17T06:37:42.0778190Z copying torch/cuda/_gpu_trace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-07-17T06:37:42.0785160Z copying torch/cuda/_sanitizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-07-17T06:37:42.0798980Z copying torch/cuda/random.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-07-17T06:37:42.0806200Z copying torch/cuda/_memory_viz.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-07-17T06:37:42.0820740Z copying torch/cuda/tunable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-07-17T06:37:42.0835620Z copying torch/cuda/sparse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-07-17T06:37:42.0842120Z copying torch/cuda/nvtx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-07-17T06:37:42.0848480Z copying torch/cuda/graphs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-07-17T06:37:42.0869400Z copying torch/cuda/profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-07-17T06:37:42.0877480Z copying torch/cuda/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-07-17T06:37:42.0885940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends 2025-07-17T06:37:42.0886430Z copying torch/backends/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends 2025-07-17T06:37:42.0894480Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp 2025-07-17T06:37:42.0894900Z copying torch/_decomp/decompositions_for_jvp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp 2025-07-17T06:37:42.0902670Z copying torch/_decomp/decompositions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp 2025-07-17T06:37:42.0941490Z copying torch/_decomp/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp 2025-07-17T06:37:42.0955870Z copying torch/_decomp/decompositions_for_rng.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp 2025-07-17T06:37:42.0964240Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/xpu 2025-07-17T06:37:42.0964680Z copying torch/xpu/streams.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/xpu 2025-07-17T06:37:42.0970970Z copying torch/xpu/memory.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/xpu 2025-07-17T06:37:42.0978070Z copying torch/xpu/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/xpu 2025-07-17T06:37:42.0991480Z copying torch/xpu/_gpu_trace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/xpu 2025-07-17T06:37:42.0998730Z copying torch/xpu/random.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/xpu 2025-07-17T06:37:42.1007290Z copying torch/xpu/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/xpu 2025-07-17T06:37:42.1016830Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/masked 2025-07-17T06:37:42.1017190Z copying torch/masked/_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked 2025-07-17T06:37:42.1046990Z copying torch/masked/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked 2025-07-17T06:37:42.1053910Z copying torch/masked/_docs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked 2025-07-17T06:37:42.1078000Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-07-17T06:37:42.1078360Z copying torch/optim/lr_scheduler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-07-17T06:37:42.1106800Z copying torch/optim/rmsprop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-07-17T06:37:42.1120410Z copying torch/optim/_adafactor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-07-17T06:37:42.1139370Z copying torch/optim/sparse_adam.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-07-17T06:37:42.1146380Z copying torch/optim/rprop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-07-17T06:37:42.1169360Z copying torch/optim/sgd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-07-17T06:37:42.1182530Z copying torch/optim/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-07-17T06:37:42.1188460Z copying torch/optim/adamax.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-07-17T06:37:42.1202700Z copying torch/optim/adagrad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-07-17T06:37:42.1215170Z copying torch/optim/adamw.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-07-17T06:37:42.1222040Z copying torch/optim/swa_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-07-17T06:37:42.1235050Z copying torch/optim/lbfgs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-07-17T06:37:42.1249860Z copying torch/optim/radam.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-07-17T06:37:42.1263820Z copying torch/optim/adam.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-07-17T06:37:42.1278070Z copying torch/optim/optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-07-17T06:37:42.1303450Z copying torch/optim/nadam.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-07-17T06:37:42.1317260Z copying torch/optim/asgd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-07-17T06:37:42.1324360Z copying torch/optim/_functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-07-17T06:37:42.1330980Z copying torch/optim/adadelta.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-07-17T06:37:42.1350010Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1350430Z copying torch/_inductor/dtype_propagation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1358720Z copying torch/_inductor/cudagraph_trees.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1387530Z copying torch/_inductor/select_algorithm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1419840Z copying torch/_inductor/ops_handler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1435560Z copying torch/_inductor/metrics.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1444400Z copying torch/_inductor/codecache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1481620Z copying torch/_inductor/mock_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1489010Z copying torch/_inductor/optimize_indexing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1495570Z copying torch/_inductor/freezing_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1501750Z copying torch/_inductor/hooks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1508510Z copying torch/_inductor/cpp_builder.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1532170Z copying torch/_inductor/cpu_vec_isa.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1539870Z copying torch/_inductor/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1568940Z copying torch/_inductor/compile_fx_ext.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1583920Z copying torch/_inductor/comms.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1622550Z copying torch/_inductor/memory.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1637520Z copying torch/_inductor/mkldnn_lowerings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1658110Z copying torch/_inductor/async_compile.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1672030Z copying torch/_inductor/pattern_matcher.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1694520Z copying torch/_inductor/quantized_lowerings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1703040Z copying torch/_inductor/triton_bundler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1710940Z copying torch/_inductor/aoti_eager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1718700Z copying torch/_inductor/graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1720160Z copying torch/_inductor/lowering.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1722910Z copying torch/_inductor/jagged_lowerings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1737430Z copying torch/_inductor/test_operators.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1738190Z copying torch/_inductor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1747370Z copying torch/_inductor/compile_fx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1791000Z copying torch/_inductor/cudagraph_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1799910Z copying torch/_inductor/sizevars.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1811460Z copying torch/_inductor/ir.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1814340Z copying torch/_inductor/analyze_preserves_zero_mask.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1820840Z copying torch/_inductor/compile_fx_async.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1827960Z copying torch/_inductor/index_propagation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1835840Z copying torch/_inductor/constant_folding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1843420Z copying torch/_inductor/inductor_prims.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1849470Z copying torch/_inductor/virtualized.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1855820Z copying torch/_inductor/test_case.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1862490Z copying torch/_inductor/autotune_process.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1875930Z copying torch/_inductor/standalone_compile.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1883270Z copying torch/_inductor/exc.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1890370Z copying torch/_inductor/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1891830Z copying torch/_inductor/debug.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1907710Z copying torch/_inductor/__autotune_main__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1918100Z copying torch/_inductor/fuzzer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1943230Z copying torch/_inductor/comm_lowering.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1950750Z copying torch/_inductor/decomposition.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1966580Z copying torch/_inductor/fx_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1975230Z copying torch/_inductor/compile_fx_subproc.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1981240Z copying torch/_inductor/scheduler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1983540Z copying torch/_inductor/mkldnn_ir.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.1996700Z copying torch/_inductor/wrapper_benchmark.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.2004120Z copying torch/_inductor/choices.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.2016340Z copying torch/_inductor/remote_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.2023250Z copying torch/_inductor/comm_analysis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.2030070Z copying torch/_inductor/compiler_bisector.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.2043510Z copying torch/_inductor/extern_node_serializer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.2050580Z copying torch/_inductor/bounds.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.2058040Z copying torch/_inductor/output_code.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.2071930Z copying torch/_inductor/custom_graph_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.2079460Z copying torch/_inductor/freezing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.2087650Z copying torch/_inductor/dependencies.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.2088720Z copying torch/_inductor/tiling_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.2102070Z copying torch/_inductor/loop_body.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.2115380Z copying torch/_inductor/subgraph_lowering.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.2122790Z copying torch/_inductor/template_heuristics.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:42.2153940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:42.2154370Z copying torch/utils/_pytree.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:42.2175910Z copying torch/utils/_appending_byte_serializer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:42.2183000Z copying torch/utils/_foreach_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:42.2195340Z copying torch/utils/hooks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:42.2209040Z copying torch/utils/_traceback.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:42.2216480Z copying torch/utils/_cpp_extension_versioner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:42.2228570Z copying torch/utils/_mode_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:42.2235000Z copying torch/utils/checkpoint.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:42.2257370Z copying torch/utils/show_pickle.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:42.2264930Z copying torch/utils/deterministic.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:42.2278580Z copying torch/utils/file_baton.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:42.2285060Z copying torch/utils/backend_registration.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:42.2298160Z copying torch/utils/module_tracker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:42.2305780Z copying torch/utils/model_zoo.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:42.2312810Z copying torch/utils/_zip.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:42.2320850Z copying torch/utils/collect_env.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:42.2322040Z copying torch/utils/throughput_benchmark.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:42.2330400Z copying torch/utils/dlpack.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:42.2338490Z copying torch/utils/_cxx_pytree.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:42.2358030Z copying torch/utils/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:42.2358970Z copying torch/utils/_functools.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:42.2366850Z copying torch/utils/_import_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:42.2367740Z copying torch/utils/_cpp_embed_headers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:42.2368810Z copying torch/utils/_dtype_abbrs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:42.2376010Z copying torch/utils/bundled_inputs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:42.2389670Z copying torch/utils/_helion.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:42.2396730Z copying torch/utils/mkldnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:42.2403560Z copying torch/utils/cpp_backtrace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:42.2411010Z copying torch/utils/_contextlib.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:42.2417870Z copying torch/utils/_python_dispatch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:42.2431900Z copying torch/utils/_exposed_in.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:42.2438930Z copying torch/utils/_filelock.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:42.2445690Z copying torch/utils/_thunk.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:42.2452670Z copying torch/utils/_config_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:42.2474800Z copying torch/utils/_device.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:42.2485880Z copying torch/utils/flop_counter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:42.2499200Z copying torch/utils/_typing_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:42.2506110Z copying torch/utils/_stats.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:42.2512340Z copying torch/utils/cpp_extension.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:42.2547530Z copying torch/utils/_backport_slots.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:42.2555630Z copying torch/utils/_get_clean_triton.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:42.2562650Z copying torch/utils/_triton.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:42.2569640Z copying torch/utils/_content_store.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:42.2577730Z copying torch/utils/_ordered_set.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:42.2585510Z copying torch/utils/weak.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:42.2593130Z copying torch/utils/mobile_optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:42.2601710Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/contrib 2025-07-17T06:37:42.2602070Z copying torch/contrib/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/contrib 2025-07-17T06:37:42.2602910Z copying torch/contrib/_tensorboard_vis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/contrib 2025-07-17T06:37:42.2612720Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-07-17T06:37:42.2613150Z copying torch/quantization/observer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-07-17T06:37:42.2619600Z copying torch/quantization/fuse_modules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-07-17T06:37:42.2626630Z copying torch/quantization/quantization_mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-07-17T06:37:42.2634250Z copying torch/quantization/quantize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-07-17T06:37:42.2640570Z copying torch/quantization/_numeric_suite.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-07-17T06:37:42.2647160Z copying torch/quantization/fake_quantize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-07-17T06:37:42.2653490Z copying torch/quantization/qconfig.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-07-17T06:37:42.2660550Z copying torch/quantization/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-07-17T06:37:42.2667230Z copying torch/quantization/_quantized_conversions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-07-17T06:37:42.2675320Z copying torch/quantization/stubs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-07-17T06:37:42.2682390Z copying torch/quantization/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-07-17T06:37:42.2689330Z copying torch/quantization/fuser_method_mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-07-17T06:37:42.2696760Z copying torch/quantization/quantize_jit.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-07-17T06:37:42.2703310Z copying torch/quantization/quant_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-07-17T06:37:42.2710100Z copying torch/quantization/quantize_fx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-07-17T06:37:42.2716740Z copying torch/quantization/_numeric_suite_fx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-07-17T06:37:42.2724630Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/special 2025-07-17T06:37:42.2725010Z copying torch/special/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/special 2025-07-17T06:37:42.2754850Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing 2025-07-17T06:37:42.2755220Z copying torch/testing/_creation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing 2025-07-17T06:37:42.2762840Z copying torch/testing/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing 2025-07-17T06:37:42.2770290Z copying torch/testing/_comparison.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing 2025-07-17T06:37:42.2798000Z copying torch/testing/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing 2025-07-17T06:37:42.2808060Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-07-17T06:37:42.2808420Z copying torch/_library/triton.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-07-17T06:37:42.2815480Z copying torch/_library/fake_profile.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-07-17T06:37:42.2822940Z copying torch/_library/infer_schema.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-07-17T06:37:42.2830340Z copying torch/_library/simple_registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-07-17T06:37:42.2837260Z copying torch/_library/custom_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-07-17T06:37:42.2838340Z copying torch/_library/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-07-17T06:37:42.2845220Z copying torch/_library/fake_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-07-17T06:37:42.2852720Z copying torch/_library/autograd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-07-17T06:37:42.2860390Z copying torch/_library/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-07-17T06:37:42.2861400Z copying torch/_library/fake_class_registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-07-17T06:37:42.2870170Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/accelerator 2025-07-17T06:37:42.2870580Z copying torch/accelerator/memory.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/accelerator 2025-07-17T06:37:42.2878230Z copying torch/accelerator/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/accelerator 2025-07-17T06:37:42.2887090Z copying torch/accelerator/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/accelerator 2025-07-17T06:37:42.2896090Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/amp 2025-07-17T06:37:42.2896440Z copying torch/amp/autocast_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/amp 2025-07-17T06:37:42.2911490Z copying torch/amp/grad_scaler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/amp 2025-07-17T06:37:42.2926090Z copying torch/amp/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/amp 2025-07-17T06:37:42.2948800Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-17T06:37:42.2949140Z copying torch/jit/_ir_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-17T06:37:42.2962780Z copying torch/jit/_monkeytype_config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-17T06:37:42.2969560Z copying torch/jit/_decompositions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-17T06:37:42.2977200Z copying torch/jit/_recursive.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-17T06:37:42.2992680Z copying torch/jit/_logging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-17T06:37:42.2999850Z copying torch/jit/_serialization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-17T06:37:42.3006790Z copying torch/jit/quantized.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-17T06:37:42.3013820Z copying torch/jit/_script.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-17T06:37:42.3035250Z copying torch/jit/_shape_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-17T06:37:42.3052340Z copying torch/jit/_decomposition_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-17T06:37:42.3060900Z copying torch/jit/_freeze.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-17T06:37:42.3067920Z copying torch/jit/_pickle.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-17T06:37:42.3075240Z copying torch/jit/_check.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-17T06:37:42.3082730Z copying torch/jit/unsupported_tensor_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-17T06:37:42.3091000Z copying torch/jit/frontend.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-17T06:37:42.3106270Z copying torch/jit/supported_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-17T06:37:42.3114000Z copying torch/jit/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-17T06:37:42.3121810Z copying torch/jit/_fuser.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-17T06:37:42.3129350Z copying torch/jit/_builtins.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-17T06:37:42.3136810Z copying torch/jit/_dataclass_impls.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-17T06:37:42.3144760Z copying torch/jit/_trace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-17T06:37:42.3165840Z copying torch/jit/generate_bytecode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-17T06:37:42.3172790Z copying torch/jit/_state.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-17T06:37:42.3179830Z copying torch/jit/_async.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-17T06:37:42.3186470Z copying torch/jit/annotations.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-17T06:37:42.3200250Z copying torch/jit/_await.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-17T06:37:42.3212710Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3213080Z copying torch/_dynamo/package.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3236800Z copying torch/_dynamo/cache_size.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3252090Z copying torch/_dynamo/callback.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3259120Z copying torch/_dynamo/comptime.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3266720Z copying torch/_dynamo/logging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3274420Z copying torch/_dynamo/_trace_wrapped_higher_order_op.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3275370Z copying torch/_dynamo/hooks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3282410Z copying torch/_dynamo/precompile_context.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3290380Z copying torch/_dynamo/graph_break_hints.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3298080Z copying torch/_dynamo/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3313990Z copying torch/_dynamo/guards.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3354210Z copying torch/_dynamo/test_minifier_common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3362170Z copying torch/_dynamo/create_parameter_op.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3369680Z copying torch/_dynamo/graph_region_tracker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3383860Z copying torch/_dynamo/device_interface.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3396740Z copying torch/_dynamo/graph_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3403600Z copying torch/_dynamo/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3410420Z copying torch/_dynamo/mutation_guard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3417560Z copying torch/_dynamo/types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3424610Z copying torch/_dynamo/metrics_context.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3431980Z copying torch/_dynamo/bytecode_analysis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3439530Z copying torch/_dynamo/tensor_version_op.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3446680Z copying torch/_dynamo/external_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3454190Z copying torch/_dynamo/test_case.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3461240Z copying torch/_dynamo/distributed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3468480Z copying torch/_dynamo/resume_execution.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3484870Z copying torch/_dynamo/output_graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3520470Z copying torch/_dynamo/compiled_autograd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3542550Z copying torch/_dynamo/exc.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3557590Z copying torch/_dynamo/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3596200Z copying torch/_dynamo/test_dont_skip_tracing_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3603910Z copying torch/_dynamo/replay_record.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3610780Z copying torch/_dynamo/side_effects.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3635960Z copying torch/_dynamo/trace_rules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3637720Z copying torch/_dynamo/bytecode_transformation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3662040Z copying torch/_dynamo/convert_frame.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3690910Z copying torch/_dynamo/funcname_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3697670Z copying torch/_dynamo/testing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3711510Z copying torch/_dynamo/pgo.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3725590Z copying torch/_dynamo/profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3732310Z copying torch/_dynamo/symbolic_convert.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3765740Z copying torch/_dynamo/codegen.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3780930Z copying torch/_dynamo/source.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3808490Z copying torch/_dynamo/eval_frame.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3835080Z copying torch/_dynamo/code_context.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3841730Z copying torch/_dynamo/graph_deduplication.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3854490Z copying torch/_dynamo/current_scope_id.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3861040Z copying torch/_dynamo/debug_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3874970Z copying torch/_dynamo/decorators.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:42.3893140Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-07-17T06:37:42.3893500Z copying torch/_lazy/metrics.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-07-17T06:37:42.3901870Z copying torch/_lazy/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-07-17T06:37:42.3908340Z copying torch/_lazy/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-07-17T06:37:42.3914460Z copying torch/_lazy/tensor_factory_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-07-17T06:37:42.3920470Z copying torch/_lazy/debug.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-07-17T06:37:42.3934760Z copying torch/_lazy/extract_compiled_graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-07-17T06:37:42.3945920Z copying torch/_lazy/ir_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-07-17T06:37:42.3951670Z copying torch/_lazy/ts_backend.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-07-17T06:37:42.3958640Z copying torch/_lazy/computation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-07-17T06:37:42.3964890Z copying torch/_lazy/closure.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-07-17T06:37:42.3972330Z copying torch/_lazy/device_context.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-07-17T06:37:42.3982420Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao 2025-07-17T06:37:42.3982760Z copying torch/ao/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao 2025-07-17T06:37:42.3989780Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/mtia 2025-07-17T06:37:42.3990130Z copying torch/mtia/memory.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/mtia 2025-07-17T06:37:42.3996560Z copying torch/mtia/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/mtia 2025-07-17T06:37:42.4003180Z copying torch/mtia/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/mtia 2025-07-17T06:37:42.4010030Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_refs 2025-07-17T06:37:42.4010390Z copying torch/_refs/_conversions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_refs 2025-07-17T06:37:42.4017000Z copying torch/_refs/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_refs 2025-07-17T06:37:42.4056130Z copying torch/_refs/fft.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_refs 2025-07-17T06:37:42.4071060Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fft 2025-07-17T06:37:42.4071400Z copying torch/fft/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fft 2025-07-17T06:37:42.4097820Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-07-17T06:37:42.4098320Z copying torch/profiler/_memory_profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-07-17T06:37:42.4113970Z copying torch/profiler/itt.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-07-17T06:37:42.4121540Z copying torch/profiler/_pattern_matcher.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-07-17T06:37:42.4134180Z copying torch/profiler/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-07-17T06:37:42.4140380Z copying torch/profiler/profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-07-17T06:37:42.4153460Z copying torch/profiler/python_tracer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-07-17T06:37:42.4160740Z copying torch/profiler/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-07-17T06:37:42.4168860Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/sparse 2025-07-17T06:37:42.4169310Z copying torch/sparse/_semi_structured_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/sparse 2025-07-17T06:37:42.4176530Z copying torch/sparse/_semi_structured_conversions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/sparse 2025-07-17T06:37:42.4185970Z copying torch/sparse/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/sparse 2025-07-17T06:37:42.4200760Z copying torch/sparse/semi_structured.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/sparse 2025-07-17T06:37:42.4217040Z copying torch/sparse/_triton_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/sparse 2025-07-17T06:37:42.4243330Z copying torch/sparse/_triton_ops_meta.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/sparse 2025-07-17T06:37:42.4296970Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_awaits 2025-07-17T06:37:42.4297340Z copying torch/_awaits/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_awaits 2025-07-17T06:37:42.4307560Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-07-17T06:37:42.4307940Z copying torch/export/_safeguard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-07-17T06:37:42.4314640Z copying torch/export/exported_program.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-07-17T06:37:42.4334380Z copying torch/export/unflatten.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-07-17T06:37:42.4356050Z copying torch/export/custom_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-07-17T06:37:42.4363110Z copying torch/export/custom_obj.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-07-17T06:37:42.4370280Z copying torch/export/_remove_effect_tokens_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-07-17T06:37:42.4377550Z copying torch/export/_remove_auto_functionalized_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-07-17T06:37:42.4384470Z copying torch/export/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-07-17T06:37:42.4398090Z copying torch/export/_unlift.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-07-17T06:37:42.4411540Z copying torch/export/_trace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-07-17T06:37:42.4441420Z copying torch/export/graph_signature.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-07-17T06:37:42.4455890Z copying torch/export/_wrapper_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-07-17T06:37:42.4463120Z copying torch/export/decomp_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-07-17T06:37:42.4470770Z copying torch/export/_swap.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-07-17T06:37:42.4486550Z copying torch/export/_draft_export.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-07-17T06:37:42.4499690Z copying torch/export/dynamic_shapes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-07-17T06:37:42.4521730Z copying torch/export/_tree_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-07-17T06:37:42.4529520Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nested 2025-07-17T06:37:42.4529890Z copying torch/nested/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nested 2025-07-17T06:37:42.4544340Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_strobelight 2025-07-17T06:37:42.4544790Z copying torch/_strobelight/cli_function_profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_strobelight 2025-07-17T06:37:42.4552900Z copying torch/_strobelight/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_strobelight 2025-07-17T06:37:42.4553610Z copying torch/_strobelight/compile_time_profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_strobelight 2025-07-17T06:37:42.4561780Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/compiler 2025-07-17T06:37:42.4562200Z copying torch/compiler/_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/compiler 2025-07-17T06:37:42.4571200Z copying torch/compiler/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/compiler 2025-07-17T06:37:42.4577460Z copying torch/compiler/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/compiler 2025-07-17T06:37:42.4592750Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/signal 2025-07-17T06:37:42.4593130Z copying torch/signal/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/signal 2025-07-17T06:37:42.4605540Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.4606160Z copying torch/distributions/inverse_gamma.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.4620130Z copying torch/distributions/laplace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.4627260Z copying torch/distributions/relaxed_bernoulli.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.4633840Z copying torch/distributions/categorical.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.4647050Z copying torch/distributions/transforms.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.4676150Z copying torch/distributions/dirichlet.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.4684090Z copying torch/distributions/log_normal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.4690920Z copying torch/distributions/transformed_distribution.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.4698400Z copying torch/distributions/geometric.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.4705970Z copying torch/distributions/generalized_pareto.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.4712900Z copying torch/distributions/weibull.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.4724060Z copying torch/distributions/studentT.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.4734040Z copying torch/distributions/multivariate_normal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.4740960Z copying torch/distributions/normal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.4747740Z copying torch/distributions/poisson.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.4754610Z copying torch/distributions/beta.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.4760830Z copying torch/distributions/kumaraswamy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.4767260Z copying torch/distributions/half_normal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.4774430Z copying torch/distributions/relaxed_categorical.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.4781330Z copying torch/distributions/lowrank_multivariate_normal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.4788480Z copying torch/distributions/half_cauchy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.4795360Z copying torch/distributions/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.4802460Z copying torch/distributions/lkj_cholesky.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.4809110Z copying torch/distributions/independent.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.4816640Z copying torch/distributions/multinomial.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.4823410Z copying torch/distributions/exponential.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.4829830Z copying torch/distributions/pareto.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.4836280Z copying torch/distributions/negative_binomial.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.4843710Z copying torch/distributions/cauchy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.4850720Z copying torch/distributions/von_mises.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.4858110Z copying torch/distributions/distribution.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.4868760Z copying torch/distributions/gumbel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.4878180Z copying torch/distributions/constraint_registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.4885470Z copying torch/distributions/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.4892570Z copying torch/distributions/kl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.4910090Z copying torch/distributions/mixture_same_family.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.4919350Z copying torch/distributions/continuous_bernoulli.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.4929830Z copying torch/distributions/fishersnedecor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.4938650Z copying torch/distributions/constraints.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.4956970Z copying torch/distributions/uniform.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.4965030Z copying torch/distributions/bernoulli.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.4971270Z copying torch/distributions/exp_family.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.4977480Z copying torch/distributions/logistic_normal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.4986990Z copying torch/distributions/one_hot_categorical.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.4995480Z copying torch/distributions/wishart.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.5002570Z copying torch/distributions/gamma.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.5009980Z copying torch/distributions/chi2.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.5016090Z copying torch/distributions/binomial.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-17T06:37:42.5024660Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-07-17T06:37:42.5025200Z copying torch/package/package_exporter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-07-17T06:37:42.5045660Z copying torch/package/file_structure_representation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-07-17T06:37:42.5052620Z copying torch/package/_mock.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-07-17T06:37:42.5059680Z copying torch/package/importer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-07-17T06:37:42.5066080Z copying torch/package/_stdlib.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-07-17T06:37:42.5073720Z copying torch/package/_mangling.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-07-17T06:37:42.5080940Z copying torch/package/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-07-17T06:37:42.5087790Z copying torch/package/package_importer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-07-17T06:37:42.5103150Z copying torch/package/_package_unpickler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-07-17T06:37:42.5110030Z copying torch/package/glob_group.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-07-17T06:37:42.5125250Z copying torch/package/find_file_dependencies.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-07-17T06:37:42.5135790Z copying torch/package/_package_pickler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-07-17T06:37:42.5142600Z copying torch/package/_importlib.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-07-17T06:37:42.5148710Z copying torch/package/_directory_reader.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-07-17T06:37:42.5154460Z copying torch/package/_digraph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-07-17T06:37:42.5161750Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/func 2025-07-17T06:37:42.5162090Z copying torch/func/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/func 2025-07-17T06:37:42.5168960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing 2025-07-17T06:37:42.5169680Z copying torch/_functorch/_activation_checkpointing/graph_info_provider.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing 2025-07-17T06:37:42.5178220Z copying torch/_functorch/_activation_checkpointing/knapsack.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing 2025-07-17T06:37:42.5186080Z copying torch/_functorch/_activation_checkpointing/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing 2025-07-17T06:37:42.5193070Z copying torch/_functorch/_activation_checkpointing/ac_logging_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing 2025-07-17T06:37:42.5199660Z copying torch/_functorch/_activation_checkpointing/knapsack_evaluator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing 2025-07-17T06:37:42.5208060Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-07-17T06:37:42.5208590Z copying torch/_functorch/_aot_autograd/input_output_analysis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-07-17T06:37:42.5221900Z copying torch/_functorch/_aot_autograd/runtime_wrappers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-07-17T06:37:42.5250100Z copying torch/_functorch/_aot_autograd/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-07-17T06:37:42.5257840Z copying torch/_functorch/_aot_autograd/dispatch_and_compile_graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-07-17T06:37:42.5270380Z copying torch/_functorch/_aot_autograd/functional_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-07-17T06:37:42.5288380Z copying torch/_functorch/_aot_autograd/autograd_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-07-17T06:37:42.5308560Z copying torch/_functorch/_aot_autograd/traced_function_transforms.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-07-17T06:37:42.5328150Z copying torch/_functorch/_aot_autograd/schemas.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-07-17T06:37:42.5341330Z copying torch/_functorch/_aot_autograd/jit_compile_runtime_wrappers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-07-17T06:37:42.5362630Z copying torch/_functorch/_aot_autograd/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-07-17T06:37:42.5378130Z copying torch/_functorch/_aot_autograd/collect_metadata_analysis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-07-17T06:37:42.5391690Z copying torch/_functorch/_aot_autograd/frontend_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-07-17T06:37:42.5399760Z copying torch/_functorch/_aot_autograd/subclass_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-07-17T06:37:42.5414900Z copying torch/_functorch/_aot_autograd/logging_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-07-17T06:37:42.5421440Z copying torch/_functorch/_aot_autograd/subclass_parametrization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-07-17T06:37:42.5428440Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/testing 2025-07-17T06:37:42.5428860Z copying torch/_numpy/testing/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/testing 2025-07-17T06:37:42.5435740Z copying torch/_numpy/testing/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/testing 2025-07-17T06:37:42.5458740Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_export/pass_infra 2025-07-17T06:37:42.5459190Z copying torch/_export/pass_infra/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/pass_infra 2025-07-17T06:37:42.5460230Z copying torch/_export/pass_infra/proxy_value.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/pass_infra 2025-07-17T06:37:42.5468730Z copying torch/_export/pass_infra/node_metadata.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/pass_infra 2025-07-17T06:37:42.5477330Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-07-17T06:37:42.5477790Z copying torch/_export/passes/insert_custom_op_guards.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-07-17T06:37:42.5484670Z copying torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-07-17T06:37:42.5499200Z copying torch/_export/passes/replace_view_ops_with_view_copy_ops_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-07-17T06:37:42.5505590Z copying torch/_export/passes/collect_tracepoints_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-07-17T06:37:42.5512490Z copying torch/_export/passes/replace_with_hop_pass_util.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-07-17T06:37:42.5521780Z copying torch/_export/passes/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-07-17T06:37:42.5533820Z copying torch/_export/passes/_node_metadata_hook.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-07-17T06:37:42.5534680Z copying torch/_export/passes/lift_constants_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-07-17T06:37:42.5551920Z copying torch/_export/passes/constant_folding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-07-17T06:37:42.5558610Z copying torch/_export/passes/add_runtime_assertions_for_constraints_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-07-17T06:37:42.5565800Z copying torch/_export/passes/replace_autocast_with_hop_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-07-17T06:37:42.5572420Z copying torch/_export/passes/functionalize_side_effectful_ops_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-07-17T06:37:42.5578970Z copying torch/_export/passes/replace_set_grad_with_hop_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-07-17T06:37:42.5585560Z copying torch/_export/passes/remove_runtime_assertions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-07-17T06:37:42.5592640Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db 2025-07-17T06:37:42.5593030Z copying torch/_export/db/logging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db 2025-07-17T06:37:42.5600020Z copying torch/_export/db/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db 2025-07-17T06:37:42.5606730Z copying torch/_export/db/gen_example.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db 2025-07-17T06:37:42.5612820Z copying torch/_export/db/case.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db 2025-07-17T06:37:42.5619970Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-07-17T06:37:42.5620390Z copying torch/_export/serde/serialize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-07-17T06:37:42.5651300Z copying torch/_export/serde/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-07-17T06:37:42.5651870Z copying torch/_export/serde/schema_check.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-07-17T06:37:42.5668020Z copying torch/_export/serde/dynamic_shapes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-07-17T06:37:42.5675500Z copying torch/_export/serde/union.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-07-17T06:37:42.5682680Z copying torch/_export/serde/schema.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-07-17T06:37:42.5693620Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-17T06:37:42.5694210Z copying torch/_export/db/examples/list_unpack.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-17T06:37:42.5707650Z copying torch/_export/db/examples/specialized_attribute.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-17T06:37:42.5713890Z copying torch/_export/db/examples/static_for_loop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-17T06:37:42.5720580Z copying torch/_export/db/examples/cond_closed_over_variable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-17T06:37:42.5733790Z copying torch/_export/db/examples/fn_with_kwargs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-17T06:37:42.5740580Z copying torch/_export/db/examples/constrain_as_value_example.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-17T06:37:42.5747890Z copying torch/_export/db/examples/dynamic_shape_slicing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-17T06:37:42.5754870Z copying torch/_export/db/examples/cond_branch_nonlocal_variables.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-17T06:37:42.5762010Z copying torch/_export/db/examples/autograd_function.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-17T06:37:42.5769240Z copying torch/_export/db/examples/type_reflection_method.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-17T06:37:42.5775860Z copying torch/_export/db/examples/cond_operands.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-17T06:37:42.5783400Z copying torch/_export/db/examples/decorator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-17T06:37:42.5790200Z copying torch/_export/db/examples/dynamic_shape_view.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-17T06:37:42.5797450Z copying torch/_export/db/examples/dynamic_shape_map.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-17T06:37:42.5804740Z copying torch/_export/db/examples/nested_function.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-17T06:37:42.5811650Z copying torch/_export/db/examples/dynamic_shape_constructor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-17T06:37:42.5819480Z copying torch/_export/db/examples/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-17T06:37:42.5826410Z copying torch/_export/db/examples/dynamic_shape_if_guard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-17T06:37:42.5832590Z copying torch/_export/db/examples/assume_constant_result.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-17T06:37:42.5839330Z copying torch/_export/db/examples/cond_branch_class_method.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-17T06:37:42.5845500Z copying torch/_export/db/examples/class_method.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-17T06:37:42.5852110Z copying torch/_export/db/examples/pytree_flatten.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-17T06:37:42.5858110Z copying torch/_export/db/examples/scalar_output.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-17T06:37:42.5865360Z copying torch/_export/db/examples/cond_predicate.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-17T06:37:42.5872570Z copying torch/_export/db/examples/dynamic_shape_assert.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-17T06:37:42.5879280Z copying torch/_export/db/examples/unsupported_operator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-17T06:37:42.5886100Z copying torch/_export/db/examples/tensor_setattr.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-17T06:37:42.5892970Z copying torch/_export/db/examples/optional_input.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-17T06:37:42.5900310Z copying torch/_export/db/examples/constrain_as_size_example.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-17T06:37:42.5907350Z copying torch/_export/db/examples/static_if.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-17T06:37:42.5914960Z copying torch/_export/db/examples/dictionary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-17T06:37:42.5922270Z copying torch/_export/db/examples/list_contains.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-17T06:37:42.5929650Z copying torch/_export/db/examples/dynamic_shape_round.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-17T06:37:42.5936940Z copying torch/_export/db/examples/user_input_mutation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-17T06:37:42.5945590Z copying torch/_export/db/examples/null_context_manager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-17T06:37:42.5954240Z copying torch/_export/db/examples/cond_branch_nested_function.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-17T06:37:42.5961500Z copying torch/_export/db/examples/model_attr_mutation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-17T06:37:42.5969230Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention 2025-07-17T06:37:42.5969660Z copying torch/nn/attention/bias.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention 2025-07-17T06:37:42.5978140Z copying torch/nn/attention/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention 2025-07-17T06:37:42.5985820Z copying torch/nn/attention/flex_attention.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention 2025-07-17T06:37:42.6007770Z copying torch/nn/attention/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention 2025-07-17T06:37:42.6015950Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-07-17T06:37:42.6016380Z copying torch/nn/parallel/parallel_apply.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-07-17T06:37:42.6031720Z copying torch/nn/parallel/comm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-07-17T06:37:42.6043990Z copying torch/nn/parallel/scatter_gather.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-07-17T06:37:42.6051050Z copying torch/nn/parallel/replicate.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-07-17T06:37:42.6058680Z copying torch/nn/parallel/_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-07-17T06:37:42.6070410Z copying torch/nn/parallel/data_parallel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-07-17T06:37:42.6080290Z copying torch/nn/parallel/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-07-17T06:37:42.6086660Z copying torch/nn/parallel/distributed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-07-17T06:37:42.6114650Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat 2025-07-17T06:37:42.6115000Z copying torch/nn/qat/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat 2025-07-17T06:37:42.6123310Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized 2025-07-17T06:37:42.6123720Z copying torch/nn/quantized/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized 2025-07-17T06:37:42.6130640Z copying torch/nn/quantized/functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized 2025-07-17T06:37:42.6137610Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/backends 2025-07-17T06:37:42.6138190Z copying torch/nn/backends/thnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/backends 2025-07-17T06:37:42.6149640Z copying torch/nn/backends/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/backends 2025-07-17T06:37:42.6150030Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-07-17T06:37:42.6150440Z copying torch/nn/utils/_named_member_accessor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-07-17T06:37:42.6156370Z copying torch/nn/utils/spectral_norm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-07-17T06:37:42.6164400Z copying torch/nn/utils/convert_parameters.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-07-17T06:37:42.6171980Z copying torch/nn/utils/stateless.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-07-17T06:37:42.6179980Z copying torch/nn/utils/parametrize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-07-17T06:37:42.6193840Z copying torch/nn/utils/memory_format.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-07-17T06:37:42.6201290Z copying torch/nn/utils/_per_sample_grad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-07-17T06:37:42.6208670Z copying torch/nn/utils/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-07-17T06:37:42.6215440Z copying torch/nn/utils/weight_norm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-07-17T06:37:42.6222250Z copying torch/nn/utils/fusion.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-07-17T06:37:42.6229340Z copying torch/nn/utils/prune.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-07-17T06:37:42.6255830Z copying torch/nn/utils/parametrizations.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-07-17T06:37:42.6271730Z copying torch/nn/utils/init.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-07-17T06:37:42.6279570Z copying torch/nn/utils/_deprecation_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-07-17T06:37:42.6286040Z copying torch/nn/utils/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-07-17T06:37:42.6299680Z copying torch/nn/utils/clip_grad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-07-17T06:37:42.6312020Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable 2025-07-17T06:37:42.6312450Z copying torch/nn/quantizable/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable 2025-07-17T06:37:42.6322440Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic 2025-07-17T06:37:42.6322840Z copying torch/nn/intrinsic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic 2025-07-17T06:37:42.6332270Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-17T06:37:42.6332680Z copying torch/nn/modules/upsampling.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-17T06:37:42.6339590Z copying torch/nn/modules/channelshuffle.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-17T06:37:42.6347150Z copying torch/nn/modules/instancenorm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-17T06:37:42.6361560Z copying torch/nn/modules/flatten.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-17T06:37:42.6368200Z copying torch/nn/modules/batchnorm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-17T06:37:42.6381480Z copying torch/nn/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-17T06:37:42.6389010Z copying torch/nn/modules/_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-17T06:37:42.6395850Z copying torch/nn/modules/pooling.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-17T06:37:42.6419080Z copying torch/nn/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-17T06:37:42.6427070Z copying torch/nn/modules/distance.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-17T06:37:42.6439430Z copying torch/nn/modules/container.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-17T06:37:42.6461960Z copying torch/nn/modules/pixelshuffle.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-17T06:37:42.6469550Z copying torch/nn/modules/adaptive.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-17T06:37:42.6476480Z copying torch/nn/modules/loss.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-17T06:37:42.6509880Z copying torch/nn/modules/activation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-17T06:37:42.6531100Z copying torch/nn/modules/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-17T06:37:42.6538120Z copying torch/nn/modules/transformer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-17T06:37:42.6565940Z copying torch/nn/modules/sparse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-17T06:37:42.6580240Z copying torch/nn/modules/module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-17T06:37:42.6608990Z copying torch/nn/modules/dropout.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-17T06:37:42.6616540Z copying torch/nn/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-17T06:37:42.6637420Z copying torch/nn/modules/lazy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-17T06:37:42.6646100Z copying torch/nn/modules/normalization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-17T06:37:42.6659070Z copying torch/nn/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-17T06:37:42.6681590Z copying torch/nn/modules/padding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-17T06:37:42.6699790Z copying torch/nn/modules/fold.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-17T06:37:42.6708760Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention/experimental 2025-07-17T06:37:42.6709280Z copying torch/nn/attention/experimental/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention/experimental 2025-07-17T06:37:42.6716980Z copying torch/nn/attention/experimental/_paged_attention.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention/experimental 2025-07-17T06:37:42.6724450Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/dynamic 2025-07-17T06:37:42.6724870Z copying torch/nn/qat/dynamic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/dynamic 2025-07-17T06:37:42.6732260Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/modules 2025-07-17T06:37:42.6732690Z copying torch/nn/qat/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/modules 2025-07-17T06:37:42.6739300Z copying torch/nn/qat/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/modules 2025-07-17T06:37:42.6745140Z copying torch/nn/qat/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/modules 2025-07-17T06:37:42.6751300Z copying torch/nn/qat/modules/embedding_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/modules 2025-07-17T06:37:42.6758040Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/dynamic/modules 2025-07-17T06:37:42.6758540Z copying torch/nn/qat/dynamic/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/dynamic/modules 2025-07-17T06:37:42.6764370Z copying torch/nn/qat/dynamic/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/dynamic/modules 2025-07-17T06:37:42.6770880Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference 2025-07-17T06:37:42.6771370Z copying torch/nn/quantized/_reference/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference 2025-07-17T06:37:42.6777740Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic 2025-07-17T06:37:42.6778330Z copying torch/nn/quantized/dynamic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic 2025-07-17T06:37:42.6786040Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-07-17T06:37:42.6786520Z copying torch/nn/quantized/modules/batchnorm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-07-17T06:37:42.6793700Z copying torch/nn/quantized/modules/functional_modules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-07-17T06:37:42.6799850Z copying torch/nn/quantized/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-07-17T06:37:42.6805850Z copying torch/nn/quantized/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-07-17T06:37:42.6812100Z copying torch/nn/quantized/modules/activation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-07-17T06:37:42.6818300Z copying torch/nn/quantized/modules/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-07-17T06:37:42.6824920Z copying torch/nn/quantized/modules/dropout.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-07-17T06:37:42.6831050Z copying torch/nn/quantized/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-07-17T06:37:42.6836920Z copying torch/nn/quantized/modules/normalization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-07-17T06:37:42.6843080Z copying torch/nn/quantized/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-07-17T06:37:42.6849600Z copying torch/nn/quantized/modules/embedding_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-07-17T06:37:42.6857660Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules 2025-07-17T06:37:42.6858220Z copying torch/nn/quantized/_reference/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules 2025-07-17T06:37:42.6865050Z copying torch/nn/quantized/_reference/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules 2025-07-17T06:37:42.6871850Z copying torch/nn/quantized/_reference/modules/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules 2025-07-17T06:37:42.6878310Z copying torch/nn/quantized/_reference/modules/sparse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules 2025-07-17T06:37:42.6884730Z copying torch/nn/quantized/_reference/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules 2025-07-17T06:37:42.6891110Z copying torch/nn/quantized/_reference/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules 2025-07-17T06:37:42.6898370Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic/modules 2025-07-17T06:37:42.6898910Z copying torch/nn/quantized/dynamic/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic/modules 2025-07-17T06:37:42.6905210Z copying torch/nn/quantized/dynamic/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic/modules 2025-07-17T06:37:42.6912130Z copying torch/nn/quantized/dynamic/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic/modules 2025-07-17T06:37:42.6919080Z copying torch/nn/quantized/dynamic/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic/modules 2025-07-17T06:37:42.6926830Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-07-17T06:37:42.6927440Z copying torch/nn/utils/_expanded_weights/group_norm_expanded_weights.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-07-17T06:37:42.6934900Z copying torch/nn/utils/_expanded_weights/layer_norm_expanded_weights.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-07-17T06:37:42.6942170Z copying torch/nn/utils/_expanded_weights/conv_expanded_weights.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-07-17T06:37:42.6949990Z copying torch/nn/utils/_expanded_weights/expanded_weights_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-07-17T06:37:42.6956800Z copying torch/nn/utils/_expanded_weights/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-07-17T06:37:42.6964630Z copying torch/nn/utils/_expanded_weights/embedding_expanded_weights.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-07-17T06:37:42.6971540Z copying torch/nn/utils/_expanded_weights/conv_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-07-17T06:37:42.6978620Z copying torch/nn/utils/_expanded_weights/instance_norm_expanded_weights.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-07-17T06:37:42.6986730Z copying torch/nn/utils/_expanded_weights/linear_expanded_weights.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-07-17T06:37:42.6993900Z copying torch/nn/utils/_expanded_weights/expanded_weights_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-07-17T06:37:42.7001930Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable/modules 2025-07-17T06:37:42.7002430Z copying torch/nn/quantizable/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable/modules 2025-07-17T06:37:42.7009930Z copying torch/nn/quantizable/modules/activation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable/modules 2025-07-17T06:37:42.7017200Z copying torch/nn/quantizable/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable/modules 2025-07-17T06:37:42.7025900Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat 2025-07-17T06:37:42.7026350Z copying torch/nn/intrinsic/qat/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat 2025-07-17T06:37:42.7036420Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized 2025-07-17T06:37:42.7036910Z copying torch/nn/intrinsic/quantized/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized 2025-07-17T06:37:42.7045660Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/modules 2025-07-17T06:37:42.7046120Z copying torch/nn/intrinsic/modules/fused.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/modules 2025-07-17T06:37:42.7054970Z copying torch/nn/intrinsic/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/modules 2025-07-17T06:37:42.7062960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat/modules 2025-07-17T06:37:42.7063630Z copying torch/nn/intrinsic/qat/modules/conv_fused.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat/modules 2025-07-17T06:37:42.7071420Z copying torch/nn/intrinsic/qat/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat/modules 2025-07-17T06:37:42.7078630Z copying torch/nn/intrinsic/qat/modules/linear_relu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat/modules 2025-07-17T06:37:42.7085380Z copying torch/nn/intrinsic/qat/modules/linear_fused.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat/modules 2025-07-17T06:37:42.7093320Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/dynamic 2025-07-17T06:37:42.7093860Z copying torch/nn/intrinsic/quantized/dynamic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/dynamic 2025-07-17T06:37:42.7101790Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/modules 2025-07-17T06:37:42.7102350Z copying torch/nn/intrinsic/quantized/modules/bn_relu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/modules 2025-07-17T06:37:42.7109940Z copying torch/nn/intrinsic/quantized/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/modules 2025-07-17T06:37:42.7116980Z copying torch/nn/intrinsic/quantized/modules/conv_relu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/modules 2025-07-17T06:37:42.7127050Z copying torch/nn/intrinsic/quantized/modules/linear_relu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/modules 2025-07-17T06:37:42.7137820Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/dynamic/modules 2025-07-17T06:37:42.7138440Z copying torch/nn/intrinsic/quantized/dynamic/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/dynamic/modules 2025-07-17T06:37:42.7145770Z copying torch/nn/intrinsic/quantized/dynamic/modules/linear_relu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/dynamic/modules 2025-07-17T06:37:42.7153620Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal 2025-07-17T06:37:42.7154130Z copying torch/onnx/_internal/registration.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal 2025-07-17T06:37:42.7162590Z copying torch/onnx/_internal/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal 2025-07-17T06:37:42.7163160Z copying torch/onnx/_internal/_lazy_import.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal 2025-07-17T06:37:42.7177630Z copying torch/onnx/_internal/_exporter_legacy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal 2025-07-17T06:37:42.7185460Z copying torch/onnx/_internal/onnx_proto_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal 2025-07-17T06:37:42.7193080Z copying torch/onnx/_internal/jit_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal 2025-07-17T06:37:42.7201940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/ops 2025-07-17T06:37:42.7202340Z copying torch/onnx/ops/_dtype_mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/ops 2025-07-17T06:37:42.7210130Z copying torch/onnx/ops/_symbolic_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/ops 2025-07-17T06:37:42.7218440Z copying torch/onnx/ops/_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/ops 2025-07-17T06:37:42.7227690Z copying torch/onnx/ops/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/ops 2025-07-17T06:37:42.7244530Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx 2025-07-17T06:37:42.7244970Z copying torch/onnx/_internal/fx/type_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx 2025-07-17T06:37:42.7253920Z copying torch/onnx/_internal/fx/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx 2025-07-17T06:37:42.7263130Z copying torch/onnx/_internal/fx/patcher.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx 2025-07-17T06:37:42.7270650Z copying torch/onnx/_internal/fx/_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx 2025-07-17T06:37:42.7278760Z copying torch/onnx/_internal/fx/serialization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx 2025-07-17T06:37:42.7288580Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-17T06:37:42.7289070Z copying torch/onnx/_internal/exporter/_constants.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-17T06:37:42.7296440Z copying torch/onnx/_internal/exporter/_analysis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-17T06:37:42.7303760Z copying torch/onnx/_internal/exporter/_flags.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-17T06:37:42.7310820Z copying torch/onnx/_internal/exporter/_errors.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-17T06:37:42.7318200Z copying torch/onnx/_internal/exporter/_capture_strategies.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-17T06:37:42.7325700Z copying torch/onnx/_internal/exporter/_tensors.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-17T06:37:42.7332350Z copying torch/onnx/_internal/exporter/_dispatching.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-17T06:37:42.7340020Z copying torch/onnx/_internal/exporter/_isolated.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-17T06:37:42.7348010Z copying torch/onnx/_internal/exporter/_decomp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-17T06:37:42.7355050Z copying torch/onnx/_internal/exporter/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-17T06:37:42.7355650Z copying torch/onnx/_internal/exporter/_onnx_program.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-17T06:37:42.7369800Z copying torch/onnx/_internal/exporter/_building.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-17T06:37:42.7384920Z copying torch/onnx/_internal/exporter/_dynamic_shapes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-17T06:37:42.7392260Z copying torch/onnx/_internal/exporter/_schemas.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-17T06:37:42.7407400Z copying torch/onnx/_internal/exporter/_core.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-17T06:37:42.7429670Z copying torch/onnx/_internal/exporter/_verification.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-17T06:37:42.7437670Z copying torch/onnx/_internal/exporter/_reporting.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-17T06:37:42.7445720Z copying torch/onnx/_internal/exporter/_registration.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-17T06:37:42.7453060Z copying torch/onnx/_internal/exporter/_testing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-17T06:37:42.7460950Z copying torch/onnx/_internal/exporter/_compat.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-17T06:37:42.7468680Z copying torch/onnx/_internal/exporter/_ir_passes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-17T06:37:42.7475990Z copying torch/onnx/_internal/exporter/_type_casting.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-17T06:37:42.7483640Z copying torch/onnx/_internal/exporter/_fx_passes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-17T06:37:42.7492040Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx/passes 2025-07-17T06:37:42.7492540Z copying torch/onnx/_internal/fx/passes/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx/passes 2025-07-17T06:37:42.7499890Z copying torch/onnx/_internal/fx/passes/type_promotion.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx/passes 2025-07-17T06:37:42.7534100Z copying torch/onnx/_internal/fx/passes/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx/passes 2025-07-17T06:37:42.7546910Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib 2025-07-17T06:37:42.7547490Z copying torch/onnx/_internal/exporter/_torchlib/_torchlib_registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib 2025-07-17T06:37:42.7555360Z copying torch/onnx/_internal/exporter/_torchlib/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib 2025-07-17T06:37:42.7556060Z copying torch/onnx/_internal/exporter/_torchlib/_tensor_typing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib 2025-07-17T06:37:42.7564220Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops 2025-07-17T06:37:42.7564800Z copying torch/onnx/_internal/exporter/_torchlib/ops/nn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops 2025-07-17T06:37:42.7571680Z copying torch/onnx/_internal/exporter/_torchlib/ops/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops 2025-07-17T06:37:42.7579120Z copying torch/onnx/_internal/exporter/_torchlib/ops/core.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops 2025-07-17T06:37:42.7585170Z copying torch/onnx/_internal/exporter/_torchlib/ops/symops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops 2025-07-17T06:37:42.7592290Z copying torch/onnx/_internal/exporter/_torchlib/ops/symbolic.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops 2025-07-17T06:37:42.7598780Z copying torch/onnx/_internal/exporter/_torchlib/ops/hop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops 2025-07-17T06:37:42.7606080Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor/packaging 2025-07-17T06:37:42.7606530Z copying torch/_vendor/packaging/version.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor/packaging 2025-07-17T06:37:42.7613630Z copying torch/_vendor/packaging/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor/packaging 2025-07-17T06:37:42.7620460Z copying torch/_vendor/packaging/_structures.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor/packaging 2025-07-17T06:37:42.7627920Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/cpu/amp 2025-07-17T06:37:42.7628390Z copying torch/cpu/amp/autocast_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cpu/amp 2025-07-17T06:37:42.7635860Z copying torch/cpu/amp/grad_scaler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cpu/amp 2025-07-17T06:37:42.7645970Z copying torch/cpu/amp/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cpu/amp 2025-07-17T06:37:42.7656390Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tensor 2025-07-17T06:37:42.7656850Z copying torch/distributed/_tensor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tensor 2025-07-17T06:37:42.7663740Z copying torch/distributed/_tensor/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tensor 2025-07-17T06:37:42.7670490Z copying torch/distributed/_tensor/placement_types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tensor 2025-07-17T06:37:42.7677970Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_sharding_spec 2025-07-17T06:37:42.7678530Z copying torch/distributed/_sharding_spec/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_sharding_spec 2025-07-17T06:37:42.7686310Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/launcher 2025-07-17T06:37:42.7686780Z copying torch/distributed/launcher/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/launcher 2025-07-17T06:37:42.7693190Z copying torch/distributed/launcher/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/launcher 2025-07-17T06:37:42.7704420Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-17T06:37:42.7704960Z copying torch/distributed/checkpoint/_async_process_executor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-17T06:37:42.7715160Z copying torch/distributed/checkpoint/logging_handlers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-17T06:37:42.7729670Z copying torch/distributed/checkpoint/format_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-17T06:37:42.7737400Z copying torch/distributed/checkpoint/planner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-17T06:37:42.7746040Z copying torch/distributed/checkpoint/_consolidate_hf_safetensors.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-17T06:37:42.7761160Z copying torch/distributed/checkpoint/_dedup_save_plans.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-17T06:37:42.7768360Z copying torch/distributed/checkpoint/state_dict.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-17T06:37:42.7788490Z copying torch/distributed/checkpoint/metadata.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-17T06:37:42.7795200Z copying torch/distributed/checkpoint/_storage_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-17T06:37:42.7802260Z copying torch/distributed/checkpoint/_version.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-17T06:37:42.7808960Z copying torch/distributed/checkpoint/_traverse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-17T06:37:42.7815660Z copying torch/distributed/checkpoint/_sharded_tensor_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-17T06:37:42.7822500Z copying torch/distributed/checkpoint/_dedup_tensors.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-17T06:37:42.7829770Z copying torch/distributed/checkpoint/filesystem.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-17T06:37:42.7844580Z copying torch/distributed/checkpoint/state_dict_saver.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-17T06:37:42.7851700Z copying torch/distributed/checkpoint/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-17T06:37:42.7867260Z copying torch/distributed/checkpoint/_hf_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-17T06:37:42.7878960Z copying torch/distributed/checkpoint/logger.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-17T06:37:42.7885690Z copying torch/distributed/checkpoint/_pg_transport.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-17T06:37:42.7892950Z copying torch/distributed/checkpoint/resharding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-17T06:37:42.7900370Z copying torch/distributed/checkpoint/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-17T06:37:42.7908710Z copying torch/distributed/checkpoint/state_dict_loader.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-17T06:37:42.7916230Z copying torch/distributed/checkpoint/_async_executor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-17T06:37:42.7922490Z copying torch/distributed/checkpoint/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-17T06:37:42.7929230Z copying torch/distributed/checkpoint/default_planner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-17T06:37:42.7943220Z copying torch/distributed/checkpoint/storage.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-17T06:37:42.7950800Z copying torch/distributed/checkpoint/_state_dict_stager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-17T06:37:42.7957830Z copying torch/distributed/checkpoint/planner_helpers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-17T06:37:42.7972030Z copying torch/distributed/checkpoint/optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-17T06:37:42.7979940Z copying torch/distributed/checkpoint/_async_thread_executor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-17T06:37:42.7987280Z copying torch/distributed/checkpoint/staging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-17T06:37:42.7995080Z copying torch/distributed/checkpoint/_checkpointer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-17T06:37:42.8001570Z copying torch/distributed/checkpoint/stateful.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-17T06:37:42.8007160Z copying torch/distributed/checkpoint/_fsspec_filesystem.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-17T06:37:42.8014590Z copying torch/distributed/checkpoint/_extension.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-17T06:37:42.8026120Z copying torch/distributed/checkpoint/_nested_dict.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-17T06:37:42.8036090Z copying torch/distributed/checkpoint/hf_storage.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-17T06:37:42.8044800Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_sharded_tensor 2025-07-17T06:37:42.8045310Z copying torch/distributed/_sharded_tensor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_sharded_tensor 2025-07-17T06:37:42.8053010Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn 2025-07-17T06:37:42.8053440Z copying torch/distributed/nn/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn 2025-07-17T06:37:42.8060760Z copying torch/distributed/nn/functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn 2025-07-17T06:37:42.8068940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic 2025-07-17T06:37:42.8069410Z copying torch/distributed/elastic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic 2025-07-17T06:37:42.8076040Z copying torch/distributed/elastic/control_plane.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic 2025-07-17T06:37:42.8082640Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/autograd 2025-07-17T06:37:42.8083110Z copying torch/distributed/autograd/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/autograd 2025-07-17T06:37:42.8091510Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-07-17T06:37:42.8091990Z copying torch/distributed/pipelining/_IR.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-07-17T06:37:42.8113200Z copying torch/distributed/pipelining/_unflatten.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-07-17T06:37:42.8120300Z copying torch/distributed/pipelining/_schedule_visualizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-07-17T06:37:42.8126560Z copying torch/distributed/pipelining/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-07-17T06:37:42.8132850Z copying torch/distributed/pipelining/microbatch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-07-17T06:37:42.8139500Z copying torch/distributed/pipelining/_backward.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-07-17T06:37:42.8146950Z copying torch/distributed/pipelining/_debug.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-07-17T06:37:42.8153410Z copying torch/distributed/pipelining/stage.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-07-17T06:37:42.8176110Z copying torch/distributed/pipelining/schedules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-07-17T06:37:42.8216660Z copying torch/distributed/pipelining/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-07-17T06:37:42.8224990Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms 2025-07-17T06:37:42.8225580Z copying torch/distributed/algorithms/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms 2025-07-17T06:37:42.8231800Z copying torch/distributed/algorithms/join.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms 2025-07-17T06:37:42.8241620Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-07-17T06:37:42.8242100Z copying torch/distributed/optim/_deprecation_warning.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-07-17T06:37:42.8249150Z copying torch/distributed/optim/named_optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-07-17T06:37:42.8256520Z copying torch/distributed/optim/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-07-17T06:37:42.8263380Z copying torch/distributed/optim/functional_sgd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-07-17T06:37:42.8270150Z copying torch/distributed/optim/functional_adagrad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-07-17T06:37:42.8280020Z copying torch/distributed/optim/functional_adamw.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-07-17T06:37:42.8288560Z copying torch/distributed/optim/apply_optimizer_in_backward.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-07-17T06:37:42.8295560Z copying torch/distributed/optim/functional_adam.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-07-17T06:37:42.8303750Z copying torch/distributed/optim/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-07-17T06:37:42.8311310Z copying torch/distributed/optim/functional_rprop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-07-17T06:37:42.8317580Z copying torch/distributed/optim/post_localSGD_optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-07-17T06:37:42.8324310Z copying torch/distributed/optim/optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-07-17T06:37:42.8330930Z copying torch/distributed/optim/functional_adadelta.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-07-17T06:37:42.8337480Z copying torch/distributed/optim/functional_rmsprop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-07-17T06:37:42.8344420Z copying torch/distributed/optim/zero_redundancy_optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-07-17T06:37:42.8368680Z copying torch/distributed/optim/functional_adamax.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-07-17T06:37:42.8377610Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable 2025-07-17T06:37:42.8378200Z copying torch/distributed/_composable/replicate.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable 2025-07-17T06:37:42.8391050Z copying torch/distributed/_composable/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable 2025-07-17T06:37:42.8401220Z copying torch/distributed/_composable/contract.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable 2025-07-17T06:37:42.8407960Z copying torch/distributed/_composable/checkpoint_activation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable 2025-07-17T06:37:42.8415610Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-07-17T06:37:42.8416070Z copying torch/distributed/_tools/mem_tracker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-07-17T06:37:42.8429850Z copying torch/distributed/_tools/ilp_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-07-17T06:37:42.8437080Z copying torch/distributed/_tools/runtime_estimator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-07-17T06:37:42.8450250Z copying torch/distributed/_tools/fsdp2_mem_tracker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-07-17T06:37:42.8463020Z copying torch/distributed/_tools/sac_estimator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-07-17T06:37:42.8474810Z copying torch/distributed/_tools/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-07-17T06:37:42.8481530Z copying torch/distributed/_tools/memory_tracker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-07-17T06:37:42.8488490Z copying torch/distributed/_tools/fake_collectives.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-07-17T06:37:42.8489190Z copying torch/distributed/_tools/common_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-07-17T06:37:42.8496030Z copying torch/distributed/_tools/sac_ilp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-07-17T06:37:42.8503320Z copying torch/distributed/_tools/mod_tracker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-07-17T06:37:42.8512730Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-07-17T06:37:42.8513200Z copying torch/distributed/fsdp/_exec_order_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-07-17T06:37:42.8521170Z copying torch/distributed/fsdp/_traversal_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-07-17T06:37:42.8528150Z copying torch/distributed/fsdp/sharded_grad_scaler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-07-17T06:37:42.8540270Z copying torch/distributed/fsdp/_state_dict_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-07-17T06:37:42.8556750Z copying torch/distributed/fsdp/fully_sharded_data_parallel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-07-17T06:37:42.8589270Z copying torch/distributed/fsdp/_wrap_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-07-17T06:37:42.8598070Z copying torch/distributed/fsdp/_optim_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-07-17T06:37:42.8638030Z copying torch/distributed/fsdp/_trace_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-07-17T06:37:42.8645510Z copying torch/distributed/fsdp/_common_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-07-17T06:37:42.8661060Z copying torch/distributed/fsdp/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-07-17T06:37:42.8667540Z copying torch/distributed/fsdp/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-07-17T06:37:42.8683500Z copying torch/distributed/fsdp/_limiter_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-07-17T06:37:42.8689240Z copying torch/distributed/fsdp/_dynamo_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-07-17T06:37:42.8695510Z copying torch/distributed/fsdp/_unshard_param_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-07-17T06:37:42.8702610Z copying torch/distributed/fsdp/_shard_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-07-17T06:37:42.8709920Z copying torch/distributed/fsdp/wrap.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-07-17T06:37:42.8722390Z copying torch/distributed/fsdp/_runtime_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-07-17T06:37:42.8743420Z copying torch/distributed/fsdp/_fsdp_extensions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-07-17T06:37:42.8750350Z copying torch/distributed/fsdp/_init_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-07-17T06:37:42.8768360Z copying torch/distributed/fsdp/_debug_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-07-17T06:37:42.8776720Z copying torch/distributed/fsdp/_flat_param.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-07-17T06:37:42.8818620Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-07-17T06:37:42.8819070Z copying torch/distributed/_shard/metadata.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-07-17T06:37:42.8827520Z copying torch/distributed/_shard/op_registry_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-07-17T06:37:42.8833820Z copying torch/distributed/_shard/sharder.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-07-17T06:37:42.8839230Z copying torch/distributed/_shard/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-07-17T06:37:42.8844650Z copying torch/distributed/_shard/common_op_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-07-17T06:37:42.8849800Z copying torch/distributed/_shard/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-07-17T06:37:42.8857130Z copying torch/distributed/_shard/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-07-17T06:37:42.8864980Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_symmetric_memory 2025-07-17T06:37:42.8865540Z copying torch/distributed/_symmetric_memory/_nvshmem_triton.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_symmetric_memory 2025-07-17T06:37:42.8871620Z copying torch/distributed/_symmetric_memory/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_symmetric_memory 2025-07-17T06:37:42.8892990Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-07-17T06:37:42.8893480Z copying torch/distributed/tensor/_shards_wrapper.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-07-17T06:37:42.8906930Z copying torch/distributed/tensor/_redistribute.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-07-17T06:37:42.8914170Z copying torch/distributed/tensor/_sharding_prop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-07-17T06:37:42.8928360Z copying torch/distributed/tensor/_collective_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-07-17T06:37:42.8929320Z copying torch/distributed/tensor/_api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-07-17T06:37:42.8950490Z copying torch/distributed/tensor/_dtensor_spec.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-07-17T06:37:42.8951450Z copying torch/distributed/tensor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-07-17T06:37:42.8958600Z copying torch/distributed/tensor/_dispatch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-07-17T06:37:42.8974330Z copying torch/distributed/tensor/_random.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-07-17T06:37:42.8996840Z copying torch/distributed/tensor/_op_schema.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-07-17T06:37:42.9011120Z copying torch/distributed/tensor/placement_types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-07-17T06:37:42.9025370Z copying torch/distributed/tensor/_tp_conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-07-17T06:37:42.9032200Z copying torch/distributed/tensor/device_mesh.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-07-17T06:37:42.9037690Z copying torch/distributed/tensor/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-07-17T06:37:42.9046170Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-07-17T06:37:42.9046630Z copying torch/distributed/rpc/functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-07-17T06:37:42.9053070Z copying torch/distributed/rpc/options.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-07-17T06:37:42.9059220Z copying torch/distributed/rpc/internal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-07-17T06:37:42.9065590Z copying torch/distributed/rpc/constants.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-07-17T06:37:42.9072100Z copying torch/distributed/rpc/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-07-17T06:37:42.9079670Z copying torch/distributed/rpc/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-07-17T06:37:42.9094330Z copying torch/distributed/rpc/rref_proxy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-07-17T06:37:42.9101080Z copying torch/distributed/rpc/server_process_global_profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-07-17T06:37:42.9108220Z copying torch/distributed/rpc/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-07-17T06:37:42.9115360Z copying torch/distributed/rpc/backend_registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-07-17T06:37:42.9124230Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-07-17T06:37:42.9124830Z copying torch/distributed/checkpoint/_experimental/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-07-17T06:37:42.9131270Z copying torch/distributed/checkpoint/_experimental/barriers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-07-17T06:37:42.9137980Z copying torch/distributed/checkpoint/_experimental/checkpointer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-07-17T06:37:42.9144700Z copying torch/distributed/checkpoint/_experimental/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-07-17T06:37:42.9152150Z copying torch/distributed/checkpoint/_experimental/types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-07-17T06:37:42.9158550Z copying torch/distributed/checkpoint/_experimental/builder.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-07-17T06:37:42.9165540Z copying torch/distributed/checkpoint/_experimental/checkpoint_reader.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-07-17T06:37:42.9175030Z copying torch/distributed/checkpoint/_experimental/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-07-17T06:37:42.9183840Z copying torch/distributed/checkpoint/_experimental/checkpoint_process.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-07-17T06:37:42.9190430Z copying torch/distributed/checkpoint/_experimental/checkpoint_writer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-07-17T06:37:42.9197320Z copying torch/distributed/checkpoint/_experimental/staging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-07-17T06:37:42.9211930Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit 2025-07-17T06:37:42.9212410Z copying torch/distributed/nn/jit/instantiator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit 2025-07-17T06:37:42.9223760Z copying torch/distributed/nn/jit/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit 2025-07-17T06:37:42.9224980Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/api 2025-07-17T06:37:42.9225580Z copying torch/distributed/nn/api/remote_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/api 2025-07-17T06:37:42.9241400Z copying torch/distributed/nn/api/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/api 2025-07-17T06:37:42.9242660Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit/templates 2025-07-17T06:37:42.9243250Z copying torch/distributed/nn/jit/templates/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit/templates 2025-07-17T06:37:42.9244200Z copying torch/distributed/nn/jit/templates/remote_module_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit/templates 2025-07-17T06:37:42.9251980Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/metrics 2025-07-17T06:37:42.9252500Z copying torch/distributed/elastic/metrics/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/metrics 2025-07-17T06:37:42.9259000Z copying torch/distributed/elastic/metrics/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/metrics 2025-07-17T06:37:42.9267540Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-07-17T06:37:42.9268110Z copying torch/distributed/elastic/rendezvous/etcd_store.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-07-17T06:37:42.9274870Z copying torch/distributed/elastic/rendezvous/registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-07-17T06:37:42.9281800Z copying torch/distributed/elastic/rendezvous/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-07-17T06:37:42.9288510Z copying torch/distributed/elastic/rendezvous/_etcd_stub.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-07-17T06:37:42.9295550Z copying torch/distributed/elastic/rendezvous/etcd_rendezvous.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-07-17T06:37:42.9317480Z copying torch/distributed/elastic/rendezvous/c10d_rendezvous_backend.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-07-17T06:37:42.9327330Z copying torch/distributed/elastic/rendezvous/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-07-17T06:37:42.9335160Z copying torch/distributed/elastic/rendezvous/etcd_rendezvous_backend.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-07-17T06:37:42.9341000Z copying torch/distributed/elastic/rendezvous/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-07-17T06:37:42.9347250Z copying torch/distributed/elastic/rendezvous/dynamic_rendezvous.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-07-17T06:37:42.9365690Z copying torch/distributed/elastic/rendezvous/etcd_server.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-07-17T06:37:42.9372840Z copying torch/distributed/elastic/rendezvous/static_tcp_rendezvous.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-07-17T06:37:42.9379760Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing 2025-07-17T06:37:42.9380370Z copying torch/distributed/elastic/multiprocessing/tail_log.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing 2025-07-17T06:37:42.9386480Z copying torch/distributed/elastic/multiprocessing/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing 2025-07-17T06:37:42.9392490Z copying torch/distributed/elastic/multiprocessing/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing 2025-07-17T06:37:42.9405490Z copying torch/distributed/elastic/multiprocessing/redirects.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing 2025-07-17T06:37:42.9413040Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer 2025-07-17T06:37:42.9413560Z copying torch/distributed/elastic/timer/local_timer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer 2025-07-17T06:37:42.9420080Z copying torch/distributed/elastic/timer/debug_info_logging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer 2025-07-17T06:37:42.9426600Z copying torch/distributed/elastic/timer/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer 2025-07-17T06:37:42.9432290Z copying torch/distributed/elastic/timer/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer 2025-07-17T06:37:42.9442600Z copying torch/distributed/elastic/timer/file_based_local_timer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer 2025-07-17T06:37:42.9463130Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils 2025-07-17T06:37:42.9463630Z copying torch/distributed/elastic/utils/store.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils 2025-07-17T06:37:42.9469930Z copying torch/distributed/elastic/utils/logging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils 2025-07-17T06:37:42.9476010Z copying torch/distributed/elastic/utils/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils 2025-07-17T06:37:42.9482000Z copying torch/distributed/elastic/utils/log_level.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils 2025-07-17T06:37:42.9487850Z copying torch/distributed/elastic/utils/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils 2025-07-17T06:37:42.9493580Z copying torch/distributed/elastic/utils/distributed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils 2025-07-17T06:37:42.9501590Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent 2025-07-17T06:37:42.9502090Z copying torch/distributed/elastic/agent/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent 2025-07-17T06:37:42.9503400Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/events 2025-07-17T06:37:42.9503990Z copying torch/distributed/elastic/events/handlers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/events 2025-07-17T06:37:42.9511160Z copying torch/distributed/elastic/events/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/events 2025-07-17T06:37:42.9517170Z copying torch/distributed/elastic/events/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/events 2025-07-17T06:37:42.9524640Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/subprocess_handler 2025-07-17T06:37:42.9525450Z copying torch/distributed/elastic/multiprocessing/subprocess_handler/subprocess_handler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/subprocess_handler 2025-07-17T06:37:42.9531780Z copying torch/distributed/elastic/multiprocessing/subprocess_handler/handlers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/subprocess_handler 2025-07-17T06:37:42.9538270Z copying torch/distributed/elastic/multiprocessing/subprocess_handler/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/subprocess_handler 2025-07-17T06:37:42.9545280Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/errors 2025-07-17T06:37:42.9545940Z copying torch/distributed/elastic/multiprocessing/errors/handlers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/errors 2025-07-17T06:37:42.9552860Z copying torch/distributed/elastic/multiprocessing/errors/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/errors 2025-07-17T06:37:42.9561290Z copying torch/distributed/elastic/multiprocessing/errors/error_handler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/errors 2025-07-17T06:37:42.9569840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/data 2025-07-17T06:37:42.9570540Z copying torch/distributed/elastic/utils/data/elastic_distributed_sampler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/data 2025-07-17T06:37:42.9577600Z copying torch/distributed/elastic/utils/data/cycling_iterator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/data 2025-07-17T06:37:42.9589770Z copying torch/distributed/elastic/utils/data/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/data 2025-07-17T06:37:42.9597020Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent/server 2025-07-17T06:37:42.9597630Z copying torch/distributed/elastic/agent/server/health_check_server.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent/server 2025-07-17T06:37:42.9604640Z copying torch/distributed/elastic/agent/server/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent/server 2025-07-17T06:37:42.9613930Z copying torch/distributed/elastic/agent/server/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent/server 2025-07-17T06:37:42.9629770Z copying torch/distributed/elastic/agent/server/local_elastic_agent.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent/server 2025-07-17T06:37:42.9643360Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_comm_hooks 2025-07-17T06:37:42.9643940Z copying torch/distributed/algorithms/_comm_hooks/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_comm_hooks 2025-07-17T06:37:42.9651000Z copying torch/distributed/algorithms/_comm_hooks/default_hooks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_comm_hooks 2025-07-17T06:37:42.9660700Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_checkpoint 2025-07-17T06:37:42.9661310Z copying torch/distributed/algorithms/_checkpoint/checkpoint_wrapper.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_checkpoint 2025-07-17T06:37:42.9671390Z copying torch/distributed/algorithms/_checkpoint/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_checkpoint 2025-07-17T06:37:42.9673340Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/model_averaging 2025-07-17T06:37:42.9674050Z copying torch/distributed/algorithms/model_averaging/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/model_averaging 2025-07-17T06:37:42.9675100Z copying torch/distributed/algorithms/model_averaging/averagers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/model_averaging 2025-07-17T06:37:42.9682820Z copying torch/distributed/algorithms/model_averaging/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/model_averaging 2025-07-17T06:37:42.9689820Z copying torch/distributed/algorithms/model_averaging/hierarchical_model_averager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/model_averaging 2025-07-17T06:37:42.9699850Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks 2025-07-17T06:37:42.9700490Z copying torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks 2025-07-17T06:37:42.9711950Z copying torch/distributed/algorithms/ddp_comm_hooks/optimizer_overlap_hooks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks 2025-07-17T06:37:42.9721700Z copying torch/distributed/algorithms/ddp_comm_hooks/post_localSGD_hook.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks 2025-07-17T06:37:42.9728770Z copying torch/distributed/algorithms/ddp_comm_hooks/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks 2025-07-17T06:37:42.9735700Z copying torch/distributed/algorithms/ddp_comm_hooks/debugging_hooks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks 2025-07-17T06:37:42.9741910Z copying torch/distributed/algorithms/ddp_comm_hooks/ddp_zero_hook.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks 2025-07-17T06:37:42.9754910Z copying torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks 2025-07-17T06:37:42.9761910Z copying torch/distributed/algorithms/ddp_comm_hooks/mixed_precision_hooks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks 2025-07-17T06:37:42.9769130Z copying torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks 2025-07-17T06:37:42.9783250Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_optimizer_overlap 2025-07-17T06:37:42.9783920Z copying torch/distributed/algorithms/_optimizer_overlap/optimizer_overlap.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_optimizer_overlap 2025-07-17T06:37:42.9790760Z copying torch/distributed/algorithms/_optimizer_overlap/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_optimizer_overlap 2025-07-17T06:37:42.9797910Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_quantization 2025-07-17T06:37:42.9798520Z copying torch/distributed/algorithms/_quantization/quantization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_quantization 2025-07-17T06:37:42.9805510Z copying torch/distributed/algorithms/_quantization/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_quantization 2025-07-17T06:37:42.9806690Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable/fsdp 2025-07-17T06:37:42.9807240Z copying torch/distributed/_composable/fsdp/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable/fsdp 2025-07-17T06:37:42.9814450Z copying torch/distributed/_composable/fsdp/fully_shard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable/fsdp 2025-07-17T06:37:42.9822230Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-07-17T06:37:42.9822780Z copying torch/distributed/fsdp/_fully_shard/_fsdp_api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-07-17T06:37:42.9829640Z copying torch/distributed/fsdp/_fully_shard/_fsdp_common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-07-17T06:37:42.9830750Z copying torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-07-17T06:37:42.9844850Z copying torch/distributed/fsdp/_fully_shard/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-07-17T06:37:42.9852290Z copying torch/distributed/fsdp/_fully_shard/_fsdp_param.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-07-17T06:37:42.9853400Z copying torch/distributed/fsdp/_fully_shard/_fsdp_init.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-07-17T06:37:42.9861450Z copying torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-07-17T06:37:42.9877100Z copying torch/distributed/fsdp/_fully_shard/_fully_shard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-07-17T06:37:42.9891970Z copying torch/distributed/fsdp/_fully_shard/_fsdp_state.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-07-17T06:37:42.9909700Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/checkpoint 2025-07-17T06:37:42.9910320Z copying torch/distributed/_shard/checkpoint/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/checkpoint 2025-07-17T06:37:42.9918660Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-07-17T06:37:42.9919250Z copying torch/distributed/_shard/sharded_tensor/logging_handlers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-07-17T06:37:42.9926070Z copying torch/distributed/_shard/sharded_tensor/metadata.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-07-17T06:37:42.9933250Z copying torch/distributed/_shard/sharded_tensor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-07-17T06:37:42.9949650Z copying torch/distributed/_shard/sharded_tensor/logger.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-07-17T06:37:42.9958080Z copying torch/distributed/_shard/sharded_tensor/reshard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-07-17T06:37:42.9965780Z copying torch/distributed/_shard/sharded_tensor/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-07-17T06:37:42.9997380Z copying torch/distributed/_shard/sharded_tensor/shard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-07-17T06:37:43.0007800Z copying torch/distributed/_shard/sharded_tensor/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-07-17T06:37:43.0014860Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_plan 2025-07-17T06:37:43.0015410Z copying torch/distributed/_shard/sharding_plan/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_plan 2025-07-17T06:37:43.0022240Z copying torch/distributed/_shard/sharding_plan/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_plan 2025-07-17T06:37:43.0029610Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec 2025-07-17T06:37:43.0030160Z copying torch/distributed/_shard/sharding_spec/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec 2025-07-17T06:37:43.0036840Z copying torch/distributed/_shard/sharding_spec/_internals.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec 2025-07-17T06:37:43.0046610Z copying torch/distributed/_shard/sharding_spec/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec 2025-07-17T06:37:43.0055290Z copying torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec 2025-07-17T06:37:43.0070000Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_optim 2025-07-17T06:37:43.0070560Z copying torch/distributed/_shard/sharded_optim/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_optim 2025-07-17T06:37:43.0080950Z copying torch/distributed/_shard/sharded_optim/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_optim 2025-07-17T06:37:43.0087960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops 2025-07-17T06:37:43.0088560Z copying torch/distributed/_shard/sharded_tensor/_ops/misc_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops 2025-07-17T06:37:43.0094400Z copying torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops 2025-07-17T06:37:43.0101350Z copying torch/distributed/_shard/sharded_tensor/_ops/_common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops 2025-07-17T06:37:43.0108590Z copying torch/distributed/_shard/sharded_tensor/_ops/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops 2025-07-17T06:37:43.0115230Z copying torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops 2025-07-17T06:37:43.0121870Z copying torch/distributed/_shard/sharded_tensor/_ops/init.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops 2025-07-17T06:37:43.0129340Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2025-07-17T06:37:43.0130100Z copying torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2025-07-17T06:37:43.0136800Z copying torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2025-07-17T06:37:43.0148750Z copying torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2025-07-17T06:37:43.0149670Z copying torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2025-07-17T06:37:43.0165610Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental 2025-07-17T06:37:43.0166180Z copying torch/distributed/tensor/experimental/_attention.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental 2025-07-17T06:37:43.0179070Z copying torch/distributed/tensor/experimental/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental 2025-07-17T06:37:43.0186380Z copying torch/distributed/tensor/experimental/_tp_transform.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental 2025-07-17T06:37:43.0197330Z copying torch/distributed/tensor/experimental/_register_sharding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental 2025-07-17T06:37:43.0203390Z copying torch/distributed/tensor/experimental/_func_map.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental 2025-07-17T06:37:43.0217400Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-07-17T06:37:43.0217930Z copying torch/distributed/tensor/parallel/ddp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-07-17T06:37:43.0223800Z copying torch/distributed/tensor/parallel/fsdp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-07-17T06:37:43.0231440Z copying torch/distributed/tensor/parallel/style.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-07-17T06:37:43.0245430Z copying torch/distributed/tensor/parallel/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-07-17T06:37:43.0252950Z copying torch/distributed/tensor/parallel/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-07-17T06:37:43.0261860Z copying torch/distributed/tensor/parallel/loss.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-07-17T06:37:43.0275980Z copying torch/distributed/tensor/parallel/input_reshard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-07-17T06:37:43.0282410Z copying torch/distributed/tensor/parallel/_data_parallel_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-07-17T06:37:43.0290420Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-07-17T06:37:43.0290940Z copying torch/distributed/tensor/_ops/_einsum_strategy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-07-17T06:37:43.0297610Z copying torch/distributed/tensor/_ops/_embedding_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-07-17T06:37:43.0304760Z copying torch/distributed/tensor/_ops/_tensor_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-07-17T06:37:43.0318240Z copying torch/distributed/tensor/_ops/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-07-17T06:37:43.0325500Z copying torch/distributed/tensor/_ops/_conv_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-07-17T06:37:43.0332340Z copying torch/distributed/tensor/_ops/_pointwise_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-07-17T06:37:43.0351990Z copying torch/distributed/tensor/_ops/_matrix_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-07-17T06:37:43.0365910Z copying torch/distributed/tensor/_ops/_math_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-07-17T06:37:43.0384510Z copying torch/distributed/tensor/_ops/_common_rules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-07-17T06:37:43.0394080Z copying torch/distributed/tensor/_ops/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-07-17T06:37:43.0402340Z copying torch/distributed/tensor/_ops/_random_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-07-17T06:37:43.0409560Z copying torch/distributed/tensor/_ops/_view_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-07-17T06:37:43.0423840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/debug 2025-07-17T06:37:43.0424350Z copying torch/distributed/tensor/debug/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/debug 2025-07-17T06:37:43.0431380Z copying torch/distributed/tensor/debug/_op_coverage.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/debug 2025-07-17T06:37:43.0437040Z copying torch/distributed/tensor/debug/_visualize_sharding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/debug 2025-07-17T06:37:43.0443850Z copying torch/distributed/tensor/debug/_comm_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/debug 2025-07-17T06:37:43.0457640Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/_testing 2025-07-17T06:37:43.0458130Z copying torch/distributed/rpc/_testing/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/_testing 2025-07-17T06:37:43.0465300Z copying torch/distributed/rpc/_testing/faulty_agent_backend_registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/_testing 2025-07-17T06:37:43.0472450Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/_functions 2025-07-17T06:37:43.0472910Z copying torch/autograd/_functions/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/_functions 2025-07-17T06:37:43.0478810Z copying torch/autograd/_functions/tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/_functions 2025-07-17T06:37:43.0485180Z copying torch/autograd/_functions/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/_functions 2025-07-17T06:37:43.0494100Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-17T06:37:43.0494540Z copying torch/fx/experimental/validator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-17T06:37:43.0509160Z copying torch/fx/experimental/meta_tracer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-17T06:37:43.0517180Z copying torch/fx/experimental/_dynamism.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-17T06:37:43.0524100Z copying torch/fx/experimental/partitioner_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-17T06:37:43.0532120Z copying torch/fx/experimental/recording.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-17T06:37:43.0549590Z copying torch/fx/experimental/rewriter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-17T06:37:43.0556220Z copying torch/fx/experimental/const_fold.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-17T06:37:43.0563360Z copying torch/fx/experimental/accelerator_partitioner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-17T06:37:43.0577340Z copying torch/fx/experimental/normalize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-17T06:37:43.0584630Z copying torch/fx/experimental/_constant_symnode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-17T06:37:43.0590880Z copying torch/fx/experimental/optimization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-17T06:37:43.0605280Z copying torch/fx/experimental/refinement_types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-17T06:37:43.0612190Z copying torch/fx/experimental/graph_gradual_typechecker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-17T06:37:43.0636670Z copying torch/fx/experimental/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-17T06:37:43.0637290Z copying torch/fx/experimental/sym_node.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-17T06:37:43.0661740Z copying torch/fx/experimental/unify_refinements.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-17T06:37:43.0667850Z copying torch/fx/experimental/merge_matmul.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-17T06:37:43.0674150Z copying torch/fx/experimental/debug.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-17T06:37:43.0685110Z copying torch/fx/experimental/schema_type_annotation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-17T06:37:43.0693740Z copying torch/fx/experimental/symbolic_shapes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-17T06:37:43.0697120Z copying torch/fx/experimental/_config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-17T06:37:43.0703450Z copying torch/fx/experimental/_backward_state.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-17T06:37:43.0709630Z copying torch/fx/experimental/proxy_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-17T06:37:43.0751440Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-07-17T06:37:43.0751840Z copying torch/fx/passes/net_min_base.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-07-17T06:37:43.0765210Z copying torch/fx/passes/param_fetch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-07-17T06:37:43.0771410Z copying torch/fx/passes/tools_common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-07-17T06:37:43.0777770Z copying torch/fx/passes/split_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-07-17T06:37:43.0784540Z copying torch/fx/passes/shape_prop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-07-17T06:37:43.0792050Z copying torch/fx/passes/split_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-07-17T06:37:43.0804790Z copying torch/fx/passes/runtime_assert.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-07-17T06:37:43.0805870Z copying torch/fx/passes/reinplace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-07-17T06:37:43.0824400Z copying torch/fx/passes/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-07-17T06:37:43.0832930Z copying torch/fx/passes/pass_manager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-07-17T06:37:43.0839060Z copying torch/fx/passes/_tensorify_python_scalars.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-07-17T06:37:43.0845600Z copying torch/fx/passes/fake_tensor_prop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-07-17T06:37:43.0852280Z copying torch/fx/passes/operator_support.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-07-17T06:37:43.0858320Z copying torch/fx/passes/annotate_getitem_nodes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-07-17T06:37:43.0864630Z copying torch/fx/passes/graph_manipulation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-07-17T06:37:43.0870290Z copying torch/fx/passes/graph_drawer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-07-17T06:37:43.0884270Z copying torch/fx/passes/splitter_base.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-07-17T06:37:43.0901100Z copying torch/fx/passes/graph_transform_observer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-07-17T06:37:43.0916640Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-07-17T06:37:43.0917170Z copying torch/fx/experimental/unification/dispatch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-07-17T06:37:43.0927470Z copying torch/fx/experimental/unification/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-07-17T06:37:43.0933450Z copying torch/fx/experimental/unification/core.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-07-17T06:37:43.0939230Z copying torch/fx/experimental/unification/unification_tools.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-07-17T06:37:43.0945900Z copying torch/fx/experimental/unification/variable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-07-17T06:37:43.0953090Z copying torch/fx/experimental/unification/more.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-07-17T06:37:43.0959130Z copying torch/fx/experimental/unification/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-07-17T06:37:43.0965760Z copying torch/fx/experimental/unification/match.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-07-17T06:37:43.0973780Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types 2025-07-17T06:37:43.0974400Z copying torch/fx/experimental/migrate_gradual_types/constraint.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types 2025-07-17T06:37:43.0992100Z copying torch/fx/experimental/migrate_gradual_types/constraint_transformation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types 2025-07-17T06:37:43.1006200Z copying torch/fx/experimental/migrate_gradual_types/util.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types 2025-07-17T06:37:43.1018330Z copying torch/fx/experimental/migrate_gradual_types/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types 2025-07-17T06:37:43.1019290Z copying torch/fx/experimental/migrate_gradual_types/operation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types 2025-07-17T06:37:43.1026640Z copying torch/fx/experimental/migrate_gradual_types/transform_to_z3.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types 2025-07-17T06:37:43.1034510Z copying torch/fx/experimental/migrate_gradual_types/z3_types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types 2025-07-17T06:37:43.1041070Z copying torch/fx/experimental/migrate_gradual_types/constraint_generator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types 2025-07-17T06:37:43.1064510Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch 2025-07-17T06:37:43.1065350Z copying torch/fx/experimental/unification/multipledispatch/dispatcher.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch 2025-07-17T06:37:43.1072660Z copying torch/fx/experimental/unification/multipledispatch/variadic.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch 2025-07-17T06:37:43.1079870Z copying torch/fx/experimental/unification/multipledispatch/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch 2025-07-17T06:37:43.1087270Z copying torch/fx/experimental/unification/multipledispatch/core.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch 2025-07-17T06:37:43.1093580Z copying torch/fx/experimental/unification/multipledispatch/conflict.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch 2025-07-17T06:37:43.1101910Z copying torch/fx/experimental/unification/multipledispatch/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch 2025-07-17T06:37:43.1110580Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/infra 2025-07-17T06:37:43.1111060Z copying torch/fx/passes/infra/partitioner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/infra 2025-07-17T06:37:43.1126310Z copying torch/fx/passes/infra/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/infra 2025-07-17T06:37:43.1133490Z copying torch/fx/passes/infra/pass_base.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/infra 2025-07-17T06:37:43.1140550Z copying torch/fx/passes/infra/pass_manager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/infra 2025-07-17T06:37:43.1149160Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/backends 2025-07-17T06:37:43.1149620Z copying torch/fx/passes/backends/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/backends 2025-07-17T06:37:43.1150430Z copying torch/fx/passes/backends/cudagraphs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/backends 2025-07-17T06:37:43.1157980Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/tests 2025-07-17T06:37:43.1158630Z copying torch/fx/passes/tests/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/tests 2025-07-17T06:37:43.1159510Z copying torch/fx/passes/tests/test_pass_manager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/tests 2025-07-17T06:37:43.1166970Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils 2025-07-17T06:37:43.1167480Z copying torch/fx/passes/utils/source_matcher_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils 2025-07-17T06:37:43.1174950Z copying torch/fx/passes/utils/matcher_with_name_node_map_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils 2025-07-17T06:37:43.1182080Z copying torch/fx/passes/utils/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils 2025-07-17T06:37:43.1196150Z copying torch/fx/passes/utils/common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils 2025-07-17T06:37:43.1207900Z copying torch/fx/passes/utils/matcher_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils 2025-07-17T06:37:43.1222500Z copying torch/fx/passes/utils/fuser_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils 2025-07-17T06:37:43.1230350Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/dialect 2025-07-17T06:37:43.1230790Z copying torch/fx/passes/dialect/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/dialect 2025-07-17T06:37:43.1232470Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/dialect/common 2025-07-17T06:37:43.1232980Z copying torch/fx/passes/dialect/common/cse_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/dialect/common 2025-07-17T06:37:43.1240540Z copying torch/fx/passes/dialect/common/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/dialect/common 2025-07-17T06:37:43.1241970Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/amp 2025-07-17T06:37:43.1242610Z copying torch/cuda/amp/autocast_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/amp 2025-07-17T06:37:43.1249360Z copying torch/cuda/amp/grad_scaler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/amp 2025-07-17T06:37:43.1256450Z copying torch/cuda/amp/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/amp 2025-07-17T06:37:43.1262580Z copying torch/cuda/amp/common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/amp 2025-07-17T06:37:43.1269980Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/opt_einsum 2025-07-17T06:37:43.1270440Z copying torch/backends/opt_einsum/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/opt_einsum 2025-07-17T06:37:43.1277860Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mha 2025-07-17T06:37:43.1278340Z copying torch/backends/mha/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mha 2025-07-17T06:37:43.1286000Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/nnpack 2025-07-17T06:37:43.1286430Z copying torch/backends/nnpack/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/nnpack 2025-07-17T06:37:43.1293330Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mps 2025-07-17T06:37:43.1293730Z copying torch/backends/mps/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mps 2025-07-17T06:37:43.1301240Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cpu 2025-07-17T06:37:43.1301700Z copying torch/backends/cpu/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cpu 2025-07-17T06:37:43.1309340Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_coreml 2025-07-17T06:37:43.1309790Z copying torch/backends/_coreml/preprocess.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_coreml 2025-07-17T06:37:43.1316770Z copying torch/backends/_coreml/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_coreml 2025-07-17T06:37:43.1318090Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cuda 2025-07-17T06:37:43.1318700Z copying torch/backends/cuda/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cuda 2025-07-17T06:37:43.1334470Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/quantized 2025-07-17T06:37:43.1334920Z copying torch/backends/quantized/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/quantized 2025-07-17T06:37:43.1342470Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mkl 2025-07-17T06:37:43.1342880Z copying torch/backends/mkl/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mkl 2025-07-17T06:37:43.1351320Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/xnnpack 2025-07-17T06:37:43.1351770Z copying torch/backends/xnnpack/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/xnnpack 2025-07-17T06:37:43.1359680Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/kleidiai 2025-07-17T06:37:43.1360130Z copying torch/backends/kleidiai/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/kleidiai 2025-07-17T06:37:43.1367940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cusparselt 2025-07-17T06:37:43.1368410Z copying torch/backends/cusparselt/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cusparselt 2025-07-17T06:37:43.1377200Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mkldnn 2025-07-17T06:37:43.1377630Z copying torch/backends/mkldnn/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mkldnn 2025-07-17T06:37:43.1385580Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/xeon 2025-07-17T06:37:43.1386010Z copying torch/backends/xeon/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/xeon 2025-07-17T06:37:43.1386830Z copying torch/backends/xeon/run_cpu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/xeon 2025-07-17T06:37:43.1419010Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_nnapi 2025-07-17T06:37:43.1419430Z copying torch/backends/_nnapi/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_nnapi 2025-07-17T06:37:43.1420180Z copying torch/backends/_nnapi/serializer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_nnapi 2025-07-17T06:37:43.1453130Z copying torch/backends/_nnapi/prepare.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_nnapi 2025-07-17T06:37:43.1464100Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/openmp 2025-07-17T06:37:43.1464540Z copying torch/backends/openmp/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/openmp 2025-07-17T06:37:43.1472640Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cudnn 2025-07-17T06:37:43.1473070Z copying torch/backends/cudnn/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cudnn 2025-07-17T06:37:43.1479720Z copying torch/backends/cudnn/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cudnn 2025-07-17T06:37:43.1486840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-07-17T06:37:43.1487400Z copying torch/masked/maskedtensor/binary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-07-17T06:37:43.1494220Z copying torch/masked/maskedtensor/creation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-07-17T06:37:43.1500780Z copying torch/masked/maskedtensor/_ops_refs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-07-17T06:37:43.1512750Z copying torch/masked/maskedtensor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-07-17T06:37:43.1519820Z copying torch/masked/maskedtensor/core.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-07-17T06:37:43.1526960Z copying torch/masked/maskedtensor/unary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-07-17T06:37:43.1533860Z copying torch/masked/maskedtensor/reductions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-07-17T06:37:43.1540920Z copying torch/masked/maskedtensor/passthrough.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-07-17T06:37:43.1547800Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/optim/_multi_tensor 2025-07-17T06:37:43.1548260Z copying torch/optim/_multi_tensor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim/_multi_tensor 2025-07-17T06:37:43.1556060Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/analysis 2025-07-17T06:37:43.1556570Z copying torch/_inductor/analysis/device_info.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/analysis 2025-07-17T06:37:43.1564540Z copying torch/_inductor/analysis/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/analysis 2025-07-17T06:37:43.1565160Z copying torch/_inductor/analysis/profile_analysis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/analysis 2025-07-17T06:37:43.1582140Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-07-17T06:37:43.1582600Z copying torch/_inductor/runtime/cache_dir_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-07-17T06:37:43.1590130Z copying torch/_inductor/runtime/triton_heuristics.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-07-17T06:37:43.1618390Z copying torch/_inductor/runtime/runtime_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-07-17T06:37:43.1625560Z copying torch/_inductor/runtime/halide_helpers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-07-17T06:37:43.1633150Z copying torch/_inductor/runtime/coordinate_descent_tuner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-07-17T06:37:43.1640690Z copying torch/_inductor/runtime/triton_compat.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-07-17T06:37:43.1648280Z copying torch/_inductor/runtime/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-07-17T06:37:43.1648880Z copying torch/_inductor/runtime/compile_tasks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-07-17T06:37:43.1657250Z copying torch/_inductor/runtime/triton_helpers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-07-17T06:37:43.1672010Z copying torch/_inductor/runtime/autotune_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-07-17T06:37:43.1685670Z copying torch/_inductor/runtime/hints.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-07-17T06:37:43.1693440Z copying torch/_inductor/runtime/static_cuda_launcher.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-07-17T06:37:43.1700750Z copying torch/_inductor/runtime/benchmarking.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-07-17T06:37:43.1712380Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-17T06:37:43.1712870Z copying torch/_inductor/codegen/cpp_grouped_gemm_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-17T06:37:43.1734040Z copying torch/_inductor/codegen/cpp_wrapper_gpu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-17T06:37:43.1748440Z copying torch/_inductor/codegen/wrapper.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-17T06:37:43.1750060Z copying torch/_inductor/codegen/mps_device_op_overrides.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-17T06:37:43.1757880Z copying torch/_inductor/codegen/triton_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-17T06:37:43.1765260Z copying torch/_inductor/codegen/triton.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-17T06:37:43.1807670Z copying torch/_inductor/codegen/cpp_bmm_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-17T06:37:43.1817090Z copying torch/_inductor/codegen/mps.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-17T06:37:43.1831470Z copying torch/_inductor/codegen/aoti_hipify_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-17T06:37:43.1838380Z copying torch/_inductor/codegen/simd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-17T06:37:43.1869960Z copying torch/_inductor/codegen/triton_combo_kernel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-17T06:37:43.1883760Z copying torch/_inductor/codegen/memory_planning.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-17T06:37:43.1897630Z copying torch/_inductor/codegen/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-17T06:37:43.1898200Z copying torch/_inductor/codegen/cpp_flex_attention_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-17T06:37:43.1915000Z copying torch/_inductor/codegen/wrapper_fxir.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-17T06:37:43.1930680Z copying torch/_inductor/codegen/cpp_micro_gemm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-17T06:37:43.1954490Z copying torch/_inductor/codegen/cpp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-17T06:37:43.2002780Z copying torch/_inductor/codegen/cpp_wrapper_cpu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-17T06:37:43.2004380Z copying torch/_inductor/codegen/block_analysis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-17T06:37:43.2018580Z copying torch/_inductor/codegen/common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-17T06:37:43.2052480Z copying torch/_inductor/codegen/cpp_wrapper_mps.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-17T06:37:43.2058880Z copying torch/_inductor/codegen/cpp_template_kernel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-17T06:37:43.2073240Z copying torch/_inductor/codegen/cpp_gemm_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-17T06:37:43.2092500Z copying torch/_inductor/codegen/cpu_device_op_overrides.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-17T06:37:43.2099140Z copying torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-17T06:37:43.2114140Z copying torch/_inductor/codegen/triton_split_scan.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-17T06:37:43.2121650Z copying torch/_inductor/codegen/halide.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-17T06:37:43.2140730Z copying torch/_inductor/codegen/cpp_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-17T06:37:43.2147490Z copying torch/_inductor/codegen/cuda_combined_scheduling.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-17T06:37:43.2154970Z copying torch/_inductor/codegen/multi_kernel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-17T06:37:43.2168500Z copying torch/_inductor/codegen/subgraph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-17T06:37:43.2174940Z copying torch/_inductor/codegen/cpp_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-17T06:37:43.2189040Z copying torch/_inductor/codegen/debug_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-17T06:37:43.2196140Z copying torch/_inductor/codegen/simd_kernel_features.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-17T06:37:43.2211320Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker 2025-07-17T06:37:43.2211850Z copying torch/_inductor/compile_worker/tracked_process_pool.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker 2025-07-17T06:37:43.2218410Z copying torch/_inductor/compile_worker/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker 2025-07-17T06:37:43.2219040Z copying torch/_inductor/compile_worker/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker 2025-07-17T06:37:43.2226020Z copying torch/_inductor/compile_worker/subproc_pool.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker 2025-07-17T06:37:43.2233660Z copying torch/_inductor/compile_worker/__main__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker 2025-07-17T06:37:43.2241900Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic 2025-07-17T06:37:43.2242430Z copying torch/_inductor/autoheuristic/autoheuristic.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic 2025-07-17T06:37:43.2251120Z copying torch/_inductor/autoheuristic/autoheuristic_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic 2025-07-17T06:37:43.2258280Z copying torch/_inductor/autoheuristic/learned_heuristic_controller.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic 2025-07-17T06:37:43.2265930Z copying torch/_inductor/autoheuristic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic 2025-07-17T06:37:43.2266730Z copying torch/_inductor/autoheuristic/learnedheuristic_interface.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic 2025-07-17T06:37:43.2275940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-17T06:37:43.2276490Z copying torch/_inductor/fx_passes/post_grad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-17T06:37:43.2299010Z copying torch/_inductor/fx_passes/fsdp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-17T06:37:43.2306330Z copying torch/_inductor/fx_passes/replace_random.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-17T06:37:43.2313490Z copying torch/_inductor/fx_passes/ddp_fusion.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-17T06:37:43.2326580Z copying torch/_inductor/fx_passes/numeric_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-17T06:37:43.2340540Z copying torch/_inductor/fx_passes/decompose_mem_bound_mm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-17T06:37:43.2348000Z copying torch/_inductor/fx_passes/reinplace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-17T06:37:43.2362730Z copying torch/_inductor/fx_passes/quantization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-17T06:37:43.2395040Z copying torch/_inductor/fx_passes/split_cat.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-17T06:37:43.2443830Z copying torch/_inductor/fx_passes/dedupe_symint_uses.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-17T06:37:43.2451840Z copying torch/_inductor/fx_passes/efficient_conv_bn_eval.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-17T06:37:43.2463500Z copying torch/_inductor/fx_passes/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-17T06:37:43.2464090Z copying torch/_inductor/fx_passes/group_batch_fusion.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-17T06:37:43.2492920Z copying torch/_inductor/fx_passes/pre_grad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-17T06:37:43.2509970Z copying torch/_inductor/fx_passes/binary_folding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-17T06:37:43.2525300Z copying torch/_inductor/fx_passes/fuse_attention.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-17T06:37:43.2536740Z copying torch/_inductor/fx_passes/micro_pipeline_tp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-17T06:37:43.2560280Z copying torch/_inductor/fx_passes/joint_graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-17T06:37:43.2574510Z copying torch/_inductor/fx_passes/bucketing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-17T06:37:43.2593380Z copying torch/_inductor/fx_passes/b2b_gemm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-17T06:37:43.2605730Z copying torch/_inductor/fx_passes/mkldnn_fusion.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-17T06:37:43.2622950Z copying torch/_inductor/fx_passes/pad_mm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-17T06:37:43.2636170Z copying torch/_inductor/fx_passes/freezing_patterns.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-17T06:37:43.2649230Z copying torch/_inductor/fx_passes/misc_patterns.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-17T06:37:43.2659960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-07-17T06:37:43.2660400Z copying torch/_inductor/kernel/mm_common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-07-17T06:37:43.2673520Z copying torch/_inductor/kernel/flex_decoding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-07-17T06:37:43.2688390Z copying torch/_inductor/kernel/mm_grouped.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-07-17T06:37:43.2704340Z copying torch/_inductor/kernel/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-07-17T06:37:43.2714850Z copying torch/_inductor/kernel/mm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-07-17T06:37:43.2730770Z copying torch/_inductor/kernel/bmm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-07-17T06:37:43.2738280Z copying torch/_inductor/kernel/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-07-17T06:37:43.2761280Z copying torch/_inductor/kernel/mm_plus_mm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-07-17T06:37:43.2767870Z copying torch/_inductor/kernel/flex_attention.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-07-17T06:37:43.2771020Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/package 2025-07-17T06:37:43.2771480Z copying torch/_inductor/package/package.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/package 2025-07-17T06:37:43.2777860Z copying torch/_inductor/package/build_package.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/package 2025-07-17T06:37:43.2784450Z copying torch/_inductor/package/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/package 2025-07-17T06:37:43.2791780Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-07-17T06:37:43.2792280Z copying torch/_inductor/codegen/cuda/cutlass_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-07-17T06:37:43.2812350Z copying torch/_inductor/codegen/cuda/cuda_cpp_scheduling.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-07-17T06:37:43.2817510Z copying torch/_inductor/codegen/cuda/cuda_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-07-17T06:37:43.2823430Z copying torch/_inductor/codegen/cuda/gemm_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-07-17T06:37:43.2849880Z copying torch/_inductor/codegen/cuda/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-07-17T06:37:43.2850520Z copying torch/_inductor/codegen/cuda/cutlass_presets.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-07-17T06:37:43.2856350Z copying torch/_inductor/codegen/cuda/cutlass_python_evt.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-07-17T06:37:43.2868240Z copying torch/_inductor/codegen/cuda/device_op_overrides.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-07-17T06:37:43.2883030Z copying torch/_inductor/codegen/cuda/cuda_env.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-07-17T06:37:43.2892230Z copying torch/_inductor/codegen/cuda/serialization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-07-17T06:37:43.2905140Z copying torch/_inductor/codegen/cuda/cutlass_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-07-17T06:37:43.2910240Z copying torch/_inductor/codegen/cuda/cuda_kernel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-07-17T06:37:43.2930020Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/xpu 2025-07-17T06:37:43.2930500Z copying torch/_inductor/codegen/xpu/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/xpu 2025-07-17T06:37:43.2931300Z copying torch/_inductor/codegen/xpu/device_op_overrides.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/xpu 2025-07-17T06:37:43.2938860Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-07-17T06:37:43.2939370Z copying torch/_inductor/codegen/rocm/ck_tile_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-07-17T06:37:43.2944780Z copying torch/_inductor/codegen/rocm/rocm_cpp_scheduling.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-07-17T06:37:43.2950400Z copying torch/_inductor/codegen/rocm/rocm_kernel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-07-17T06:37:43.2955890Z copying torch/_inductor/codegen/rocm/rocm_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-07-17T06:37:43.2961240Z copying torch/_inductor/codegen/rocm/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-07-17T06:37:43.2961840Z copying torch/_inductor/codegen/rocm/compile_command.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-07-17T06:37:43.2966870Z copying torch/_inductor/codegen/rocm/rocm_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-07-17T06:37:43.2971770Z copying torch/_inductor/codegen/rocm/ck_conv_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-07-17T06:37:43.2982040Z copying torch/_inductor/codegen/rocm/rocm_template_buffer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-07-17T06:37:43.2987310Z copying torch/_inductor/codegen/rocm/ck_universal_gemm_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-07-17T06:37:43.3001090Z copying torch/_inductor/codegen/rocm/ck_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-07-17T06:37:43.3007630Z copying torch/_inductor/codegen/rocm/rocm_benchmark_request.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-07-17T06:37:43.3013450Z copying torch/_inductor/codegen/rocm/ck_tile_universal_gemm_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-07-17T06:37:43.3030390Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions 2025-07-17T06:37:43.3031080Z copying torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions 2025-07-17T06:37:43.3044730Z copying torch/_inductor/codegen/cuda/cutlass_lib_extensions/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions 2025-07-17T06:37:43.3045550Z copying torch/_inductor/codegen/cuda/cutlass_lib_extensions/evt_extensions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions 2025-07-17T06:37:43.3052960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts 2025-07-17T06:37:43.3058220Z copying torch/_inductor/autoheuristic/artifacts/_MixedMMH100.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts 2025-07-17T06:37:43.3060240Z copying torch/_inductor/autoheuristic/artifacts/_PadMMA100.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts 2025-07-17T06:37:43.3066400Z copying torch/_inductor/autoheuristic/artifacts/_MMRankingH100.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts 2025-07-17T06:37:43.3078990Z copying torch/_inductor/autoheuristic/artifacts/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts 2025-07-17T06:37:43.3079690Z copying torch/_inductor/autoheuristic/artifacts/_MMRankingA100.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts 2025-07-17T06:37:43.3095580Z copying torch/_inductor/autoheuristic/artifacts/_MixedMMA100.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts 2025-07-17T06:37:43.3106850Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:43.3107480Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:43.3114370Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_5.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:43.3131560Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:43.3139760Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:43.3154730Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_1.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:43.3162080Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:43.3169540Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:43.3182530Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_13.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:43.3190310Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_4.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:43.3197970Z copying torch/_inductor/fx_passes/serialized_patterns/addmm_pattern.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:43.3204190Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:43.3219010Z copying torch/_inductor/fx_passes/serialized_patterns/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:43.3219760Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_19.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:43.3228040Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:43.3235350Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:43.3245740Z copying torch/_inductor/fx_passes/serialized_patterns/mm_pattern.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:43.3254140Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:43.3265810Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:43.3273030Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_3.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:43.3280460Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:43.3288220Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_24.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:43.3295660Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:43.3306500Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:43.3316160Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_6.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:43.3322720Z copying torch/_inductor/fx_passes/serialized_patterns/bmm_pattern.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:43.3329400Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:43.3336980Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:43.3343620Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_2.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:43.3351330Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark 2025-07-17T06:37:43.3351760Z copying torch/utils/benchmark/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark 2025-07-17T06:37:43.3360450Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-07-17T06:37:43.3360880Z copying torch/utils/_sympy/functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-07-17T06:37:43.3381600Z copying torch/utils/_sympy/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-07-17T06:37:43.3382250Z copying torch/utils/_sympy/symbol.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-07-17T06:37:43.3389650Z copying torch/utils/_sympy/numbers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-07-17T06:37:43.3396310Z copying torch/utils/_sympy/reference.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-07-17T06:37:43.3404070Z copying torch/utils/_sympy/singleton_int.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-07-17T06:37:43.3411010Z copying torch/utils/_sympy/value_ranges.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-07-17T06:37:43.3428880Z copying torch/utils/_sympy/printers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-07-17T06:37:43.3443820Z copying torch/utils/_sympy/solve.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-07-17T06:37:43.3451180Z copying torch/utils/_sympy/interp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-07-17T06:37:43.3459050Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/serialization 2025-07-17T06:37:43.3459510Z copying torch/utils/serialization/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/serialization 2025-07-17T06:37:43.3466550Z copying torch/utils/serialization/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/serialization 2025-07-17T06:37:43.3473430Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/backcompat 2025-07-17T06:37:43.3473870Z copying torch/utils/backcompat/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/backcompat 2025-07-17T06:37:43.3481240Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify 2025-07-17T06:37:43.3481680Z copying torch/utils/hipify/version.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify 2025-07-17T06:37:43.3498720Z copying torch/utils/hipify/cuda_to_hip_mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify 2025-07-17T06:37:43.3565050Z copying torch/utils/hipify/constants.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify 2025-07-17T06:37:43.3572170Z copying torch/utils/hipify/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify 2025-07-17T06:37:43.3583380Z copying torch/utils/hipify/hipify_python.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify 2025-07-17T06:37:43.3619260Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/bottleneck 2025-07-17T06:37:43.3619700Z copying torch/utils/bottleneck/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/bottleneck 2025-07-17T06:37:43.3620450Z copying torch/utils/bottleneck/__main__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/bottleneck 2025-07-17T06:37:43.3627890Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/viz 2025-07-17T06:37:43.3628270Z copying torch/utils/viz/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/viz 2025-07-17T06:37:43.3629020Z copying torch/utils/viz/_cycles.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/viz 2025-07-17T06:37:43.3642050Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/jit 2025-07-17T06:37:43.3642420Z copying torch/utils/jit/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/jit 2025-07-17T06:37:43.3643360Z copying torch/utils/jit/log_extract.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/jit 2025-07-17T06:37:43.3651840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-07-17T06:37:43.3652320Z copying torch/utils/tensorboard/_pytorch_graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-07-17T06:37:43.3661910Z copying torch/utils/tensorboard/_proto_graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-07-17T06:37:43.3668490Z copying torch/utils/tensorboard/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-07-17T06:37:43.3674750Z copying torch/utils/tensorboard/_embedding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-07-17T06:37:43.3680680Z copying torch/utils/tensorboard/_onnx_graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-07-17T06:37:43.3687250Z copying torch/utils/tensorboard/summary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-07-17T06:37:43.3700100Z copying torch/utils/tensorboard/_convert_np.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-07-17T06:37:43.3706850Z copying torch/utils/tensorboard/writer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-07-17T06:37:43.3722350Z copying torch/utils/tensorboard/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-07-17T06:37:43.3730240Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump 2025-07-17T06:37:43.3730770Z copying torch/utils/model_dump/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump 2025-07-17T06:37:43.3744370Z copying torch/utils/model_dump/__main__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump 2025-07-17T06:37:43.3752480Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-07-17T06:37:43.3752940Z copying torch/utils/data/graph_settings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-07-17T06:37:43.3760120Z copying torch/utils/data/graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-07-17T06:37:43.3777970Z copying torch/utils/data/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-07-17T06:37:43.3784430Z copying torch/utils/data/dataset.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-07-17T06:37:43.3796600Z copying torch/utils/data/distributed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-07-17T06:37:43.3802990Z copying torch/utils/data/backward_compatibility.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-07-17T06:37:43.3809320Z copying torch/utils/data/dataloader.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-07-17T06:37:43.3830000Z copying torch/utils/data/sampler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-07-17T06:37:43.3840020Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_strobelight 2025-07-17T06:37:43.3840500Z copying torch/utils/_strobelight/cli_function_profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_strobelight 2025-07-17T06:37:43.3848170Z copying torch/utils/_strobelight/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_strobelight 2025-07-17T06:37:43.3849970Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers 2025-07-17T06:37:43.3850670Z copying torch/utils/benchmark/op_fuzzers/binary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers 2025-07-17T06:37:43.3858170Z copying torch/utils/benchmark/op_fuzzers/sparse_binary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers 2025-07-17T06:37:43.3864930Z copying torch/utils/benchmark/op_fuzzers/sparse_unary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers 2025-07-17T06:37:43.3872230Z copying torch/utils/benchmark/op_fuzzers/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers 2025-07-17T06:37:43.3872850Z copying torch/utils/benchmark/op_fuzzers/spectral.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers 2025-07-17T06:37:43.3880540Z copying torch/utils/benchmark/op_fuzzers/unary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers 2025-07-17T06:37:43.3888700Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-07-17T06:37:43.3889190Z copying torch/utils/benchmark/utils/timer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-07-17T06:37:43.3904430Z copying torch/utils/benchmark/utils/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-07-17T06:37:43.3905120Z copying torch/utils/benchmark/utils/sparse_fuzzer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-07-17T06:37:43.3912920Z copying torch/utils/benchmark/utils/common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-07-17T06:37:43.3920420Z copying torch/utils/benchmark/utils/compile.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-07-17T06:37:43.3927480Z copying torch/utils/benchmark/utils/fuzzer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-07-17T06:37:43.3940840Z copying torch/utils/benchmark/utils/cpp_jit.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-07-17T06:37:43.3948300Z copying torch/utils/benchmark/utils/compare.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-07-17T06:37:43.3955850Z copying torch/utils/benchmark/utils/_stubs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-07-17T06:37:43.3963690Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples 2025-07-17T06:37:43.3964220Z copying torch/utils/benchmark/examples/op_benchmark.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples 2025-07-17T06:37:43.3971110Z copying torch/utils/benchmark/examples/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples 2025-07-17T06:37:43.3971740Z copying torch/utils/benchmark/examples/simple_timeit.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples 2025-07-17T06:37:43.3984990Z copying torch/utils/benchmark/examples/fuzzer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples 2025-07-17T06:37:43.3996300Z copying torch/utils/benchmark/examples/spectral_ops_fuzz_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples 2025-07-17T06:37:43.4003120Z copying torch/utils/benchmark/examples/compare.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples 2025-07-17T06:37:43.4010430Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper 2025-07-17T06:37:43.4011080Z copying torch/utils/benchmark/utils/valgrind_wrapper/timer_interface.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper 2025-07-17T06:37:43.4025410Z copying torch/utils/benchmark/utils/valgrind_wrapper/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper 2025-07-17T06:37:43.4027000Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils 2025-07-17T06:37:43.4027580Z copying torch/utils/data/_utils/fetch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils 2025-07-17T06:37:43.4035700Z copying torch/utils/data/_utils/worker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils 2025-07-17T06:37:43.4044400Z copying torch/utils/data/_utils/collate.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils 2025-07-17T06:37:43.4053300Z copying torch/utils/data/_utils/pin_memory.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils 2025-07-17T06:37:43.4060350Z copying torch/utils/data/_utils/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils 2025-07-17T06:37:43.4066530Z copying torch/utils/data/_utils/signal_handling.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils 2025-07-17T06:37:43.4074320Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-07-17T06:37:43.4074810Z copying torch/utils/data/datapipes/_decorator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-07-17T06:37:43.4082000Z copying torch/utils/data/datapipes/_typing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-07-17T06:37:43.4096530Z copying torch/utils/data/datapipes/_hook_iterator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-07-17T06:37:43.4104440Z copying torch/utils/data/datapipes/datapipe.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-07-17T06:37:43.4119560Z copying torch/utils/data/datapipes/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-07-17T06:37:43.4128890Z copying torch/utils/data/datapipes/gen_pyi.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-07-17T06:37:43.4138890Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe 2025-07-17T06:37:43.4139440Z copying torch/utils/data/datapipes/dataframe/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe 2025-07-17T06:37:43.4146290Z copying torch/utils/data/datapipes/dataframe/datapipes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe 2025-07-17T06:37:43.4152760Z copying torch/utils/data/datapipes/dataframe/dataframe_wrapper.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe 2025-07-17T06:37:43.4159560Z copying torch/utils/data/datapipes/dataframe/structures.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe 2025-07-17T06:37:43.4165660Z copying torch/utils/data/datapipes/dataframe/dataframes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe 2025-07-17T06:37:43.4174690Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-07-17T06:37:43.4175230Z copying torch/utils/data/datapipes/iter/fileopener.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-07-17T06:37:43.4183860Z copying torch/utils/data/datapipes/iter/callable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-07-17T06:37:43.4184850Z copying torch/utils/data/datapipes/iter/sharding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-07-17T06:37:43.4185950Z copying torch/utils/data/datapipes/iter/grouping.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-07-17T06:37:43.4187300Z copying torch/utils/data/datapipes/iter/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-07-17T06:37:43.4195850Z copying torch/utils/data/datapipes/iter/selecting.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-07-17T06:37:43.4196740Z copying torch/utils/data/datapipes/iter/combining.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-07-17T06:37:43.4198060Z copying torch/utils/data/datapipes/iter/filelister.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-07-17T06:37:43.4199170Z copying torch/utils/data/datapipes/iter/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-07-17T06:37:43.4205800Z copying torch/utils/data/datapipes/iter/combinatorics.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-07-17T06:37:43.4206570Z copying torch/utils/data/datapipes/iter/streamreader.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-07-17T06:37:43.4207710Z copying torch/utils/data/datapipes/iter/routeddecoder.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-07-17T06:37:43.4210110Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/utils 2025-07-17T06:37:43.4210640Z copying torch/utils/data/datapipes/utils/decoder.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/utils 2025-07-17T06:37:43.4220010Z copying torch/utils/data/datapipes/utils/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/utils 2025-07-17T06:37:43.4220630Z copying torch/utils/data/datapipes/utils/common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/utils 2025-07-17T06:37:43.4229980Z copying torch/utils/data/datapipes/utils/snapshot.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/utils 2025-07-17T06:37:43.4237920Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map 2025-07-17T06:37:43.4238430Z copying torch/utils/data/datapipes/map/callable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map 2025-07-17T06:37:43.4239400Z copying torch/utils/data/datapipes/map/grouping.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map 2025-07-17T06:37:43.4240760Z copying torch/utils/data/datapipes/map/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map 2025-07-17T06:37:43.4247640Z copying torch/utils/data/datapipes/map/combining.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map 2025-07-17T06:37:43.4248420Z copying torch/utils/data/datapipes/map/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map 2025-07-17T06:37:43.4255910Z copying torch/utils/data/datapipes/map/combinatorics.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map 2025-07-17T06:37:43.4258680Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-07-17T06:37:43.4259120Z copying torch/quantization/fx/graph_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-07-17T06:37:43.4267140Z copying torch/quantization/fx/fusion_patterns.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-07-17T06:37:43.4274200Z copying torch/quantization/fx/_equalize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-07-17T06:37:43.4282050Z copying torch/quantization/fx/quantization_types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-07-17T06:37:43.4288720Z copying torch/quantization/fx/convert.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-07-17T06:37:43.4294940Z copying torch/quantization/fx/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-07-17T06:37:43.4301830Z copying torch/quantization/fx/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-07-17T06:37:43.4308380Z copying torch/quantization/fx/pattern_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-07-17T06:37:43.4315920Z copying torch/quantization/fx/fuse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-07-17T06:37:43.4322330Z copying torch/quantization/fx/match_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-07-17T06:37:43.4330800Z copying torch/quantization/fx/prepare.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-07-17T06:37:43.4339350Z copying torch/quantization/fx/quantization_patterns.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-07-17T06:37:43.4351380Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-17T06:37:43.4351850Z copying torch/testing/_internal/common_dtype.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-17T06:37:43.4359420Z copying torch/testing/_internal/common_pruning.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-17T06:37:43.4374070Z copying torch/testing/_internal/fake_config_module3.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-17T06:37:43.4385000Z copying torch/testing/_internal/hop_db.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-17T06:37:43.4392470Z copying torch/testing/_internal/triton_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-17T06:37:43.4405380Z copying torch/testing/_internal/static_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-17T06:37:43.4413430Z copying torch/testing/_internal/subclasses.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-17T06:37:43.4421270Z copying torch/testing/_internal/common_nn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-17T06:37:43.4456140Z copying torch/testing/_internal/custom_op_db.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-17T06:37:43.4470470Z copying torch/testing/_internal/fake_config_module2.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-17T06:37:43.4476860Z copying torch/testing/_internal/autocast_test_lists.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-17T06:37:43.4490410Z copying torch/testing/_internal/common_fsdp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-17T06:37:43.4511430Z copying torch/testing/_internal/two_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-17T06:37:43.4518980Z copying torch/testing/_internal/torchbind_impls.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-17T06:37:43.4526110Z copying torch/testing/_internal/common_optimizers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-17T06:37:43.4556620Z copying torch/testing/_internal/common_device_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-17T06:37:43.4578560Z copying torch/testing/_internal/autograd_function_db.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-17T06:37:43.4593090Z copying torch/testing/_internal/common_mkldnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-17T06:37:43.4600180Z copying torch/testing/_internal/inductor_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-17T06:37:43.4607070Z copying torch/testing/_internal/common_distributed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-17T06:37:43.4629580Z copying torch/testing/_internal/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-17T06:37:43.4630200Z copying torch/testing/_internal/common_methods_invocations.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-17T06:37:43.4732280Z copying torch/testing/_internal/custom_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-17T06:37:43.4744050Z copying torch/testing/_internal/logging_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-17T06:37:43.4753110Z copying torch/testing/_internal/hypothesis_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-17T06:37:43.4759870Z copying torch/testing/_internal/common_cuda.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-17T06:37:43.4766730Z copying torch/testing/_internal/common_quantization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-17T06:37:43.4794770Z copying torch/testing/_internal/common_modules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-17T06:37:43.4836370Z copying torch/testing/_internal/common_jit.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-17T06:37:43.4843580Z copying torch/testing/_internal/common_mps.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-17T06:37:43.4856170Z copying torch/testing/_internal/jit_metaprogramming_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-17T06:37:43.4868600Z copying torch/testing/_internal/dynamo_test_failures.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-17T06:37:43.4876390Z copying torch/testing/_internal/check_kernel_launches.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-17T06:37:43.4882930Z copying torch/testing/_internal/common_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-17T06:37:43.4923490Z copying torch/testing/_internal/quantization_torch_package_models.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-17T06:37:43.4930510Z copying torch/testing/_internal/common_quantized.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-17T06:37:43.4943840Z copying torch/testing/_internal/common_dist_composable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-17T06:37:43.4950590Z copying torch/testing/_internal/common_subclass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-17T06:37:43.4957810Z copying torch/testing/_internal/composite_compliance.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-17T06:37:43.4970760Z copying torch/testing/_internal/logging_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-17T06:37:43.4977610Z copying torch/testing/_internal/dist_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-17T06:37:43.4984400Z copying torch/testing/_internal/fake_config_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-17T06:37:43.4991200Z copying torch/testing/_internal/jit_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-17T06:37:43.5005740Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/generated 2025-07-17T06:37:43.5006330Z copying torch/testing/_internal/generated/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/generated 2025-07-17T06:37:43.5007100Z copying torch/testing/_internal/generated/annotated_fn_args.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/generated 2025-07-17T06:37:43.5012400Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo 2025-07-17T06:37:43.5012890Z copying torch/testing/_internal/opinfo/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo 2025-07-17T06:37:43.5020670Z copying torch/testing/_internal/opinfo/core.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo 2025-07-17T06:37:43.5053330Z copying torch/testing/_internal/opinfo/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo 2025-07-17T06:37:43.5062090Z copying torch/testing/_internal/opinfo/refs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo 2025-07-17T06:37:43.5070110Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/test_module 2025-07-17T06:37:43.5070630Z copying torch/testing/_internal/test_module/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/test_module 2025-07-17T06:37:43.5071480Z copying torch/testing/_internal/test_module/future_div.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/test_module 2025-07-17T06:37:43.5079380Z copying torch/testing/_internal/test_module/no_future_div.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/test_module 2025-07-17T06:37:43.5086510Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-07-17T06:37:43.5087100Z copying torch/testing/_internal/distributed/ddp_under_dist_autograd_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-07-17T06:37:43.5100820Z copying torch/testing/_internal/distributed/fake_pg.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-07-17T06:37:43.5107960Z copying torch/testing/_internal/distributed/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-07-17T06:37:43.5108640Z copying torch/testing/_internal/distributed/checkpoint_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-07-17T06:37:43.5115340Z copying torch/testing/_internal/distributed/distributed_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-07-17T06:37:43.5121740Z copying torch/testing/_internal/distributed/distributed_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-07-17T06:37:43.5177300Z copying torch/testing/_internal/distributed/multi_threaded_pg.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-07-17T06:37:43.5191430Z copying torch/testing/_internal/distributed/common_state_dict.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-07-17T06:37:43.5198280Z copying torch/testing/_internal/distributed/rpc_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-07-17T06:37:43.5206100Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests 2025-07-17T06:37:43.5206600Z copying torch/testing/_internal/optests/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests 2025-07-17T06:37:43.5213490Z copying torch/testing/_internal/optests/fake_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests 2025-07-17T06:37:43.5221310Z copying torch/testing/_internal/optests/aot_autograd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests 2025-07-17T06:37:43.5227870Z copying torch/testing/_internal/optests/make_fx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests 2025-07-17T06:37:43.5241130Z copying torch/testing/_internal/optests/generate_tests.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests 2025-07-17T06:37:43.5256540Z copying torch/testing/_internal/optests/autograd_registration.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests 2025-07-17T06:37:43.5264680Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/codegen 2025-07-17T06:37:43.5265180Z copying torch/testing/_internal/codegen/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/codegen 2025-07-17T06:37:43.5274690Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/data 2025-07-17T06:37:43.5275180Z copying torch/testing/_internal/data/network1.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/data 2025-07-17T06:37:43.5282470Z copying torch/testing/_internal/data/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/data 2025-07-17T06:37:43.5289460Z copying torch/testing/_internal/data/network2.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/data 2025-07-17T06:37:43.5297550Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-07-17T06:37:43.5298230Z copying torch/testing/_internal/opinfo/definitions/signal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-07-17T06:37:43.5306360Z copying torch/testing/_internal/opinfo/definitions/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-07-17T06:37:43.5313730Z copying torch/testing/_internal/opinfo/definitions/_masked.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-07-17T06:37:43.5330740Z copying torch/testing/_internal/opinfo/definitions/linalg.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-07-17T06:37:43.5363120Z copying torch/testing/_internal/opinfo/definitions/sparse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-07-17T06:37:43.5376810Z copying torch/testing/_internal/opinfo/definitions/fft.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-07-17T06:37:43.5390950Z copying torch/testing/_internal/opinfo/definitions/special.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-07-17T06:37:43.5404210Z copying torch/testing/_internal/opinfo/definitions/nested.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-07-17T06:37:43.5426340Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_tensor 2025-07-17T06:37:43.5426940Z copying torch/testing/_internal/distributed/_tensor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_tensor 2025-07-17T06:37:43.5427730Z copying torch/testing/_internal/distributed/_tensor/common_dtensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_tensor 2025-07-17T06:37:43.5451820Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/nn 2025-07-17T06:37:43.5452380Z copying torch/testing/_internal/distributed/nn/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/nn 2025-07-17T06:37:43.5453670Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard 2025-07-17T06:37:43.5454320Z copying torch/testing/_internal/distributed/_shard/test_common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard 2025-07-17T06:37:43.5463840Z copying torch/testing/_internal/distributed/_shard/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard 2025-07-17T06:37:43.5471500Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc 2025-07-17T06:37:43.5472120Z copying torch/testing/_internal/distributed/rpc/faulty_rpc_agent_test_fixture.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc 2025-07-17T06:37:43.5479620Z copying torch/testing/_internal/distributed/rpc/faulty_agent_rpc_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc 2025-07-17T06:37:43.5487650Z copying torch/testing/_internal/distributed/rpc/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc 2025-07-17T06:37:43.5488360Z copying torch/testing/_internal/distributed/rpc/dist_autograd_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc 2025-07-17T06:37:43.5525060Z copying torch/testing/_internal/distributed/rpc/rpc_agent_test_fixture.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc 2025-07-17T06:37:43.5532210Z copying torch/testing/_internal/distributed/rpc/tensorpipe_rpc_agent_test_fixture.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc 2025-07-17T06:37:43.5538250Z copying torch/testing/_internal/distributed/rpc/rpc_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc 2025-07-17T06:37:43.5581740Z copying torch/testing/_internal/distributed/rpc/dist_optimizer_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc 2025-07-17T06:37:43.5597860Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/nn/api 2025-07-17T06:37:43.5598470Z copying torch/testing/_internal/distributed/nn/api/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/nn/api 2025-07-17T06:37:43.5599220Z copying torch/testing/_internal/distributed/nn/api/remote_module_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/nn/api 2025-07-17T06:37:43.5608270Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard/sharded_tensor 2025-07-17T06:37:43.5608970Z copying torch/testing/_internal/distributed/_shard/sharded_tensor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard/sharded_tensor 2025-07-17T06:37:43.5615230Z copying torch/testing/_internal/distributed/_shard/sharded_tensor/_test_ops_common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard/sharded_tensor 2025-07-17T06:37:43.5621410Z copying torch/testing/_internal/distributed/_shard/sharded_tensor/_test_st_common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard/sharded_tensor 2025-07-17T06:37:43.5629270Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/jit 2025-07-17T06:37:43.5629860Z copying torch/testing/_internal/distributed/rpc/jit/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/jit 2025-07-17T06:37:43.5630620Z copying torch/testing/_internal/distributed/rpc/jit/dist_autograd_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/jit 2025-07-17T06:37:43.5637440Z copying torch/testing/_internal/distributed/rpc/jit/rpc_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/jit 2025-07-17T06:37:43.5652840Z copying torch/testing/_internal/distributed/rpc/jit/rpc_test_faulty.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/jit 2025-07-17T06:37:43.5662120Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/examples 2025-07-17T06:37:43.5662750Z copying torch/testing/_internal/distributed/rpc/examples/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/examples 2025-07-17T06:37:43.5663610Z copying torch/testing/_internal/distributed/rpc/examples/reinforcement_learning_rpc_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/examples 2025-07-17T06:37:43.5673110Z copying torch/testing/_internal/distributed/rpc/examples/parameter_server_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/examples 2025-07-17T06:37:43.5681200Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_passes 2025-07-17T06:37:43.5681640Z copying torch/jit/_passes/_property_propagation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_passes 2025-07-17T06:37:43.5693540Z copying torch/jit/_passes/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_passes 2025-07-17T06:37:43.5694700Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/jit/mobile 2025-07-17T06:37:43.5695190Z copying torch/jit/mobile/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit/mobile 2025-07-17T06:37:43.5704810Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-07-17T06:37:43.5705260Z copying torch/_dynamo/backends/registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-07-17T06:37:43.5712950Z copying torch/_dynamo/backends/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-07-17T06:37:43.5713620Z copying torch/_dynamo/backends/debugging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-07-17T06:37:43.5721310Z copying torch/_dynamo/backends/distributed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-07-17T06:37:43.5739100Z copying torch/_dynamo/backends/common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-07-17T06:37:43.5747690Z copying torch/_dynamo/backends/inductor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-07-17T06:37:43.5759680Z copying torch/_dynamo/backends/onnxrt.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-07-17T06:37:43.5766040Z copying torch/_dynamo/backends/tvm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-07-17T06:37:43.5774480Z copying torch/_dynamo/backends/cudagraphs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-07-17T06:37:43.5780380Z copying torch/_dynamo/backends/tensorrt.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-07-17T06:37:43.5786550Z copying torch/_dynamo/backends/torchxla.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-07-17T06:37:43.5794380Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-07-17T06:37:43.5794830Z copying torch/_dynamo/variables/functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-07-17T06:37:43.5828310Z copying torch/_dynamo/variables/iter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-07-17T06:37:43.5848190Z copying torch/_dynamo/variables/misc.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-07-17T06:37:43.5874610Z copying torch/_dynamo/variables/lists.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-07-17T06:37:43.5887080Z copying torch/_dynamo/variables/script_object.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-07-17T06:37:43.5893860Z copying torch/_dynamo/variables/torch_function.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-07-17T06:37:43.5906840Z copying torch/_dynamo/variables/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-07-17T06:37:43.5913690Z copying torch/_dynamo/variables/user_defined.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-07-17T06:37:43.5938510Z copying torch/_dynamo/variables/nn_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-07-17T06:37:43.5959590Z copying torch/_dynamo/variables/builder.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-07-17T06:37:43.5997640Z copying torch/_dynamo/variables/tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-07-17T06:37:43.6024110Z copying torch/_dynamo/variables/higher_order_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-07-17T06:37:43.6056040Z copying torch/_dynamo/variables/sdpa.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-07-17T06:37:43.6062730Z copying torch/_dynamo/variables/distributed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-07-17T06:37:43.6072270Z copying torch/_dynamo/variables/optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-07-17T06:37:43.6086370Z copying torch/_dynamo/variables/builtin.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-07-17T06:37:43.6112340Z copying torch/_dynamo/variables/constant.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-07-17T06:37:43.6119610Z copying torch/_dynamo/variables/lazy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-07-17T06:37:43.6126500Z copying torch/_dynamo/variables/torch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-07-17T06:37:43.6150790Z copying torch/_dynamo/variables/ctx_manager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-07-17T06:37:43.6169900Z copying torch/_dynamo/variables/dicts.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-07-17T06:37:43.6196190Z copying torch/_dynamo/variables/base.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-07-17T06:37:43.6210060Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/repro 2025-07-17T06:37:43.6210480Z copying torch/_dynamo/repro/after_dynamo.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/repro 2025-07-17T06:37:43.6225490Z copying torch/_dynamo/repro/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/repro 2025-07-17T06:37:43.6226110Z copying torch/_dynamo/repro/after_aot.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/repro 2025-07-17T06:37:43.6239620Z copying torch/_dynamo/repro/aoti.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/repro 2025-07-17T06:37:43.6253990Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-07-17T06:37:43.6254440Z copying torch/_dynamo/polyfills/functools.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-07-17T06:37:43.6260030Z copying torch/_dynamo/polyfills/builtins.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-07-17T06:37:43.6265880Z copying torch/_dynamo/polyfills/operator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-07-17T06:37:43.6271660Z copying torch/_dynamo/polyfills/os.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-07-17T06:37:43.6277950Z copying torch/_dynamo/polyfills/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-07-17T06:37:43.6285060Z copying torch/_dynamo/polyfills/tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-07-17T06:37:43.6291590Z copying torch/_dynamo/polyfills/loader.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-07-17T06:37:43.6297850Z copying torch/_dynamo/polyfills/fx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-07-17T06:37:43.6304010Z copying torch/_dynamo/polyfills/sys.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-07-17T06:37:43.6310070Z copying torch/_dynamo/polyfills/pytree.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-07-17T06:37:43.6316420Z copying torch/_dynamo/polyfills/itertools.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-07-17T06:37:43.6323880Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn 2025-07-17T06:37:43.6324280Z copying torch/ao/nn/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn 2025-07-17T06:37:43.6331240Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns 2025-07-17T06:37:43.6331670Z copying torch/ao/ns/_numeric_suite.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns 2025-07-17T06:37:43.6345630Z copying torch/ao/ns/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns 2025-07-17T06:37:43.6346300Z copying torch/ao/ns/_numeric_suite_fx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns 2025-07-17T06:37:43.6375920Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-07-17T06:37:43.6376370Z copying torch/ao/quantization/observer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-07-17T06:37:43.6399440Z copying torch/ao/quantization/fuse_modules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-07-17T06:37:43.6411910Z copying torch/ao/quantization/_learnable_fake_quantize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-07-17T06:37:43.6421820Z copying torch/ao/quantization/quantization_mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-07-17T06:37:43.6429220Z copying torch/ao/quantization/_correct_bias.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-07-17T06:37:43.6435820Z copying torch/ao/quantization/quantize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-07-17T06:37:43.6449280Z copying torch/ao/quantization/_equalize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-07-17T06:37:43.6456890Z copying torch/ao/quantization/fake_quantize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-07-17T06:37:43.6468890Z copying torch/ao/quantization/qconfig.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-07-17T06:37:43.6482780Z copying torch/ao/quantization/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-07-17T06:37:43.6489510Z copying torch/ao/quantization/qconfig_mapping.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-07-17T06:37:43.6497210Z copying torch/ao/quantization/stubs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-07-17T06:37:43.6503050Z copying torch/ao/quantization/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-07-17T06:37:43.6516010Z copying torch/ao/quantization/fuser_method_mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-07-17T06:37:43.6523370Z copying torch/ao/quantization/quantize_jit.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-07-17T06:37:43.6531180Z copying torch/ao/quantization/quantize_pt2e.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-07-17T06:37:43.6537430Z copying torch/ao/quantization/quant_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-07-17T06:37:43.6543490Z copying torch/ao/quantization/quantize_fx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-07-17T06:37:43.6566650Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning 2025-07-17T06:37:43.6567040Z copying torch/ao/pruning/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning 2025-07-17T06:37:43.6575980Z copying torch/ao/pruning/_mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning 2025-07-17T06:37:43.6582450Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat 2025-07-17T06:37:43.6582840Z copying torch/ao/nn/qat/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat 2025-07-17T06:37:43.6590050Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized 2025-07-17T06:37:43.6590500Z copying torch/ao/nn/quantized/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized 2025-07-17T06:37:43.6597310Z copying torch/ao/nn/quantized/functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized 2025-07-17T06:37:43.6611420Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable 2025-07-17T06:37:43.6611880Z copying torch/ao/nn/quantizable/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable 2025-07-17T06:37:43.6619140Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic 2025-07-17T06:37:43.6619630Z copying torch/ao/nn/intrinsic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic 2025-07-17T06:37:43.6626550Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse 2025-07-17T06:37:43.6626960Z copying torch/ao/nn/sparse/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse 2025-07-17T06:37:43.6633730Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/dynamic 2025-07-17T06:37:43.6634170Z copying torch/ao/nn/qat/dynamic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/dynamic 2025-07-17T06:37:43.6641560Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/modules 2025-07-17T06:37:43.6642510Z copying torch/ao/nn/qat/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/modules 2025-07-17T06:37:43.6648660Z copying torch/ao/nn/qat/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/modules 2025-07-17T06:37:43.6662550Z copying torch/ao/nn/qat/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/modules 2025-07-17T06:37:43.6669500Z copying torch/ao/nn/qat/modules/embedding_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/modules 2025-07-17T06:37:43.6677040Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/dynamic/modules 2025-07-17T06:37:43.6677550Z copying torch/ao/nn/qat/dynamic/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/dynamic/modules 2025-07-17T06:37:43.6691850Z copying torch/ao/nn/qat/dynamic/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/dynamic/modules 2025-07-17T06:37:43.6705770Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic 2025-07-17T06:37:43.6706270Z copying torch/ao/nn/quantized/dynamic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic 2025-07-17T06:37:43.6715810Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-07-17T06:37:43.6716320Z copying torch/ao/nn/quantized/modules/batchnorm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-07-17T06:37:43.6723900Z copying torch/ao/nn/quantized/modules/functional_modules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-07-17T06:37:43.6738250Z copying torch/ao/nn/quantized/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-07-17T06:37:43.6746410Z copying torch/ao/nn/quantized/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-07-17T06:37:43.6754600Z copying torch/ao/nn/quantized/modules/activation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-07-17T06:37:43.6762850Z copying torch/ao/nn/quantized/modules/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-07-17T06:37:43.6769980Z copying torch/ao/nn/quantized/modules/dropout.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-07-17T06:37:43.6777100Z copying torch/ao/nn/quantized/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-07-17T06:37:43.6791710Z copying torch/ao/nn/quantized/modules/normalization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-07-17T06:37:43.6799140Z copying torch/ao/nn/quantized/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-07-17T06:37:43.6806180Z copying torch/ao/nn/quantized/modules/embedding_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-07-17T06:37:43.6824830Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference 2025-07-17T06:37:43.6825340Z copying torch/ao/nn/quantized/reference/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference 2025-07-17T06:37:43.6840540Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic/modules 2025-07-17T06:37:43.6841170Z copying torch/ao/nn/quantized/dynamic/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic/modules 2025-07-17T06:37:43.6849070Z copying torch/ao/nn/quantized/dynamic/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic/modules 2025-07-17T06:37:43.6856800Z copying torch/ao/nn/quantized/dynamic/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic/modules 2025-07-17T06:37:43.6875410Z copying torch/ao/nn/quantized/dynamic/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic/modules 2025-07-17T06:37:43.6897610Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules 2025-07-17T06:37:43.6898230Z copying torch/ao/nn/quantized/reference/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules 2025-07-17T06:37:43.6905760Z copying torch/ao/nn/quantized/reference/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules 2025-07-17T06:37:43.6913020Z copying torch/ao/nn/quantized/reference/modules/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules 2025-07-17T06:37:43.6923170Z copying torch/ao/nn/quantized/reference/modules/sparse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules 2025-07-17T06:37:43.6931540Z copying torch/ao/nn/quantized/reference/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules 2025-07-17T06:37:43.6938420Z copying torch/ao/nn/quantized/reference/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules 2025-07-17T06:37:43.6954120Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable/modules 2025-07-17T06:37:43.6954630Z copying torch/ao/nn/quantizable/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable/modules 2025-07-17T06:37:43.6967490Z copying torch/ao/nn/quantizable/modules/activation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable/modules 2025-07-17T06:37:43.6982140Z copying torch/ao/nn/quantizable/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable/modules 2025-07-17T06:37:43.6997840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat 2025-07-17T06:37:43.6998310Z copying torch/ao/nn/intrinsic/qat/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat 2025-07-17T06:37:43.7008150Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized 2025-07-17T06:37:43.7008660Z copying torch/ao/nn/intrinsic/quantized/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized 2025-07-17T06:37:43.7016250Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/modules 2025-07-17T06:37:43.7016740Z copying torch/ao/nn/intrinsic/modules/fused.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/modules 2025-07-17T06:37:43.7024990Z copying torch/ao/nn/intrinsic/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/modules 2025-07-17T06:37:43.7032820Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat/modules 2025-07-17T06:37:43.7033360Z copying torch/ao/nn/intrinsic/qat/modules/conv_fused.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat/modules 2025-07-17T06:37:43.7047940Z copying torch/ao/nn/intrinsic/qat/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat/modules 2025-07-17T06:37:43.7061070Z copying torch/ao/nn/intrinsic/qat/modules/linear_relu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat/modules 2025-07-17T06:37:43.7068540Z copying torch/ao/nn/intrinsic/qat/modules/linear_fused.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat/modules 2025-07-17T06:37:43.7075960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/dynamic 2025-07-17T06:37:43.7076530Z copying torch/ao/nn/intrinsic/quantized/dynamic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/dynamic 2025-07-17T06:37:43.7090620Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/modules 2025-07-17T06:37:43.7091190Z copying torch/ao/nn/intrinsic/quantized/modules/bn_relu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/modules 2025-07-17T06:37:43.7099020Z copying torch/ao/nn/intrinsic/quantized/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/modules 2025-07-17T06:37:43.7113460Z copying torch/ao/nn/intrinsic/quantized/modules/conv_relu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/modules 2025-07-17T06:37:43.7120950Z copying torch/ao/nn/intrinsic/quantized/modules/linear_relu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/modules 2025-07-17T06:37:43.7128100Z copying torch/ao/nn/intrinsic/quantized/modules/conv_add.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/modules 2025-07-17T06:37:43.7136290Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/dynamic/modules 2025-07-17T06:37:43.7137030Z copying torch/ao/nn/intrinsic/quantized/dynamic/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/dynamic/modules 2025-07-17T06:37:43.7150680Z copying torch/ao/nn/intrinsic/quantized/dynamic/modules/linear_relu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/dynamic/modules 2025-07-17T06:37:43.7165490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized 2025-07-17T06:37:43.7165990Z copying torch/ao/nn/sparse/quantized/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized 2025-07-17T06:37:43.7175030Z copying torch/ao/nn/sparse/quantized/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized 2025-07-17T06:37:43.7182170Z copying torch/ao/nn/sparse/quantized/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized 2025-07-17T06:37:43.7189460Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized/dynamic 2025-07-17T06:37:43.7190020Z copying torch/ao/nn/sparse/quantized/dynamic/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized/dynamic 2025-07-17T06:37:43.7197510Z copying torch/ao/nn/sparse/quantized/dynamic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized/dynamic 2025-07-17T06:37:43.7215840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-07-17T06:37:43.7216230Z copying torch/ao/ns/fx/graph_passes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-07-17T06:37:43.7237110Z copying torch/ao/ns/fx/weight_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-07-17T06:37:43.7243810Z copying torch/ao/ns/fx/graph_matcher.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-07-17T06:37:43.7262890Z copying torch/ao/ns/fx/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-07-17T06:37:43.7263480Z copying torch/ao/ns/fx/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-07-17T06:37:43.7276770Z copying torch/ao/ns/fx/pattern_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-07-17T06:37:43.7284250Z copying torch/ao/ns/fx/ns_types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-07-17T06:37:43.7296910Z copying torch/ao/ns/fx/n_shadows_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-07-17T06:37:43.7318370Z copying torch/ao/ns/fx/mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-07-17T06:37:43.7331970Z copying torch/ao/ns/fx/qconfig_multi_mapping.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-07-17T06:37:43.7340900Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-07-17T06:37:43.7341560Z copying torch/ao/quantization/backend_config/_common_operator_config_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-07-17T06:37:43.7355200Z copying torch/ao/quantization/backend_config/qnnpack.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-07-17T06:37:43.7362490Z copying torch/ao/quantization/backend_config/fbgemm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-07-17T06:37:43.7375520Z copying torch/ao/quantization/backend_config/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-07-17T06:37:43.7383530Z copying torch/ao/quantization/backend_config/native.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-07-17T06:37:43.7390680Z copying torch/ao/quantization/backend_config/observation_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-07-17T06:37:43.7391370Z copying torch/ao/quantization/backend_config/onednn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-07-17T06:37:43.7405500Z copying torch/ao/quantization/backend_config/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-07-17T06:37:43.7412550Z copying torch/ao/quantization/backend_config/_qnnpack_pt2e.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-07-17T06:37:43.7423800Z copying torch/ao/quantization/backend_config/executorch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-07-17T06:37:43.7438430Z copying torch/ao/quantization/backend_config/backend_config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-07-17T06:37:43.7452000Z copying torch/ao/quantization/backend_config/x86.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-07-17T06:37:43.7464180Z copying torch/ao/quantization/backend_config/tensorrt.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-07-17T06:37:43.7478230Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-07-17T06:37:43.7478760Z copying torch/ao/quantization/pt2e/port_metadata_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-07-17T06:37:43.7485910Z copying torch/ao/quantization/pt2e/export_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-07-17T06:37:43.7492590Z copying torch/ao/quantization/pt2e/qat_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-07-17T06:37:43.7507460Z copying torch/ao/quantization/pt2e/duplicate_dq_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-07-17T06:37:43.7513860Z copying torch/ao/quantization/pt2e/lowering.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-07-17T06:37:43.7528340Z copying torch/ao/quantization/pt2e/graph_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-07-17T06:37:43.7535620Z copying torch/ao/quantization/pt2e/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-07-17T06:37:43.7536190Z copying torch/ao/quantization/pt2e/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-07-17T06:37:43.7549890Z copying torch/ao/quantization/pt2e/_affine_quantization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-07-17T06:37:43.7564960Z copying torch/ao/quantization/pt2e/prepare.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-07-17T06:37:43.7580100Z copying torch/ao/quantization/pt2e/_numeric_debugger.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-07-17T06:37:43.7589850Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-07-17T06:37:43.7590410Z copying torch/ao/quantization/fx/graph_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-07-17T06:37:43.7603340Z copying torch/ao/quantization/fx/lower_to_fbgemm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-07-17T06:37:43.7610200Z copying torch/ao/quantization/fx/_equalize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-07-17T06:37:43.7630920Z copying torch/ao/quantization/fx/lower_to_qnnpack.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-07-17T06:37:43.7644140Z copying torch/ao/quantization/fx/convert.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-07-17T06:37:43.7667860Z copying torch/ao/quantization/fx/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-07-17T06:37:43.7675420Z copying torch/ao/quantization/fx/quantize_handler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-07-17T06:37:43.7682880Z copying torch/ao/quantization/fx/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-07-17T06:37:43.7697920Z copying torch/ao/quantization/fx/pattern_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-07-17T06:37:43.7705530Z copying torch/ao/quantization/fx/_lower_to_native_backend.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-07-17T06:37:43.7726160Z copying torch/ao/quantization/fx/custom_config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-07-17T06:37:43.7740370Z copying torch/ao/quantization/fx/fuse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-07-17T06:37:43.7753520Z copying torch/ao/quantization/fx/qconfig_mapping_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-07-17T06:37:43.7761600Z copying torch/ao/quantization/fx/match_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-07-17T06:37:43.7770590Z copying torch/ao/quantization/fx/prepare.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-07-17T06:37:43.7802650Z copying torch/ao/quantization/fx/tracer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-07-17T06:37:43.7809050Z copying torch/ao/quantization/fx/_decomposed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-07-17T06:37:43.7823970Z copying torch/ao/quantization/fx/fuse_handler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-07-17T06:37:43.7831180Z copying torch/ao/quantization/fx/lstm_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-07-17T06:37:43.7840090Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-07-17T06:37:43.7840640Z copying torch/ao/quantization/quantizer/embedding_quantizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-07-17T06:37:43.7846870Z copying torch/ao/quantization/quantizer/x86_inductor_quantizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-07-17T06:37:43.7870090Z copying torch/ao/quantization/quantizer/xnnpack_quantizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-07-17T06:37:43.7877530Z copying torch/ao/quantization/quantizer/composable_quantizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-07-17T06:37:43.7883630Z copying torch/ao/quantization/quantizer/xpu_inductor_quantizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-07-17T06:37:43.7889780Z copying torch/ao/quantization/quantizer/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-07-17T06:37:43.7896040Z copying torch/ao/quantization/quantizer/quantizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-07-17T06:37:43.7902490Z copying torch/ao/quantization/quantizer/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-07-17T06:37:43.7915700Z copying torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-07-17T06:37:43.7933520Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/representation 2025-07-17T06:37:43.7934120Z copying torch/ao/quantization/pt2e/representation/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/representation 2025-07-17T06:37:43.7942920Z copying torch/ao/quantization/pt2e/representation/rewrite.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/representation 2025-07-17T06:37:43.7956530Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_model_report 2025-07-17T06:37:43.7957090Z copying torch/ao/quantization/fx/_model_report/detector.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_model_report 2025-07-17T06:37:43.7979690Z copying torch/ao/quantization/fx/_model_report/model_report_visualizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_model_report 2025-07-17T06:37:43.7993590Z copying torch/ao/quantization/fx/_model_report/model_report_observer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_model_report 2025-07-17T06:37:43.8001210Z copying torch/ao/quantization/fx/_model_report/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_model_report 2025-07-17T06:37:43.8001900Z copying torch/ao/quantization/fx/_model_report/model_report.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_model_report 2025-07-17T06:37:43.8018000Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier 2025-07-17T06:37:43.8018630Z copying torch/ao/pruning/sparsifier/weight_norm_sparsifier.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier 2025-07-17T06:37:43.8033570Z copying torch/ao/pruning/sparsifier/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier 2025-07-17T06:37:43.8034170Z copying torch/ao/pruning/sparsifier/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier 2025-07-17T06:37:43.8045610Z copying torch/ao/pruning/sparsifier/nearly_diagonal_sparsifier.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier 2025-07-17T06:37:43.8057750Z copying torch/ao/pruning/sparsifier/base_sparsifier.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier 2025-07-17T06:37:43.8060100Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental 2025-07-17T06:37:43.8060610Z copying torch/ao/pruning/_experimental/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental 2025-07-17T06:37:43.8062110Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/scheduler 2025-07-17T06:37:43.8062800Z copying torch/ao/pruning/scheduler/base_scheduler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/scheduler 2025-07-17T06:37:43.8071430Z copying torch/ao/pruning/scheduler/cubic_scheduler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/scheduler 2025-07-17T06:37:43.8084960Z copying torch/ao/pruning/scheduler/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/scheduler 2025-07-17T06:37:43.8085550Z copying torch/ao/pruning/scheduler/lambda_scheduler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/scheduler 2025-07-17T06:37:43.8092620Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier 2025-07-17T06:37:43.8093280Z copying torch/ao/pruning/_experimental/data_sparsifier/base_data_sparsifier.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier 2025-07-17T06:37:43.8101270Z copying torch/ao/pruning/_experimental/data_sparsifier/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier 2025-07-17T06:37:43.8107990Z copying torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier 2025-07-17T06:37:43.8114780Z copying torch/ao/pruning/_experimental/data_sparsifier/quantization_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier 2025-07-17T06:37:43.8122160Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-07-17T06:37:43.8122720Z copying torch/ao/pruning/_experimental/pruner/FPGM_pruner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-07-17T06:37:43.8129860Z copying torch/ao/pruning/_experimental/pruner/saliency_pruner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-07-17T06:37:43.8135650Z copying torch/ao/pruning/_experimental/pruner/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-07-17T06:37:43.8142680Z copying torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-07-17T06:37:43.8149600Z copying torch/ao/pruning/_experimental/pruner/prune_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-07-17T06:37:43.8162950Z copying torch/ao/pruning/_experimental/pruner/lstm_saliency_pruner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-07-17T06:37:43.8170020Z copying torch/ao/pruning/_experimental/pruner/parametrization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-07-17T06:37:43.8176860Z copying torch/ao/pruning/_experimental/pruner/match_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-07-17T06:37:43.8189880Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/activation_sparsifier 2025-07-17T06:37:43.8190600Z copying torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/activation_sparsifier 2025-07-17T06:37:43.8203190Z copying torch/ao/pruning/_experimental/activation_sparsifier/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/activation_sparsifier 2025-07-17T06:37:43.8204400Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_scheduler 2025-07-17T06:37:43.8205020Z copying torch/ao/pruning/_experimental/data_scheduler/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_scheduler 2025-07-17T06:37:43.8218010Z copying torch/ao/pruning/_experimental/data_scheduler/base_data_scheduler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_scheduler 2025-07-17T06:37:43.8225940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/lightning 2025-07-17T06:37:43.8226630Z copying torch/ao/pruning/_experimental/data_sparsifier/lightning/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/lightning 2025-07-17T06:37:43.8228090Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks 2025-07-17T06:37:43.8228900Z copying torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/data_sparsity.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks 2025-07-17T06:37:43.8236450Z copying torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks 2025-07-17T06:37:43.8237520Z copying torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/_data_sparstity_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks 2025-07-17T06:37:43.8244630Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/linalg 2025-07-17T06:37:43.8245050Z copying torch/_refs/linalg/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/linalg 2025-07-17T06:37:43.8252420Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/nn 2025-07-17T06:37:43.8252790Z copying torch/_refs/nn/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/nn 2025-07-17T06:37:43.8268180Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/special 2025-07-17T06:37:43.8268600Z copying torch/_refs/special/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/special 2025-07-17T06:37:43.8275730Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/nn/functional 2025-07-17T06:37:43.8276190Z copying torch/_refs/nn/functional/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/nn/functional 2025-07-17T06:37:43.8291330Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/export/experimental 2025-07-17T06:37:43.8291790Z copying torch/export/experimental/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export/experimental 2025-07-17T06:37:43.8299600Z copying torch/export/experimental/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export/experimental 2025-07-17T06:37:43.8307180Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/export/passes 2025-07-17T06:37:43.8307590Z copying torch/export/passes/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export/passes 2025-07-17T06:37:43.8317340Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/export/pt2_archive 2025-07-17T06:37:43.8317790Z copying torch/export/pt2_archive/_package.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export/pt2_archive 2025-07-17T06:37:43.8334240Z copying torch/export/pt2_archive/_package_weights.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export/pt2_archive 2025-07-17T06:37:43.8342380Z copying torch/export/pt2_archive/constants.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export/pt2_archive 2025-07-17T06:37:43.8350830Z copying torch/export/pt2_archive/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export/pt2_archive 2025-07-17T06:37:43.8360510Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal 2025-07-17T06:37:43.8360960Z copying torch/nested/_internal/nested_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal 2025-07-17T06:37:43.8376430Z copying torch/nested/_internal/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal 2025-07-17T06:37:43.8377000Z copying torch/nested/_internal/ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal 2025-07-17T06:37:43.8406300Z copying torch/nested/_internal/sdpa.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal 2025-07-17T06:37:43.8420990Z copying torch/nested/_internal/nested_int.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal 2025-07-17T06:37:43.8435580Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/signal/windows 2025-07-17T06:37:43.8436020Z copying torch/signal/windows/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/signal/windows 2025-07-17T06:37:43.8450160Z copying torch/signal/windows/windows.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/signal/windows 2025-07-17T06:37:43.8465120Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/package/analyze 2025-07-17T06:37:43.8465590Z copying torch/package/analyze/trace_dependencies.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package/analyze 2025-07-17T06:37:43.8474010Z copying torch/package/analyze/find_first_use_of_broken_modules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package/analyze 2025-07-17T06:37:43.8481870Z copying torch/package/analyze/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package/analyze 2025-07-17T06:37:43.8489020Z copying torch/package/analyze/is_from_package.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package/analyze 2025-07-17T06:37:43.8496700Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/selective_build 2025-07-17T06:37:43.8497160Z copying torchgen/selective_build/selector.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/selective_build 2025-07-17T06:37:43.8498360Z copying torchgen/selective_build/operator.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/selective_build 2025-07-17T06:37:43.8499390Z copying torchgen/selective_build/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/selective_build 2025-07-17T06:37:43.8501430Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/static_runtime 2025-07-17T06:37:43.8501870Z copying torchgen/static_runtime/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/static_runtime 2025-07-17T06:37:43.8509850Z copying torchgen/static_runtime/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/static_runtime 2025-07-17T06:37:43.8510410Z copying torchgen/static_runtime/generator.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/static_runtime 2025-07-17T06:37:43.8526820Z copying torchgen/static_runtime/gen_static_runtime_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/static_runtime 2025-07-17T06:37:43.8535860Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/operator_versions 2025-07-17T06:37:43.8536340Z copying torchgen/operator_versions/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/operator_versions 2025-07-17T06:37:43.8537110Z copying torchgen/operator_versions/gen_mobile_upgraders_constant.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/operator_versions 2025-07-17T06:37:43.8546280Z copying torchgen/operator_versions/gen_mobile_upgraders.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/operator_versions 2025-07-17T06:37:43.8561900Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest 2025-07-17T06:37:43.8562340Z copying torchgen/dest/lazy_ts_lowering.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest 2025-07-17T06:37:43.8563520Z copying torchgen/dest/ufunc.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest 2025-07-17T06:37:43.8565030Z copying torchgen/dest/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest 2025-07-17T06:37:43.8565940Z copying torchgen/dest/native_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest 2025-07-17T06:37:43.8566990Z copying torchgen/dest/lazy_ir.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest 2025-07-17T06:37:43.8568380Z copying torchgen/dest/register_dispatch_key.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest 2025-07-17T06:37:43.8584650Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-07-17T06:37:43.8585020Z copying torchgen/api/dispatcher.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-07-17T06:37:43.8586130Z copying torchgen/api/translate.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-07-17T06:37:43.8587460Z copying torchgen/api/ufunc.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-07-17T06:37:43.8588530Z copying torchgen/api/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-07-17T06:37:43.8589380Z copying torchgen/api/native.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-07-17T06:37:43.8590470Z copying torchgen/api/cpp.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-07-17T06:37:43.8591750Z copying torchgen/api/unboxing.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-07-17T06:37:43.8605470Z copying torchgen/api/functionalization.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-07-17T06:37:43.8606230Z copying torchgen/api/autograd.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-07-17T06:37:43.8607610Z copying torchgen/api/structured.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-07-17T06:37:43.8608700Z copying torchgen/api/python.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-07-17T06:37:43.8610180Z copying torchgen/api/lazy.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-07-17T06:37:43.8611280Z copying torchgen/api/meta.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-07-17T06:37:43.8619820Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/aoti 2025-07-17T06:37:43.8620190Z copying torchgen/aoti/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/aoti 2025-07-17T06:37:43.8621010Z copying torchgen/aoti/fallback_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/aoti 2025-07-17T06:37:43.8623890Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/types 2025-07-17T06:37:43.8624310Z copying torchgen/api/types/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/types 2025-07-17T06:37:43.8632510Z copying torchgen/api/types/types.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/types 2025-07-17T06:37:43.8633710Z copying torchgen/api/types/signatures.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/types 2025-07-17T06:37:43.8635090Z copying torchgen/api/types/types_base.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/types 2025-07-17T06:37:43.8637460Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/experimental 2025-07-17T06:37:43.8637920Z copying functorch/experimental/control_flow.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/experimental 2025-07-17T06:37:43.8662160Z copying functorch/experimental/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/experimental 2025-07-17T06:37:43.8674750Z copying functorch/experimental/ops.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/experimental 2025-07-17T06:37:43.8685370Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/_src 2025-07-17T06:37:43.8685760Z copying functorch/_src/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/_src 2025-07-17T06:37:43.8701760Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-07-17T06:37:43.8702180Z copying functorch/dim/magic_trace.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-07-17T06:37:43.8708800Z copying functorch/dim/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-07-17T06:37:43.8715060Z copying functorch/dim/delayed_mul_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-07-17T06:37:43.8721780Z copying functorch/dim/op_properties.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-07-17T06:37:43.8728720Z copying functorch/dim/batch_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-07-17T06:37:43.8734720Z copying functorch/dim/wrap_type.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-07-17T06:37:43.8741720Z copying functorch/dim/reference.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-07-17T06:37:43.8755450Z copying functorch/dim/dim.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-07-17T06:37:43.8764410Z copying functorch/dim/tree_map.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-07-17T06:37:43.8773250Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/compile 2025-07-17T06:37:43.8773650Z copying functorch/compile/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/compile 2025-07-17T06:37:43.8781380Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/einops 2025-07-17T06:37:43.8781780Z copying functorch/einops/_parsing.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/einops 2025-07-17T06:37:43.8788940Z copying functorch/einops/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/einops 2025-07-17T06:37:43.8797460Z copying functorch/einops/rearrange.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/einops 2025-07-17T06:37:43.8805680Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/make_functional 2025-07-17T06:37:43.8806170Z copying functorch/_src/make_functional/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/make_functional 2025-07-17T06:37:43.8812790Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/eager_transforms 2025-07-17T06:37:43.8813360Z copying functorch/_src/eager_transforms/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/eager_transforms 2025-07-17T06:37:43.8819900Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/aot_autograd 2025-07-17T06:37:43.8820360Z copying functorch/_src/aot_autograd/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/aot_autograd 2025-07-17T06:37:43.8827210Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/vmap 2025-07-17T06:37:43.8827620Z copying functorch/_src/vmap/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/vmap 2025-07-17T06:37:44.1805740Z copying torch/return_types.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:44.1807940Z copying torch/_VF.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:44.1815240Z copying torch/py.typed -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:44.1816210Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/bin 2025-07-17T06:37:44.1816860Z copying torch/bin/protoc-3.13.0.0 -> build/lib.macosx-14.0-arm64-cpython-312/torch/bin 2025-07-17T06:37:44.1998110Z copying torch/bin/torch_shm_manager -> build/lib.macosx-14.0-arm64-cpython-312/torch/bin 2025-07-17T06:37:44.2029310Z copying torch/bin/protoc -> build/lib.macosx-14.0-arm64-cpython-312/torch/bin 2025-07-17T06:37:44.2086350Z copying torch/nn/parameter.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-07-17T06:37:44.2096900Z copying torch/nn/functional.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-07-17T06:37:44.2098280Z copying torch/distributed/optim/zero_redundancy_optimizer.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-07-17T06:37:44.2104790Z copying torch/optim/_multi_tensor/__init__.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim/_multi_tensor 2025-07-17T06:37:44.2110100Z copying torch/utils/_config_typing.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:44.2115280Z copying torch/utils/data/datapipes/datapipe.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-07-17T06:37:44.2116650Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-17T06:37:44.2117230Z copying torch/_C/_profiler.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-17T06:37:44.2124310Z copying torch/_C/_onnx.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-17T06:37:44.2138120Z copying torch/_C/_distributed_c10d.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-17T06:37:44.2149010Z copying torch/_C/_autograd.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-17T06:37:44.2157360Z copying torch/_C/_monitor.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-17T06:37:44.2163680Z copying torch/_C/_itt.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-17T06:37:44.2169020Z copying torch/_C/_lazy.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-17T06:37:44.2174450Z copying torch/_C/__init__.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-17T06:37:44.2177560Z copying torch/_C/_nvtx.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-17T06:37:44.2183520Z copying torch/_C/_cpu.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-17T06:37:44.2188600Z copying torch/_C/_nn.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-17T06:37:44.2189570Z copying torch/_C/_cusparselt.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-17T06:37:44.2194710Z copying torch/_C/_instruction_counter.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-17T06:37:44.2199840Z copying torch/_C/_jit_tree_views.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-17T06:37:44.2205310Z copying torch/_C/_lazy_ts_backend.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-17T06:37:44.2210470Z copying torch/_C/_functorch.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-17T06:37:44.2215560Z copying torch/_C/_VariableFunctions.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-17T06:37:44.2222370Z copying torch/_C/_distributed_rpc.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-17T06:37:44.2239770Z copying torch/_C/_verbose.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-17T06:37:44.2245260Z copying torch/_C/_aoti.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-17T06:37:44.2250830Z copying torch/_C/_functions.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-17T06:37:44.2256840Z copying torch/_C/_distributed_rpc_testing.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-17T06:37:44.2261900Z copying torch/_C/_cudnn.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-17T06:37:44.2267410Z copying torch/_C/_distributed_autograd.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-17T06:37:44.2272340Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_export 2025-07-17T06:37:44.2272770Z copying torch/_C/_export/__init__.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_export 2025-07-17T06:37:44.2279040Z copying torch/_C/_export/pt2_archive_constants.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_export 2025-07-17T06:37:44.2284300Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_dynamo 2025-07-17T06:37:44.2284720Z copying torch/_C/_dynamo/__init__.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_dynamo 2025-07-17T06:37:44.2291090Z copying torch/_C/_dynamo/compiled_autograd.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_dynamo 2025-07-17T06:37:44.2297380Z copying torch/_C/_dynamo/guards.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_dynamo 2025-07-17T06:37:44.2303000Z copying torch/_C/_dynamo/eval_frame.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_dynamo 2025-07-17T06:37:44.2309200Z copying torch/jit/_script.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-17T06:37:44.2315880Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_C_flatbuffer 2025-07-17T06:37:44.2316300Z copying torch/_C_flatbuffer/__init__.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C_flatbuffer 2025-07-17T06:37:44.2323330Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-07-17T06:37:44.2323680Z copying torch/lib/libshm.dylib -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-07-17T06:37:44.2347680Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm_windows 2025-07-17T06:37:44.2348130Z copying torch/lib/libshm_windows/libshm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm_windows 2025-07-17T06:37:44.2354530Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm 2025-07-17T06:37:44.2354920Z copying torch/lib/libshm/err.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm 2025-07-17T06:37:44.2356040Z copying torch/lib/libshm/libshm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm 2025-07-17T06:37:44.2357340Z copying torch/lib/libshm/socket.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm 2025-07-17T06:37:44.2358520Z copying torch/lib/libshm/alloc_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm 2025-07-17T06:37:44.2359800Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-07-17T06:37:44.2360440Z copying torch/include/sleef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-07-17T06:37:44.2362870Z copying torch/include/cpuinfo.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-07-17T06:37:44.2364240Z copying torch/include/nnpack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-07-17T06:37:44.2365650Z copying torch/include/xnnpack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-07-17T06:37:44.2368170Z copying torch/include/libshm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-07-17T06:37:44.2369050Z copying torch/include/fp16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-07-17T06:37:44.2370430Z copying torch/include/qnnpack_func.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-07-17T06:37:44.2371550Z copying torch/include/pthreadpool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-07-17T06:37:44.2373430Z copying torch/include/clog.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-07-17T06:37:44.2374990Z copying torch/include/psimd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-07-17T06:37:44.2376470Z copying torch/include/experiments-config.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-07-17T06:37:44.2377770Z copying torch/include/fxdiv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-07-17T06:37:44.2379330Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-07-17T06:37:44.2379840Z copying torch/include/pybind11/attr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-07-17T06:37:44.2381440Z copying torch/include/pybind11/embed.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-07-17T06:37:44.2382810Z copying torch/include/pybind11/numpy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-07-17T06:37:44.2384560Z copying torch/include/pybind11/pybind11.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-07-17T06:37:44.2387090Z copying torch/include/pybind11/operators.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-07-17T06:37:44.2387780Z copying torch/include/pybind11/iostream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-07-17T06:37:44.2389200Z copying torch/include/pybind11/gil.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-07-17T06:37:44.2390430Z copying torch/include/pybind11/chrono.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-07-17T06:37:44.2392060Z copying torch/include/pybind11/typing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-07-17T06:37:44.2393260Z copying torch/include/pybind11/stl_bind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-07-17T06:37:44.2394990Z copying torch/include/pybind11/buffer_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-07-17T06:37:44.2396350Z copying torch/include/pybind11/options.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-07-17T06:37:44.2397780Z copying torch/include/pybind11/functional.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-07-17T06:37:44.2399080Z copying torch/include/pybind11/stl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-07-17T06:37:44.2400680Z copying torch/include/pybind11/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-07-17T06:37:44.2402020Z copying torch/include/pybind11/eval.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-07-17T06:37:44.2403180Z copying torch/include/pybind11/cast.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-07-17T06:37:44.2404980Z copying torch/include/pybind11/type_caster_pyobject_ptr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-07-17T06:37:44.2406480Z copying torch/include/pybind11/eigen.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-07-17T06:37:44.2407780Z copying torch/include/pybind11/gil_safe_call_once.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-07-17T06:37:44.2409030Z copying torch/include/pybind11/pytypes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-07-17T06:37:44.2412260Z copying torch/include/pybind11/complex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-07-17T06:37:44.2413550Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/eigen 2025-07-17T06:37:44.2414220Z copying torch/include/pybind11/eigen/matrix.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/eigen 2025-07-17T06:37:44.2415900Z copying torch/include/pybind11/eigen/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/eigen 2025-07-17T06:37:44.2417190Z copying torch/include/pybind11/eigen/tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/eigen 2025-07-17T06:37:44.2418750Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/stl 2025-07-17T06:37:44.2419410Z copying torch/include/pybind11/stl/filesystem.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/stl 2025-07-17T06:37:44.2420840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-07-17T06:37:44.2421500Z copying torch/include/pybind11/detail/type_caster_base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-07-17T06:37:44.2423270Z copying torch/include/pybind11/detail/exception_translation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-07-17T06:37:44.2424560Z copying torch/include/pybind11/detail/typeid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-07-17T06:37:44.2425740Z copying torch/include/pybind11/detail/descr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-07-17T06:37:44.2427000Z copying torch/include/pybind11/detail/internals.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-07-17T06:37:44.2428610Z copying torch/include/pybind11/detail/cpp_conduit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-07-17T06:37:44.2430010Z copying torch/include/pybind11/detail/value_and_holder.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-07-17T06:37:44.2431280Z copying torch/include/pybind11/detail/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-07-17T06:37:44.2432890Z copying torch/include/pybind11/detail/class.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-07-17T06:37:44.2434430Z copying torch/include/pybind11/detail/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-07-17T06:37:44.2435980Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-07-17T06:37:44.2436540Z copying torch/include/fmt/ostream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-07-17T06:37:44.2437800Z copying torch/include/fmt/format-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-07-17T06:37:44.2439530Z copying torch/include/fmt/ranges.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-07-17T06:37:44.2441020Z copying torch/include/fmt/xchar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-07-17T06:37:44.2442510Z copying torch/include/fmt/core.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-07-17T06:37:44.2443690Z copying torch/include/fmt/chrono.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-07-17T06:37:44.2445490Z copying torch/include/fmt/os.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-07-17T06:37:44.2446880Z copying torch/include/fmt/color.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-07-17T06:37:44.2448400Z copying torch/include/fmt/args.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-07-17T06:37:44.2449690Z copying torch/include/fmt/printf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-07-17T06:37:44.2451170Z copying torch/include/fmt/compile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-07-17T06:37:44.2452650Z copying torch/include/fmt/format.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-07-17T06:37:44.2454690Z copying torch/include/fmt/std.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-07-17T06:37:44.2456140Z copying torch/include/fmt/base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-07-17T06:37:44.2458290Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2 2025-07-17T06:37:44.2458790Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/core 2025-07-17T06:37:44.2459280Z copying torch/include/caffe2/core/timer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/core 2025-07-17T06:37:44.2465230Z copying torch/include/caffe2/core/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/core 2025-07-17T06:37:44.2465790Z copying torch/include/caffe2/core/macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/core 2025-07-17T06:37:44.2466260Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/perfkernels 2025-07-17T06:37:44.2466800Z copying torch/include/caffe2/perfkernels/batch_box_cox_vec.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/perfkernels 2025-07-17T06:37:44.2467490Z copying torch/include/caffe2/perfkernels/embedding_lookup_idx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/perfkernels 2025-07-17T06:37:44.2468150Z copying torch/include/caffe2/perfkernels/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/perfkernels 2025-07-17T06:37:44.2468660Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-07-17T06:37:44.2469360Z copying torch/include/caffe2/serialize/in_memory_adapter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-07-17T06:37:44.2470400Z copying torch/include/caffe2/serialize/read_adapter_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-07-17T06:37:44.2471070Z copying torch/include/caffe2/serialize/crc_alt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-07-17T06:37:44.2472770Z copying torch/include/caffe2/serialize/versions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-07-17T06:37:44.2473950Z copying torch/include/caffe2/serialize/inline_container.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-07-17T06:37:44.2475240Z copying torch/include/caffe2/serialize/file_adapter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-07-17T06:37:44.2476530Z copying torch/include/caffe2/serialize/istream_adapter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-07-17T06:37:44.2477810Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils 2025-07-17T06:37:44.2478420Z copying torch/include/caffe2/utils/string_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils 2025-07-17T06:37:44.2479610Z copying torch/include/caffe2/utils/fixed_divisor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils 2025-07-17T06:37:44.2480790Z copying torch/include/caffe2/utils/proto_wrap.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils 2025-07-17T06:37:44.2482140Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool 2025-07-17T06:37:44.2482850Z copying torch/include/caffe2/utils/threadpool/ThreadPool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool 2025-07-17T06:37:44.2484150Z copying torch/include/caffe2/utils/threadpool/ThreadPoolCommon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool 2025-07-17T06:37:44.2485370Z copying torch/include/caffe2/utils/threadpool/pthreadpool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool 2025-07-17T06:37:44.2486620Z copying torch/include/caffe2/utils/threadpool/pthreadpool-cpp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool 2025-07-17T06:37:44.2487930Z copying torch/include/caffe2/utils/threadpool/WorkersPool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool 2025-07-17T06:37:44.2489240Z copying torch/include/caffe2/utils/threadpool/thread_pool_guard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool 2025-07-17T06:37:44.2490460Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google 2025-07-17T06:37:44.2491030Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2491620Z copying torch/include/google/protobuf/source_context.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2493040Z copying torch/include/google/protobuf/repeated_field.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2494800Z copying torch/include/google/protobuf/port.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2495990Z copying torch/include/google/protobuf/wire_format.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2497400Z copying torch/include/google/protobuf/inlined_string_field.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2498690Z copying torch/include/google/protobuf/map.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2500210Z copying torch/include/google/protobuf/arenastring.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2501610Z copying torch/include/google/protobuf/map_entry_lite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2503090Z copying torch/include/google/protobuf/service.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2504600Z copying torch/include/google/protobuf/struct.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2506100Z copying torch/include/google/protobuf/empty.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2507300Z copying torch/include/google/protobuf/descriptor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2509090Z copying torch/include/google/protobuf/message.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2510730Z copying torch/include/google/protobuf/wrappers.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2512360Z copying torch/include/google/protobuf/text_format.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2513730Z copying torch/include/google/protobuf/has_bits.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2514980Z copying torch/include/google/protobuf/arena_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2516330Z copying torch/include/google/protobuf/api.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2517830Z copying torch/include/google/protobuf/metadata.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2519090Z copying torch/include/google/protobuf/extension_set.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2520930Z copying torch/include/google/protobuf/reflection_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2522310Z copying torch/include/google/protobuf/generated_message_table_driven.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2523650Z copying torch/include/google/protobuf/duration.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2525040Z copying torch/include/google/protobuf/generated_message_reflection.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2526580Z copying torch/include/google/protobuf/unknown_field_set.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2528080Z copying torch/include/google/protobuf/type.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2529770Z copying torch/include/google/protobuf/map_field_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2531230Z copying torch/include/google/protobuf/timestamp.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2532620Z copying torch/include/google/protobuf/field_mask.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2539410Z copying torch/include/google/protobuf/descriptor.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2544050Z copying torch/include/google/protobuf/map_entry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2545160Z copying torch/include/google/protobuf/message_lite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2546580Z copying torch/include/google/protobuf/generated_message_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2547960Z copying torch/include/google/protobuf/descriptor_database.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2549350Z copying torch/include/google/protobuf/map_field.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2551010Z copying torch/include/google/protobuf/generated_enum_reflection.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2552260Z copying torch/include/google/protobuf/generated_enum_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2553560Z copying torch/include/google/protobuf/any.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2555130Z copying torch/include/google/protobuf/map_type_handler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2556850Z copying torch/include/google/protobuf/parse_context.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2558340Z copying torch/include/google/protobuf/extension_set_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2559750Z copying torch/include/google/protobuf/map_field_lite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2561280Z copying torch/include/google/protobuf/metadata_lite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2562460Z copying torch/include/google/protobuf/implicit_weak_message.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2563680Z copying torch/include/google/protobuf/arena.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2565030Z copying torch/include/google/protobuf/any.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2566510Z copying torch/include/google/protobuf/reflection.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2567990Z copying torch/include/google/protobuf/dynamic_message.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2569390Z copying torch/include/google/protobuf/wire_format_lite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-17T06:37:44.2571220Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-07-17T06:37:44.2571880Z copying torch/include/google/protobuf/stubs/stringpiece.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-07-17T06:37:44.2573450Z copying torch/include/google/protobuf/stubs/stl_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-07-17T06:37:44.2574780Z copying torch/include/google/protobuf/stubs/port.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-07-17T06:37:44.2576180Z copying torch/include/google/protobuf/stubs/status.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-07-17T06:37:44.2577470Z copying torch/include/google/protobuf/stubs/template_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-07-17T06:37:44.2578800Z copying torch/include/google/protobuf/stubs/map_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-07-17T06:37:44.2580280Z copying torch/include/google/protobuf/stubs/casts.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-07-17T06:37:44.2581460Z copying torch/include/google/protobuf/stubs/logging.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-07-17T06:37:44.2583140Z copying torch/include/google/protobuf/stubs/bytestream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-07-17T06:37:44.2584350Z copying torch/include/google/protobuf/stubs/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-07-17T06:37:44.2585600Z copying torch/include/google/protobuf/stubs/macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-07-17T06:37:44.2586810Z copying torch/include/google/protobuf/stubs/platform_macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-07-17T06:37:44.2588000Z copying torch/include/google/protobuf/stubs/once.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-07-17T06:37:44.2589250Z copying torch/include/google/protobuf/stubs/fastmem.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-07-17T06:37:44.2590550Z copying torch/include/google/protobuf/stubs/mutex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-07-17T06:37:44.2591740Z copying torch/include/google/protobuf/stubs/callback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-07-17T06:37:44.2593270Z copying torch/include/google/protobuf/stubs/strutil.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-07-17T06:37:44.2594750Z copying torch/include/google/protobuf/stubs/hash.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-07-17T06:37:44.2596060Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-07-17T06:37:44.2596720Z copying torch/include/google/protobuf/util/time_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-07-17T06:37:44.2598160Z copying torch/include/google/protobuf/util/field_mask_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-07-17T06:37:44.2599440Z copying torch/include/google/protobuf/util/json_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-07-17T06:37:44.2600910Z copying torch/include/google/protobuf/util/type_resolver.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-07-17T06:37:44.2602250Z copying torch/include/google/protobuf/util/field_comparator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-07-17T06:37:44.2603560Z copying torch/include/google/protobuf/util/type_resolver_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-07-17T06:37:44.2604770Z copying torch/include/google/protobuf/util/message_differencer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-07-17T06:37:44.2606350Z copying torch/include/google/protobuf/util/delimited_message_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-07-17T06:37:44.2607630Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-07-17T06:37:44.2608200Z copying torch/include/google/protobuf/io/zero_copy_stream_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-07-17T06:37:44.2609800Z copying torch/include/google/protobuf/io/printer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-07-17T06:37:44.2611050Z copying torch/include/google/protobuf/io/gzip_stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-07-17T06:37:44.2612400Z copying torch/include/google/protobuf/io/zero_copy_stream_impl_lite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-07-17T06:37:44.2613810Z copying torch/include/google/protobuf/io/strtod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-07-17T06:37:44.2615080Z copying torch/include/google/protobuf/io/tokenizer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-07-17T06:37:44.2616630Z copying torch/include/google/protobuf/io/zero_copy_stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-07-17T06:37:44.2617840Z copying torch/include/google/protobuf/io/io_win32.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-07-17T06:37:44.2619160Z copying torch/include/google/protobuf/io/coded_stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-07-17T06:37:44.2620840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler 2025-07-17T06:37:44.2621430Z copying torch/include/google/protobuf/compiler/code_generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler 2025-07-17T06:37:44.2622800Z copying torch/include/google/protobuf/compiler/plugin.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler 2025-07-17T06:37:44.2624630Z copying torch/include/google/protobuf/compiler/plugin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler 2025-07-17T06:37:44.2625830Z copying torch/include/google/protobuf/compiler/parser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler 2025-07-17T06:37:44.2627330Z copying torch/include/google/protobuf/compiler/command_line_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler 2025-07-17T06:37:44.2628740Z copying torch/include/google/protobuf/compiler/importer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler 2025-07-17T06:37:44.2630150Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/python 2025-07-17T06:37:44.2630800Z copying torch/include/google/protobuf/compiler/python/python_generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/python 2025-07-17T06:37:44.2632010Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/js 2025-07-17T06:37:44.2632640Z copying torch/include/google/protobuf/compiler/js/well_known_types_embed.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/js 2025-07-17T06:37:44.2633910Z copying torch/include/google/protobuf/compiler/js/js_generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/js 2025-07-17T06:37:44.2635620Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/java 2025-07-17T06:37:44.2636300Z copying torch/include/google/protobuf/compiler/java/java_generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/java 2025-07-17T06:37:44.2637090Z copying torch/include/google/protobuf/compiler/java/java_names.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/java 2025-07-17T06:37:44.2638760Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/php 2025-07-17T06:37:44.2639490Z copying torch/include/google/protobuf/compiler/php/php_generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/php 2025-07-17T06:37:44.2640300Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/cpp 2025-07-17T06:37:44.2640980Z copying torch/include/google/protobuf/compiler/cpp/cpp_generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/cpp 2025-07-17T06:37:44.2642100Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/csharp 2025-07-17T06:37:44.2642750Z copying torch/include/google/protobuf/compiler/csharp/csharp_names.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/csharp 2025-07-17T06:37:44.2644050Z copying torch/include/google/protobuf/compiler/csharp/csharp_generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/csharp 2025-07-17T06:37:44.2645310Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/ruby 2025-07-17T06:37:44.2645940Z copying torch/include/google/protobuf/compiler/ruby/ruby_generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/ruby 2025-07-17T06:37:44.2647010Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/objectivec 2025-07-17T06:37:44.2647740Z copying torch/include/google/protobuf/compiler/objectivec/objectivec_helpers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/objectivec 2025-07-17T06:37:44.2649190Z copying torch/include/google/protobuf/compiler/objectivec/objectivec_generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/objectivec 2025-07-17T06:37:44.2650280Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch 2025-07-17T06:37:44.2650880Z copying torch/include/torch/script.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch 2025-07-17T06:37:44.2652240Z copying torch/include/torch/library.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch 2025-07-17T06:37:44.2653550Z copying torch/include/torch/custom_class_detail.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch 2025-07-17T06:37:44.2654710Z copying torch/include/torch/custom_class.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch 2025-07-17T06:37:44.2656100Z copying torch/include/torch/extension.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch 2025-07-17T06:37:44.2657340Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly 2025-07-17T06:37:44.2657810Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/macros 2025-07-17T06:37:44.2658500Z copying torch/include/torch/headeronly/macros/cmake_macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/macros 2025-07-17T06:37:44.2659700Z copying torch/include/torch/headeronly/macros/Export.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/macros 2025-07-17T06:37:44.2660950Z copying torch/include/torch/headeronly/macros/Macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/macros 2025-07-17T06:37:44.2662210Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-17T06:37:44.2663020Z copying torch/include/torch/csrc/Size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-17T06:37:44.2664720Z copying torch/include/torch/csrc/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-17T06:37:44.2666200Z copying torch/include/torch/csrc/DeviceAccelerator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-17T06:37:44.2794300Z copying torch/include/torch/csrc/Export.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-17T06:37:44.2795480Z copying torch/include/torch/csrc/Device.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-17T06:37:44.2796860Z copying torch/include/torch/csrc/THConcat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-17T06:37:44.3314730Z copying torch/include/torch/csrc/Event.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-17T06:37:44.3315890Z copying torch/include/torch/csrc/Types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-17T06:37:44.3317670Z copying torch/include/torch/csrc/serialization.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-17T06:37:44.3318800Z copying torch/include/torch/csrc/Exceptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-17T06:37:44.3320530Z copying torch/include/torch/csrc/itt_wrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-17T06:37:44.3321740Z copying torch/include/torch/csrc/QScheme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-17T06:37:44.3323410Z copying torch/include/torch/csrc/Stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-17T06:37:44.3325010Z copying torch/include/torch/csrc/DataLoader.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-17T06:37:44.3326350Z copying torch/include/torch/csrc/THP.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-17T06:37:44.3327840Z copying torch/include/torch/csrc/python_headers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-17T06:37:44.3329190Z copying torch/include/torch/csrc/Layout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-17T06:37:44.3331020Z copying torch/include/torch/csrc/DynamicTypes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-17T06:37:44.3332220Z copying torch/include/torch/csrc/copy_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-17T06:37:44.3333430Z copying torch/include/torch/csrc/Storage.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-17T06:37:44.3334730Z copying torch/include/torch/csrc/itt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-17T06:37:44.3336050Z copying torch/include/torch/csrc/MemoryFormat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-17T06:37:44.3337380Z copying torch/include/torch/csrc/StorageSharing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-17T06:37:44.3338680Z copying torch/include/torch/csrc/PyInterpreter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-17T06:37:44.3339990Z copying torch/include/torch/csrc/Dtype.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-17T06:37:44.3341330Z copying torch/include/torch/csrc/Module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-17T06:37:44.3342570Z copying torch/include/torch/csrc/python_dimname.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-17T06:37:44.3343890Z copying torch/include/torch/csrc/CudaIPCTypes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-17T06:37:44.3345240Z copying torch/include/torch/csrc/Generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-17T06:37:44.3346510Z copying torch/include/torch/csrc/TypeInfo.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-17T06:37:44.3347770Z copying torch/include/torch/csrc/StorageMethods.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-17T06:37:44.3349350Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable 2025-07-17T06:37:44.3350030Z copying torch/include/torch/csrc/stable/library.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable 2025-07-17T06:37:44.3351530Z copying torch/include/torch/csrc/stable/ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable 2025-07-17T06:37:44.3352860Z copying torch/include/torch/csrc/stable/tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable 2025-07-17T06:37:44.3354310Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor 2025-07-17T06:37:44.3355010Z copying torch/include/torch/csrc/inductor/inductor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor 2025-07-17T06:37:44.3356340Z copying torch/include/torch/csrc/inductor/array_ref_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor 2025-07-17T06:37:44.3357610Z copying torch/include/torch/csrc/inductor/static_cuda_launcher.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor 2025-07-17T06:37:44.3358900Z copying torch/include/torch/csrc/inductor/cpp_prefix.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor 2025-07-17T06:37:44.3360860Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_package 2025-07-17T06:37:44.3361540Z copying torch/include/torch/csrc/inductor/aoti_package/pybind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_package 2025-07-17T06:37:44.3362810Z copying torch/include/torch/csrc/inductor/aoti_package/model_package_loader.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_package 2025-07-17T06:37:44.3364090Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_eager 2025-07-17T06:37:44.3364790Z copying torch/include/torch/csrc/inductor/aoti_eager/kernel_meta_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_eager 2025-07-17T06:37:44.3366250Z copying torch/include/torch/csrc/inductor/aoti_eager/kernel_holder.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_eager 2025-07-17T06:37:44.3367530Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runner 2025-07-17T06:37:44.3368320Z copying torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_mps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runner 2025-07-17T06:37:44.3369650Z copying torch/include/torch/csrc/inductor/aoti_runner/pybind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runner 2025-07-17T06:37:44.3370980Z copying torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runner 2025-07-17T06:37:44.3372350Z copying torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_xpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runner 2025-07-17T06:37:44.3373670Z copying torch/include/torch/csrc/inductor/aoti_runner/model_container_runner.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runner 2025-07-17T06:37:44.3375010Z copying torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cuda.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runner 2025-07-17T06:37:44.3376510Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-17T06:37:44.3377180Z copying torch/include/torch/csrc/inductor/aoti_runtime/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-17T06:37:44.3379050Z copying torch/include/torch/csrc/inductor/aoti_runtime/utils_cuda.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-17T06:37:44.3380250Z copying torch/include/torch/csrc/inductor/aoti_runtime/scalar_to_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-17T06:37:44.3381880Z copying torch/include/torch/csrc/inductor/aoti_runtime/arrayref_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-17T06:37:44.3382940Z copying torch/include/torch/csrc/inductor/aoti_runtime/thread_local.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-17T06:37:44.3384220Z copying torch/include/torch/csrc/inductor/aoti_runtime/interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-17T06:37:44.3385590Z copying torch/include/torch/csrc/inductor/aoti_runtime/constant_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-17T06:37:44.3386950Z copying torch/include/torch/csrc/inductor/aoti_runtime/utils_xpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-17T06:37:44.3388420Z copying torch/include/torch/csrc/inductor/aoti_runtime/sycl_runtime_wrappers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-17T06:37:44.3389800Z copying torch/include/torch/csrc/inductor/aoti_runtime/mini_array_ref.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-17T06:37:44.3390980Z copying torch/include/torch/csrc/inductor/aoti_runtime/model.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-17T06:37:44.3392490Z copying torch/include/torch/csrc/inductor/aoti_runtime/device_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-17T06:37:44.3393840Z copying torch/include/torch/csrc/inductor/aoti_runtime/model_container.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-17T06:37:44.3395450Z copying torch/include/torch/csrc/inductor/aoti_runtime/model_base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-17T06:37:44.3404810Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_include 2025-07-17T06:37:44.3405490Z copying torch/include/torch/csrc/inductor/aoti_include/xpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_include 2025-07-17T06:37:44.3406910Z copying torch/include/torch/csrc/inductor/aoti_include/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_include 2025-07-17T06:37:44.3408420Z copying torch/include/torch/csrc/inductor/aoti_include/cuda.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_include 2025-07-17T06:37:44.3409780Z copying torch/include/torch/csrc/inductor/aoti_include/cpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_include 2025-07-17T06:37:44.3411260Z copying torch/include/torch/csrc/inductor/aoti_include/mps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_include 2025-07-17T06:37:44.3412620Z copying torch/include/torch/csrc/inductor/aoti_include/array_ref.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_include 2025-07-17T06:37:44.3414280Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch 2025-07-17T06:37:44.3414930Z copying torch/include/torch/csrc/inductor/aoti_torch/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch 2025-07-17T06:37:44.3416320Z copying torch/include/torch/csrc/inductor/aoti_torch/proxy_executor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch 2025-07-17T06:37:44.3417540Z copying torch/include/torch/csrc/inductor/aoti_torch/tensor_converter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch 2025-07-17T06:37:44.3418870Z copying torch/include/torch/csrc/inductor/aoti_torch/mkldnn_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch 2025-07-17T06:37:44.3420280Z copying torch/include/torch/csrc/inductor/aoti_torch/oss_proxy_executor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch 2025-07-17T06:37:44.3421690Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-07-17T06:37:44.3422490Z copying torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-07-17T06:37:44.3424160Z copying torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_mps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-07-17T06:37:44.3425670Z copying torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cuda.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-07-17T06:37:44.3427410Z copying torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_xpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-07-17T06:37:44.3428860Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/c 2025-07-17T06:37:44.3429650Z copying torch/include/torch/csrc/inductor/aoti_torch/c/shim_cpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/c 2025-07-17T06:37:44.3430960Z copying torch/include/torch/csrc/inductor/aoti_torch/c/shim_mps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/c 2025-07-17T06:37:44.3432300Z copying torch/include/torch/csrc/inductor/aoti_torch/c/shim_xpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/c 2025-07-17T06:37:44.3433870Z copying torch/include/torch/csrc/inductor/aoti_torch/c/shim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/c 2025-07-17T06:37:44.3435220Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper 2025-07-17T06:37:44.3435910Z copying torch/include/torch/csrc/inductor/cpp_wrapper/xpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper 2025-07-17T06:37:44.3437290Z copying torch/include/torch/csrc/inductor/cpp_wrapper/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper 2025-07-17T06:37:44.3438650Z copying torch/include/torch/csrc/inductor/cpp_wrapper/cuda.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper 2025-07-17T06:37:44.3440010Z copying torch/include/torch/csrc/inductor/cpp_wrapper/cpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper 2025-07-17T06:37:44.3441480Z copying torch/include/torch/csrc/inductor/cpp_wrapper/mps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper 2025-07-17T06:37:44.3442920Z copying torch/include/torch/csrc/inductor/cpp_wrapper/array_ref.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper 2025-07-17T06:37:44.3444450Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal 2025-07-17T06:37:44.3445330Z copying torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/xpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal 2025-07-17T06:37:44.3446790Z copying torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/cuda.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal 2025-07-17T06:37:44.3448220Z copying torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/cpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal 2025-07-17T06:37:44.3449670Z copying torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/mps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal 2025-07-17T06:37:44.3451090Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/monitor 2025-07-17T06:37:44.3451700Z copying torch/include/torch/csrc/monitor/events.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/monitor 2025-07-17T06:37:44.3453090Z copying torch/include/torch/csrc/monitor/counters.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/monitor 2025-07-17T06:37:44.3454560Z copying torch/include/torch/csrc/monitor/python_init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/monitor 2025-07-17T06:37:44.3456020Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/instruction_counter 2025-07-17T06:37:44.3456860Z copying torch/include/torch/csrc/instruction_counter/Module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/instruction_counter 2025-07-17T06:37:44.3458210Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/mps 2025-07-17T06:37:44.3458890Z copying torch/include/torch/csrc/mps/Module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/mps 2025-07-17T06:37:44.3460260Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/onnx 2025-07-17T06:37:44.3461060Z copying torch/include/torch/csrc/onnx/back_compat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/onnx 2025-07-17T06:37:44.3462490Z copying torch/include/torch/csrc/onnx/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/onnx 2025-07-17T06:37:44.3463850Z copying torch/include/torch/csrc/onnx/onnx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/onnx 2025-07-17T06:37:44.3465300Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cpu 2025-07-17T06:37:44.3465950Z copying torch/include/torch/csrc/cpu/Module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cpu 2025-07-17T06:37:44.3467620Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed 2025-07-17T06:37:44.3468150Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd 2025-07-17T06:37:44.3468950Z copying torch/include/torch/csrc/distributed/autograd/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd 2025-07-17T06:37:44.3470480Z copying torch/include/torch/csrc/distributed/autograd/python_autograd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd 2025-07-17T06:37:44.3471870Z copying torch/include/torch/csrc/distributed/autograd/autograd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd 2025-07-17T06:37:44.3473390Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/context 2025-07-17T06:37:44.3474220Z copying torch/include/torch/csrc/distributed/autograd/context/container.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/context 2025-07-17T06:37:44.3475590Z copying torch/include/torch/csrc/distributed/autograd/context/context.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/context 2025-07-17T06:37:44.3477000Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-07-17T06:37:44.3477920Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_req.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-07-17T06:37:44.3479480Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_resp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-07-17T06:37:44.3481130Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_req.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-07-17T06:37:44.3482530Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_req.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-07-17T06:37:44.3490040Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_resp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-07-17T06:37:44.3491220Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_req.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-07-17T06:37:44.3492400Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/autograd_metadata.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-07-17T06:37:44.3493520Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_autograd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-07-17T06:37:44.3494640Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_resp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-07-17T06:37:44.3495890Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_resp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-07-17T06:37:44.3496760Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/functions 2025-07-17T06:37:44.3497630Z copying torch/include/torch/csrc/distributed/autograd/functions/sendrpc_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/functions 2025-07-17T06:37:44.3498740Z copying torch/include/torch/csrc/distributed/autograd/functions/recvrpc_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/functions 2025-07-17T06:37:44.3499590Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/engine 2025-07-17T06:37:44.3500410Z copying torch/include/torch/csrc/distributed/autograd/engine/dist_engine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/engine 2025-07-17T06:37:44.3501160Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:44.3501820Z copying torch/include/torch/csrc/distributed/rpc/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:44.3502660Z copying torch/include/torch/csrc/distributed/rpc/rref_context.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:44.3509630Z copying torch/include/torch/csrc/distributed/rpc/request_callback_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:44.3511010Z copying torch/include/torch/csrc/distributed/rpc/python_resp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:44.3512560Z copying torch/include/torch/csrc/distributed/rpc/rref_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:44.3514310Z copying torch/include/torch/csrc/distributed/rpc/request_callback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:44.3515720Z copying torch/include/torch/csrc/distributed/rpc/types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:44.3517140Z copying torch/include/torch/csrc/distributed/rpc/rref_proto.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:44.3518580Z copying torch/include/torch/csrc/distributed/rpc/py_rref.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:44.3520080Z copying torch/include/torch/csrc/distributed/rpc/rpc_agent.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:44.3521710Z copying torch/include/torch/csrc/distributed/rpc/python_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:44.3523040Z copying torch/include/torch/csrc/distributed/rpc/message.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:44.3524560Z copying torch/include/torch/csrc/distributed/rpc/request_callback_no_python.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:44.3525930Z copying torch/include/torch/csrc/distributed/rpc/python_remote_call.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:44.3527370Z copying torch/include/torch/csrc/distributed/rpc/python_call.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:44.3528820Z copying torch/include/torch/csrc/distributed/rpc/tensorpipe_agent.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:44.3530390Z copying torch/include/torch/csrc/distributed/rpc/script_remote_call.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:44.3531740Z copying torch/include/torch/csrc/distributed/rpc/script_resp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:44.3533020Z copying torch/include/torch/csrc/distributed/rpc/rpc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:44.3534360Z copying torch/include/torch/csrc/distributed/rpc/rpc_command_base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:44.3535760Z copying torch/include/torch/csrc/distributed/rpc/script_call.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:44.3537190Z copying torch/include/torch/csrc/distributed/rpc/unpickled_python_remote_call.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:44.3538490Z copying torch/include/torch/csrc/distributed/rpc/torchscript_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:44.3539820Z copying torch/include/torch/csrc/distributed/rpc/unpickled_python_call.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:44.3547030Z copying torch/include/torch/csrc/distributed/rpc/tensorpipe_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:44.3548140Z copying torch/include/torch/csrc/distributed/rpc/agent_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:44.3549460Z copying torch/include/torch/csrc/distributed/rpc/python_rpc_handler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:44.3550870Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/metrics 2025-07-17T06:37:44.3551640Z copying torch/include/torch/csrc/distributed/rpc/metrics/RpcMetricsHandler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/metrics 2025-07-17T06:37:44.3552970Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/testing 2025-07-17T06:37:44.3553680Z copying torch/include/torch/csrc/distributed/rpc/testing/testing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/testing 2025-07-17T06:37:44.3555070Z copying torch/include/torch/csrc/distributed/rpc/testing/faulty_tensorpipe_agent.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/testing 2025-07-17T06:37:44.3556390Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/profiler 2025-07-17T06:37:44.3557160Z copying torch/include/torch/csrc/distributed/rpc/profiler/remote_profiler_manager.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/profiler 2025-07-17T06:37:44.3558570Z copying torch/include/torch/csrc/distributed/rpc/profiler/server_process_global_profiler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/profiler 2025-07-17T06:37:44.3559790Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:44.3560480Z copying torch/include/torch/csrc/distributed/c10d/error.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:44.3561830Z copying torch/include/torch/csrc/distributed/c10d/debug.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:44.3572590Z copying torch/include/torch/csrc/distributed/c10d/logging.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:44.3573990Z copying torch/include/torch/csrc/distributed/c10d/socket_fmt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:44.3575380Z copying torch/include/torch/csrc/distributed/c10d/python_comm_hook.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:44.3576670Z copying torch/include/torch/csrc/distributed/c10d/c10d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:44.3577940Z copying torch/include/torch/csrc/distributed/c10d/TraceUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:44.3579260Z copying torch/include/torch/csrc/distributed/c10d/exception.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:44.3580520Z copying torch/include/torch/csrc/distributed/c10d/socket.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:44.3581870Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/quantization 2025-07-17T06:37:44.3582740Z copying torch/include/torch/csrc/distributed/c10d/quantization/quantization.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/quantization 2025-07-17T06:37:44.3583920Z copying torch/include/torch/csrc/distributed/c10d/quantization/quantization_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/quantization 2025-07-17T06:37:44.3585410Z copying torch/include/torch/csrc/distributed/c10d/quantization/quantization_gpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/quantization 2025-07-17T06:37:44.3586650Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-07-17T06:37:44.3587370Z copying torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemory-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-07-17T06:37:44.3588840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-17T06:37:44.3589390Z copying torch/include/torch/csrc/autograd/python_function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-17T06:37:44.3590680Z copying torch/include/torch/csrc/autograd/custom_function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-17T06:37:44.3592150Z copying torch/include/torch/csrc/autograd/python_linalg_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-17T06:37:44.3593420Z copying torch/include/torch/csrc/autograd/saved_variable_hooks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-17T06:37:44.3594560Z copying torch/include/torch/csrc/autograd/record_function_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-17T06:37:44.3604080Z copying torch/include/torch/csrc/autograd/engine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-17T06:37:44.3605320Z copying torch/include/torch/csrc/autograd/python_enum_tag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-17T06:37:44.3606540Z copying torch/include/torch/csrc/autograd/graph_task.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-17T06:37:44.3607870Z copying torch/include/torch/csrc/autograd/edge.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-17T06:37:44.3609230Z copying torch/include/torch/csrc/autograd/python_nested_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-17T06:37:44.3610550Z copying torch/include/torch/csrc/autograd/variable_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-17T06:37:44.3611770Z copying torch/include/torch/csrc/autograd/saved_variable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-17T06:37:44.3613050Z copying torch/include/torch/csrc/autograd/python_engine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-17T06:37:44.3620830Z copying torch/include/torch/csrc/autograd/python_legacy_variable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-17T06:37:44.3621930Z copying torch/include/torch/csrc/autograd/profiler_python.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-17T06:37:44.3623210Z copying torch/include/torch/csrc/autograd/autograd_not_implemented_fallback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-17T06:37:44.3631010Z copying torch/include/torch/csrc/autograd/python_saved_variable_hooks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-17T06:37:44.3632190Z copying torch/include/torch/csrc/autograd/python_cpp_function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-17T06:37:44.3633210Z copying torch/include/torch/csrc/autograd/python_hook.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-17T06:37:44.3634510Z copying torch/include/torch/csrc/autograd/VariableTypeUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-17T06:37:44.3635940Z copying torch/include/torch/csrc/autograd/python_autograd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-17T06:37:44.3637180Z copying torch/include/torch/csrc/autograd/profiler_kineto.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-17T06:37:44.3638530Z copying torch/include/torch/csrc/autograd/variable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-17T06:37:44.3640090Z copying torch/include/torch/csrc/autograd/python_fft_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-17T06:37:44.3647340Z copying torch/include/torch/csrc/autograd/python_variable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-17T06:37:44.3648130Z copying torch/include/torch/csrc/autograd/python_torch_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-17T06:37:44.3655650Z copying torch/include/torch/csrc/autograd/function_hook.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-17T06:37:44.3656430Z copying torch/include/torch/csrc/autograd/input_metadata.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-17T06:37:44.3657680Z copying torch/include/torch/csrc/autograd/grad_mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-17T06:37:44.3665910Z copying torch/include/torch/csrc/autograd/jit_decomp_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-17T06:37:44.3666750Z copying torch/include/torch/csrc/autograd/python_sparse_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-17T06:37:44.3667910Z copying torch/include/torch/csrc/autograd/symbolic.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-17T06:37:44.3669160Z copying torch/include/torch/csrc/autograd/input_buffer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-17T06:37:44.3670380Z copying torch/include/torch/csrc/autograd/profiler_legacy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-17T06:37:44.3671700Z copying torch/include/torch/csrc/autograd/autograd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-17T06:37:44.3672900Z copying torch/include/torch/csrc/autograd/cpp_hook.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-17T06:37:44.3674240Z copying torch/include/torch/csrc/autograd/python_special_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-17T06:37:44.3682250Z copying torch/include/torch/csrc/autograd/FunctionsManual.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-17T06:37:44.3683450Z copying torch/include/torch/csrc/autograd/forward_grad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-17T06:37:44.3684830Z copying torch/include/torch/csrc/autograd/python_anomaly_mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-17T06:37:44.3686080Z copying torch/include/torch/csrc/autograd/python_nn_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-17T06:37:44.3687240Z copying torch/include/torch/csrc/autograd/InferenceMode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-17T06:37:44.3688460Z copying torch/include/torch/csrc/autograd/python_variable_indexing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-17T06:37:44.3689700Z copying torch/include/torch/csrc/autograd/profiler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-17T06:37:44.3697940Z copying torch/include/torch/csrc/autograd/function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-17T06:37:44.3698940Z copying torch/include/torch/csrc/autograd/anomaly_mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-17T06:37:44.3700170Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated 2025-07-17T06:37:44.3700870Z copying torch/include/torch/csrc/autograd/generated/python_return_types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated 2025-07-17T06:37:44.3708180Z copying torch/include/torch/csrc/autograd/generated/ViewFuncs.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated 2025-07-17T06:37:44.3709310Z copying torch/include/torch/csrc/autograd/generated/python_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated 2025-07-17T06:37:44.3717250Z copying torch/include/torch/csrc/autograd/generated/VariableType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated 2025-07-17T06:37:44.3718180Z copying torch/include/torch/csrc/autograd/generated/Functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated 2025-07-17T06:37:44.3723050Z copying torch/include/torch/csrc/autograd/generated/variable_factories.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated 2025-07-17T06:37:44.3724200Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/utils 2025-07-17T06:37:44.3724860Z copying torch/include/torch/csrc/autograd/utils/warnings.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/utils 2025-07-17T06:37:44.3726120Z copying torch/include/torch/csrc/autograd/utils/wrap_outputs.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/utils 2025-07-17T06:37:44.3727390Z copying torch/include/torch/csrc/autograd/utils/python_arg_parsing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/utils 2025-07-17T06:37:44.3728680Z copying torch/include/torch/csrc/autograd/utils/grad_layout_contract.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/utils 2025-07-17T06:37:44.3729990Z copying torch/include/torch/csrc/autograd/utils/lambda_post_hook.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/utils 2025-07-17T06:37:44.3731310Z copying torch/include/torch/csrc/autograd/utils/error_messages.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/utils 2025-07-17T06:37:44.3732500Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions 2025-07-17T06:37:44.3733170Z copying torch/include/torch/csrc/autograd/functions/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions 2025-07-17T06:37:44.3734470Z copying torch/include/torch/csrc/autograd/functions/pybind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions 2025-07-17T06:37:44.3735770Z copying torch/include/torch/csrc/autograd/functions/comm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions 2025-07-17T06:37:44.3745910Z copying torch/include/torch/csrc/autograd/functions/basic_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions 2025-07-17T06:37:44.3746880Z copying torch/include/torch/csrc/autograd/functions/accumulate_grad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions 2025-07-17T06:37:44.3748380Z copying torch/include/torch/csrc/autograd/functions/tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions 2025-07-17T06:37:44.3749520Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/fx 2025-07-17T06:37:44.3750140Z copying torch/include/torch/csrc/fx/node.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/fx 2025-07-17T06:37:44.3751610Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/multiprocessing 2025-07-17T06:37:44.3752210Z copying torch/include/torch/csrc/multiprocessing/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/multiprocessing 2025-07-17T06:37:44.3753600Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-07-17T06:37:44.3754270Z copying torch/include/torch/csrc/cuda/CUDAPluggableAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-07-17T06:37:44.3755480Z copying torch/include/torch/csrc/cuda/GdsFile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-07-17T06:37:44.3756680Z copying torch/include/torch/csrc/cuda/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-07-17T06:37:44.3757880Z copying torch/include/torch/csrc/cuda/THCP.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-07-17T06:37:44.3759000Z copying torch/include/torch/csrc/cuda/nccl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-07-17T06:37:44.3760390Z copying torch/include/torch/csrc/cuda/memory_snapshot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-07-17T06:37:44.3761830Z copying torch/include/torch/csrc/cuda/python_nccl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-07-17T06:37:44.3762930Z copying torch/include/torch/csrc/cuda/device_set.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-07-17T06:37:44.3764150Z copying torch/include/torch/csrc/cuda/Event.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-07-17T06:37:44.3765460Z copying torch/include/torch/csrc/cuda/python_comm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-07-17T06:37:44.3766690Z copying torch/include/torch/csrc/cuda/comm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-07-17T06:37:44.3768030Z copying torch/include/torch/csrc/cuda/Stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-07-17T06:37:44.3769290Z copying torch/include/torch/csrc/cuda/Module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-07-17T06:37:44.3770580Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/xpu 2025-07-17T06:37:44.3771120Z copying torch/include/torch/csrc/xpu/Event.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/xpu 2025-07-17T06:37:44.3772380Z copying torch/include/torch/csrc/xpu/Stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/xpu 2025-07-17T06:37:44.3773700Z copying torch/include/torch/csrc/xpu/Module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/xpu 2025-07-17T06:37:44.3775020Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-07-17T06:37:44.3775690Z copying torch/include/torch/csrc/dynamo/cache_entry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-07-17T06:37:44.3777010Z copying torch/include/torch/csrc/dynamo/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-07-17T06:37:44.3778240Z copying torch/include/torch/csrc/dynamo/cpython_defs.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-07-17T06:37:44.3779430Z copying torch/include/torch/csrc/dynamo/cpp_shim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-07-17T06:37:44.3780740Z copying torch/include/torch/csrc/dynamo/framelocals_mapping.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-07-17T06:37:44.3781970Z copying torch/include/torch/csrc/dynamo/cpython_includes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-07-17T06:37:44.3783200Z copying torch/include/torch/csrc/dynamo/extra_state.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-07-17T06:37:44.3784550Z copying torch/include/torch/csrc/dynamo/compiled_autograd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-07-17T06:37:44.3786330Z copying torch/include/torch/csrc/dynamo/eval_frame_cpp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-07-17T06:37:44.3787630Z copying torch/include/torch/csrc/dynamo/eval_frame.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-07-17T06:37:44.3794820Z copying torch/include/torch/csrc/dynamo/debug_macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-07-17T06:37:44.3795840Z copying torch/include/torch/csrc/dynamo/python_compiled_autograd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-07-17T06:37:44.3797100Z copying torch/include/torch/csrc/dynamo/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-07-17T06:37:44.3798300Z copying torch/include/torch/csrc/dynamo/guards.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-07-17T06:37:44.3799670Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-17T06:37:44.3800270Z copying torch/include/torch/csrc/utils/object_ptr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-17T06:37:44.3801720Z copying torch/include/torch/csrc/utils/tensor_numpy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-17T06:37:44.3802900Z copying torch/include/torch/csrc/utils/tensor_dtypes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-17T06:37:44.3804160Z copying torch/include/torch/csrc/utils/python_tuples.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-17T06:37:44.3805460Z copying torch/include/torch/csrc/utils/nested.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-17T06:37:44.3807400Z copying torch/include/torch/csrc/utils/python_raii.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-17T06:37:44.3808850Z copying torch/include/torch/csrc/utils/python_numbers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-17T06:37:44.3810260Z copying torch/include/torch/csrc/utils/python_scalars.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-17T06:37:44.3811480Z copying torch/include/torch/csrc/utils/pybind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-17T06:37:44.3812950Z copying torch/include/torch/csrc/utils/tensor_types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-17T06:37:44.3814200Z copying torch/include/torch/csrc/utils/tensor_memoryformats.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-17T06:37:44.3815410Z copying torch/include/torch/csrc/utils/python_arg_parser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-17T06:37:44.3817270Z copying torch/include/torch/csrc/utils/python_torch_function_mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-17T06:37:44.3818350Z copying torch/include/torch/csrc/utils/schema_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-17T06:37:44.3819670Z copying torch/include/torch/csrc/utils/generated_serialization_types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-17T06:37:44.3821540Z copying torch/include/torch/csrc/utils/tensor_new.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-17T06:37:44.3822850Z copying torch/include/torch/csrc/utils/tensor_qschemes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-17T06:37:44.3824130Z copying torch/include/torch/csrc/utils/verbose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-17T06:37:44.3825380Z copying torch/include/torch/csrc/utils/python_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-17T06:37:44.3826610Z copying torch/include/torch/csrc/utils/tensor_list.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-17T06:37:44.3827950Z copying torch/include/torch/csrc/utils/invalid_arguments.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-17T06:37:44.3829210Z copying torch/include/torch/csrc/utils/pythoncapi_compat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-17T06:37:44.3830790Z copying torch/include/torch/csrc/utils/cpp_stacktraces.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-17T06:37:44.3831990Z copying torch/include/torch/csrc/utils/device_lazy_init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-17T06:37:44.3833260Z copying torch/include/torch/csrc/utils/python_strings.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-17T06:37:44.3834520Z copying torch/include/torch/csrc/utils/python_symnode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-17T06:37:44.3835940Z copying torch/include/torch/csrc/utils/byte_order.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-17T06:37:44.3837200Z copying torch/include/torch/csrc/utils/pycfunction_helpers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-17T06:37:44.3838420Z copying torch/include/torch/csrc/utils/cuda_enabled.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-17T06:37:44.3839640Z copying torch/include/torch/csrc/utils/numpy_stub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-17T06:37:44.3840880Z copying torch/include/torch/csrc/utils/out_types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-17T06:37:44.3842220Z copying torch/include/torch/csrc/utils/tensor_layouts.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-17T06:37:44.3843430Z copying torch/include/torch/csrc/utils/structseq.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-17T06:37:44.3844680Z copying torch/include/torch/csrc/utils/throughput_benchmark.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-17T06:37:44.3845980Z copying torch/include/torch/csrc/utils/disable_torch_function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-17T06:37:44.3847480Z copying torch/include/torch/csrc/utils/pyobject_preservation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-17T06:37:44.3848640Z copying torch/include/torch/csrc/utils/throughput_benchmark-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-17T06:37:44.3849900Z copying torch/include/torch/csrc/utils/tensor_flatten.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-17T06:37:44.3851140Z copying torch/include/torch/csrc/utils/torch_dispatch_mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-17T06:37:44.3852390Z copying torch/include/torch/csrc/utils/tensor_apply.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-17T06:37:44.3853590Z copying torch/include/torch/csrc/utils/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-17T06:37:44.3854920Z copying torch/include/torch/csrc/utils/python_compat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-17T06:37:44.3856010Z copying torch/include/torch/csrc/utils/six.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-17T06:37:44.3857340Z copying torch/include/torch/csrc/utils/python_stub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-17T06:37:44.3858580Z copying torch/include/torch/csrc/utils/variadic.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-17T06:37:44.3859930Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit 2025-07-17T06:37:44.3860870Z copying torch/include/torch/csrc/jit/jit_opt_limit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit 2025-07-17T06:37:44.3861960Z copying torch/include/torch/csrc/jit/jit_log.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit 2025-07-17T06:37:44.3863200Z copying torch/include/torch/csrc/jit/resource_guard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit 2025-07-17T06:37:44.3864550Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:44.3865410Z copying torch/include/torch/csrc/jit/frontend/error_report.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:44.3866620Z copying torch/include/torch/csrc/jit/frontend/source_range.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:44.3868300Z copying torch/include/torch/csrc/jit/frontend/edit_distance.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:44.3869580Z copying torch/include/torch/csrc/jit/frontend/canonicalize_modified_loop.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:44.3870710Z copying torch/include/torch/csrc/jit/frontend/schema_matching.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:44.3872080Z copying torch/include/torch/csrc/jit/frontend/function_schema_parser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:44.3873250Z copying torch/include/torch/csrc/jit/frontend/tree_views.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:44.3874920Z copying torch/include/torch/csrc/jit/frontend/ir_emitter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:44.3876120Z copying torch/include/torch/csrc/jit/frontend/parser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:44.3877370Z copying torch/include/torch/csrc/jit/frontend/strtod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:44.3879410Z copying torch/include/torch/csrc/jit/frontend/tree.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:44.3880910Z copying torch/include/torch/csrc/jit/frontend/concrete_module_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:44.3882380Z copying torch/include/torch/csrc/jit/frontend/builtin_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:44.3883820Z copying torch/include/torch/csrc/jit/frontend/exit_transforms.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:44.3885060Z copying torch/include/torch/csrc/jit/frontend/parse_string_literal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:44.3886410Z copying torch/include/torch/csrc/jit/frontend/sugared_value.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:44.3887960Z copying torch/include/torch/csrc/jit/frontend/inline_loop_condition.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:44.3889300Z copying torch/include/torch/csrc/jit/frontend/name_mangler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:44.3890450Z copying torch/include/torch/csrc/jit/frontend/tracer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:44.3891840Z copying torch/include/torch/csrc/jit/frontend/resolver.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:44.3893050Z copying torch/include/torch/csrc/jit/frontend/script_type_parser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:44.3894280Z copying torch/include/torch/csrc/jit/frontend/schema_type_parser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:44.3895610Z copying torch/include/torch/csrc/jit/frontend/lexer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:44.3897330Z copying torch/include/torch/csrc/jit/frontend/versioned_symbols.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:44.3898340Z copying torch/include/torch/csrc/jit/frontend/convert_to_ssa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:44.3899520Z copying torch/include/torch/csrc/jit/frontend/source_ref.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:44.3901010Z copying torch/include/torch/csrc/jit/frontend/mini_environment.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:44.3902160Z copying torch/include/torch/csrc/jit/frontend/parser_constants.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:44.3903510Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-07-17T06:37:44.3904140Z copying torch/include/torch/csrc/jit/python/pybind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-07-17T06:37:44.3905520Z copying torch/include/torch/csrc/jit/python/utf8_decoding_ignore.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-07-17T06:37:44.3906770Z copying torch/include/torch/csrc/jit/python/python_ir.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-07-17T06:37:44.3907930Z copying torch/include/torch/csrc/jit/python/script_init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-07-17T06:37:44.3909210Z copying torch/include/torch/csrc/jit/python/python_tree_views.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-07-17T06:37:44.3910530Z copying torch/include/torch/csrc/jit/python/python_list.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-07-17T06:37:44.3911800Z copying torch/include/torch/csrc/jit/python/python_ivalue.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-07-17T06:37:44.3913080Z copying torch/include/torch/csrc/jit/python/python_dict.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-07-17T06:37:44.3914300Z copying torch/include/torch/csrc/jit/python/python_custom_class.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-07-17T06:37:44.3915620Z copying torch/include/torch/csrc/jit/python/update_graph_executor_opt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-07-17T06:37:44.3916790Z copying torch/include/torch/csrc/jit/python/python_tracer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-07-17T06:37:44.3918000Z copying torch/include/torch/csrc/jit/python/pybind_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-07-17T06:37:44.3919580Z copying torch/include/torch/csrc/jit/python/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-07-17T06:37:44.3921100Z copying torch/include/torch/csrc/jit/python/python_sugared_value.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-07-17T06:37:44.3922370Z copying torch/include/torch/csrc/jit/python/python_arg_flatten.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-07-17T06:37:44.3923570Z copying torch/include/torch/csrc/jit/python/module_python.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-07-17T06:37:44.3924780Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:44.3925460Z copying torch/include/torch/csrc/jit/tensorexpr/ir_mutator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:44.3926760Z copying torch/include/torch/csrc/jit/tensorexpr/cpp_intrinsics.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:44.3928020Z copying torch/include/torch/csrc/jit/tensorexpr/ir_simplifier.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:44.3929750Z copying torch/include/torch/csrc/jit/tensorexpr/ir_visitor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:44.3930710Z copying torch/include/torch/csrc/jit/tensorexpr/lowerings.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:44.3931950Z copying torch/include/torch/csrc/jit/tensorexpr/graph_opt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:44.3933110Z copying torch/include/torch/csrc/jit/tensorexpr/llvm_jit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:44.3934350Z copying torch/include/torch/csrc/jit/tensorexpr/tensorexpr_init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:44.3935510Z copying torch/include/torch/csrc/jit/tensorexpr/types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:44.3936840Z copying torch/include/torch/csrc/jit/tensorexpr/mem_dependency_checker.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:44.3938260Z copying torch/include/torch/csrc/jit/tensorexpr/ir.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:44.3939960Z copying torch/include/torch/csrc/jit/tensorexpr/exceptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:44.3941070Z copying torch/include/torch/csrc/jit/tensorexpr/cuda_codegen.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:44.3942420Z copying torch/include/torch/csrc/jit/tensorexpr/hash_provider.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:44.3943930Z copying torch/include/torch/csrc/jit/tensorexpr/ir_printer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:44.3944910Z copying torch/include/torch/csrc/jit/tensorexpr/external_functions_core.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:44.3946110Z copying torch/include/torch/csrc/jit/tensorexpr/llvm_codegen.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:44.3952880Z copying torch/include/torch/csrc/jit/tensorexpr/expr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:44.3953610Z copying torch/include/torch/csrc/jit/tensorexpr/cuda_random.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:44.3954340Z copying torch/include/torch/csrc/jit/tensorexpr/codegen.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:44.3955080Z copying torch/include/torch/csrc/jit/tensorexpr/unique_name_manager.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:44.3955840Z copying torch/include/torch/csrc/jit/tensorexpr/cpp_codegen.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:44.3956580Z copying torch/include/torch/csrc/jit/tensorexpr/var_substitutor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:44.3957310Z copying torch/include/torch/csrc/jit/tensorexpr/eval.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:44.3958030Z copying torch/include/torch/csrc/jit/tensorexpr/bounds_inference.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:44.3958790Z copying torch/include/torch/csrc/jit/tensorexpr/intrinsic_symbols.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:44.3959540Z copying torch/include/torch/csrc/jit/tensorexpr/block_codegen.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:44.3960310Z copying torch/include/torch/csrc/jit/tensorexpr/external_functions_registry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:44.3968090Z copying torch/include/torch/csrc/jit/tensorexpr/kernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:44.3969180Z copying torch/include/torch/csrc/jit/tensorexpr/loopnest.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:44.3970690Z copying torch/include/torch/csrc/jit/tensorexpr/bounds_overlap.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:44.3971960Z copying torch/include/torch/csrc/jit/tensorexpr/loopnest_randomization.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:44.3973180Z copying torch/include/torch/csrc/jit/tensorexpr/ir_verifier.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:44.3974420Z copying torch/include/torch/csrc/jit/tensorexpr/ir_cloner.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:44.3975840Z copying torch/include/torch/csrc/jit/tensorexpr/external_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:44.3977030Z copying torch/include/torch/csrc/jit/tensorexpr/stmt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:44.3978660Z copying torch/include/torch/csrc/jit/tensorexpr/half_support.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:44.3979960Z copying torch/include/torch/csrc/jit/tensorexpr/registerizer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:44.3981580Z copying torch/include/torch/csrc/jit/tensorexpr/reduction.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:44.3982870Z copying torch/include/torch/csrc/jit/tensorexpr/tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:44.3984380Z copying torch/include/torch/csrc/jit/tensorexpr/fwd_decls.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:44.3985550Z copying torch/include/torch/csrc/jit/tensorexpr/analysis.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:44.3987100Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators 2025-07-17T06:37:44.3987790Z copying torch/include/torch/csrc/jit/tensorexpr/operators/softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators 2025-07-17T06:37:44.3989150Z copying torch/include/torch/csrc/jit/tensorexpr/operators/matmul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators 2025-07-17T06:37:44.3990390Z copying torch/include/torch/csrc/jit/tensorexpr/operators/operators.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators 2025-07-17T06:37:44.3991620Z copying torch/include/torch/csrc/jit/tensorexpr/operators/misc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators 2025-07-17T06:37:44.3992970Z copying torch/include/torch/csrc/jit/tensorexpr/operators/quantization.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators 2025-07-17T06:37:44.3994120Z copying torch/include/torch/csrc/jit/tensorexpr/operators/norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators 2025-07-17T06:37:44.3995410Z copying torch/include/torch/csrc/jit/tensorexpr/operators/pointwise.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators 2025-07-17T06:37:44.3996580Z copying torch/include/torch/csrc/jit/tensorexpr/operators/conv2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators 2025-07-17T06:37:44.3997950Z copying torch/include/torch/csrc/jit/tensorexpr/operators/reduction.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators 2025-07-17T06:37:44.3999120Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-07-17T06:37:44.3999710Z copying torch/include/torch/csrc/jit/ir/named_value.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-07-17T06:37:44.4001150Z copying torch/include/torch/csrc/jit/ir/irparser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-07-17T06:37:44.4002350Z copying torch/include/torch/csrc/jit/ir/ir.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-07-17T06:37:44.4004100Z copying torch/include/torch/csrc/jit/ir/graph_node_list.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-07-17T06:37:44.4005370Z copying torch/include/torch/csrc/jit/ir/ir_views.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-07-17T06:37:44.4006800Z copying torch/include/torch/csrc/jit/ir/alias_analysis.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-07-17T06:37:44.4008140Z copying torch/include/torch/csrc/jit/ir/attributes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-07-17T06:37:44.4009460Z copying torch/include/torch/csrc/jit/ir/type_hashing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-07-17T06:37:44.4010770Z copying torch/include/torch/csrc/jit/ir/constants.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-07-17T06:37:44.4012040Z copying torch/include/torch/csrc/jit/ir/subgraph_matcher.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-07-17T06:37:44.4013330Z copying torch/include/torch/csrc/jit/ir/scope.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-07-17T06:37:44.4014760Z copying torch/include/torch/csrc/jit/ir/graph_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-07-17T06:37:44.4015950Z copying torch/include/torch/csrc/jit/ir/node_hashing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-07-17T06:37:44.4017170Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/cuda 2025-07-17T06:37:44.4017780Z copying torch/include/torch/csrc/jit/cuda/cuda.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/cuda 2025-07-17T06:37:44.4019150Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-07-17T06:37:44.4019770Z copying torch/include/torch/csrc/jit/serialization/import_read.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-07-17T06:37:44.4021120Z copying torch/include/torch/csrc/jit/serialization/export_bytecode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-07-17T06:37:44.4022350Z copying torch/include/torch/csrc/jit/serialization/import_source.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-07-17T06:37:44.4023520Z copying torch/include/torch/csrc/jit/serialization/export.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-07-17T06:37:44.4024910Z copying torch/include/torch/csrc/jit/serialization/import_export_helpers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-07-17T06:37:44.4026160Z copying torch/include/torch/csrc/jit/serialization/type_name_uniquer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-07-17T06:37:44.4027390Z copying torch/include/torch/csrc/jit/serialization/pickler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-07-17T06:37:44.4028660Z copying torch/include/torch/csrc/jit/serialization/storage_context.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-07-17T06:37:44.4036780Z copying torch/include/torch/csrc/jit/serialization/python_print.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-07-17T06:37:44.4037900Z copying torch/include/torch/csrc/jit/serialization/callstack_debug_info_serialization.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-07-17T06:37:44.4039220Z copying torch/include/torch/csrc/jit/serialization/import_export_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-07-17T06:37:44.4040480Z copying torch/include/torch/csrc/jit/serialization/flatbuffer_serializer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-07-17T06:37:44.4041720Z copying torch/include/torch/csrc/jit/serialization/pickler_helper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-07-17T06:37:44.4043070Z copying torch/include/torch/csrc/jit/serialization/pickle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-07-17T06:37:44.4044360Z copying torch/include/torch/csrc/jit/serialization/import_export_constants.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-07-17T06:37:44.4045600Z copying torch/include/torch/csrc/jit/serialization/source_range_serialization_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-07-17T06:37:44.4046920Z copying torch/include/torch/csrc/jit/serialization/import.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-07-17T06:37:44.4048200Z copying torch/include/torch/csrc/jit/serialization/flatbuffer_serializer_jit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-07-17T06:37:44.4049590Z copying torch/include/torch/csrc/jit/serialization/unpickler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-07-17T06:37:44.4050930Z copying torch/include/torch/csrc/jit/serialization/source_range_serialization.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-07-17T06:37:44.4052180Z copying torch/include/torch/csrc/jit/serialization/mobile_bytecode_generated.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-07-17T06:37:44.4054110Z copying torch/include/torch/csrc/jit/serialization/onnx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-07-17T06:37:44.4055370Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends 2025-07-17T06:37:44.4056050Z copying torch/include/torch/csrc/jit/backends/backend_debug_handler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends 2025-07-17T06:37:44.4057370Z copying torch/include/torch/csrc/jit/backends/backend_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends 2025-07-17T06:37:44.4058720Z copying torch/include/torch/csrc/jit/backends/backend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends 2025-07-17T06:37:44.4060010Z copying torch/include/torch/csrc/jit/backends/backend_exception.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends 2025-07-17T06:37:44.4061310Z copying torch/include/torch/csrc/jit/backends/backend_debug_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends 2025-07-17T06:37:44.4062620Z copying torch/include/torch/csrc/jit/backends/backend_resolver.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends 2025-07-17T06:37:44.4063900Z copying torch/include/torch/csrc/jit/backends/backend_preprocess.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends 2025-07-17T06:37:44.4065150Z copying torch/include/torch/csrc/jit/backends/backend_detail.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends 2025-07-17T06:37:44.4066450Z copying torch/include/torch/csrc/jit/backends/backend_init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends 2025-07-17T06:37:44.4067750Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml 2025-07-17T06:37:44.4068240Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/cpp 2025-07-17T06:37:44.4068900Z copying torch/include/torch/csrc/jit/backends/coreml/cpp/context.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/cpp 2025-07-17T06:37:44.4070160Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/objc 2025-07-17T06:37:44.4070920Z copying torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLCompiler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/objc 2025-07-17T06:37:44.4072160Z copying torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLTensorSpec.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/objc 2025-07-17T06:37:44.4073450Z copying torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLFeatureProvider.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/objc 2025-07-17T06:37:44.4074750Z copying torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLModelWrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/objc 2025-07-17T06:37:44.4076100Z copying torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLExecutor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/objc 2025-07-17T06:37:44.4077250Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack 2025-07-17T06:37:44.4078000Z copying torch/include/torch/csrc/jit/backends/xnnpack/xnnpack_graph_builder.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack 2025-07-17T06:37:44.4079340Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack/serialization 2025-07-17T06:37:44.4080120Z copying torch/include/torch/csrc/jit/backends/xnnpack/serialization/serializer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack/serialization 2025-07-17T06:37:44.4081330Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack/executor 2025-07-17T06:37:44.4082100Z copying torch/include/torch/csrc/jit/backends/xnnpack/executor/xnn_executor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack/executor 2025-07-17T06:37:44.4083180Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack/compiler 2025-07-17T06:37:44.4083900Z copying torch/include/torch/csrc/jit/backends/xnnpack/compiler/xnn_compiler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack/compiler 2025-07-17T06:37:44.4085020Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:44.4085670Z copying torch/include/torch/csrc/jit/runtime/calculate_necessary_args.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:44.4087100Z copying torch/include/torch/csrc/jit/runtime/symbolic_shape_registry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:44.4088330Z copying torch/include/torch/csrc/jit/runtime/slice_indices_adjust.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:44.4089750Z copying torch/include/torch/csrc/jit/runtime/operator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:44.4090910Z copying torch/include/torch/csrc/jit/runtime/script_profile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:44.4092270Z copying torch/include/torch/csrc/jit/runtime/interpreter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:44.4093460Z copying torch/include/torch/csrc/jit/runtime/register_ops_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:44.4094960Z copying torch/include/torch/csrc/jit/runtime/jit_exception.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:44.4096260Z copying torch/include/torch/csrc/jit/runtime/exception_message.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:44.4097460Z copying torch/include/torch/csrc/jit/runtime/argument_spec.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:44.4098830Z copying torch/include/torch/csrc/jit/runtime/shape_function_registry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:44.4100020Z copying torch/include/torch/csrc/jit/runtime/logging.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:44.4101170Z copying torch/include/torch/csrc/jit/runtime/jit_trace.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:44.4102480Z copying torch/include/torch/csrc/jit/runtime/profiling_graph_executor_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:44.4103720Z copying torch/include/torch/csrc/jit/runtime/symbolic_shape_registry_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:44.4105000Z copying torch/include/torch/csrc/jit/runtime/serialized_shape_function_registry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:44.4114370Z copying torch/include/torch/csrc/jit/runtime/custom_operator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:44.4115590Z copying torch/include/torch/csrc/jit/runtime/vararg_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:44.4117320Z copying torch/include/torch/csrc/jit/runtime/graph_iterator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:44.4118230Z copying torch/include/torch/csrc/jit/runtime/symbolic_script.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:44.4125780Z copying torch/include/torch/csrc/jit/runtime/variable_tensor_list.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:44.4126840Z copying torch/include/torch/csrc/jit/runtime/decomposition_registry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:44.4135280Z copying torch/include/torch/csrc/jit/runtime/decomposition_registry_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:44.4136030Z copying torch/include/torch/csrc/jit/runtime/autodiff.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:44.4144890Z copying torch/include/torch/csrc/jit/runtime/print_handler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:44.4146060Z copying torch/include/torch/csrc/jit/runtime/profiling_record.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:44.4147510Z copying torch/include/torch/csrc/jit/runtime/simple_graph_executor_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:44.4148790Z copying torch/include/torch/csrc/jit/runtime/graph_executor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:44.4150210Z copying torch/include/torch/csrc/jit/runtime/operator_options.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:44.4151350Z copying torch/include/torch/csrc/jit/runtime/instruction.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:44.4152650Z copying torch/include/torch/csrc/jit/runtime/graph_executor_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:44.4153910Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/interpreter 2025-07-17T06:37:44.4154560Z copying torch/include/torch/csrc/jit/runtime/interpreter/frame.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/interpreter 2025-07-17T06:37:44.4155870Z copying torch/include/torch/csrc/jit/runtime/interpreter/preprocess_graph.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/interpreter 2025-07-17T06:37:44.4157160Z copying torch/include/torch/csrc/jit/runtime/interpreter/can_emit_inline.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/interpreter 2025-07-17T06:37:44.4165030Z copying torch/include/torch/csrc/jit/runtime/interpreter/code_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/interpreter 2025-07-17T06:37:44.4166130Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static 2025-07-17T06:37:44.4166770Z copying torch/include/torch/csrc/jit/runtime/static/te_wrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static 2025-07-17T06:37:44.4168050Z copying torch/include/torch/csrc/jit/runtime/static/processed_node_wrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static 2025-07-17T06:37:44.4169470Z copying torch/include/torch/csrc/jit/runtime/static/static_method.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static 2025-07-17T06:37:44.4170730Z copying torch/include/torch/csrc/jit/runtime/static/memory_planner.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static 2025-07-17T06:37:44.4172050Z copying torch/include/torch/csrc/jit/runtime/static/fusion.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static 2025-07-17T06:37:44.4179880Z copying torch/include/torch/csrc/jit/runtime/static/passes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static 2025-07-17T06:37:44.4180850Z copying torch/include/torch/csrc/jit/runtime/static/ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static 2025-07-17T06:37:44.4182040Z copying torch/include/torch/csrc/jit/runtime/static/impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static 2025-07-17T06:37:44.4183580Z copying torch/include/torch/csrc/jit/runtime/static/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static 2025-07-17T06:37:44.4184880Z copying torch/include/torch/csrc/jit/runtime/static/ProcessedNodeInputs.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static 2025-07-17T06:37:44.4186060Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4186670Z copying torch/include/torch/csrc/jit/passes/remove_expands.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4194460Z copying torch/include/torch/csrc/jit/passes/restore_mutation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4195450Z copying torch/include/torch/csrc/jit/passes/peephole_list_idioms.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4196720Z copying torch/include/torch/csrc/jit/passes/subgraph_rewrite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4197970Z copying torch/include/torch/csrc/jit/passes/fuse_relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4199200Z copying torch/include/torch/csrc/jit/passes/guard_elimination.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4200450Z copying torch/include/torch/csrc/jit/passes/peephole_alias_sensitive.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4201670Z copying torch/include/torch/csrc/jit/passes/freeze_module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4209540Z copying torch/include/torch/csrc/jit/passes/clear_undefinedness.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4210260Z copying torch/include/torch/csrc/jit/passes/dtype_analysis.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4211520Z copying torch/include/torch/csrc/jit/passes/peephole.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4212750Z copying torch/include/torch/csrc/jit/passes/remove_dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4214070Z copying torch/include/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4215330Z copying torch/include/torch/csrc/jit/passes/value_refinement_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4216580Z copying torch/include/torch/csrc/jit/passes/metal_rewrite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4217780Z copying torch/include/torch/csrc/jit/passes/liveness.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4219000Z copying torch/include/torch/csrc/jit/passes/remove_mutation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4220260Z copying torch/include/torch/csrc/jit/passes/onednn_graph_fuser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4227800Z copying torch/include/torch/csrc/jit/passes/common_subexpression_elimination.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4228580Z copying torch/include/torch/csrc/jit/passes/batch_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4229780Z copying torch/include/torch/csrc/jit/passes/frozen_concat_linear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4231080Z copying torch/include/torch/csrc/jit/passes/constant_pooling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4232340Z copying torch/include/torch/csrc/jit/passes/mobile_optimizer_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4233600Z copying torch/include/torch/csrc/jit/passes/peephole_dict_idioms.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4234820Z copying torch/include/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4236090Z copying torch/include/torch/csrc/jit/passes/fuse_linear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4237310Z copying torch/include/torch/csrc/jit/passes/annotate_warns.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4238690Z copying torch/include/torch/csrc/jit/passes/specialize_autogradzero.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4240000Z copying torch/include/torch/csrc/jit/passes/frozen_linear_folding.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4241200Z copying torch/include/torch/csrc/jit/passes/prepack_folding.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4242470Z copying torch/include/torch/csrc/jit/passes/frozen_conv_folding.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4243780Z copying torch/include/torch/csrc/jit/passes/constant_propagation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4245060Z copying torch/include/torch/csrc/jit/passes/replacement_of_old_operators.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4246330Z copying torch/include/torch/csrc/jit/passes/insert_guards.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4247550Z copying torch/include/torch/csrc/jit/passes/variadic_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4248880Z copying torch/include/torch/csrc/jit/passes/refine_tuple_types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4250130Z copying torch/include/torch/csrc/jit/passes/inliner.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4251390Z copying torch/include/torch/csrc/jit/passes/lower_grad_of.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4252660Z copying torch/include/torch/csrc/jit/passes/normalize_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4254100Z copying torch/include/torch/csrc/jit/passes/device_type_analysis.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4255320Z copying torch/include/torch/csrc/jit/passes/vulkan_rewrite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4256600Z copying torch/include/torch/csrc/jit/passes/erase_number_types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4257810Z copying torch/include/torch/csrc/jit/passes/integer_value_refinement.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4259540Z copying torch/include/torch/csrc/jit/passes/fold_linear_bn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4260520Z copying torch/include/torch/csrc/jit/passes/graph_rewrite_helper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4261750Z copying torch/include/torch/csrc/jit/passes/graph_fuser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4263030Z copying torch/include/torch/csrc/jit/passes/fold_conv_bn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4264300Z copying torch/include/torch/csrc/jit/passes/remove_redundant_profiles.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4265640Z copying torch/include/torch/csrc/jit/passes/inline_forked_closures.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4266850Z copying torch/include/torch/csrc/jit/passes/tensorexpr_fuser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4275210Z copying torch/include/torch/csrc/jit/passes/symbolic_shape_analysis.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4276210Z copying torch/include/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4277440Z copying torch/include/torch/csrc/jit/passes/add_if_then_else.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4278810Z copying torch/include/torch/csrc/jit/passes/decompose_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4280040Z copying torch/include/torch/csrc/jit/passes/peephole_non_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4281310Z copying torch/include/torch/csrc/jit/passes/remove_inplace_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4282580Z copying torch/include/torch/csrc/jit/passes/inline_fork_wait.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4284000Z copying torch/include/torch/csrc/jit/passes/check_strict_fusion.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4285290Z copying torch/include/torch/csrc/jit/passes/concat_opt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4286580Z copying torch/include/torch/csrc/jit/passes/create_autodiff_subgraphs.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4287820Z copying torch/include/torch/csrc/jit/passes/eliminate_no_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4289250Z copying torch/include/torch/csrc/jit/passes/requires_grad_analysis.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4290590Z copying torch/include/torch/csrc/jit/passes/dead_code_elimination.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4291810Z copying torch/include/torch/csrc/jit/passes/clear_profiling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4293120Z copying torch/include/torch/csrc/jit/passes/create_functional_graphs.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4294460Z copying torch/include/torch/csrc/jit/passes/bailout_graph.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4295860Z copying torch/include/torch/csrc/jit/passes/lower_tuples.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4297090Z copying torch/include/torch/csrc/jit/passes/frozen_graph_optimizations.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4298330Z copying torch/include/torch/csrc/jit/passes/frozen_ops_to_mkldnn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4299650Z copying torch/include/torch/csrc/jit/passes/canonicalize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4301090Z copying torch/include/torch/csrc/jit/passes/symbolic_shape_cache.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4302290Z copying torch/include/torch/csrc/jit/passes/hoist_conv_packed_params.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4303690Z copying torch/include/torch/csrc/jit/passes/loop_unrolling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4305050Z copying torch/include/torch/csrc/jit/passes/shape_analysis.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4306420Z copying torch/include/torch/csrc/jit/passes/fixup_trace_scope_blocks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4307730Z copying torch/include/torch/csrc/jit/passes/remove_exceptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4309040Z copying torch/include/torch/csrc/jit/passes/inline_autodiff_subgraphs.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4310270Z copying torch/include/torch/csrc/jit/passes/inplace_check.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4311710Z copying torch/include/torch/csrc/jit/passes/frozen_linear_transpose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4312860Z copying torch/include/torch/csrc/jit/passes/mkldnn_rewrite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4314040Z copying torch/include/torch/csrc/jit/passes/pass_manager.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4326910Z copying torch/include/torch/csrc/jit/passes/onnx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4327760Z copying torch/include/torch/csrc/jit/passes/xnnpack_rewrite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4328460Z copying torch/include/torch/csrc/jit/passes/lift_closures.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4329150Z copying torch/include/torch/csrc/jit/passes/autocast.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4329870Z copying torch/include/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4330610Z copying torch/include/torch/csrc/jit/passes/lower_graph.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:44.4331190Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-07-17T06:37:44.4331790Z copying torch/include/torch/csrc/jit/passes/onnx/eval_peephole.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-07-17T06:37:44.4332580Z copying torch/include/torch/csrc/jit/passes/onnx/function_substitution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-07-17T06:37:44.4333350Z copying torch/include/torch/csrc/jit/passes/onnx/helper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-07-17T06:37:44.4334110Z copying torch/include/torch/csrc/jit/passes/onnx/unpack_quantized_weights.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-07-17T06:37:44.4334910Z copying torch/include/torch/csrc/jit/passes/onnx/preprocess_for_onnx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-07-17T06:37:44.4335700Z copying torch/include/torch/csrc/jit/passes/onnx/scalar_type_analysis.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-07-17T06:37:44.4336490Z copying torch/include/torch/csrc/jit/passes/onnx/shape_type_inference.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-07-17T06:37:44.4337240Z copying torch/include/torch/csrc/jit/passes/onnx/onnx_log.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-07-17T06:37:44.4337960Z copying torch/include/torch/csrc/jit/passes/onnx/peephole.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-07-17T06:37:44.4338740Z copying torch/include/torch/csrc/jit/passes/onnx/eliminate_unused_items.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-07-17T06:37:44.4339510Z copying torch/include/torch/csrc/jit/passes/onnx/constant_fold.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-07-17T06:37:44.4340310Z copying torch/include/torch/csrc/jit/passes/onnx/constant_map.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-07-17T06:37:44.4341090Z copying torch/include/torch/csrc/jit/passes/onnx/function_extraction.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-07-17T06:37:44.4341880Z copying torch/include/torch/csrc/jit/passes/onnx/deduplicate_initializers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-07-17T06:37:44.4342690Z copying torch/include/torch/csrc/jit/passes/onnx/fixup_onnx_controlflow.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-07-17T06:37:44.4343500Z copying torch/include/torch/csrc/jit/passes/onnx/cast_all_constant_to_floating.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-07-17T06:37:44.4344490Z copying torch/include/torch/csrc/jit/passes/onnx/naming.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-07-17T06:37:44.4345820Z copying torch/include/torch/csrc/jit/passes/onnx/list_model_parameters.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-07-17T06:37:44.4347170Z copying torch/include/torch/csrc/jit/passes/onnx/remove_inplace_ops_for_onnx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-07-17T06:37:44.4348440Z copying torch/include/torch/csrc/jit/passes/onnx/prepare_division_for_onnx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-07-17T06:37:44.4349900Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion 2025-07-17T06:37:44.4350660Z copying torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion 2025-07-17T06:37:44.4351870Z copying torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_conversion.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion 2025-07-17T06:37:44.4353190Z copying torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/autograd_function_process.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion 2025-07-17T06:37:44.4354580Z copying torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_encapsulation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion 2025-07-17T06:37:44.4355860Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/dbr_quantization 2025-07-17T06:37:44.4356600Z copying torch/include/torch/csrc/jit/passes/dbr_quantization/remove_redundant_aliases.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/dbr_quantization 2025-07-17T06:37:44.4357830Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/utils 2025-07-17T06:37:44.4358470Z copying torch/include/torch/csrc/jit/passes/utils/optimization_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/utils 2025-07-17T06:37:44.4359930Z copying torch/include/torch/csrc/jit/passes/utils/memory_dag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/utils 2025-07-17T06:37:44.4361230Z copying torch/include/torch/csrc/jit/passes/utils/subgraph_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/utils 2025-07-17T06:37:44.4362390Z copying torch/include/torch/csrc/jit/passes/utils/op_registry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/utils 2025-07-17T06:37:44.4363670Z copying torch/include/torch/csrc/jit/passes/utils/check_alias_annotation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/utils 2025-07-17T06:37:44.4365040Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization 2025-07-17T06:37:44.4365710Z copying torch/include/torch/csrc/jit/passes/quantization/helper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization 2025-07-17T06:37:44.4366930Z copying torch/include/torch/csrc/jit/passes/quantization/quantization_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization 2025-07-17T06:37:44.4368220Z copying torch/include/torch/csrc/jit/passes/quantization/insert_observers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization 2025-07-17T06:37:44.4369470Z copying torch/include/torch/csrc/jit/passes/quantization/dedup_module_uses.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization 2025-07-17T06:37:44.4370900Z copying torch/include/torch/csrc/jit/passes/quantization/quantization_patterns.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization 2025-07-17T06:37:44.4372560Z copying torch/include/torch/csrc/jit/passes/quantization/finalize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization 2025-07-17T06:37:44.4373840Z copying torch/include/torch/csrc/jit/passes/quantization/insert_quant_dequant.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization 2025-07-17T06:37:44.4375270Z copying torch/include/torch/csrc/jit/passes/quantization/fusion_passes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization 2025-07-17T06:37:44.4376460Z copying torch/include/torch/csrc/jit/passes/quantization/register_packed_params.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization 2025-07-17T06:37:44.4377610Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen 2025-07-17T06:37:44.4382670Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/cuda 2025-07-17T06:37:44.4383410Z copying torch/include/torch/csrc/jit/codegen/cuda/interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/cuda 2025-07-17T06:37:44.4384010Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn 2025-07-17T06:37:44.4384650Z copying torch/include/torch/csrc/jit/codegen/onednn/LlgaTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn 2025-07-17T06:37:44.4385450Z copying torch/include/torch/csrc/jit/codegen/onednn/operator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn 2025-07-17T06:37:44.4386240Z copying torch/include/torch/csrc/jit/codegen/onednn/defer_size_check.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn 2025-07-17T06:37:44.4387060Z copying torch/include/torch/csrc/jit/codegen/onednn/layout_propagation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn 2025-07-17T06:37:44.4387860Z copying torch/include/torch/csrc/jit/codegen/onednn/interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn 2025-07-17T06:37:44.4388640Z copying torch/include/torch/csrc/jit/codegen/onednn/graph_fuser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn 2025-07-17T06:37:44.4389410Z copying torch/include/torch/csrc/jit/codegen/onednn/kernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn 2025-07-17T06:37:44.4390370Z copying torch/include/torch/csrc/jit/codegen/onednn/guard_shape.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn 2025-07-17T06:37:44.4391670Z copying torch/include/torch/csrc/jit/codegen/onednn/prepare_binary.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn 2025-07-17T06:37:44.4393210Z copying torch/include/torch/csrc/jit/codegen/onednn/graph_helper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn 2025-07-17T06:37:44.4394400Z copying torch/include/torch/csrc/jit/codegen/onednn/decompose_silu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn 2025-07-17T06:37:44.4395560Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser 2025-07-17T06:37:44.4396500Z copying torch/include/torch/csrc/jit/codegen/fuser/tensor_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser 2025-07-17T06:37:44.4397630Z copying torch/include/torch/csrc/jit/codegen/fuser/arg_spec.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser 2025-07-17T06:37:44.4398880Z copying torch/include/torch/csrc/jit/codegen/fuser/compiler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser 2025-07-17T06:37:44.4400070Z copying torch/include/torch/csrc/jit/codegen/fuser/fallback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser 2025-07-17T06:37:44.4401330Z copying torch/include/torch/csrc/jit/codegen/fuser/partition_desc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser 2025-07-17T06:37:44.4402650Z copying torch/include/torch/csrc/jit/codegen/fuser/fused_kernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser 2025-07-17T06:37:44.4403930Z copying torch/include/torch/csrc/jit/codegen/fuser/kernel_spec.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser 2025-07-17T06:37:44.4405180Z copying torch/include/torch/csrc/jit/codegen/fuser/interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser 2025-07-17T06:37:44.4406460Z copying torch/include/torch/csrc/jit/codegen/fuser/kernel_cache.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser 2025-07-17T06:37:44.4407750Z copying torch/include/torch/csrc/jit/codegen/fuser/codegen.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser 2025-07-17T06:37:44.4409030Z copying torch/include/torch/csrc/jit/codegen/fuser/executor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser 2025-07-17T06:37:44.4410290Z copying torch/include/torch/csrc/jit/codegen/fuser/tensor_desc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser 2025-07-17T06:37:44.4411590Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/cpu 2025-07-17T06:37:44.4412500Z copying torch/include/torch/csrc/jit/codegen/fuser/cpu/temp_file.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/cpu 2025-07-17T06:37:44.4413640Z copying torch/include/torch/csrc/jit/codegen/fuser/cpu/fused_kernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/cpu 2025-07-17T06:37:44.4414930Z copying torch/include/torch/csrc/jit/codegen/fuser/cpu/resource_strings.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/cpu 2025-07-17T06:37:44.4416240Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/cuda 2025-07-17T06:37:44.4416750Z copying torch/include/torch/csrc/jit/codegen/fuser/cuda/fused_kernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/cuda 2025-07-17T06:37:44.4418030Z copying torch/include/torch/csrc/jit/codegen/fuser/cuda/resource_strings.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/cuda 2025-07-17T06:37:44.4419350Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/testing 2025-07-17T06:37:44.4419980Z copying torch/include/torch/csrc/jit/testing/file_check.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/testing 2025-07-17T06:37:44.4421470Z copying torch/include/torch/csrc/jit/testing/hooks_for_testing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/testing 2025-07-17T06:37:44.4422550Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-07-17T06:37:44.4423210Z copying torch/include/torch/csrc/jit/mobile/promoted_prim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-07-17T06:37:44.4424480Z copying torch/include/torch/csrc/jit/mobile/parse_operators.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-07-17T06:37:44.4425730Z copying torch/include/torch/csrc/jit/mobile/observer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-07-17T06:37:44.4427090Z copying torch/include/torch/csrc/jit/mobile/upgrader_mobile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-07-17T06:37:44.4428460Z copying torch/include/torch/csrc/jit/mobile/flatbuffer_loader.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-07-17T06:37:44.4429900Z copying torch/include/torch/csrc/jit/mobile/quantization.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-07-17T06:37:44.4431130Z copying torch/include/torch/csrc/jit/mobile/profiler_edge.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-07-17T06:37:44.4432350Z copying torch/include/torch/csrc/jit/mobile/code.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-07-17T06:37:44.4433600Z copying torch/include/torch/csrc/jit/mobile/interpreter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-07-17T06:37:44.4434830Z copying torch/include/torch/csrc/jit/mobile/frame.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-07-17T06:37:44.4436020Z copying torch/include/torch/csrc/jit/mobile/method.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-07-17T06:37:44.4437300Z copying torch/include/torch/csrc/jit/mobile/debug_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-07-17T06:37:44.4438740Z copying torch/include/torch/csrc/jit/mobile/register_ops_common_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-07-17T06:37:44.4439750Z copying torch/include/torch/csrc/jit/mobile/prim_ops_registery.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-07-17T06:37:44.4441060Z copying torch/include/torch/csrc/jit/mobile/parse_bytecode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-07-17T06:37:44.4442310Z copying torch/include/torch/csrc/jit/mobile/import_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-07-17T06:37:44.4443600Z copying torch/include/torch/csrc/jit/mobile/import_export_common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-07-17T06:37:44.4444790Z copying torch/include/torch/csrc/jit/mobile/type_parser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-07-17T06:37:44.4446090Z copying torch/include/torch/csrc/jit/mobile/import.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-07-17T06:37:44.4447260Z copying torch/include/torch/csrc/jit/mobile/module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-07-17T06:37:44.4448590Z copying torch/include/torch/csrc/jit/mobile/function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-07-17T06:37:44.4449810Z copying torch/include/torch/csrc/jit/mobile/file_format.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-07-17T06:37:44.4451110Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/compatibility 2025-07-17T06:37:44.4451870Z copying torch/include/torch/csrc/jit/mobile/compatibility/backport.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/compatibility 2025-07-17T06:37:44.4453130Z copying torch/include/torch/csrc/jit/mobile/compatibility/runtime_compatibility.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/compatibility 2025-07-17T06:37:44.4454470Z copying torch/include/torch/csrc/jit/mobile/compatibility/backport_manager.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/compatibility 2025-07-17T06:37:44.4455650Z copying torch/include/torch/csrc/jit/mobile/compatibility/model_compatibility.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/compatibility 2025-07-17T06:37:44.4456840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer 2025-07-17T06:37:44.4457600Z copying torch/include/torch/csrc/jit/mobile/model_tracer/CustomClassTracer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer 2025-07-17T06:37:44.4458810Z copying torch/include/torch/csrc/jit/mobile/model_tracer/TensorUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer 2025-07-17T06:37:44.4460060Z copying torch/include/torch/csrc/jit/mobile/model_tracer/MobileModelRunner.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer 2025-07-17T06:37:44.4461340Z copying torch/include/torch/csrc/jit/mobile/model_tracer/OperatorCallTracer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer 2025-07-17T06:37:44.4462680Z copying torch/include/torch/csrc/jit/mobile/model_tracer/TracerRunner.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer 2025-07-17T06:37:44.4463930Z copying torch/include/torch/csrc/jit/mobile/model_tracer/BuildFeatureTracer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer 2025-07-17T06:37:44.4465280Z copying torch/include/torch/csrc/jit/mobile/model_tracer/KernelDTypeTracer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer 2025-07-17T06:37:44.4466560Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/nnc 2025-07-17T06:37:44.4467160Z copying torch/include/torch/csrc/jit/mobile/nnc/context.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/nnc 2025-07-17T06:37:44.4468420Z copying torch/include/torch/csrc/jit/mobile/nnc/registry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/nnc 2025-07-17T06:37:44.4469630Z copying torch/include/torch/csrc/jit/mobile/nnc/aot_compiler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/nnc 2025-07-17T06:37:44.4470800Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/train 2025-07-17T06:37:44.4471480Z copying torch/include/torch/csrc/jit/mobile/train/sequential.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/train 2025-07-17T06:37:44.4472710Z copying torch/include/torch/csrc/jit/mobile/train/export_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/train 2025-07-17T06:37:44.4473980Z copying torch/include/torch/csrc/jit/mobile/train/random.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/train 2025-07-17T06:37:44.4475170Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/train/optim 2025-07-17T06:37:44.4475910Z copying torch/include/torch/csrc/jit/mobile/train/optim/sgd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/train/optim 2025-07-17T06:37:44.4477150Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/operator_upgraders 2025-07-17T06:37:44.4477890Z copying torch/include/torch/csrc/jit/operator_upgraders/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/operator_upgraders 2025-07-17T06:37:44.4479270Z copying torch/include/torch/csrc/jit/operator_upgraders/version_map.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/operator_upgraders 2025-07-17T06:37:44.4480600Z copying torch/include/torch/csrc/jit/operator_upgraders/upgraders.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/operator_upgraders 2025-07-17T06:37:44.4481900Z copying torch/include/torch/csrc/jit/operator_upgraders/upgraders_entry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/operator_upgraders 2025-07-17T06:37:44.4483040Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/api 2025-07-17T06:37:44.4483700Z copying torch/include/torch/csrc/jit/api/function_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/api 2025-07-17T06:37:44.4485150Z copying torch/include/torch/csrc/jit/api/method.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/api 2025-07-17T06:37:44.4486310Z copying torch/include/torch/csrc/jit/api/compilation_unit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/api 2025-07-17T06:37:44.4487710Z copying torch/include/torch/csrc/jit/api/object.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/api 2025-07-17T06:37:44.4488990Z copying torch/include/torch/csrc/jit/api/module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/api 2025-07-17T06:37:44.4491190Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy 2025-07-17T06:37:44.4491510Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/generated 2025-07-17T06:37:44.4492520Z copying torch/include/torch/csrc/lazy/generated/LazyNativeFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/generated 2025-07-17T06:37:44.4494620Z copying torch/include/torch/csrc/lazy/generated/LazyNonNativeIr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/generated 2025-07-17T06:37:44.4496200Z copying torch/include/torch/csrc/lazy/generated/LazyIr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/generated 2025-07-17T06:37:44.4499590Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:44.4499970Z copying torch/include/torch/csrc/lazy/core/debug_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:44.4501390Z copying torch/include/torch/csrc/lazy/core/tensor_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:44.4502770Z copying torch/include/torch/csrc/lazy/core/config.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:44.4504000Z copying torch/include/torch/csrc/lazy/core/multi_wait.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:44.4505330Z copying torch/include/torch/csrc/lazy/core/ir.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:44.4506610Z copying torch/include/torch/csrc/lazy/core/permutation_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:44.4507880Z copying torch/include/torch/csrc/lazy/core/lazy_graph_executor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:44.4509630Z copying torch/include/torch/csrc/lazy/core/cache.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:44.4510780Z copying torch/include/torch/csrc/lazy/core/tensor_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:44.4511910Z copying torch/include/torch/csrc/lazy/core/shape.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:44.4513320Z copying torch/include/torch/csrc/lazy/core/thread_pool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:44.4514570Z copying torch/include/torch/csrc/lazy/core/unique.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:44.4515930Z copying torch/include/torch/csrc/lazy/core/shape_inference.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:44.4517360Z copying torch/include/torch/csrc/lazy/core/util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:44.4518440Z copying torch/include/torch/csrc/lazy/core/ir_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:44.4519740Z copying torch/include/torch/csrc/lazy/core/metrics.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:44.4521080Z copying torch/include/torch/csrc/lazy/core/ir_dump_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:44.4522320Z copying torch/include/torch/csrc/lazy/core/dynamic_ir.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:44.4523600Z copying torch/include/torch/csrc/lazy/core/ir_builder.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:44.4524830Z copying torch/include/torch/csrc/lazy/core/helpers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:44.4526160Z copying torch/include/torch/csrc/lazy/core/trie.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:44.4527460Z copying torch/include/torch/csrc/lazy/core/tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:44.4528830Z copying torch/include/torch/csrc/lazy/core/hash.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:44.4530080Z copying torch/include/torch/csrc/lazy/core/ir_metadata.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:44.4531450Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/internal_ops 2025-07-17T06:37:44.4532120Z copying torch/include/torch/csrc/lazy/core/internal_ops/ltc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/internal_ops 2025-07-17T06:37:44.4533800Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/ops 2025-07-17T06:37:44.4534130Z copying torch/include/torch/csrc/lazy/core/ops/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/ops 2025-07-17T06:37:44.4535580Z copying torch/include/torch/csrc/lazy/core/ops/arithmetic_ir_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/ops 2025-07-17T06:37:44.4536700Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/python 2025-07-17T06:37:44.4537290Z copying torch/include/torch/csrc/lazy/python/python_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/python 2025-07-17T06:37:44.4538470Z copying torch/include/torch/csrc/lazy/python/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/python 2025-07-17T06:37:44.4539680Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend 2025-07-17T06:37:44.4540370Z copying torch/include/torch/csrc/lazy/ts_backend/ts_lowering_context.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend 2025-07-17T06:37:44.4541670Z copying torch/include/torch/csrc/lazy/ts_backend/ts_autograd_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend 2025-07-17T06:37:44.4542890Z copying torch/include/torch/csrc/lazy/ts_backend/config.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend 2025-07-17T06:37:44.4544200Z copying torch/include/torch/csrc/lazy/ts_backend/ts_backend_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend 2025-07-17T06:37:44.4545380Z copying torch/include/torch/csrc/lazy/ts_backend/ts_eager_fallback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend 2025-07-17T06:37:44.4546720Z copying torch/include/torch/csrc/lazy/ts_backend/ts_node_lowering.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend 2025-07-17T06:37:44.4548090Z copying torch/include/torch/csrc/lazy/ts_backend/dynamic_ir.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend 2025-07-17T06:37:44.4549350Z copying torch/include/torch/csrc/lazy/ts_backend/ts_node.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend 2025-07-17T06:37:44.4550700Z copying torch/include/torch/csrc/lazy/ts_backend/ir_builder.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend 2025-07-17T06:37:44.4551920Z copying torch/include/torch/csrc/lazy/ts_backend/tensor_aten_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend 2025-07-17T06:37:44.4553260Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/ops 2025-07-17T06:37:44.4553920Z copying torch/include/torch/csrc/lazy/ts_backend/ops/generic.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/ops 2025-07-17T06:37:44.4555290Z copying torch/include/torch/csrc/lazy/ts_backend/ops/to_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/ops 2025-07-17T06:37:44.4556540Z copying torch/include/torch/csrc/lazy/ts_backend/ops/device_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/ops 2025-07-17T06:37:44.4557770Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/backend 2025-07-17T06:37:44.4558460Z copying torch/include/torch/csrc/lazy/backend/backend_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/backend 2025-07-17T06:37:44.4559710Z copying torch/include/torch/csrc/lazy/backend/backend_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/backend 2025-07-17T06:37:44.4561080Z copying torch/include/torch/csrc/lazy/backend/lowering_context.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/backend 2025-07-17T06:37:44.4562290Z copying torch/include/torch/csrc/lazy/backend/backend_device.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/backend 2025-07-17T06:37:44.4563580Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/mtia 2025-07-17T06:37:44.4564250Z copying torch/include/torch/csrc/mtia/Module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/mtia 2025-07-17T06:37:44.4565470Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/mtia/profiler 2025-07-17T06:37:44.4566200Z copying torch/include/torch/csrc/mtia/profiler/MTIAMemoryProfiler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/mtia/profiler 2025-07-17T06:37:44.4567370Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api 2025-07-17T06:37:44.4567860Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include 2025-07-17T06:37:44.4568370Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:44.4569030Z copying torch/include/torch/csrc/api/include/torch/fft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:44.4570380Z copying torch/include/torch/csrc/api/include/torch/nested.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:44.4571740Z copying torch/include/torch/csrc/api/include/torch/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:44.4573230Z copying torch/include/torch/csrc/api/include/torch/version.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:44.4574260Z copying torch/include/torch/csrc/api/include/torch/enum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:44.4575510Z copying torch/include/torch/csrc/api/include/torch/types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:44.4576750Z copying torch/include/torch/csrc/api/include/torch/all.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:44.4577930Z copying torch/include/torch/csrc/api/include/torch/data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:44.4579220Z copying torch/include/torch/csrc/api/include/torch/arg.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:44.4580420Z copying torch/include/torch/csrc/api/include/torch/xpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:44.4581730Z copying torch/include/torch/csrc/api/include/torch/torch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:44.4583010Z copying torch/include/torch/csrc/api/include/torch/optim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:44.4584250Z copying torch/include/torch/csrc/api/include/torch/jit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:44.4585550Z copying torch/include/torch/csrc/api/include/torch/nn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:44.4586800Z copying torch/include/torch/csrc/api/include/torch/imethod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:44.4588070Z copying torch/include/torch/csrc/api/include/torch/ordered_dict.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:44.4589470Z copying torch/include/torch/csrc/api/include/torch/cuda.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:44.4590700Z copying torch/include/torch/csrc/api/include/torch/autograd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:44.4591920Z copying torch/include/torch/csrc/api/include/torch/special.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:44.4593540Z copying torch/include/torch/csrc/api/include/torch/sparse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:44.4594820Z copying torch/include/torch/csrc/api/include/torch/mps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:44.4596100Z copying torch/include/torch/csrc/api/include/torch/python.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:44.4597420Z copying torch/include/torch/csrc/api/include/torch/serialize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:44.4598780Z copying torch/include/torch/csrc/api/include/torch/expanding_array.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:44.4600050Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn 2025-07-17T06:37:44.4600700Z copying torch/include/torch/csrc/api/include/torch/nn/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn 2025-07-17T06:37:44.4602140Z copying torch/include/torch/csrc/api/include/torch/nn/pimpl-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn 2025-07-17T06:37:44.4603300Z copying torch/include/torch/csrc/api/include/torch/nn/options.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn 2025-07-17T06:37:44.4604570Z copying torch/include/torch/csrc/api/include/torch/nn/functional.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn 2025-07-17T06:37:44.4605800Z copying torch/include/torch/csrc/api/include/torch/nn/modules.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn 2025-07-17T06:37:44.4607080Z copying torch/include/torch/csrc/api/include/torch/nn/pimpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn 2025-07-17T06:37:44.4608320Z copying torch/include/torch/csrc/api/include/torch/nn/module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn 2025-07-17T06:37:44.4609830Z copying torch/include/torch/csrc/api/include/torch/nn/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn 2025-07-17T06:37:44.4611380Z copying torch/include/torch/csrc/api/include/torch/nn/cloneable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn 2025-07-17T06:37:44.4612400Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-17T06:37:44.4613120Z copying torch/include/torch/csrc/api/include/torch/nn/options/normalization.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-17T06:37:44.4614390Z copying torch/include/torch/csrc/api/include/torch/nn/options/rnn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-17T06:37:44.4615800Z copying torch/include/torch/csrc/api/include/torch/nn/options/distance.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-17T06:37:44.4617130Z copying torch/include/torch/csrc/api/include/torch/nn/options/batchnorm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-17T06:37:44.4618380Z copying torch/include/torch/csrc/api/include/torch/nn/options/linear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-17T06:37:44.4619630Z copying torch/include/torch/csrc/api/include/torch/nn/options/instancenorm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-17T06:37:44.4620850Z copying torch/include/torch/csrc/api/include/torch/nn/options/vision.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-17T06:37:44.4622360Z copying torch/include/torch/csrc/api/include/torch/nn/options/transformercoder.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-17T06:37:44.4623450Z copying torch/include/torch/csrc/api/include/torch/nn/options/dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-17T06:37:44.4624730Z copying torch/include/torch/csrc/api/include/torch/nn/options/upsampling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-17T06:37:44.4626230Z copying torch/include/torch/csrc/api/include/torch/nn/options/embedding.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-17T06:37:44.4627340Z copying torch/include/torch/csrc/api/include/torch/nn/options/fold.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-17T06:37:44.4628680Z copying torch/include/torch/csrc/api/include/torch/nn/options/activation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-17T06:37:44.4630490Z copying torch/include/torch/csrc/api/include/torch/nn/options/transformer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-17T06:37:44.4631330Z copying torch/include/torch/csrc/api/include/torch/nn/options/pooling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-17T06:37:44.4632950Z copying torch/include/torch/csrc/api/include/torch/nn/options/transformerlayer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-17T06:37:44.4634160Z copying torch/include/torch/csrc/api/include/torch/nn/options/adaptive.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-17T06:37:44.4635400Z copying torch/include/torch/csrc/api/include/torch/nn/options/conv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-17T06:37:44.4636840Z copying torch/include/torch/csrc/api/include/torch/nn/options/padding.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-17T06:37:44.4638090Z copying torch/include/torch/csrc/api/include/torch/nn/options/pixelshuffle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-17T06:37:44.4639320Z copying torch/include/torch/csrc/api/include/torch/nn/options/loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-17T06:37:44.4640790Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/parallel 2025-07-17T06:37:44.4641510Z copying torch/include/torch/csrc/api/include/torch/nn/parallel/data_parallel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/parallel 2025-07-17T06:37:44.4642860Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/utils 2025-07-17T06:37:44.4643500Z copying torch/include/torch/csrc/api/include/torch/nn/utils/rnn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/utils 2025-07-17T06:37:44.4644910Z copying torch/include/torch/csrc/api/include/torch/nn/utils/clip_grad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/utils 2025-07-17T06:37:44.4646220Z copying torch/include/torch/csrc/api/include/torch/nn/utils/convert_parameters.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/utils 2025-07-17T06:37:44.4647630Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:44.4648250Z copying torch/include/torch/csrc/api/include/torch/nn/modules/normalization.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:44.4649450Z copying torch/include/torch/csrc/api/include/torch/nn/modules/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:44.4650750Z copying torch/include/torch/csrc/api/include/torch/nn/modules/rnn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:44.4652130Z copying torch/include/torch/csrc/api/include/torch/nn/modules/distance.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:44.4653550Z copying torch/include/torch/csrc/api/include/torch/nn/modules/batchnorm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:44.4654820Z copying torch/include/torch/csrc/api/include/torch/nn/modules/linear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:44.4656400Z copying torch/include/torch/csrc/api/include/torch/nn/modules/instancenorm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:44.4657860Z copying torch/include/torch/csrc/api/include/torch/nn/modules/transformercoder.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:44.4659100Z copying torch/include/torch/csrc/api/include/torch/nn/modules/_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:44.4660340Z copying torch/include/torch/csrc/api/include/torch/nn/modules/dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:44.4661830Z copying torch/include/torch/csrc/api/include/torch/nn/modules/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:44.4663030Z copying torch/include/torch/csrc/api/include/torch/nn/modules/upsampling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:44.4664360Z copying torch/include/torch/csrc/api/include/torch/nn/modules/embedding.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:44.4665720Z copying torch/include/torch/csrc/api/include/torch/nn/modules/fold.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:44.4667260Z copying torch/include/torch/csrc/api/include/torch/nn/modules/activation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:44.4668520Z copying torch/include/torch/csrc/api/include/torch/nn/modules/transformer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:44.4669700Z copying torch/include/torch/csrc/api/include/torch/nn/modules/pooling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:44.4671320Z copying torch/include/torch/csrc/api/include/torch/nn/modules/transformerlayer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:44.4672670Z copying torch/include/torch/csrc/api/include/torch/nn/modules/adaptive.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:44.4674390Z copying torch/include/torch/csrc/api/include/torch/nn/modules/conv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:44.4675970Z copying torch/include/torch/csrc/api/include/torch/nn/modules/padding.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:44.4677450Z copying torch/include/torch/csrc/api/include/torch/nn/modules/pixelshuffle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:44.4678760Z copying torch/include/torch/csrc/api/include/torch/nn/modules/loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:44.4680340Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-07-17T06:37:44.4681060Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/named_any.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-07-17T06:37:44.4682360Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/any_value.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-07-17T06:37:44.4683830Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/modulelist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-07-17T06:37:44.4685260Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/moduledict.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-07-17T06:37:44.4686590Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/sequential.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-07-17T06:37:44.4687990Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/functional.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-07-17T06:37:44.4689410Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterlist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-07-17T06:37:44.4690700Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterdict.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-07-17T06:37:44.4691960Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/any.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-07-17T06:37:44.4693480Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/any_module_holder.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-07-17T06:37:44.4694720Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-17T06:37:44.4695590Z copying torch/include/torch/csrc/api/include/torch/nn/functional/normalization.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-17T06:37:44.4696710Z copying torch/include/torch/csrc/api/include/torch/nn/functional/distance.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-17T06:37:44.4697940Z copying torch/include/torch/csrc/api/include/torch/nn/functional/batchnorm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-17T06:37:44.4699320Z copying torch/include/torch/csrc/api/include/torch/nn/functional/linear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-17T06:37:44.4700560Z copying torch/include/torch/csrc/api/include/torch/nn/functional/instancenorm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-17T06:37:44.4701840Z copying torch/include/torch/csrc/api/include/torch/nn/functional/vision.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-17T06:37:44.4703130Z copying torch/include/torch/csrc/api/include/torch/nn/functional/dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-17T06:37:44.4704450Z copying torch/include/torch/csrc/api/include/torch/nn/functional/upsampling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-17T06:37:44.4705810Z copying torch/include/torch/csrc/api/include/torch/nn/functional/embedding.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-17T06:37:44.4707080Z copying torch/include/torch/csrc/api/include/torch/nn/functional/fold.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-17T06:37:44.4708330Z copying torch/include/torch/csrc/api/include/torch/nn/functional/activation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-17T06:37:44.4709930Z copying torch/include/torch/csrc/api/include/torch/nn/functional/pooling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-17T06:37:44.4711450Z copying torch/include/torch/csrc/api/include/torch/nn/functional/conv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-17T06:37:44.4712690Z copying torch/include/torch/csrc/api/include/torch/nn/functional/padding.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-17T06:37:44.4713900Z copying torch/include/torch/csrc/api/include/torch/nn/functional/pixelshuffle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-17T06:37:44.4715540Z copying torch/include/torch/csrc/api/include/torch/nn/functional/loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-17T06:37:44.4716810Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/python 2025-07-17T06:37:44.4717540Z copying torch/include/torch/csrc/api/include/torch/python/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/python 2025-07-17T06:37:44.4718740Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim 2025-07-17T06:37:44.4719410Z copying torch/include/torch/csrc/api/include/torch/optim/rmsprop.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim 2025-07-17T06:37:44.4721010Z copying torch/include/torch/csrc/api/include/torch/optim/lbfgs.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim 2025-07-17T06:37:44.4721980Z copying torch/include/torch/csrc/api/include/torch/optim/optimizer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim 2025-07-17T06:37:44.4723210Z copying torch/include/torch/csrc/api/include/torch/optim/adagrad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim 2025-07-17T06:37:44.4724400Z copying torch/include/torch/csrc/api/include/torch/optim/sgd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim 2025-07-17T06:37:44.4725730Z copying torch/include/torch/csrc/api/include/torch/optim/serialize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim 2025-07-17T06:37:44.4727160Z copying torch/include/torch/csrc/api/include/torch/optim/adamw.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim 2025-07-17T06:37:44.4728760Z copying torch/include/torch/csrc/api/include/torch/optim/adam.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim 2025-07-17T06:37:44.4729780Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/schedulers 2025-07-17T06:37:44.4730560Z copying torch/include/torch/csrc/api/include/torch/optim/schedulers/reduce_on_plateau_scheduler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/schedulers 2025-07-17T06:37:44.4731930Z copying torch/include/torch/csrc/api/include/torch/optim/schedulers/lr_scheduler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/schedulers 2025-07-17T06:37:44.4733140Z copying torch/include/torch/csrc/api/include/torch/optim/schedulers/step_lr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/schedulers 2025-07-17T06:37:44.4734350Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/serialize 2025-07-17T06:37:44.4734990Z copying torch/include/torch/csrc/api/include/torch/serialize/archive.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/serialize 2025-07-17T06:37:44.4736280Z copying torch/include/torch/csrc/api/include/torch/serialize/input-archive.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/serialize 2025-07-17T06:37:44.4737640Z copying torch/include/torch/csrc/api/include/torch/serialize/output-archive.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/serialize 2025-07-17T06:37:44.4738790Z copying torch/include/torch/csrc/api/include/torch/serialize/tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/serialize 2025-07-17T06:37:44.4740170Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/detail 2025-07-17T06:37:44.4740700Z copying torch/include/torch/csrc/api/include/torch/detail/static.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/detail 2025-07-17T06:37:44.4741990Z copying torch/include/torch/csrc/api/include/torch/detail/TensorDataContainer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/detail 2025-07-17T06:37:44.4743360Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data 2025-07-17T06:37:44.4744500Z copying torch/include/torch/csrc/api/include/torch/data/example.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data 2025-07-17T06:37:44.4745540Z copying torch/include/torch/csrc/api/include/torch/data/dataloader_options.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data 2025-07-17T06:37:44.4746800Z copying torch/include/torch/csrc/api/include/torch/data/worker_exception.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data 2025-07-17T06:37:44.4748090Z copying torch/include/torch/csrc/api/include/torch/data/dataloader.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data 2025-07-17T06:37:44.4749350Z copying torch/include/torch/csrc/api/include/torch/data/samplers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data 2025-07-17T06:37:44.4750810Z copying torch/include/torch/csrc/api/include/torch/data/datasets.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data 2025-07-17T06:37:44.4752120Z copying torch/include/torch/csrc/api/include/torch/data/transforms.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data 2025-07-17T06:37:44.4753390Z copying torch/include/torch/csrc/api/include/torch/data/iterator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data 2025-07-17T06:37:44.4754680Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets 2025-07-17T06:37:44.4755310Z copying torch/include/torch/csrc/api/include/torch/data/datasets/mnist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets 2025-07-17T06:37:44.4756630Z copying torch/include/torch/csrc/api/include/torch/data/datasets/shared.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets 2025-07-17T06:37:44.4757930Z copying torch/include/torch/csrc/api/include/torch/data/datasets/map.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets 2025-07-17T06:37:44.4759100Z copying torch/include/torch/csrc/api/include/torch/data/datasets/chunk.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets 2025-07-17T06:37:44.4760750Z copying torch/include/torch/csrc/api/include/torch/data/datasets/stateful.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets 2025-07-17T06:37:44.4761980Z copying torch/include/torch/csrc/api/include/torch/data/datasets/tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets 2025-07-17T06:37:44.4770360Z copying torch/include/torch/csrc/api/include/torch/data/datasets/base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets 2025-07-17T06:37:44.4771690Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/detail 2025-07-17T06:37:44.4772410Z copying torch/include/torch/csrc/api/include/torch/data/detail/data_shuttle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/detail 2025-07-17T06:37:44.4773810Z copying torch/include/torch/csrc/api/include/torch/data/detail/sequencers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/detail 2025-07-17T06:37:44.4775080Z copying torch/include/torch/csrc/api/include/torch/data/detail/queue.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/detail 2025-07-17T06:37:44.4776530Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/transforms 2025-07-17T06:37:44.4777260Z copying torch/include/torch/csrc/api/include/torch/data/transforms/lambda.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/transforms 2025-07-17T06:37:44.4778520Z copying torch/include/torch/csrc/api/include/torch/data/transforms/stack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/transforms 2025-07-17T06:37:44.4779850Z copying torch/include/torch/csrc/api/include/torch/data/transforms/collate.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/transforms 2025-07-17T06:37:44.4781110Z copying torch/include/torch/csrc/api/include/torch/data/transforms/tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/transforms 2025-07-17T06:37:44.4782420Z copying torch/include/torch/csrc/api/include/torch/data/transforms/base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/transforms 2025-07-17T06:37:44.4783840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers 2025-07-17T06:37:44.4784310Z copying torch/include/torch/csrc/api/include/torch/data/samplers/sequential.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers 2025-07-17T06:37:44.4785750Z copying torch/include/torch/csrc/api/include/torch/data/samplers/custom_batch_request.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers 2025-07-17T06:37:44.4786990Z copying torch/include/torch/csrc/api/include/torch/data/samplers/stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers 2025-07-17T06:37:44.4788340Z copying torch/include/torch/csrc/api/include/torch/data/samplers/distributed.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers 2025-07-17T06:37:44.4789620Z copying torch/include/torch/csrc/api/include/torch/data/samplers/serialize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers 2025-07-17T06:37:44.4791010Z copying torch/include/torch/csrc/api/include/torch/data/samplers/random.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers 2025-07-17T06:37:44.4792250Z copying torch/include/torch/csrc/api/include/torch/data/samplers/base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers 2025-07-17T06:37:44.4793840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/dataloader 2025-07-17T06:37:44.4794300Z copying torch/include/torch/csrc/api/include/torch/data/dataloader/stateless.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/dataloader 2025-07-17T06:37:44.4795590Z copying torch/include/torch/csrc/api/include/torch/data/dataloader/stateful.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/dataloader 2025-07-17T06:37:44.4796920Z copying torch/include/torch/csrc/api/include/torch/data/dataloader/base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/dataloader 2025-07-17T06:37:44.4798050Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-07-17T06:37:44.4798760Z copying torch/include/torch/csrc/profiler/combined_traceback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-07-17T06:37:44.4800040Z copying torch/include/torch/csrc/profiler/events.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-07-17T06:37:44.4801240Z copying torch/include/torch/csrc/profiler/kineto_shim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-07-17T06:37:44.4802510Z copying torch/include/torch/csrc/profiler/api.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-07-17T06:37:44.4803920Z copying torch/include/torch/csrc/profiler/kineto_client_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-07-17T06:37:44.4805100Z copying torch/include/torch/csrc/profiler/util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-07-17T06:37:44.4806390Z copying torch/include/torch/csrc/profiler/containers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-07-17T06:37:44.4807700Z copying torch/include/torch/csrc/profiler/collection.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-07-17T06:37:44.4809190Z copying torch/include/torch/csrc/profiler/perf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-07-17T06:37:44.4810490Z copying torch/include/torch/csrc/profiler/data_flow.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-07-17T06:37:44.4811870Z copying torch/include/torch/csrc/profiler/perf-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-07-17T06:37:44.4813100Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/stubs 2025-07-17T06:37:44.4813690Z copying torch/include/torch/csrc/profiler/stubs/base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/stubs 2025-07-17T06:37:44.4814980Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/standalone 2025-07-17T06:37:44.4815680Z copying torch/include/torch/csrc/profiler/standalone/privateuse1_observer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/standalone 2025-07-17T06:37:44.4816940Z copying torch/include/torch/csrc/profiler/standalone/nvtx_observer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/standalone 2025-07-17T06:37:44.4818130Z copying torch/include/torch/csrc/profiler/standalone/itt_observer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/standalone 2025-07-17T06:37:44.4819400Z copying torch/include/torch/csrc/profiler/standalone/execution_trace_observer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/standalone 2025-07-17T06:37:44.4820610Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/python 2025-07-17T06:37:44.4821320Z copying torch/include/torch/csrc/profiler/python/pybind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/python 2025-07-17T06:37:44.4822710Z copying torch/include/torch/csrc/profiler/python/combined_traceback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/python 2025-07-17T06:37:44.4824090Z copying torch/include/torch/csrc/profiler/python/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/python 2025-07-17T06:37:44.4825380Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/orchestration 2025-07-17T06:37:44.4826180Z copying torch/include/torch/csrc/profiler/orchestration/vulkan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/orchestration 2025-07-17T06:37:44.4827390Z copying torch/include/torch/csrc/profiler/orchestration/observer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/orchestration 2025-07-17T06:37:44.4828680Z copying torch/include/torch/csrc/profiler/orchestration/python_tracer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/orchestration 2025-07-17T06:37:44.4829770Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-07-17T06:37:44.4830500Z copying torch/include/torch/csrc/profiler/unwind/unwinder.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-07-17T06:37:44.4831780Z copying torch/include/torch/csrc/profiler/unwind/dwarf_enums.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-07-17T06:37:44.4832960Z copying torch/include/torch/csrc/profiler/unwind/unwind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-07-17T06:37:44.4834160Z copying torch/include/torch/csrc/profiler/unwind/sections.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-07-17T06:37:44.4835470Z copying torch/include/torch/csrc/profiler/unwind/unwind_error.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-07-17T06:37:44.4836750Z copying torch/include/torch/csrc/profiler/unwind/eh_frame_hdr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-07-17T06:37:44.4838000Z copying torch/include/torch/csrc/profiler/unwind/debug_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-07-17T06:37:44.4839630Z copying torch/include/torch/csrc/profiler/unwind/action.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-07-17T06:37:44.4840740Z copying torch/include/torch/csrc/profiler/unwind/mem_file.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-07-17T06:37:44.4842100Z copying torch/include/torch/csrc/profiler/unwind/fast_symbolizer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-07-17T06:37:44.4843370Z copying torch/include/torch/csrc/profiler/unwind/fde.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-07-17T06:37:44.4844860Z copying torch/include/torch/csrc/profiler/unwind/communicate.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-07-17T06:37:44.4846040Z copying torch/include/torch/csrc/profiler/unwind/lexer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-07-17T06:37:44.4847350Z copying torch/include/torch/csrc/profiler/unwind/line_number_program.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-07-17T06:37:44.4848840Z copying torch/include/torch/csrc/profiler/unwind/dwarf_symbolize_enums.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-07-17T06:37:44.4849990Z copying torch/include/torch/csrc/profiler/unwind/range_table.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-07-17T06:37:44.4851140Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/tensor 2025-07-17T06:37:44.4851870Z copying torch/include/torch/csrc/tensor/python_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/tensor 2025-07-17T06:37:44.4853090Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/export 2025-07-17T06:37:44.4853760Z copying torch/include/torch/csrc/export/pt2_archive_constants.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/export 2025-07-17T06:37:44.4855270Z copying torch/include/torch/csrc/export/pybind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/export 2025-07-17T06:37:44.4856390Z copying torch/include/torch/csrc/export/example_upgraders.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/export 2025-07-17T06:37:44.4857530Z copying torch/include/torch/csrc/export/upgrader.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/export 2025-07-17T06:37:44.4858810Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/functorch 2025-07-17T06:37:44.4859430Z copying torch/include/torch/csrc/functorch/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/functorch 2025-07-17T06:37:44.4860850Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-07-17T06:37:44.4861230Z copying torch/include/kineto/ClientInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-07-17T06:37:44.4862470Z copying torch/include/kineto/GenericTraceActivity.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-07-17T06:37:44.4863820Z copying torch/include/kineto/IActivityProfiler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-07-17T06:37:44.4871410Z copying torch/include/kineto/Config.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-07-17T06:37:44.4872710Z copying torch/include/kineto/TraceSpan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-07-17T06:37:44.4873960Z copying torch/include/kineto/LoggingAPI.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-07-17T06:37:44.4875320Z copying torch/include/kineto/ITraceActivity.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-07-17T06:37:44.4876550Z copying torch/include/kineto/ActivityProfilerInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-07-17T06:37:44.4877920Z copying torch/include/kineto/ActivityTraceInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-07-17T06:37:44.4879360Z copying torch/include/kineto/output_base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-07-17T06:37:44.4880460Z copying torch/include/kineto/ThreadUtil.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-07-17T06:37:44.4881620Z copying torch/include/kineto/ActivityType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-07-17T06:37:44.4882820Z copying torch/include/kineto/libkineto.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-07-17T06:37:44.4884180Z copying torch/include/kineto/time_since_epoch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-07-17T06:37:44.4885540Z copying torch/include/kineto/ILoggerObserver.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-07-17T06:37:44.4886790Z copying torch/include/kineto/AbstractConfig.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-07-17T06:37:44.4888130Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai 2025-07-17T06:37:44.4888700Z copying torch/include/kai/kai_common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai 2025-07-17T06:37:44.4890240Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels 2025-07-17T06:37:44.4890740Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul 2025-07-17T06:37:44.4891310Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-17T06:37:44.4892270Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x4_qsi4cxp8x4_8x8x32_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-17T06:37:44.4893900Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp8x8_8x8x32_neon_i8mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-17T06:37:44.4895160Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1vlx8_qsi4cxp4vlx8_1vlx4vl_sme2_mopa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-17T06:37:44.4896810Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x8_qsi4cxp4x8_1x4x32_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-17T06:37:44.4898060Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp4x8_4x4x32_neon_i8mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-17T06:37:44.4899550Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi4cxp4vlx4_1x4vl_sme2_sdot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-17T06:37:44.4900820Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp_qsi4cxp_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-17T06:37:44.4902840Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi4cxp4x4_1x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-17T06:37:44.4903910Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp4x8_8x4x32_neon_i8mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-17T06:37:44.4905410Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x8_qsi4cxp8x8_1x8x32_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-17T06:37:44.4906750Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp4x4_16x4x32_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-17T06:37:44.4908670Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp8x8_4x8x32_neon_i8mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-17T06:37:44.4909440Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp 2025-07-17T06:37:44.4910320Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp1x4_qsi4cxp4x4_1x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp 2025-07-17T06:37:44.4911980Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp1x8_qsi4cxp4x8_1x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp 2025-07-17T06:37:44.4913360Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp_qsi4cxp_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp 2025-07-17T06:37:44.4914840Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp4x4_qsi4cxp4x4_16x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp 2025-07-17T06:37:44.4916160Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp4x8_qsi4cxp4x8_16x4_neon_i8mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp 2025-07-17T06:37:44.4917320Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p 2025-07-17T06:37:44.4918110Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p 2025-07-17T06:37:44.4919510Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p2vlx2b_1x16vl_sme2_dot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p 2025-07-17T06:37:44.4920880Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p16x1biasf16_6x16x8_neon_mla.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p 2025-07-17T06:37:44.4922180Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p 2025-07-17T06:37:44.4922880Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p 2025-07-17T06:37:44.4924390Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p8x1biasf32_6x8x4_neon_mla.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p 2025-07-17T06:37:44.4925680Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p2vlx1b_1x16vl_sme2_mla.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p 2025-07-17T06:37:44.4927130Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p16vlx1b_1x16vl_sme2_mla.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p 2025-07-17T06:37:44.4928430Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-07-17T06:37:44.4929450Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p4x4_qsi4c32p4x4_16x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-07-17T06:37:44.4930920Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qsi4c32p4x8_16x4_neon_i8mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-07-17T06:37:44.4932250Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p_qsi4c32p_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-07-17T06:37:44.4933870Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1vlx4_qsi4c32p4vlx4_1vlx4vl_sme2_mopa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-07-17T06:37:44.4934960Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x4_qsi4c32p4vlx4_1x4vl_sme2_sdot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-07-17T06:37:44.4936320Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x4_qsi4c32p4x4_1x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-07-17T06:37:44.4937660Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x8_qsi4c32p4x8_1x4x32_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-07-17T06:37:44.4938930Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qsi4c32p4x8_8x4x32_neon_i8mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-07-17T06:37:44.4940100Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p 2025-07-17T06:37:44.4940950Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p4x8_qai4c32p4x8_8x4_neon_i8mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p 2025-07-17T06:37:44.4942290Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p1x8_qai4c32p4x8_1x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p 2025-07-17T06:37:44.4943930Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p_qai4c32p_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p 2025-07-17T06:37:44.4944780Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:44.4945500Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi8cxp_qsi8cx_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:44.4946820Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_x32p2vlx1b_x32_x32_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:44.4948080Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p16vlx1b_f32_f32_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:44.4949500Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi4c32p_qsu4c32s1s0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:44.4950730Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qai8dxp_f32.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:44.4951970Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32p_qsu4c32s1s0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:44.4953300Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p8x1biasf32_f32_f32_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:44.4954610Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_x8p2vlx4_x8_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:44.4955880Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32p_f32.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:44.4957140Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x8p2vlx4_x8p_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:44.4958550Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p2vlx2b_f32_x32_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:44.4959780Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x32p2vlx1_x32p_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:44.4961140Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32pscalef32_f32_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:44.4962370Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi8cxp_qsi8cx_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:44.4963730Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32pscalef32_f16_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:44.4964990Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi8cxp2vlx4sb_qs8cx_f32_i32_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:44.4966300Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4cxp_qs4cxs1s0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:44.4967650Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_bf16p8x4_f32_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:44.4968930Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_f32p2vlx1_f32_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:44.4970330Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_x16p2vlx2b_x16_x16_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:44.4971660Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p2vlx1biasf32_f32_f32_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:44.4972900Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_bf16p8x4_f16_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:44.4974260Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi4cxp_qs4cxs1s0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:44.4975600Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4cxps1s0_qsu4cxs1s0_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:44.4976960Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qai4c32p_qau4c32s0s1_f32_f32_f32_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:44.4978190Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32p_f32_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:44.4979640Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p12x4biasf32_f16_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:44.4980990Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_qsi8cxp2vlx4sb_qs8cx_f32_i32_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:44.4982310Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_bf16p2vlx2_f32_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:44.4983500Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f16p16x1biasf16_f16_f16_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:44.4984840Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_quant_pack_kxn_bf16p12x4biasf32_f32_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:44.4986400Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_bf16p1x4_f32_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:44.4987430Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_x16p2vlx2_x16_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:44.4988890Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32ps1s0scalef16_qsu4c32s16s0_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:44.4990080Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x16p2vlx2_x16p_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:44.4991340Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_x16p2vlx2b_x16_x16_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:44.4992620Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32pscalef16_qsu4c32s16s0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:44.4993900Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qai8dxp_f16_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:44.4995160Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_x16p2vlx2b_x16_x16_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:44.4996550Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_f32p2vlx1biasf32_f32_f32_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:44.4997870Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p12x4biasf16_f16_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:44.4999130Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-17T06:37:44.5000040Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp_qsi4c32p_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-17T06:37:44.5001370Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p8x8_4x8x32_neon_i8mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-17T06:37:44.5002840Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p4x8_16x4x32_neon_i8mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-17T06:37:44.5004120Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x4_qsi4c32p4x4_1x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-17T06:37:44.5005460Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x4_qsi4c32p4x4_16x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-17T06:37:44.5006910Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p8x8_4x8_neon_i8mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-17T06:37:44.5008190Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p4x8_8x4x32_neon_i8mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-17T06:37:44.5009580Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x4_qsi4c32p8x4_4x8_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-17T06:37:44.5010980Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p4x8_1x4x32_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-17T06:37:44.5012290Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p8x8_1x8_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-17T06:37:44.5013510Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x4_qsi4c32p8x4_1x8_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-17T06:37:44.5014890Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p8x8_1x8x32_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-17T06:37:44.5016030Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp 2025-07-17T06:37:44.5016890Z copying torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp/kai_matmul_clamp_qai8_qai8_qsi8cxp_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp 2025-07-17T06:37:44.5018280Z copying torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp/kai_matmul_clamp_qai8_qai8_qsi8cxp2vlx4sb_1x16vl_sme2_dot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp 2025-07-17T06:37:44.5019490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp 2025-07-17T06:37:44.5025340Z copying torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp/kai_imatmul_clamp_qai8_qai8p2vlx4_qsi8cxpsb2vlx4_2vlx2vl_sme2_mopa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp 2025-07-17T06:37:44.5025920Z copying torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp/kai_imatmul_clamp_qai8_qai8p_qsi8cxp_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp 2025-07-17T06:37:44.5026180Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-07-17T06:37:44.5026750Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi8cxp4x8_16x4_neon_i8mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-07-17T06:37:44.5027330Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp4x4_qsi8cxp4x4_16x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-07-17T06:37:44.5027900Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi8cxp4x4_1x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-07-17T06:37:44.5028470Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1x8_qsi8cxp4x8_1x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-07-17T06:37:44.5029020Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp_qsi8cxp_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-07-17T06:37:44.5029950Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp 2025-07-17T06:37:44.5030870Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp1x8_qsi8cxp4x8_1x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp 2025-07-17T06:37:44.5032310Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp1x4_qsi8cxp4x4_1x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp 2025-07-17T06:37:44.5033720Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp_qsi8cxp_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp 2025-07-17T06:37:44.5035070Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp4x8_qsi8cxp4x8_16x4_neon_i8mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp 2025-07-17T06:37:44.5036380Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp4x4_qsi8cxp4x4_16x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp 2025-07-17T06:37:44.5037570Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p 2025-07-17T06:37:44.5038410Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p8x4_bf16p12x4b_8x12_neon_mmla.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p 2025-07-17T06:37:44.5039680Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p_bf16p_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p 2025-07-17T06:37:44.5041050Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p1x4_bf16p12x4b_1x36_neon_dot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p 2025-07-17T06:37:44.5042140Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p 2025-07-17T06:37:44.5043060Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p1x8_qai4c32p4x8_1x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p 2025-07-17T06:37:44.5044850Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p_qai4c32p_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p 2025-07-17T06:37:44.5045750Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qai4c32p4x8_8x4_neon_i8mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p 2025-07-17T06:37:44.5047230Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p 2025-07-17T06:37:44.5047810Z copying torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p2vlx2_bf16p2vlx2_2vlx2vl_sme2_mopa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p 2025-07-17T06:37:44.5049060Z copying torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p_bf16p_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p 2025-07-17T06:37:44.5050200Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p 2025-07-17T06:37:44.5050980Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p/kai_matmul_clamp_f32_f32p_f32p_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p 2025-07-17T06:37:44.5052280Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p/kai_matmul_clamp_f32_f32p2vlx1_f32p2vlx1biasf32_sme2_mopa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p 2025-07-17T06:37:44.5053480Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p 2025-07-17T06:37:44.5054390Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p/kai_matmul_clamp_f16_f16p2vlx2_f16p2vlx2_2vlx2vl_sme2_mopa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p 2025-07-17T06:37:44.5055620Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p/kai_matmul_clamp_f16_f16p_f16p_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p 2025-07-17T06:37:44.5056770Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp 2025-07-17T06:37:44.5057820Z copying torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp/kai_matmul_clamp_qai8_qai8p_qsi8cxpsb_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp 2025-07-17T06:37:44.5059040Z copying torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp/kai_matmul_clamp_qai8_qai8p2vlx4_qsi8cxpsb2vlx4_2vlx2vl_sme2_mopa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp 2025-07-17T06:37:44.5060070Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p 2025-07-17T06:37:44.5060940Z copying torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p/kai_imatmul_clamp_f16_f16p_f16p_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p 2025-07-17T06:37:44.5062260Z copying torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p/kai_imatmul_clamp_f16_f16p2vlx2_f16p2vlx2_2vlx2vl_sme2_mopa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p 2025-07-17T06:37:44.5063570Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p 2025-07-17T06:37:44.5064220Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p/kai_matmul_clamp_f16_bf16p_bf16p_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p 2025-07-17T06:37:44.5065530Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p/kai_matmul_clamp_f16_bf16p8x4_bf16p12x4b_8x12_neon_mmla.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p 2025-07-17T06:37:44.5066800Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p 2025-07-17T06:37:44.5067540Z copying torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p/kai_imatmul_clamp_f32_f32p_f32p_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p 2025-07-17T06:37:44.5068870Z copying torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p/kai_imatmul_clamp_f32_f32p2vlx1_f32p2vlx1b_2vlx2vl_sme2_mopa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p 2025-07-17T06:37:44.5069860Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5070500Z copying torch/include/ATen/Formatting.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5071790Z copying torch/include/ATen/NestedTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5073270Z copying torch/include/ATen/CPUFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5074330Z copying torch/include/ATen/LegacyBatchedFallback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5075600Z copying torch/include/ATen/CollapseDims.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5077100Z copying torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5078180Z copying torch/include/ATen/MetaFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5079380Z copying torch/include/ATen/Utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5080670Z copying torch/include/ATen/TensorOptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5081920Z copying torch/include/ATen/DeviceAccelerator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5083060Z copying torch/include/ATen/TensorUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5084300Z copying torch/include/ATen/MemoryOverlap.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5085500Z copying torch/include/ATen/TensorSubclassLikeUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5086750Z copying torch/include/ATen/LegacyVmapMode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5088090Z copying torch/include/ATen/InitialTensorOptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5089230Z copying torch/include/ATen/Version.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5090400Z copying torch/include/ATen/DLConvertor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5091570Z copying torch/include/ATen/Device.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5093960Z copying torch/include/ATen/FuncTorchTLS.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5094370Z copying torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5095270Z copying torch/include/ATen/jiterator_macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5096460Z copying torch/include/ATen/Operators.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5098400Z copying torch/include/ATen/CPUFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5099550Z copying torch/include/ATen/ceil_div.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5100940Z copying torch/include/ATen/EmptyTensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5102160Z copying torch/include/ATen/NativeMetaFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5103720Z copying torch/include/ATen/dlpack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5105060Z copying torch/include/ATen/Config.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5106370Z copying torch/include/ATen/ThreadLocalPythonObjects.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5107450Z copying torch/include/ATen/Backtrace.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5108850Z copying torch/include/ATen/SparseCsrTensorUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5110150Z copying torch/include/ATen/TracerMode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5111480Z copying torch/include/ATen/BlasBackend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5112620Z copying torch/include/ATen/Backend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5113880Z copying torch/include/ATen/RegistrationDeclarations.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5120110Z copying torch/include/ATen/CompositeImplicitAutogradFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5120920Z copying torch/include/ATen/PTThreadPool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5122050Z copying torch/include/ATen/OpaqueTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5123270Z copying torch/include/ATen/MapAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5124510Z copying torch/include/ATen/record_function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5125980Z copying torch/include/ATen/WrapDimUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5127280Z copying torch/include/ATen/RedispatchFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5139560Z copying torch/include/ATen/Context.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5140710Z copying torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5141940Z copying torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5143300Z copying torch/include/ATen/div_rtn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5144380Z copying torch/include/ATen/ExpandUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5145860Z copying torch/include/ATen/MPSFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5147170Z copying torch/include/ATen/TypeDefault.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5148400Z copying torch/include/ATen/MPSFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5149650Z copying torch/include/ATen/VmapGeneratedPlumbing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5171090Z copying torch/include/ATen/MethodOperators.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5172270Z copying torch/include/ATen/CPUFixedAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5173530Z copying torch/include/ATen/NamedTensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5174800Z copying torch/include/ATen/Scalar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5176010Z copying torch/include/ATen/TensorIteratorInternal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5177240Z copying torch/include/ATen/LinalgBackend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5178500Z copying torch/include/ATen/LegacyBatchedTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5179820Z copying torch/include/ATen/ArrayRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5180970Z copying torch/include/ATen/SequenceNumber.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5182350Z copying torch/include/ATen/FunctionalStorageImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5183610Z copying torch/include/ATen/ExpandBase.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5184900Z copying torch/include/ATen/Parallel-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5186040Z copying torch/include/ATen/MatrixRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5187210Z copying torch/include/ATen/CUDAFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5189130Z copying torch/include/ATen/CompositeExplicitAutogradFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5190080Z copying torch/include/ATen/FunctionalTensorWrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5191490Z copying torch/include/ATen/SparseCsrTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5192820Z copying torch/include/ATen/NumericUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5194090Z copying torch/include/ATen/ATen.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5195330Z copying torch/include/ATen/TensorNames.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5196560Z copying torch/include/ATen/TensorMeta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5197770Z copying torch/include/ATen/TensorIndexing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5199310Z copying torch/include/ATen/Layout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5200490Z copying torch/include/ATen/SparseTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5201830Z copying torch/include/ATen/SavedTensorHooks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5203300Z copying torch/include/ATen/CompositeExplicitAutogradFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5204720Z copying torch/include/ATen/StorageUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5206130Z copying torch/include/ATen/WrapDimUtilsMulti.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5207100Z copying torch/include/ATen/code_template.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5208400Z copying torch/include/ATen/TensorOperators.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5209700Z copying torch/include/ATen/CUDAFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5210890Z copying torch/include/ATen/ScalarType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5212130Z copying torch/include/ATen/cpp_custom_type_hack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5213360Z copying torch/include/ATen/Dispatch_v2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5215120Z copying torch/include/ATen/Storage.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5216650Z copying torch/include/ATen/DeviceGuard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5218050Z copying torch/include/ATen/ParallelNative.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5219350Z copying torch/include/ATen/OpMathType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5220870Z copying torch/include/ATen/PythonTorchFunctionTLS.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5221880Z copying torch/include/ATen/PadNd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5223110Z copying torch/include/ATen/Dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5225190Z copying torch/include/ATen/CPUGeneratorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5232180Z copying torch/include/ATen/ParallelFuture.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5233060Z copying torch/include/ATen/Functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5234990Z copying torch/include/ATen/ParallelOpenMP.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5235940Z copying torch/include/ATen/jit_macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5237260Z copying torch/include/ATen/CPUApplyUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5238750Z copying torch/include/ATen/ThreadLocalState.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5239860Z copying torch/include/ATen/ScalarOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5241140Z copying torch/include/ATen/NativeFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5242800Z copying torch/include/ATen/DynamicLibrary.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5243990Z copying torch/include/ATen/TensorGeometry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5245090Z copying torch/include/ATen/TensorIterator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5246560Z copying torch/include/ATen/NamedTensorUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5247730Z copying torch/include/ATen/Dimname.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5248960Z copying torch/include/ATen/ROCmFABackend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5250220Z copying torch/include/ATen/CompositeImplicitAutogradFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5251680Z copying torch/include/ATen/autocast_mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5253080Z copying torch/include/ATen/Parallel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5254240Z copying torch/include/ATen/DimVector.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5255560Z copying torch/include/ATen/MetaFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5256830Z copying torch/include/ATen/InferSize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5258040Z copying torch/include/ATen/LegacyVmapTransforms.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5259210Z copying torch/include/ATen/SmallVector.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5260420Z copying torch/include/ATen/Tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5261610Z copying torch/include/ATen/Generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5262800Z copying torch/include/ATen/AccumulateType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5264010Z copying torch/include/ATen/TensorAccessor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5265220Z copying torch/include/ATen/SDPBackend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5266330Z copying torch/include/ATen/CachedTensorUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-17T06:37:44.5267720Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5268350Z copying torch/include/ATen/core/Dict_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5269680Z copying torch/include/ATen/core/Formatting.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5270840Z copying torch/include/ATen/core/TensorBody.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5273850Z copying torch/include/ATen/core/GeneratorForPrivateuseone.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5274840Z copying torch/include/ATen/core/jit_type_base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5276250Z copying torch/include/ATen/core/typeid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5277520Z copying torch/include/ATen/core/rref_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5278770Z copying torch/include/ATen/core/Range.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5280010Z copying torch/include/ATen/core/interned_strings_class.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5281230Z copying torch/include/ATen/core/operator_name.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5282470Z copying torch/include/ATen/core/DeprecatedTypePropertiesRegistry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5284090Z copying torch/include/ATen/core/symbol.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5284930Z copying torch/include/ATen/core/Backtrace.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5286220Z copying torch/include/ATen/core/TransformationHelper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5287380Z copying torch/include/ATen/core/blob.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5288760Z copying torch/include/ATen/core/function_schema.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5290040Z copying torch/include/ATen/core/type_factory.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5291280Z copying torch/include/ATen/core/MT19937RNGEngine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5292490Z copying torch/include/ATen/core/ivalue_to.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5293720Z copying torch/include/ATen/core/aten_interned_strings.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5295360Z copying torch/include/ATen/core/dynamic_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5302970Z copying torch/include/ATen/core/class_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5304180Z copying torch/include/ATen/core/LegacyTypeDispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5305950Z copying torch/include/ATen/core/function_schema_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5306830Z copying torch/include/ATen/core/NestedIntSymNodeImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5308040Z copying torch/include/ATen/core/qualified_name.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5309550Z copying torch/include/ATen/core/UndefinedTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5310530Z copying torch/include/ATen/core/NamedTensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5311700Z copying torch/include/ATen/core/Scalar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5313050Z copying torch/include/ATen/core/CachingHostAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5314510Z copying torch/include/ATen/core/functional.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5315800Z copying torch/include/ATen/core/DeprecatedTypeProperties.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5317030Z copying torch/include/ATen/core/interned_strings.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5318350Z copying torch/include/ATen/core/List.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5319900Z copying torch/include/ATen/core/ATenOpList.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5321090Z copying torch/include/ATen/core/Dict.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5322500Z copying torch/include/ATen/core/type_ptr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5323760Z copying torch/include/ATen/core/grad_mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5324990Z copying torch/include/ATen/core/DistributionsHelper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5326310Z copying torch/include/ATen/core/VariableHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5327530Z copying torch/include/ATen/core/CheckMemoryFormat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5328710Z copying torch/include/ATen/core/ScalarType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5330150Z copying torch/include/ATen/core/Array.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5331270Z copying torch/include/ATen/core/ATen_fwd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5332500Z copying torch/include/ATen/core/stack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5333660Z copying torch/include/ATen/core/ATenGeneral.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5334890Z copying torch/include/ATen/core/custom_class.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5336140Z copying torch/include/ATen/core/IListRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5337580Z copying torch/include/ATen/core/UnsafeFromTH.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5338850Z copying torch/include/ATen/core/PythonOpRegistrationTrampoline.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5340090Z copying torch/include/ATen/core/TensorBase.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5341820Z copying torch/include/ATen/core/ATen_pch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5343020Z copying torch/include/ATen/core/QuantizerBase.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5344220Z copying torch/include/ATen/core/enum_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5345460Z copying torch/include/ATen/core/alias_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5346790Z copying torch/include/ATen/core/List_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5348110Z copying torch/include/ATen/core/TorchDispatchUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5349340Z copying torch/include/ATen/core/enum_tag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5350450Z copying torch/include/ATen/core/jit_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5352220Z copying torch/include/ATen/core/IListRef_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5353690Z copying torch/include/ATen/core/ivalue.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5354850Z copying torch/include/ATen/core/Dimname.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5356090Z copying torch/include/ATen/core/Vitals.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5357290Z copying torch/include/ATen/core/PythonFallbackKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5358670Z copying torch/include/ATen/core/builtin_function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5359710Z copying torch/include/ATen/core/DimVector.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5361020Z copying torch/include/ATen/core/Reduction.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5362220Z copying torch/include/ATen/core/Tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5363480Z copying torch/include/ATen/core/function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5364640Z copying torch/include/ATen/core/Generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5365870Z copying torch/include/ATen/core/PhiloxRNGEngine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5367120Z copying torch/include/ATen/core/TensorAccessor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5368370Z copying torch/include/ATen/core/ivalue_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5370180Z copying torch/include/ATen/core/Variadic.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-17T06:37:44.5371390Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/op_registration 2025-07-17T06:37:44.5372120Z copying torch/include/ATen/core/op_registration/adaption.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/op_registration 2025-07-17T06:37:44.5373420Z copying torch/include/ATen/core/op_registration/op_allowlist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/op_registration 2025-07-17T06:37:44.5374650Z copying torch/include/ATen/core/op_registration/op_registration.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/op_registration 2025-07-17T06:37:44.5376180Z copying torch/include/ATen/core/op_registration/infer_schema.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/op_registration 2025-07-17T06:37:44.5377230Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-07-17T06:37:44.5377890Z copying torch/include/ATen/core/dispatch/OperatorOptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-07-17T06:37:44.5379220Z copying torch/include/ATen/core/dispatch/RegistrationHandleRAII.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-07-17T06:37:44.5380680Z copying torch/include/ATen/core/dispatch/ObservedOperators.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-07-17T06:37:44.5381740Z copying torch/include/ATen/core/dispatch/DispatchKeyExtractor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-07-17T06:37:44.5383070Z copying torch/include/ATen/core/dispatch/Dispatcher.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-07-17T06:37:44.5384700Z copying torch/include/ATen/core/dispatch/CppSignature.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-07-17T06:37:44.5385930Z copying torch/include/ATen/core/dispatch/OperatorEntry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-07-17T06:37:44.5387420Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing 2025-07-17T06:37:44.5388020Z copying torch/include/ATen/core/boxing/KernelFunction.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing 2025-07-17T06:37:44.5395780Z copying torch/include/ATen/core/boxing/OperatorKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing 2025-07-17T06:37:44.5396840Z copying torch/include/ATen/core/boxing/KernelFunction_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing 2025-07-17T06:37:44.5398190Z copying torch/include/ATen/core/boxing/BoxedKernel_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing 2025-07-17T06:37:44.5399380Z copying torch/include/ATen/core/boxing/BoxedKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing 2025-07-17T06:37:44.5400680Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/impl 2025-07-17T06:37:44.5401370Z copying torch/include/ATen/core/boxing/impl/make_boxed_from_unboxed_functor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/impl 2025-07-17T06:37:44.5402970Z copying torch/include/ATen/core/boxing/impl/boxing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/impl 2025-07-17T06:37:44.5404410Z copying torch/include/ATen/core/boxing/impl/test_helpers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/impl 2025-07-17T06:37:44.5405750Z copying torch/include/ATen/core/boxing/impl/WrapFunctionIntoFunctor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/impl 2025-07-17T06:37:44.5406980Z copying torch/include/ATen/core/boxing/impl/WrapFunctionIntoRuntimeFunctor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/impl 2025-07-17T06:37:44.5408110Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-07-17T06:37:44.5408700Z copying torch/include/ATen/mps/MPSProfiler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-07-17T06:37:44.5410170Z copying torch/include/ATen/mps/EmptyTensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-07-17T06:37:44.5411340Z copying torch/include/ATen/mps/MPSAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-07-17T06:37:44.5412760Z copying torch/include/ATen/mps/MPSGuardImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-07-17T06:37:44.5413880Z copying torch/include/ATen/mps/MPSHooks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-07-17T06:37:44.5415050Z copying torch/include/ATen/mps/MPSEvent.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-07-17T06:37:44.5416260Z copying torch/include/ATen/mps/MPSDevice.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-07-17T06:37:44.5417430Z copying torch/include/ATen/mps/MPSStream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-07-17T06:37:44.5424970Z copying torch/include/ATen/mps/IndexKernels.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-07-17T06:37:44.5426000Z copying torch/include/ATen/mps/MPSAllocatorInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-07-17T06:37:44.5427330Z copying torch/include/ATen/mps/MPSGeneratorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-07-17T06:37:44.5428660Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5429350Z copying torch/include/ATen/native/CompositeRandomAccessor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5430670Z copying torch/include/ATen/native/MathBitsFallback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5431820Z copying torch/include/ATen/native/TensorTransformations.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5433330Z copying torch/include/ATen/native/ComplexHelper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5434350Z copying torch/include/ATen/native/ConvUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5435740Z copying torch/include/ATen/native/Normalization.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5436950Z copying torch/include/ATen/native/ReductionType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5438150Z copying torch/include/ATen/native/Repeat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5439430Z copying torch/include/ATen/native/layer_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5440690Z copying torch/include/ATen/native/GridSampler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5442050Z copying torch/include/ATen/native/TriangularOpsUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5443440Z copying torch/include/ATen/native/UnfoldBackward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5444510Z copying torch/include/ATen/native/batch_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5445730Z copying torch/include/ATen/native/Unfold3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5446910Z copying torch/include/ATen/native/Fill.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5448220Z copying torch/include/ATen/native/LinearAlgebra.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5449450Z copying torch/include/ATen/native/RangeFactories.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5450640Z copying torch/include/ATen/native/RNN.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5452060Z copying torch/include/ATen/native/IndexKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5453140Z copying torch/include/ATen/native/Pool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5454480Z copying torch/include/ATen/native/RangeUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5455660Z copying torch/include/ATen/native/Cross.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5456890Z copying torch/include/ATen/native/im2col.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5458170Z copying torch/include/ATen/native/TransposeType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5459410Z copying torch/include/ATen/native/DispatchStub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5460760Z copying torch/include/ATen/native/Unfold2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5468270Z copying torch/include/ATen/native/Distance.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5469320Z copying torch/include/ATen/native/FunctionOfAMatrixUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5470480Z copying torch/include/ATen/native/Distributions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5472050Z copying torch/include/ATen/native/MaxPooling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5473520Z copying torch/include/ATen/native/Gelu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5474440Z copying torch/include/ATen/native/SparseTensorUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5475670Z copying torch/include/ATen/native/CPUFallback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5476980Z copying torch/include/ATen/native/FusedAdagrad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5478180Z copying torch/include/ATen/native/GridSamplerUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5479450Z copying torch/include/ATen/native/TopKImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5480850Z copying torch/include/ATen/native/TensorAdvancedIndexingUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5481990Z copying torch/include/ATen/native/DilatedConvolutionUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5483180Z copying torch/include/ATen/native/ForeachUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5484640Z copying torch/include/ATen/native/SobolEngineOpsUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5485890Z copying torch/include/ATen/native/ReduceAllOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5487110Z copying torch/include/ATen/native/Lerp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5488350Z copying torch/include/ATen/native/ReduceOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5489710Z copying torch/include/ATen/native/TensorAdvancedIndexing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5491010Z copying torch/include/ATen/native/UnaryOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5491970Z copying torch/include/ATen/native/SortingUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5493240Z copying torch/include/ATen/native/MathBitFallThroughLists.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5494480Z copying torch/include/ATen/native/StridedRandomAccessor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5495710Z copying torch/include/ATen/native/TensorShape.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5497170Z copying torch/include/ATen/native/IndexingUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5498430Z copying torch/include/ATen/native/UpSample.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5499650Z copying torch/include/ATen/native/ResizeCommon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5500880Z copying torch/include/ATen/native/SharedReduceOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5502190Z copying torch/include/ATen/native/Resize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5503520Z copying torch/include/ATen/native/SpectralOpsUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5504740Z copying torch/include/ATen/native/Sorting.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5506100Z copying torch/include/ATen/native/NonSymbolicBC.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5507320Z copying torch/include/ATen/native/TensorProperties.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5508550Z copying torch/include/ATen/native/BucketizationUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5509750Z copying torch/include/ATen/native/vol2col.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5511010Z copying torch/include/ATen/native/LossMulti.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5512310Z copying torch/include/ATen/native/NonEmptyUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5513590Z copying torch/include/ATen/native/TensorDimApply.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5514800Z copying torch/include/ATen/native/verbose_wrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5516110Z copying torch/include/ATen/native/AdaptivePooling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5517350Z copying torch/include/ATen/native/ConvolutionMM3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5518550Z copying torch/include/ATen/native/group_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5519930Z copying torch/include/ATen/native/Histogram.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5521160Z copying torch/include/ATen/native/Activation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5522380Z copying torch/include/ATen/native/Math.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5524620Z copying torch/include/ATen/native/FusedAdam.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5525710Z copying torch/include/ATen/native/ScatterGatherChecks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5526950Z copying torch/include/ATen/native/CPUBlas.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5528410Z copying torch/include/ATen/native/CompositeRandomAccessorCommon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5529570Z copying torch/include/ATen/native/BatchLinearAlgebra.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5530930Z copying torch/include/ATen/native/AmpKernels.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5532180Z copying torch/include/ATen/native/DistributionTemplates.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5533550Z copying torch/include/ATen/native/TensorIterator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5534780Z copying torch/include/ATen/native/TensorConversions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5536110Z copying torch/include/ATen/native/FractionalMaxPooling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5537330Z copying torch/include/ATen/native/ReduceOpsUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5538740Z copying torch/include/ATen/native/TensorFactories.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5540180Z copying torch/include/ATen/native/PointwiseOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5547770Z copying torch/include/ATen/native/BinaryOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5548710Z copying torch/include/ATen/native/Pow.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5549940Z copying torch/include/ATen/native/EmbeddingBag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5551270Z copying torch/include/ATen/native/im2col_shape_check.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5552360Z copying torch/include/ATen/native/SegmentReduce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5553630Z copying torch/include/ATen/native/FusedSGD.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5554780Z copying torch/include/ATen/native/Padding.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5556110Z copying torch/include/ATen/native/TensorCompare.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5557510Z copying torch/include/ATen/native/PixelShuffle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5558450Z copying torch/include/ATen/native/LinearAlgebraUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5559810Z copying torch/include/ATen/native/TypeProperties.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5561080Z copying torch/include/ATen/native/Copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5562380Z copying torch/include/ATen/native/CanUse32BitIndexMath.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5563700Z copying torch/include/ATen/native/TensorIteratorDynamicCasting.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-17T06:37:44.5564890Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ao_sparse 2025-07-17T06:37:44.5565650Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ao_sparse/quantized 2025-07-17T06:37:44.5565980Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ao_sparse/quantized/cpu 2025-07-17T06:37:44.5566820Z copying torch/include/ATen/native/ao_sparse/quantized/cpu/fbgemm_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ao_sparse/quantized/cpu 2025-07-17T06:37:44.5568030Z copying torch/include/ATen/native/ao_sparse/quantized/cpu/packed_params.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ao_sparse/quantized/cpu 2025-07-17T06:37:44.5569390Z copying torch/include/ATen/native/ao_sparse/quantized/cpu/qnnpack_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ao_sparse/quantized/cpu 2025-07-17T06:37:44.5570570Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps 2025-07-17T06:37:44.5571520Z copying torch/include/ATen/native/mps/MetalShaderLibrary.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps 2025-07-17T06:37:44.5572550Z copying torch/include/ATen/native/mps/TensorFactory.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps 2025-07-17T06:37:44.5573840Z copying torch/include/ATen/native/mps/MPSGraphSonomaOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps 2025-07-17T06:37:44.5575080Z copying torch/include/ATen/native/mps/MPSGraphVenturaOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps 2025-07-17T06:37:44.5576740Z copying torch/include/ATen/native/mps/MPSGraphSequoiaOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps 2025-07-17T06:37:44.5577950Z copying torch/include/ATen/native/mps/OperationUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps 2025-07-17T06:37:44.5579270Z copying torch/include/ATen/native/mps/Copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps 2025-07-17T06:37:44.5580830Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/kernels 2025-07-17T06:37:44.5581200Z copying torch/include/ATen/native/mps/kernels/UpSample.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/kernels 2025-07-17T06:37:44.5582440Z copying torch/include/ATen/native/mps/kernels/Pooling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/kernels 2025-07-17T06:37:44.5583670Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations 2025-07-17T06:37:44.5584370Z copying torch/include/ATen/native/mps/operations/FusedAdamKernelImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations 2025-07-17T06:37:44.5585690Z copying torch/include/ATen/native/mps/operations/FusedAdamWAmsgradKernelImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations 2025-07-17T06:37:44.5586900Z copying torch/include/ATen/native/mps/operations/BinaryKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations 2025-07-17T06:37:44.5588170Z copying torch/include/ATen/native/mps/operations/FusedAdamWKernelImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations 2025-07-17T06:37:44.5589450Z copying torch/include/ATen/native/mps/operations/FusedAdamAmsgradKernelImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations 2025-07-17T06:37:44.5590660Z copying torch/include/ATen/native/mps/operations/MultiTensorApply.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations 2025-07-17T06:37:44.5591990Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-07-17T06:37:44.5592600Z copying torch/include/ATen/native/metal/MetalConvParams.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-07-17T06:37:44.5593890Z copying torch/include/ATen/native/metal/MetalTensorImplStorage.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-07-17T06:37:44.5595030Z copying torch/include/ATen/native/metal/MetalTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-07-17T06:37:44.5596170Z copying torch/include/ATen/native/metal/MetalContext.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-07-17T06:37:44.5597420Z copying torch/include/ATen/native/metal/MetalTensorUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-07-17T06:37:44.5598620Z copying torch/include/ATen/native/metal/MetalNeuronType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-07-17T06:37:44.5599770Z copying torch/include/ATen/native/metal/MetalShaders.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-07-17T06:37:44.5601350Z copying torch/include/ATen/native/metal/MetalPrepackOpContext.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-07-17T06:37:44.5602530Z copying torch/include/ATen/native/metal/MetalCommandBuffer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-07-17T06:37:44.5603740Z copying torch/include/ATen/native/metal/MetalDevice.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-07-17T06:37:44.5604960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-07-17T06:37:44.5605690Z copying torch/include/ATen/native/metal/mpscnn/MPSCNNFullyConnectedOp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-07-17T06:37:44.5607040Z copying torch/include/ATen/native/metal/mpscnn/MPSImage+Tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-07-17T06:37:44.5608400Z copying torch/include/ATen/native/metal/mpscnn/MPSCNNClampOp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-07-17T06:37:44.5609750Z copying torch/include/ATen/native/metal/mpscnn/MPSCNNOp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-07-17T06:37:44.5610990Z copying torch/include/ATen/native/metal/mpscnn/MPSCNNNeuronOp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-07-17T06:37:44.5617950Z copying torch/include/ATen/native/metal/mpscnn/MPSCNNConvOp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-07-17T06:37:44.5619060Z copying torch/include/ATen/native/metal/mpscnn/MPSCNNUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-07-17T06:37:44.5620280Z copying torch/include/ATen/native/metal/mpscnn/MPSImageUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-07-17T06:37:44.5621730Z copying torch/include/ATen/native/metal/mpscnn/MPSImageWrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-07-17T06:37:44.5622850Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn/tests 2025-07-17T06:37:44.5623560Z copying torch/include/ATen/native/metal/mpscnn/tests/MetalOpTestRunner.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn/tests 2025-07-17T06:37:44.5624950Z copying torch/include/ATen/native/metal/mpscnn/tests/MPSCNNTests.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn/tests 2025-07-17T06:37:44.5626050Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/ops 2025-07-17T06:37:44.5626730Z copying torch/include/ATen/native/metal/ops/MetalCopy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/ops 2025-07-17T06:37:44.5628030Z copying torch/include/ATen/native/metal/ops/MetalConvolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/ops 2025-07-17T06:37:44.5629320Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-17T06:37:44.5629900Z copying torch/include/ATen/native/cpu/IsContiguous.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-17T06:37:44.5631360Z copying torch/include/ATen/native/cpu/zmath.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-17T06:37:44.5632380Z copying torch/include/ATen/native/cpu/ReduceUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-17T06:37:44.5633690Z copying torch/include/ATen/native/cpu/mixed_data_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-17T06:37:44.5635050Z copying torch/include/ATen/native/cpu/ReducedPrecisionFloatGemvFastPathKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-17T06:37:44.5636170Z copying torch/include/ATen/native/cpu/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-17T06:37:44.5637450Z copying torch/include/ATen/native/cpu/int_mm_kernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-17T06:37:44.5638720Z copying torch/include/ATen/native/cpu/SampledAddmmKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-17T06:37:44.5639880Z copying torch/include/ATen/native/cpu/Gelu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-17T06:37:44.5641120Z copying torch/include/ATen/native/cpu/moments_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-17T06:37:44.5642430Z copying torch/include/ATen/native/cpu/ChannelShuffleKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-17T06:37:44.5643690Z copying torch/include/ATen/native/cpu/SpmmReduceKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-17T06:37:44.5644860Z copying torch/include/ATen/native/cpu/GridSamplerKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-17T06:37:44.5646250Z copying torch/include/ATen/native/cpu/SerialStackImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-17T06:37:44.5647390Z copying torch/include/ATen/native/cpu/Intrinsics.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-17T06:37:44.5648620Z copying torch/include/ATen/native/cpu/LogAddExp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-17T06:37:44.5649870Z copying torch/include/ATen/native/cpu/WeightNormKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-17T06:37:44.5651120Z copying torch/include/ATen/native/cpu/MaxUnpoolKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-17T06:37:44.5652310Z copying torch/include/ATen/native/cpu/SoftmaxKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-17T06:37:44.5653580Z copying torch/include/ATen/native/cpu/AtomicAddFloat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-17T06:37:44.5654730Z copying torch/include/ATen/native/cpu/Elu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-17T06:37:44.5655980Z copying torch/include/ATen/native/cpu/Reduce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-17T06:37:44.5657290Z copying torch/include/ATen/native/cpu/CatKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-17T06:37:44.5658600Z copying torch/include/ATen/native/cpu/StackKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-17T06:37:44.5659920Z copying torch/include/ATen/native/cpu/LogSoftmaxKernelImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-17T06:37:44.5661460Z copying torch/include/ATen/native/cpu/DepthwiseConvKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-17T06:37:44.5662580Z copying torch/include/ATen/native/cpu/DistributionTemplates.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-17T06:37:44.5664450Z copying torch/include/ATen/native/cpu/PixelShuffleKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-17T06:37:44.5665480Z copying torch/include/ATen/native/cpu/UpSampleKernelAVXAntialias.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-17T06:37:44.5667110Z copying torch/include/ATen/native/cpu/IndexKernelUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-17T06:37:44.5668330Z copying torch/include/ATen/native/cpu/avx_mathfun.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-17T06:37:44.5670560Z copying torch/include/ATen/native/cpu/CopyKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-17T06:37:44.5671190Z copying torch/include/ATen/native/cpu/Loops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-17T06:37:44.5672590Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:44.5673240Z copying torch/include/ATen/native/cuda/CompositeRandomAccessor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:44.5674530Z copying torch/include/ATen/native/cuda/MiscUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:44.5675810Z copying torch/include/ATen/native/cuda/GridSampler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:44.5677150Z copying torch/include/ATen/native/cuda/CuFFTPlanCache.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:44.5678510Z copying torch/include/ATen/native/cuda/RowwiseScaledMM.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:44.5679870Z copying torch/include/ATen/native/cuda/ScanKernels.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:44.5681100Z copying torch/include/ATen/native/cuda/IndexKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:44.5688350Z copying torch/include/ATen/native/cuda/ScaledGroupMM.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:44.5690140Z copying torch/include/ATen/native/cuda/Distributions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:44.5690970Z copying torch/include/ATen/native/cuda/BinaryInternal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:44.5692140Z copying torch/include/ATen/native/cuda/GroupMM.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:44.5693520Z copying torch/include/ATen/native/cuda/CuFFTUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:44.5694760Z copying torch/include/ATen/native/cuda/ReduceOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:44.5696070Z copying torch/include/ATen/native/cuda/TensorTopK.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:44.5697270Z copying torch/include/ATen/native/cuda/TensorModeKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:44.5698610Z copying torch/include/ATen/native/cuda/thread_constants.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:44.5706390Z copying torch/include/ATen/native/cuda/Resize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:44.5707640Z copying torch/include/ATen/native/cuda/Sorting.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:44.5715920Z copying torch/include/ATen/native/cuda/Activation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:44.5716780Z copying torch/include/ATen/native/cuda/Sort.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:44.5718090Z copying torch/include/ATen/native/cuda/DistributionTemplates.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:44.5719560Z copying torch/include/ATen/native/cuda/IndexKernelUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:44.5720730Z copying torch/include/ATen/native/cuda/jit_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:44.5722150Z copying torch/include/ATen/native/cuda/SortStable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:44.5729510Z copying torch/include/ATen/native/cuda/LaunchUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:44.5730590Z copying torch/include/ATen/native/cuda/Copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:44.5731810Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-07-17T06:37:44.5732490Z copying torch/include/ATen/native/quantized/ConvUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-07-17T06:37:44.5733740Z copying torch/include/ATen/native/quantized/AffineQuantizer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-07-17T06:37:44.5735060Z copying torch/include/ATen/native/quantized/IndexKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-07-17T06:37:44.5736250Z copying torch/include/ATen/native/quantized/library.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-07-17T06:37:44.5737580Z copying torch/include/ATen/native/quantized/AffineQuantizerBase.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-07-17T06:37:44.5738990Z copying torch/include/ATen/native/quantized/FakeQuantAffine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-07-17T06:37:44.5740170Z copying torch/include/ATen/native/quantized/PackedParams.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-07-17T06:37:44.5741380Z copying torch/include/ATen/native/quantized/Copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-07-17T06:37:44.5742960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-07-17T06:37:44.5743370Z copying torch/include/ATen/native/quantized/cpu/XnnpackUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-07-17T06:37:44.5744850Z copying torch/include/ATen/native/quantized/cpu/fbgemm_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-07-17T06:37:44.5746170Z copying torch/include/ATen/native/quantized/cpu/init_qnnpack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-07-17T06:37:44.5747470Z copying torch/include/ATen/native/quantized/cpu/ACLUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-07-17T06:37:44.5748830Z copying torch/include/ATen/native/quantized/cpu/conv_serialization.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-07-17T06:37:44.5750200Z copying torch/include/ATen/native/quantized/cpu/qlinear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-07-17T06:37:44.5751490Z copying torch/include/ATen/native/quantized/cpu/EmbeddingPackedParams.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-07-17T06:37:44.5752620Z copying torch/include/ATen/native/quantized/cpu/qembeddingbag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-07-17T06:37:44.5753840Z copying torch/include/ATen/native/quantized/cpu/QnnpackUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-07-17T06:37:44.5755350Z copying torch/include/ATen/native/quantized/cpu/qembeddingbag_prepack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-07-17T06:37:44.5756550Z copying torch/include/ATen/native/quantized/cpu/OnednnUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-07-17T06:37:44.5757910Z copying torch/include/ATen/native/quantized/cpu/QuantUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-07-17T06:37:44.5759230Z copying torch/include/ATen/native/quantized/cpu/RuyUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-07-17T06:37:44.5760790Z copying torch/include/ATen/native/quantized/cpu/qconv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-07-17T06:37:44.5761720Z copying torch/include/ATen/native/quantized/cpu/BinaryOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-07-17T06:37:44.5762910Z copying torch/include/ATen/native/quantized/cpu/QuantizedOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-07-17T06:37:44.5764240Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cudnn 2025-07-17T06:37:44.5764910Z copying torch/include/ATen/native/quantized/cudnn/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cudnn 2025-07-17T06:37:44.5766140Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/utils 2025-07-17T06:37:44.5766800Z copying torch/include/ATen/native/utils/ParamUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/utils 2025-07-17T06:37:44.5768290Z copying torch/include/ATen/native/utils/ParamsHash.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/utils 2025-07-17T06:37:44.5769150Z copying torch/include/ATen/native/utils/Factory.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/utils 2025-07-17T06:37:44.5770440Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers 2025-07-17T06:37:44.5771190Z copying torch/include/ATen/native/transformers/sdp_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers 2025-07-17T06:37:44.5772240Z copying torch/include/ATen/native/transformers/attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers 2025-07-17T06:37:44.5773480Z copying torch/include/ATen/native/transformers/sdp_utils_cpp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers 2025-07-17T06:37:44.5774940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda 2025-07-17T06:37:44.5775610Z copying torch/include/ATen/native/transformers/cuda/sdp_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda 2025-07-17T06:37:44.5776860Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention 2025-07-17T06:37:44.5777550Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm_kernel_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention 2025-07-17T06:37:44.5778980Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/debug_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention 2025-07-17T06:37:44.5780290Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernel_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention 2025-07-17T06:37:44.5781930Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/pytorch_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention 2025-07-17T06:37:44.5783140Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernel_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention 2025-07-17T06:37:44.5784910Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels 2025-07-17T06:37:44.5785590Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels/cutlassB.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels 2025-07-17T06:37:44.5787400Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels/cutlassF.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels 2025-07-17T06:37:44.5788690Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-07-17T06:37:44.5789410Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/find_default_mma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-07-17T06:37:44.5790720Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/mma_accum_lambda_iterator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-07-17T06:37:44.5792150Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_multistage.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-07-17T06:37:44.5793700Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/mma_from_smem.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-07-17T06:37:44.5795510Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-07-17T06:37:44.5801200Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-07-17T06:37:44.5801770Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_pipelined.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-07-17T06:37:44.5802040Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue 2025-07-17T06:37:44.5802610Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_thread_apply_logsumexp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue 2025-07-17T06:37:44.5803250Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_rescale_output.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue 2025-07-17T06:37:44.5803780Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_pipelined.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue 2025-07-17T06:37:44.5804060Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/transform 2025-07-17T06:37:44.5804670Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/transform/tile_smem_loader.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/transform 2025-07-17T06:37:44.5805860Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-07-17T06:37:44.5806680Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/make_residual_last.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-07-17T06:37:44.5808010Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_iterator_residual_last.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-07-17T06:37:44.5809670Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/epilogue_predicated_tile_iterator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-07-17T06:37:44.5811160Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/transpose_warp_iterator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-07-17T06:37:44.5812420Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/default_warp_iterator_from_smem.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-07-17T06:37:44.5813780Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/warp_iterator_from_smem.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-07-17T06:37:44.5815180Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_access_iterator_residual_last.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-07-17T06:37:44.5816560Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/flash_attn 2025-07-17T06:37:44.5817300Z copying torch/include/ATen/native/transformers/cuda/flash_attn/static_switch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/flash_attn 2025-07-17T06:37:44.5818480Z copying torch/include/ATen/native/transformers/cuda/flash_attn/flash_api.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/flash_attn 2025-07-17T06:37:44.5819750Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/hip 2025-07-17T06:37:44.5820400Z copying torch/include/ATen/native/transformers/hip/aotriton_adapter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/hip 2025-07-17T06:37:44.5821530Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/hip/flash_attn 2025-07-17T06:37:44.5822190Z copying torch/include/ATen/native/transformers/hip/flash_attn/flash_api.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/hip/flash_attn 2025-07-17T06:37:44.5823860Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/hip/flash_attn/ck 2025-07-17T06:37:44.5824660Z copying torch/include/ATen/native/transformers/hip/flash_attn/ck/me_ck_api.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/hip/flash_attn/ck 2025-07-17T06:37:44.5826090Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip 2025-07-17T06:37:44.5826870Z copying torch/include/ATen/native/hip/ck_types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip 2025-07-17T06:37:44.5828140Z copying torch/include/ATen/native/hip/ck_bgemm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip 2025-07-17T06:37:44.5829410Z copying torch/include/ATen/native/hip/ck_gemm_template.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip 2025-07-17T06:37:44.5831160Z copying torch/include/ATen/native/hip/ck_gemm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip 2025-07-17T06:37:44.5832200Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip/bgemm_kernels 2025-07-17T06:37:44.5832880Z copying torch/include/ATen/native/hip/bgemm_kernels/bgemm_kernel_template.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip/bgemm_kernels 2025-07-17T06:37:44.5834370Z copying torch/include/ATen/native/hip/bgemm_kernels/bgemm_kernel_collection.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip/bgemm_kernels 2025-07-17T06:37:44.5835480Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mtia 2025-07-17T06:37:44.5836150Z copying torch/include/ATen/native/mtia/EmptyTensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mtia 2025-07-17T06:37:44.5844260Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/kleidiai 2025-07-17T06:37:44.5844570Z copying torch/include/ATen/native/kleidiai/kai_pack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/kleidiai 2025-07-17T06:37:44.5845970Z copying torch/include/ATen/native/kleidiai/kai_ukernel_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/kleidiai 2025-07-17T06:37:44.5847170Z copying torch/include/ATen/native/kleidiai/kai_kernels.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/kleidiai 2025-07-17T06:37:44.5848440Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested 2025-07-17T06:37:44.5849110Z copying torch/include/ATen/native/nested/NestedTensorUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested 2025-07-17T06:37:44.5850700Z copying torch/include/ATen/native/nested/NestedTensorTransformerUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested 2025-07-17T06:37:44.5851920Z copying torch/include/ATen/native/nested/NestedTensorMath.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested 2025-07-17T06:37:44.5853270Z copying torch/include/ATen/native/nested/NestedTensorBinaryOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested 2025-07-17T06:37:44.5854540Z copying torch/include/ATen/native/nested/NestedTensorTransformerFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested 2025-07-17T06:37:44.5855690Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn 2025-07-17T06:37:44.5856210Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu 2025-07-17T06:37:44.5856810Z copying torch/include/ATen/native/mkldnn/xpu/FusionUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu 2025-07-17T06:37:44.5858070Z copying torch/include/ATen/native/mkldnn/xpu/Conv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu 2025-07-17T06:37:44.5859560Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/detail 2025-07-17T06:37:44.5859980Z copying torch/include/ATen/native/mkldnn/xpu/detail/Utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/detail 2025-07-17T06:37:44.5861240Z copying torch/include/ATen/native/mkldnn/xpu/detail/Attr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/detail 2025-07-17T06:37:44.5862670Z copying torch/include/ATen/native/mkldnn/xpu/detail/LRUCache.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/detail 2025-07-17T06:37:44.5863910Z copying torch/include/ATen/native/mkldnn/xpu/detail/DnnlExt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/detail 2025-07-17T06:37:44.5865560Z copying torch/include/ATen/native/mkldnn/xpu/detail/oneDNNContext.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/detail 2025-07-17T06:37:44.5866700Z copying torch/include/ATen/native/mkldnn/xpu/detail/oneDNN.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/detail 2025-07-17T06:37:44.5867910Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/metal 2025-07-17T06:37:44.5868530Z copying torch/include/ATen/metal/Context.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/metal 2025-07-17T06:37:44.5869820Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu 2025-07-17T06:37:44.5870390Z copying torch/include/ATen/cpu/Utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu 2025-07-17T06:37:44.5871670Z copying torch/include/ATen/cpu/FlushDenormal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu 2025-07-17T06:37:44.5872890Z copying torch/include/ATen/cpu/vml.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu 2025-07-17T06:37:44.5874180Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-07-17T06:37:44.5874820Z copying torch/include/ATen/cpu/vec/vec_quant.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-07-17T06:37:44.5876050Z copying torch/include/ATen/cpu/vec/vec_half.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-07-17T06:37:44.5877320Z copying torch/include/ATen/cpu/vec/vec_mask.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-07-17T06:37:44.5878660Z copying torch/include/ATen/cpu/vec/vec.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-07-17T06:37:44.5880020Z copying torch/include/ATen/cpu/vec/vec_convert.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-07-17T06:37:44.5881290Z copying torch/include/ATen/cpu/vec/intrinsics.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-07-17T06:37:44.5883070Z copying torch/include/ATen/cpu/vec/functional_bfloat16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-07-17T06:37:44.5884330Z copying torch/include/ATen/cpu/vec/functional.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-07-17T06:37:44.5885670Z copying torch/include/ATen/cpu/vec/vec_n.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-07-17T06:37:44.5886990Z copying torch/include/ATen/cpu/vec/functional_base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-07-17T06:37:44.5888480Z copying torch/include/ATen/cpu/vec/vec_base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-07-17T06:37:44.5890050Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128 2025-07-17T06:37:44.5890680Z copying torch/include/ATen/cpu/vec/vec128/vec128_convert.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128 2025-07-17T06:37:44.5892690Z copying torch/include/ATen/cpu/vec/vec128/vec128_reduced_precision_common_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128 2025-07-17T06:37:44.5893870Z copying torch/include/ATen/cpu/vec/vec128/vec128.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128 2025-07-17T06:37:44.5895140Z copying torch/include/ATen/cpu/vec/vec128/vec128_half_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128 2025-07-17T06:37:44.5896630Z copying torch/include/ATen/cpu/vec/vec128/vec128_float_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128 2025-07-17T06:37:44.5898160Z copying torch/include/ATen/cpu/vec/vec128/vec128_bfloat16_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128 2025-07-17T06:37:44.5899570Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-07-17T06:37:44.5900230Z copying torch/include/ATen/cpu/vec/vec256/vec256_bfloat16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-07-17T06:37:44.5901590Z copying torch/include/ATen/cpu/vec/vec256/missing_vst1_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-07-17T06:37:44.5902870Z copying torch/include/ATen/cpu/vec/vec256/vec256_mask.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-07-17T06:37:44.5904200Z copying torch/include/ATen/cpu/vec/vec256/vec256_half.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-07-17T06:37:44.5905690Z copying torch/include/ATen/cpu/vec/vec256/vec256_qint.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-07-17T06:37:44.5907220Z copying torch/include/ATen/cpu/vec/vec256/vec256_complex_float.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-07-17T06:37:44.5908610Z copying torch/include/ATen/cpu/vec/vec256/vec256_double.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-07-17T06:37:44.5910080Z copying torch/include/ATen/cpu/vec/vec256/vec256_float.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-07-17T06:37:44.5911630Z copying torch/include/ATen/cpu/vec/vec256/missing_vld1_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-07-17T06:37:44.5914290Z copying torch/include/ATen/cpu/vec/vec256/vec256.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-07-17T06:37:44.5914650Z copying torch/include/ATen/cpu/vec/vec256/vec256_16bit_float.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-07-17T06:37:44.5916150Z copying torch/include/ATen/cpu/vec/vec256/vec256_convert.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-07-17T06:37:44.5917530Z copying torch/include/ATen/cpu/vec/vec256/vec256_int.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-07-17T06:37:44.5919300Z copying torch/include/ATen/cpu/vec/vec256/vec256_complex_double.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-07-17T06:37:44.5920650Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/zarch 2025-07-17T06:37:44.5921350Z copying torch/include/ATen/cpu/vec/vec256/zarch/vec256_zarch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/zarch 2025-07-17T06:37:44.5923630Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-17T06:37:44.5923970Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint32_vsx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-17T06:37:44.5925270Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_double_vsx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-17T06:37:44.5926690Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_int16_vsx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-17T06:37:44.5928040Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_int32_vsx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-17T06:37:44.5929310Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_quint8_vsx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-17T06:37:44.5930750Z copying torch/include/ATen/cpu/vec/vec256/vsx/vsx_helpers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-17T06:37:44.5932120Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_float_vsx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-17T06:37:44.5933550Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_bfloat16_vsx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-17T06:37:44.5934740Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_float_vsx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-17T06:37:44.5936470Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_common_vsx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-17T06:37:44.5937520Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint8_vsx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-17T06:37:44.5938970Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_double_vsx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-17T06:37:44.5940330Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_int64_vsx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-17T06:37:44.5941770Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512 2025-07-17T06:37:44.5942380Z copying torch/include/ATen/cpu/vec/vec512/vec512_int.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512 2025-07-17T06:37:44.5944020Z copying torch/include/ATen/cpu/vec/vec512/vec512_convert.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512 2025-07-17T06:37:44.5945410Z copying torch/include/ATen/cpu/vec/vec512/vec512_bfloat16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512 2025-07-17T06:37:44.5947060Z copying torch/include/ATen/cpu/vec/vec512/vec512_complex_double.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512 2025-07-17T06:37:44.5948450Z copying torch/include/ATen/cpu/vec/vec512/vec512_float8.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512 2025-07-17T06:37:44.5949850Z copying torch/include/ATen/cpu/vec/vec512/vec512_mask.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512 2025-07-17T06:37:44.5951240Z copying torch/include/ATen/cpu/vec/vec512/vec512_complex_float.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512 2025-07-17T06:37:44.5952660Z copying torch/include/ATen/cpu/vec/vec512/vec512_double.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512 2025-07-17T06:37:44.5954090Z copying torch/include/ATen/cpu/vec/vec512/vec512_qint.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512 2025-07-17T06:37:44.5955620Z copying torch/include/ATen/cpu/vec/vec512/vec512_float.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512 2025-07-17T06:37:44.5956950Z copying torch/include/ATen/cpu/vec/vec512/vec512.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512 2025-07-17T06:37:44.5958330Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve 2025-07-17T06:37:44.5958970Z copying torch/include/ATen/cpu/vec/sve/vec_bfloat16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve 2025-07-17T06:37:44.5960580Z copying torch/include/ATen/cpu/vec/sve/vec_qint.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve 2025-07-17T06:37:44.5961810Z copying torch/include/ATen/cpu/vec/sve/vec_double.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve 2025-07-17T06:37:44.5963270Z copying torch/include/ATen/cpu/vec/sve/vec_float.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve 2025-07-17T06:37:44.5964700Z copying torch/include/ATen/cpu/vec/sve/vec_common_sve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve 2025-07-17T06:37:44.5966260Z copying torch/include/ATen/cpu/vec/sve/sve_helper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve 2025-07-17T06:37:44.5967230Z copying torch/include/ATen/cpu/vec/sve/vec_int.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve 2025-07-17T06:37:44.5968730Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-17T06:37:44.5969300Z copying torch/include/ATen/cuda/CUDADevice.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-17T06:37:44.5970570Z copying torch/include/ATen/cuda/CUDAUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-17T06:37:44.5971780Z copying torch/include/ATen/cuda/CUDABlas.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-17T06:37:44.5973310Z copying torch/include/ATen/cuda/CUDAGeneratorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-17T06:37:44.5974420Z copying torch/include/ATen/cuda/Sleep.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-17T06:37:44.5975850Z copying torch/include/ATen/cuda/PinnedMemoryAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-17T06:37:44.5977050Z copying torch/include/ATen/cuda/jiterator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-17T06:37:44.5978560Z copying torch/include/ATen/cuda/CUDASparseDescriptors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-17T06:37:44.5979680Z copying torch/include/ATen/cuda/EmptyTensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-17T06:37:44.5980960Z copying torch/include/ATen/cuda/PeerToPeerAccess.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-17T06:37:44.5982190Z copying torch/include/ATen/cuda/CUDAEvent.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-17T06:37:44.5983570Z copying torch/include/ATen/cuda/CUDAContext.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-17T06:37:44.5984730Z copying torch/include/ATen/cuda/Exceptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-17T06:37:44.5986100Z copying torch/include/ATen/cuda/CachingHostAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-17T06:37:44.5987340Z copying torch/include/ATen/cuda/CUDADataType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-17T06:37:44.5988690Z copying torch/include/ATen/cuda/cub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-17T06:37:44.5989830Z copying torch/include/ATen/cuda/CUDAContextLight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-17T06:37:44.5990920Z copying torch/include/ATen/cuda/CUDAGraph.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-17T06:37:44.5992140Z copying torch/include/ATen/cuda/ThrustAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-17T06:37:44.5993340Z copying torch/include/ATen/cuda/llvm_jit_strings.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-17T06:37:44.5994720Z copying torch/include/ATen/cuda/CUDASparse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-17T06:37:44.5995960Z copying torch/include/ATen/cuda/PhiloxCudaState.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-17T06:37:44.5997050Z copying torch/include/ATen/cuda/jiterator_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-17T06:37:44.5998320Z copying torch/include/ATen/cuda/ATenCUDAGeneral.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-17T06:37:44.5999520Z copying torch/include/ATen/cuda/CUDASparseBlas.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-17T06:37:44.6000850Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-07-17T06:37:44.6001490Z copying torch/include/ATen/cuda/detail/CUDAHooks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-07-17T06:37:44.6002790Z copying torch/include/ATen/cuda/detail/KernelUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-07-17T06:37:44.6004040Z copying torch/include/ATen/cuda/detail/LazyNVRTC.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-07-17T06:37:44.6005230Z copying torch/include/ATen/cuda/detail/DeviceThreadHandles.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-07-17T06:37:44.6006520Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-07-17T06:37:44.6007130Z copying torch/include/ATen/cuda/tunable/TunableOp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-07-17T06:37:44.6008890Z copying torch/include/ATen/cuda/tunable/StreamTimer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-07-17T06:37:44.6009780Z copying torch/include/ATen/cuda/tunable/TunableGemm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-07-17T06:37:44.6011130Z copying torch/include/ATen/cuda/tunable/GemmCommon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-07-17T06:37:44.6012710Z copying torch/include/ATen/cuda/tunable/GemmHipblaslt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-07-17T06:37:44.6014120Z copying torch/include/ATen/cuda/tunable/GemmRocblas.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-07-17T06:37:44.6015440Z copying torch/include/ATen/cuda/tunable/Tunable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-07-17T06:37:44.6016650Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/quantized 2025-07-17T06:37:44.6017280Z copying torch/include/ATen/quantized/QTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/quantized 2025-07-17T06:37:44.6018570Z copying torch/include/ATen/quantized/Quantizer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/quantized 2025-07-17T06:37:44.6019870Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu 2025-07-17T06:37:44.6020510Z copying torch/include/ATen/xpu/XPUEvent.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu 2025-07-17T06:37:44.6021740Z copying torch/include/ATen/xpu/XPUDevice.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu 2025-07-17T06:37:44.6023020Z copying torch/include/ATen/xpu/PinnedMemoryAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu 2025-07-17T06:37:44.6024370Z copying torch/include/ATen/xpu/CachingHostAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu 2025-07-17T06:37:44.6025510Z copying torch/include/ATen/xpu/XPUGeneratorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu 2025-07-17T06:37:44.6026760Z copying torch/include/ATen/xpu/XPUContext.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu 2025-07-17T06:37:44.6028020Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu/detail 2025-07-17T06:37:44.6028650Z copying torch/include/ATen/xpu/detail/XPUHooks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu/detail 2025-07-17T06:37:44.6029860Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen 2025-07-17T06:37:44.6030460Z copying torch/include/ATen/miopen/Utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen 2025-07-17T06:37:44.6031690Z copying torch/include/ATen/miopen/Types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen 2025-07-17T06:37:44.6032900Z copying torch/include/ATen/miopen/Descriptors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen 2025-07-17T06:37:44.6034130Z copying torch/include/ATen/miopen/miopen-wrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen 2025-07-17T06:37:44.6035340Z copying torch/include/ATen/miopen/Exceptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen 2025-07-17T06:37:44.6036570Z copying torch/include/ATen/miopen/Handle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen 2025-07-17T06:37:44.6037910Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-07-17T06:37:44.6038550Z copying torch/include/ATen/detail/PrivateUse1HooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-07-17T06:37:44.6039840Z copying torch/include/ATen/detail/AcceleratorHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-07-17T06:37:44.6041020Z copying torch/include/ATen/detail/CUDAHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-07-17T06:37:44.6042200Z copying torch/include/ATen/detail/MAIAHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-07-17T06:37:44.6043520Z copying torch/include/ATen/detail/XPUHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-07-17T06:37:44.6044700Z copying torch/include/ATen/detail/FunctionTraits.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-07-17T06:37:44.6045970Z copying torch/include/ATen/detail/HIPHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-07-17T06:37:44.6047170Z copying torch/include/ATen/detail/MPSHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-07-17T06:37:44.6048380Z copying torch/include/ATen/detail/MTIAHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-07-17T06:37:44.6049770Z copying torch/include/ATen/detail/HPUHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-07-17T06:37:44.6051020Z copying torch/include/ATen/detail/IPUHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-07-17T06:37:44.6052280Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/hip 2025-07-17T06:37:44.6052740Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/hip/impl 2025-07-17T06:37:44.6053670Z copying torch/include/ATen/hip/impl/HIPAllocatorMasqueradingAsCUDA.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/hip/impl 2025-07-17T06:37:44.6054690Z copying torch/include/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/hip/impl 2025-07-17T06:37:44.6056220Z copying torch/include/ATen/hip/impl/HIPCachingAllocatorMasqueradingAsCUDA.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/hip/impl 2025-07-17T06:37:44.6057350Z copying torch/include/ATen/hip/impl/HIPStreamMasqueradingAsCUDA.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/hip/impl 2025-07-17T06:37:44.6058520Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6059120Z copying torch/include/ATen/ops/is_vulkan_available.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6060360Z copying torch/include/ATen/ops/_foreach_atan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6061860Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6063050Z copying torch/include/ATen/ops/sigmoid_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6064380Z copying torch/include/ATen/ops/triplet_margin_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6065550Z copying torch/include/ATen/ops/mode_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6066790Z copying torch/include/ATen/ops/index_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6067990Z copying torch/include/ATen/ops/new_ones.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6069260Z copying torch/include/ATen/ops/pixel_shuffle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6070460Z copying torch/include/ATen/ops/clamp_min_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6071870Z copying torch/include/ATen/ops/softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6073070Z copying torch/include/ATen/ops/acosh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6074270Z copying torch/include/ATen/ops/frexp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6075520Z copying torch/include/ATen/ops/erf_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6076780Z copying torch/include/ATen/ops/repeat_interleave_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6077960Z copying torch/include/ATen/ops/special_i0e_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6079290Z copying torch/include/ATen/ops/pixel_unshuffle_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6080490Z copying torch/include/ATen/ops/upsample_trilinear3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6081750Z copying torch/include/ATen/ops/cummin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6083020Z copying torch/include/ATen/ops/choose_qparams_optimized_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6084290Z copying torch/include/ATen/ops/nonzero_static_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6085530Z copying torch/include/ATen/ops/where_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6086760Z copying torch/include/ATen/ops/slice_scatter_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6087980Z copying torch/include/ATen/ops/_cufft_set_plan_cache_max_size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6089190Z copying torch/include/ATen/ops/isfinite_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6090600Z copying torch/include/ATen/ops/slogdet_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6091700Z copying torch/include/ATen/ops/leaky_relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6093040Z copying torch/include/ATen/ops/linalg_lu_factor_ex_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6094190Z copying torch/include/ATen/ops/erfinv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6095450Z copying torch/include/ATen/ops/linalg_vecdot_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6096790Z copying torch/include/ATen/ops/_test_functorch_fallback_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6097950Z copying torch/include/ATen/ops/_convert_indices_from_csr_to_coo_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6099110Z copying torch/include/ATen/ops/bitwise_and_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6100450Z copying torch/include/ATen/ops/empty_strided_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6101740Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6102910Z copying torch/include/ATen/ops/bitwise_right_shift_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6104110Z copying torch/include/ATen/ops/result_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6105440Z copying torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6106640Z copying torch/include/ATen/ops/min_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6107890Z copying torch/include/ATen/ops/cumulative_trapezoid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6109070Z copying torch/include/ATen/ops/nll_loss2d_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6110340Z copying torch/include/ATen/ops/soft_margin_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6111570Z copying torch/include/ATen/ops/hardswish_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6112930Z copying torch/include/ATen/ops/narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6114160Z copying torch/include/ATen/ops/pow_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6115580Z copying torch/include/ATen/ops/atan_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6116840Z copying torch/include/ATen/ops/binomial_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6118110Z copying torch/include/ATen/ops/to_padded_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6119390Z copying torch/include/ATen/ops/cosine_embedding_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6120770Z copying torch/include/ATen/ops/_test_ambiguous_defaults_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6121950Z copying torch/include/ATen/ops/gelu_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6123370Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6124520Z copying torch/include/ATen/ops/max_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6125830Z copying torch/include/ATen/ops/threshold_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6127000Z copying torch/include/ATen/ops/signbit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6136620Z copying torch/include/ATen/ops/_propagate_xla_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6137770Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6139250Z copying torch/include/ATen/ops/miopen_convolution_transpose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6140410Z copying torch/include/ATen/ops/multilabel_margin_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6141810Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6142960Z copying torch/include/ATen/ops/cumprod_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6144180Z copying torch/include/ATen/ops/_remove_batch_dim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6145440Z copying torch/include/ATen/ops/constant_pad_nd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6146820Z copying torch/include/ATen/ops/softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6148040Z copying torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6149460Z copying torch/include/ATen/ops/_lstm_mps_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6150620Z copying torch/include/ATen/ops/_values_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6152200Z copying torch/include/ATen/ops/special_hermite_polynomial_h_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6153460Z copying torch/include/ATen/ops/nan_to_num_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6154740Z copying torch/include/ATen/ops/_histogramdd_bin_edges_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6155960Z copying torch/include/ATen/ops/_int_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6165220Z copying torch/include/ATen/ops/i0_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6166150Z copying torch/include/ATen/ops/inverse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6167390Z copying torch/include/ATen/ops/native_group_norm_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6168660Z copying torch/include/ATen/ops/embedding_dense_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6169830Z copying torch/include/ATen/ops/index_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6171210Z copying torch/include/ATen/ops/qr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6172390Z copying torch/include/ATen/ops/_log_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6173660Z copying torch/include/ATen/ops/quantized_batch_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6174830Z copying torch/include/ATen/ops/_fused_rms_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6176180Z copying torch/include/ATen/ops/_sample_dirichlet_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6177370Z copying torch/include/ATen/ops/_standard_gamma_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6178650Z copying torch/include/ATen/ops/floor_divide_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6179830Z copying torch/include/ATen/ops/_softmax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6181120Z copying torch/include/ATen/ops/upsample_nearest1d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6182350Z copying torch/include/ATen/ops/special_modified_bessel_k1_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6183690Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6184870Z copying torch/include/ATen/ops/huber_loss_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6186320Z copying torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6187460Z copying torch/include/ATen/ops/nll_loss_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6188960Z copying torch/include/ATen/ops/polygamma_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6190310Z copying torch/include/ATen/ops/mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6191600Z copying torch/include/ATen/ops/fill_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6192830Z copying torch/include/ATen/ops/special_hermite_polynomial_he_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6194270Z copying torch/include/ATen/ops/dist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6195690Z copying torch/include/ATen/ops/_cudnn_init_dropout_state_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6197170Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6198340Z copying torch/include/ATen/ops/index_copy_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6199570Z copying torch/include/ATen/ops/quantized_lstm_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6207360Z copying torch/include/ATen/ops/_foreach_log10_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6208430Z copying torch/include/ATen/ops/special_psi_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6209610Z copying torch/include/ATen/ops/sub_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6210980Z copying torch/include/ATen/ops/mkldnn_linear_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6212090Z copying torch/include/ATen/ops/trace_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6213360Z copying torch/include/ATen/ops/adaptive_avg_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6214700Z copying torch/include/ATen/ops/_efficientzerotensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6215960Z copying torch/include/ATen/ops/expm1_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6217130Z copying torch/include/ATen/ops/_efficient_attention_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6218520Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6220070Z copying torch/include/ATen/ops/sinc_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6221490Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6222470Z copying torch/include/ATen/ops/special_bessel_y1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6223980Z copying torch/include/ATen/ops/linalg_cholesky_ex_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6225340Z copying torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6226520Z copying torch/include/ATen/ops/polygamma_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6228020Z copying torch/include/ATen/ops/logical_xor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6229200Z copying torch/include/ATen/ops/nextafter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6230620Z copying torch/include/ATen/ops/_sparse_log_softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6231720Z copying torch/include/ATen/ops/log_sigmoid_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6233050Z copying torch/include/ATen/ops/special_bessel_y0_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6234320Z copying torch/include/ATen/ops/_cast_Long_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6235550Z copying torch/include/ATen/ops/_foreach_max_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6236810Z copying torch/include/ATen/ops/pdist_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6238060Z copying torch/include/ATen/ops/_sobol_engine_ff_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6239360Z copying torch/include/ATen/ops/_wrapped_linear_prepack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6240580Z copying torch/include/ATen/ops/softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6241880Z copying torch/include/ATen/ops/arctan2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6243150Z copying torch/include/ATen/ops/quantized_gru_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6244530Z copying torch/include/ATen/ops/linalg_ldl_factor_ex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6245860Z copying torch/include/ATen/ops/_nested_from_padded_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6247150Z copying torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6248570Z copying torch/include/ATen/ops/absolute_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6250410Z copying torch/include/ATen/ops/reflection_pad1d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6251540Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6252970Z copying torch/include/ATen/ops/_embedding_bag_forward_only_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6254070Z copying torch/include/ATen/ops/logaddexp_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6255450Z copying torch/include/ATen/ops/thnn_conv2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6256710Z copying torch/include/ATen/ops/miopen_rnn_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6258080Z copying torch/include/ATen/ops/max_pool3d_with_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6259300Z copying torch/include/ATen/ops/_ctc_loss_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6260760Z copying torch/include/ATen/ops/special_zeta_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6262250Z copying torch/include/ATen/ops/mkldnn_max_pool3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6269430Z copying torch/include/ATen/ops/atleast_2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6270160Z copying torch/include/ATen/ops/addmv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6271420Z copying torch/include/ATen/ops/bilinear_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6272650Z copying torch/include/ATen/ops/topk_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6273930Z copying torch/include/ATen/ops/adaptive_avg_pool1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6275120Z copying torch/include/ATen/ops/linalg_eig_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6276390Z copying torch/include/ATen/ops/matrix_exp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6277690Z copying torch/include/ATen/ops/row_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6278880Z copying torch/include/ATen/ops/mkldnn_rnn_layer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6280160Z copying torch/include/ATen/ops/native_layer_norm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6287090Z copying torch/include/ATen/ops/softshrink_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6288250Z copying torch/include/ATen/ops/concatenate_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6289460Z copying torch/include/ATen/ops/view_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6296640Z copying torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6297360Z copying torch/include/ATen/ops/_unsafe_index_put_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6298540Z copying torch/include/ATen/ops/linalg_ldl_factor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6299780Z copying torch/include/ATen/ops/glu_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6301070Z copying torch/include/ATen/ops/is_inference_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6309000Z copying torch/include/ATen/ops/special_i1_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6318480Z copying torch/include/ATen/ops/fractional_max_pool2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6319110Z copying torch/include/ATen/ops/hstack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6320770Z copying torch/include/ATen/ops/mv_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6322050Z copying torch/include/ATen/ops/_ctc_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6323050Z copying torch/include/ATen/ops/_weight_norm_differentiable_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6324320Z copying torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6325520Z copying torch/include/ATen/ops/miopen_convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6326960Z copying torch/include/ATen/ops/is_nonzero_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6328170Z copying torch/include/ATen/ops/slice_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6329440Z copying torch/include/ATen/ops/dot_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6330690Z copying torch/include/ATen/ops/positive_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6331970Z copying torch/include/ATen/ops/adaptive_avg_pool3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6333500Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6334640Z copying torch/include/ATen/ops/_cast_Float_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6343230Z copying torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6344410Z copying torch/include/ATen/ops/lu_unpack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6345630Z copying torch/include/ATen/ops/_foreach_atan_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6346950Z copying torch/include/ATen/ops/_make_per_tensor_quantized_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6348240Z copying torch/include/ATen/ops/is_coalesced_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6349480Z copying torch/include/ATen/ops/narrow_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6350720Z copying torch/include/ATen/ops/atan2_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6352080Z copying torch/include/ATen/ops/rnn_relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6353210Z copying torch/include/ATen/ops/lu_unpack_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6354520Z copying torch/include/ATen/ops/_mixed_dtypes_linear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6355780Z copying torch/include/ATen/ops/_nested_get_max_seqlen.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6357260Z copying torch/include/ATen/ops/_linalg_slogdet_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6358380Z copying torch/include/ATen/ops/size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6359600Z copying torch/include/ATen/ops/scatter_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6361180Z copying torch/include/ATen/ops/logcumsumexp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6362140Z copying torch/include/ATen/ops/bernoulli_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6363420Z copying torch/include/ATen/ops/glu_jvp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6364750Z copying torch/include/ATen/ops/special_i1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6365970Z copying torch/include/ATen/ops/matrix_exp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6367200Z copying torch/include/ATen/ops/miopen_rnn_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6368520Z copying torch/include/ATen/ops/_linalg_slogdet_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6369870Z copying torch/include/ATen/ops/special_legendre_polynomial_p_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6371070Z copying torch/include/ATen/ops/log_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6372340Z copying torch/include/ATen/ops/hann_window_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6373550Z copying torch/include/ATen/ops/rrelu_with_noise.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6374800Z copying torch/include/ATen/ops/miopen_convolution_add_relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6376020Z copying torch/include/ATen/ops/atan_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6377260Z copying torch/include/ATen/ops/coalesce_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6378510Z copying torch/include/ATen/ops/_sparse_log_softmax_backward_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6379880Z copying torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6381050Z copying torch/include/ATen/ops/where_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6382560Z copying torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6383730Z copying torch/include/ATen/ops/std_mean_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6385200Z copying torch/include/ATen/ops/atan2_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6386400Z copying torch/include/ATen/ops/unfold_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6387670Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k1_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6388970Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6390360Z copying torch/include/ATen/ops/reflection_pad3d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6391610Z copying torch/include/ATen/ops/atleast_3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6399560Z copying torch/include/ATen/ops/_resize_output_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6400410Z copying torch/include/ATen/ops/linalg_lu_factor_ex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6406270Z copying torch/include/ATen/ops/_linalg_svd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6407000Z copying torch/include/ATen/ops/hstack_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6407720Z copying torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6408350Z copying torch/include/ATen/ops/arctan_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6408940Z copying torch/include/ATen/ops/_efficient_attention_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6409640Z copying torch/include/ATen/ops/_fw_primal_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6410290Z copying torch/include/ATen/ops/view_as_real_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6411010Z copying torch/include/ATen/ops/miopen_batch_norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6412180Z copying torch/include/ATen/ops/neg_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6413510Z copying torch/include/ATen/ops/argmax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6414830Z copying torch/include/ATen/ops/_sparse_coo_tensor_unsafe_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6416120Z copying torch/include/ATen/ops/special_spherical_bessel_j0_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6417260Z copying torch/include/ATen/ops/erfinv_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6418690Z copying torch/include/ATen/ops/nll_loss2d_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6419890Z copying torch/include/ATen/ops/chain_matmul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6421270Z copying torch/include/ATen/ops/sign_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6422690Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6423970Z copying torch/include/ATen/ops/affine_grid_generator_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6425350Z copying torch/include/ATen/ops/mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6426610Z copying torch/include/ATen/ops/concat_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6427850Z copying torch/include/ATen/ops/vdot_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6429260Z copying torch/include/ATen/ops/sparse_resize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6430540Z copying torch/include/ATen/ops/_foreach_abs_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6431930Z copying torch/include/ATen/ops/slow_conv_transpose2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6433260Z copying torch/include/ATen/ops/_weight_norm_interface_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6434410Z copying torch/include/ATen/ops/abs_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6435800Z copying torch/include/ATen/ops/col_indices_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6437240Z copying torch/include/ATen/ops/logical_xor_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6438440Z copying torch/include/ATen/ops/native_group_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6439610Z copying torch/include/ATen/ops/_fft_c2c_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6441050Z copying torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6442350Z copying torch/include/ATen/ops/cosine_similarity_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6443800Z copying torch/include/ATen/ops/cat_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6444910Z copying torch/include/ATen/ops/conj_physical_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6446260Z copying torch/include/ATen/ops/argmin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6447500Z copying torch/include/ATen/ops/_embedding_bag_sparse_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6448830Z copying torch/include/ATen/ops/adaptive_max_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6450040Z copying torch/include/ATen/ops/logspace_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6451230Z copying torch/include/ATen/ops/avg_pool2d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6452430Z copying torch/include/ATen/ops/is_same_size_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6459910Z copying torch/include/ATen/ops/igammac_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6461120Z copying torch/include/ATen/ops/linalg_inv_ex_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6462440Z copying torch/include/ATen/ops/maximum_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6463640Z copying torch/include/ATen/ops/_cast_Double_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6464920Z copying torch/include/ATen/ops/prod_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6466090Z copying torch/include/ATen/ops/ceil_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6467440Z copying torch/include/ATen/ops/column_stack_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6469030Z copying torch/include/ATen/ops/_native_multi_head_attention_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6470170Z copying torch/include/ATen/ops/hinge_embedding_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6471350Z copying torch/include/ATen/ops/_fused_adamw_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6472760Z copying torch/include/ATen/ops/special_modified_bessel_i1_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6473870Z copying torch/include/ATen/ops/and_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6475340Z copying torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6476620Z copying torch/include/ATen/ops/atanh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6477810Z copying torch/include/ATen/ops/batch_norm_backward_reduce_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6484860Z copying torch/include/ATen/ops/as_strided_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6486120Z copying torch/include/ATen/ops/linalg_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6487480Z copying torch/include/ATen/ops/cudnn_grid_sampler_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6488770Z copying torch/include/ATen/ops/sqrt_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6490120Z copying torch/include/ATen/ops/nan_to_num_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6491390Z copying torch/include/ATen/ops/vstack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6492610Z copying torch/include/ATen/ops/fft_rfftn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6493830Z copying torch/include/ATen/ops/normal_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6495100Z copying torch/include/ATen/ops/_sparse_csr_sum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6503140Z copying torch/include/ATen/ops/linalg_inv_ex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6504210Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6505430Z copying torch/include/ATen/ops/leaky_relu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6506900Z copying torch/include/ATen/ops/bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6508070Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6509340Z copying torch/include/ATen/ops/_nested_view_from_buffer_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6510850Z copying torch/include/ATen/ops/fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6518790Z copying torch/include/ATen/ops/linalg_lu_factor_ex_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6519680Z copying torch/include/ATen/ops/_fused_sgd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6521090Z copying torch/include/ATen/ops/_convolution_mode_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6522270Z copying torch/include/ATen/ops/_linalg_eigh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6523560Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6524770Z copying torch/include/ATen/ops/dequantize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6525950Z copying torch/include/ATen/ops/_fft_c2c_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6527370Z copying torch/include/ATen/ops/align_to.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6528730Z copying torch/include/ATen/ops/max_unpool3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6529950Z copying torch/include/ATen/ops/replication_pad3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6537430Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6538250Z copying torch/include/ATen/ops/acosh_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6539650Z copying torch/include/ATen/ops/signbit_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6540800Z copying torch/include/ATen/ops/_assert_scalar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6541990Z copying torch/include/ATen/ops/index.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6543220Z copying torch/include/ATen/ops/min_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6544430Z copying torch/include/ATen/ops/glu_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6552880Z copying torch/include/ATen/ops/is_same_size_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6553770Z copying torch/include/ATen/ops/index_select_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6554940Z copying torch/include/ATen/ops/_mkldnn_reshape_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6556330Z copying torch/include/ATen/ops/_weight_norm_interface_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6557480Z copying torch/include/ATen/ops/std_mean_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6558680Z copying torch/include/ATen/ops/softshrink_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6559890Z copying torch/include/ATen/ops/index_fill_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6561060Z copying torch/include/ATen/ops/repeat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6569920Z copying torch/include/ATen/ops/_foreach_floor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6570770Z copying torch/include/ATen/ops/_nested_tensor_from_mask_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6572170Z copying torch/include/ATen/ops/transpose_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6573360Z copying torch/include/ATen/ops/embedding_sparse_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6574550Z copying torch/include/ATen/ops/dropout_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6575810Z copying torch/include/ATen/ops/matmul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6577040Z copying torch/include/ATen/ops/floor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6578300Z copying torch/include/ATen/ops/_cufft_get_plan_cache_max_size_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6579490Z copying torch/include/ATen/ops/_unsafe_view_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6580850Z copying torch/include/ATen/ops/gelu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6582070Z copying torch/include/ATen/ops/_standard_gamma_grad_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6583290Z copying torch/include/ATen/ops/_test_check_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6584430Z copying torch/include/ATen/ops/rot90_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6585710Z copying torch/include/ATen/ops/signbit_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6586960Z copying torch/include/ATen/ops/reciprocal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6588140Z copying torch/include/ATen/ops/clamp_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6589280Z copying torch/include/ATen/ops/selu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6590660Z copying torch/include/ATen/ops/reflection_pad1d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6591870Z copying torch/include/ATen/ops/upsample_nearest1d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6593150Z copying torch/include/ATen/ops/squeeze_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6594310Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6595580Z copying torch/include/ATen/ops/bitwise_right_shift_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6596730Z copying torch/include/ATen/ops/special_spherical_bessel_j0_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6597880Z copying torch/include/ATen/ops/minimum_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6599090Z copying torch/include/ATen/ops/_flash_attention_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6606960Z copying torch/include/ATen/ops/hardsigmoid_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6607870Z copying torch/include/ATen/ops/_logcumsumexp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6609100Z copying torch/include/ATen/ops/values_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6610250Z copying torch/include/ATen/ops/col2im_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6611620Z copying torch/include/ATen/ops/ge_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6612860Z copying torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6614090Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6615390Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6616680Z copying torch/include/ATen/ops/cosh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6617890Z copying torch/include/ATen/ops/linalg_vector_norm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6619130Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6620350Z copying torch/include/ATen/ops/hardtanh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6621720Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6622950Z copying torch/include/ATen/ops/erfc_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6624220Z copying torch/include/ATen/ops/_fill_mem_eff_dropout_mask_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6631560Z copying torch/include/ATen/ops/_sparse_sum_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6632350Z copying torch/include/ATen/ops/atan2_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6639910Z copying torch/include/ATen/ops/sub_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6640800Z copying torch/include/ATen/ops/view_as_real_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6642110Z copying torch/include/ATen/ops/_masked_scale_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6643410Z copying torch/include/ATen/ops/_jagged_to_padded_dense_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6644560Z copying torch/include/ATen/ops/glu_jvp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6645800Z copying torch/include/ATen/ops/_sobol_engine_scramble.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6647020Z copying torch/include/ATen/ops/mish_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6648320Z copying torch/include/ATen/ops/fft_rfftfreq_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6649460Z copying torch/include/ATen/ops/elu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6650730Z copying torch/include/ATen/ops/nanmean_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6651940Z copying torch/include/ATen/ops/miopen_batch_norm_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6653450Z copying torch/include/ATen/ops/linalg_cross_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6654510Z copying torch/include/ATen/ops/_fused_dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6655890Z copying torch/include/ATen/ops/max_pool3d_with_indices_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6657040Z copying torch/include/ATen/ops/addbmm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6658750Z copying torch/include/ATen/ops/_transformer_encoder_layer_fwd_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6659750Z copying torch/include/ATen/ops/gt_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6661530Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6662490Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6663830Z copying torch/include/ATen/ops/miopen_rnn_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6665260Z copying torch/include/ATen/ops/fractional_max_pool2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6666280Z copying torch/include/ATen/ops/detach_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6667650Z copying torch/include/ATen/ops/bitwise_and_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6674890Z copying torch/include/ATen/ops/type_as_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6676170Z copying torch/include/ATen/ops/randn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6677350Z copying torch/include/ATen/ops/_linalg_solve_ex_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6678760Z copying torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6679950Z copying torch/include/ATen/ops/_slow_conv2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6681290Z copying torch/include/ATen/ops/conv_depthwise3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6682520Z copying torch/include/ATen/ops/norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6683900Z copying torch/include/ATen/ops/masked_select_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6685090Z copying torch/include/ATen/ops/exponential_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6686390Z copying torch/include/ATen/ops/special_i0_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6687640Z copying torch/include/ATen/ops/or_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6688860Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6690120Z copying torch/include/ATen/ops/_autocast_to_full_precision_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6691580Z copying torch/include/ATen/ops/erfinv_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6692760Z copying torch/include/ATen/ops/lcm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6694070Z copying torch/include/ATen/ops/argwhere_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6695270Z copying torch/include/ATen/ops/upsample_nearest2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6696480Z copying torch/include/ATen/ops/cross_entropy_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6697810Z copying torch/include/ATen/ops/_linalg_eigh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6699030Z copying torch/include/ATen/ops/unsqueeze_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6700410Z copying torch/include/ATen/ops/native_layer_norm_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6701630Z copying torch/include/ATen/ops/rsub_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6703010Z copying torch/include/ATen/ops/max_pool2d_with_indices_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6704270Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6705690Z copying torch/include/ATen/ops/median_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6706930Z copying torch/include/ATen/ops/linalg_cross_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6708140Z copying torch/include/ATen/ops/gelu_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6709370Z copying torch/include/ATen/ops/_weight_int8pack_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6710820Z copying torch/include/ATen/ops/grid_sampler_2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6712070Z copying torch/include/ATen/ops/quantize_per_tensor_dynamic_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6713200Z copying torch/include/ATen/ops/permute.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6714580Z copying torch/include/ATen/ops/special_digamma_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6715900Z copying torch/include/ATen/ops/_upsample_nearest_exact1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6717310Z copying torch/include/ATen/ops/linalg_tensorinv_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6718520Z copying torch/include/ATen/ops/_sparse_semi_structured_linear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6719810Z copying torch/include/ATen/ops/native_group_norm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6721130Z copying torch/include/ATen/ops/split_with_sizes_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6722550Z copying torch/include/ATen/ops/unflatten_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6723870Z copying torch/include/ATen/ops/_functional_assert_scalar_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6725130Z copying torch/include/ATen/ops/mse_loss_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6726430Z copying torch/include/ATen/ops/le_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6727680Z copying torch/include/ATen/ops/atleast_1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6728820Z copying torch/include/ATen/ops/roll.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6730030Z copying torch/include/ATen/ops/linalg_svdvals_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6731180Z copying torch/include/ATen/ops/orgqr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6732370Z copying torch/include/ATen/ops/sigmoid_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6733600Z copying torch/include/ATen/ops/conv_transpose2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6734830Z copying torch/include/ATen/ops/layer_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6736330Z copying torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6737500Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6738660Z copying torch/include/ATen/ops/std_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6739990Z copying torch/include/ATen/ops/_sample_dirichlet_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6741220Z copying torch/include/ATen/ops/_sparse_bsr_tensor_unsafe.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6742490Z copying torch/include/ATen/ops/take.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6743780Z copying torch/include/ATen/ops/igammac_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6745180Z copying torch/include/ATen/ops/isin_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6746560Z copying torch/include/ATen/ops/record_stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6754790Z copying torch/include/ATen/ops/resize_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6756090Z copying torch/include/ATen/ops/bitwise_and_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6757060Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6758320Z copying torch/include/ATen/ops/native_group_norm_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6759530Z copying torch/include/ATen/ops/view_as_complex_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6760840Z copying torch/include/ATen/ops/fill_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6762030Z copying torch/include/ATen/ops/linear_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6763290Z copying torch/include/ATen/ops/isinf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6764450Z copying torch/include/ATen/ops/expand_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6765840Z copying torch/include/ATen/ops/_batch_norm_with_update_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6767040Z copying torch/include/ATen/ops/_nested_get_min_seqlen_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6768540Z copying torch/include/ATen/ops/cudnn_convolution_relu_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6769750Z copying torch/include/ATen/ops/_cast_Char_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6770940Z copying torch/include/ATen/ops/native_dropout_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6772310Z copying torch/include/ATen/ops/lstm_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6773540Z copying torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6774660Z copying torch/include/ATen/ops/multinomial.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6776070Z copying torch/include/ATen/ops/alias_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6777380Z copying torch/include/ATen/ops/_foreach_maximum_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6778580Z copying torch/include/ATen/ops/allclose_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6779990Z copying torch/include/ATen/ops/linalg_slogdet_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6781350Z copying torch/include/ATen/ops/nuclear_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6782660Z copying torch/include/ATen/ops/_slow_conv2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6783840Z copying torch/include/ATen/ops/multilabel_margin_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6785180Z copying torch/include/ATen/ops/grid_sampler_3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6786390Z copying torch/include/ATen/ops/pairwise_distance_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6787580Z copying torch/include/ATen/ops/broadcast_to_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6789140Z copying torch/include/ATen/ops/mse_loss_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6790080Z copying torch/include/ATen/ops/_nested_get_lengths_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6791380Z copying torch/include/ATen/ops/native_group_norm_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6792600Z copying torch/include/ATen/ops/_foreach_log.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6794090Z copying torch/include/ATen/ops/sparse_csc_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6795280Z copying torch/include/ATen/ops/nextafter_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6796820Z copying torch/include/ATen/ops/slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6797930Z copying torch/include/ATen/ops/_aminmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6799390Z copying torch/include/ATen/ops/complex_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6800530Z copying torch/include/ATen/ops/hardswish_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6801830Z copying torch/include/ATen/ops/digamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6803060Z copying torch/include/ATen/ops/mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6804850Z copying torch/include/ATen/ops/mkldnn_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6805990Z copying torch/include/ATen/ops/empty_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6807270Z copying torch/include/ATen/ops/triangular_solve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6808530Z copying torch/include/ATen/ops/_pdist_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6809750Z copying torch/include/ATen/ops/_ctc_loss_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6811060Z copying torch/include/ATen/ops/coalesce_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6812240Z copying torch/include/ATen/ops/log_sigmoid_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6813460Z copying torch/include/ATen/ops/adaptive_avg_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6814690Z copying torch/include/ATen/ops/bitwise_or_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6815890Z copying torch/include/ATen/ops/geometric_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6817100Z copying torch/include/ATen/ops/slow_conv_transpose2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6818400Z copying torch/include/ATen/ops/special_legendre_polynomial_p_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6819570Z copying torch/include/ATen/ops/cumprod_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6820970Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6822170Z copying torch/include/ATen/ops/sym_constrain_range_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6823320Z copying torch/include/ATen/ops/ldexp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6824520Z copying torch/include/ATen/ops/arccosh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6825730Z copying torch/include/ATen/ops/linalg_matrix_rank.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6827110Z copying torch/include/ATen/ops/_copy_from_and_resize_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6828420Z copying torch/include/ATen/ops/_native_batch_norm_legit_no_training_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6836540Z copying torch/include/ATen/ops/all_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6837520Z copying torch/include/ATen/ops/linalg_matrix_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6838970Z copying torch/include/ATen/ops/is_set_to_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6840160Z copying torch/include/ATen/ops/bitwise_left_shift_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6841380Z copying torch/include/ATen/ops/randn_like_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6842560Z copying torch/include/ATen/ops/rnn_relu_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6843900Z copying torch/include/ATen/ops/max_pool2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6849420Z copying torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6850190Z copying torch/include/ATen/ops/adjoint_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6850860Z copying torch/include/ATen/ops/_pack_padded_sequence_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6851550Z copying torch/include/ATen/ops/nonzero_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6852200Z copying torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6852900Z copying torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6853510Z copying torch/include/ATen/ops/mse_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6854240Z copying torch/include/ATen/ops/special_modified_bessel_i0_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6855290Z copying torch/include/ATen/ops/eye_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6856460Z copying torch/include/ATen/ops/special_exp2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6857720Z copying torch/include/ATen/ops/_fused_adamw.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6866120Z copying torch/include/ATen/ops/permute_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6867210Z copying torch/include/ATen/ops/grid_sampler_3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6868500Z copying torch/include/ATen/ops/index_copy_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6869750Z copying torch/include/ATen/ops/frac_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6870980Z copying torch/include/ATen/ops/gelu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6872250Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6873480Z copying torch/include/ATen/ops/_dyn_quant_matmul_4bit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6874790Z copying torch/include/ATen/ops/_scaled_dot_product_efficient_attention_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6876010Z copying torch/include/ATen/ops/_pdist_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6877340Z copying torch/include/ATen/ops/avg_pool3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6878700Z copying torch/include/ATen/ops/broadcast_tensors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6879860Z copying torch/include/ATen/ops/slow_conv3d_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6881010Z copying torch/include/ATen/ops/lt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6882250Z copying torch/include/ATen/ops/_chunk_cat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6883510Z copying torch/include/ATen/ops/_sparse_softmax_backward_data_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6884810Z copying torch/include/ATen/ops/is_distributed_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6886050Z copying torch/include/ATen/ops/nll_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6887360Z copying torch/include/ATen/ops/_masked_softmax_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6888620Z copying torch/include/ATen/ops/fft_irfftn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6889930Z copying torch/include/ATen/ops/reflection_pad2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6891310Z copying torch/include/ATen/ops/slice_scatter_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6892580Z copying torch/include/ATen/ops/rnn_tanh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6893830Z copying torch/include/ATen/ops/fft_fftn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6895070Z copying torch/include/ATen/ops/_fused_adagrad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6896440Z copying torch/include/ATen/ops/all_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6897870Z copying torch/include/ATen/ops/quantized_gru_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6899770Z copying torch/include/ATen/ops/eye_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6900940Z copying torch/include/ATen/ops/hypot_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6902430Z copying torch/include/ATen/ops/sqrt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6903750Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6904920Z copying torch/include/ATen/ops/set_data_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6906160Z copying torch/include/ATen/ops/linalg_vecdot_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6907650Z copying torch/include/ATen/ops/quantize_per_tensor_dynamic_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6908760Z copying torch/include/ATen/ops/acosh_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6909960Z copying torch/include/ATen/ops/_convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6911340Z copying torch/include/ATen/ops/_add_batch_dim_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6912680Z copying torch/include/ATen/ops/sparse_csr_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6914010Z copying torch/include/ATen/ops/_foreach_sinh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6915480Z copying torch/include/ATen/ops/moveaxis_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6916660Z copying torch/include/ATen/ops/positive.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6918140Z copying torch/include/ATen/ops/sum_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6919390Z copying torch/include/ATen/ops/asin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6920690Z copying torch/include/ATen/ops/adaptive_avg_pool3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6921930Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6923140Z copying torch/include/ATen/ops/new_empty.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6924680Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6925630Z copying torch/include/ATen/ops/any_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6926820Z copying torch/include/ATen/ops/special_xlog1py_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6928120Z copying torch/include/ATen/ops/pad_sequence_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6929280Z copying torch/include/ATen/ops/_propagate_xla_data_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6930550Z copying torch/include/ATen/ops/cudnn_convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6931740Z copying torch/include/ATen/ops/_log_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6932930Z copying torch/include/ATen/ops/_foreach_round_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6934150Z copying torch/include/ATen/ops/_conj.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6935410Z copying torch/include/ATen/ops/is_coalesced_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6936630Z copying torch/include/ATen/ops/flatten.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6937820Z copying torch/include/ATen/ops/_to_dense_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6939100Z copying torch/include/ATen/ops/bitwise_or_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6940320Z copying torch/include/ATen/ops/bincount_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6941500Z copying torch/include/ATen/ops/dot_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6942740Z copying torch/include/ATen/ops/sparse_resize_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6944210Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6945270Z copying torch/include/ATen/ops/linspace_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6946450Z copying torch/include/ATen/ops/lerp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6947660Z copying torch/include/ATen/ops/nanmedian.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6948990Z copying torch/include/ATen/ops/diag_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6950150Z copying torch/include/ATen/ops/diagonal_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6951360Z copying torch/include/ATen/ops/sgn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6952600Z copying torch/include/ATen/ops/_gather_sparse_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6953840Z copying torch/include/ATen/ops/topk_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6955000Z copying torch/include/ATen/ops/flip_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6956240Z copying torch/include/ATen/ops/any_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6957510Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6958680Z copying torch/include/ATen/ops/linalg_eigvals_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6959860Z copying torch/include/ATen/ops/special_entr_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6961060Z copying torch/include/ATen/ops/fbgemm_linear_quantize_weight_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6962290Z copying torch/include/ATen/ops/where_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6963530Z copying torch/include/ATen/ops/_sparse_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6964680Z copying torch/include/ATen/ops/igamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6965940Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6967180Z copying torch/include/ATen/ops/_choose_qparams_per_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6968430Z copying torch/include/ATen/ops/fft_ihfft2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6969590Z copying torch/include/ATen/ops/kl_div.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6970900Z copying torch/include/ATen/ops/special_legendre_polynomial_p_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6972090Z copying torch/include/ATen/ops/_mps_convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6973340Z copying torch/include/ATen/ops/hardsigmoid_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6974550Z copying torch/include/ATen/ops/values_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6975780Z copying torch/include/ATen/ops/resize_as_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6976950Z copying torch/include/ATen/ops/bucketize_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6978230Z copying torch/include/ATen/ops/_test_optional_filled_intlist_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6979380Z copying torch/include/ATen/ops/_linalg_svd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6980700Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6981920Z copying torch/include/ATen/ops/argmin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6983000Z copying torch/include/ATen/ops/any_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6984240Z copying torch/include/ATen/ops/vsplit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6985450Z copying torch/include/ATen/ops/_softmax_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6986650Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6987910Z copying torch/include/ATen/ops/min_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6989130Z copying torch/include/ATen/ops/_mps_convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6990390Z copying torch/include/ATen/ops/special_polygamma_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6991600Z copying torch/include/ATen/ops/value_selecting_reduction_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6992990Z copying torch/include/ATen/ops/_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6994170Z copying torch/include/ATen/ops/special_log1p_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6995410Z copying torch/include/ATen/ops/special_bessel_j0_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6996650Z copying torch/include/ATen/ops/_log_softmax_backward_data_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6998060Z copying torch/include/ATen/ops/upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.6999190Z copying torch/include/ATen/ops/put_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7000450Z copying torch/include/ATen/ops/cdist_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7001640Z copying torch/include/ATen/ops/quantized_rnn_tanh_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7002920Z copying torch/include/ATen/ops/binary_cross_entropy_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7004080Z copying torch/include/ATen/ops/glu_jvp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7005320Z copying torch/include/ATen/ops/atan_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7006740Z copying torch/include/ATen/ops/acos_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7007970Z copying torch/include/ATen/ops/log10_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7009200Z copying torch/include/ATen/ops/_weight_norm_interface_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7010400Z copying torch/include/ATen/ops/_mixed_dtypes_linear_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7011800Z copying torch/include/ATen/ops/mkldnn_max_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7013010Z copying torch/include/ATen/ops/binomial.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7014300Z copying torch/include/ATen/ops/quantized_max_pool1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7015410Z copying torch/include/ATen/ops/linalg_qr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7016750Z copying torch/include/ATen/ops/ctc_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7018190Z copying torch/include/ATen/ops/_propagate_xla_data_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7019250Z copying torch/include/ATen/ops/_fused_adagrad_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7020420Z copying torch/include/ATen/ops/index_add_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7021690Z copying torch/include/ATen/ops/norm_except_dim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7022960Z copying torch/include/ATen/ops/log_normal_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7024220Z copying torch/include/ATen/ops/miopen_convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7025450Z copying torch/include/ATen/ops/max_pool3d_with_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7026740Z copying torch/include/ATen/ops/hardshrink_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7027990Z copying torch/include/ATen/ops/transpose_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7029200Z copying torch/include/ATen/ops/_foreach_pow_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7030760Z copying torch/include/ATen/ops/_make_per_channel_quantized_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7031900Z copying torch/include/ATen/ops/smooth_l1_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7033020Z copying torch/include/ATen/ops/cholesky_solve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7034340Z copying torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7035660Z copying torch/include/ATen/ops/embedding_renorm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7037000Z copying torch/include/ATen/ops/special_modified_bessel_i0_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7038550Z copying torch/include/ATen/ops/hardsigmoid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7039890Z copying torch/include/ATen/ops/quantized_rnn_tanh_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7041160Z copying torch/include/ATen/ops/linalg_lu_factor_ex_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7042360Z copying torch/include/ATen/ops/remainder_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7043610Z copying torch/include/ATen/ops/_weight_norm_interface_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7044850Z copying torch/include/ATen/ops/deg2rad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7046070Z copying torch/include/ATen/ops/glu_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7047410Z copying torch/include/ATen/ops/_weight_int4pack_mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7048660Z copying torch/include/ATen/ops/special_bessel_y1_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7049870Z copying torch/include/ATen/ops/zero_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7051040Z copying torch/include/ATen/ops/is_complex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7052260Z copying torch/include/ATen/ops/floor_divide.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7053450Z copying torch/include/ATen/ops/soft_margin_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7054670Z copying torch/include/ATen/ops/addr_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7055930Z copying torch/include/ATen/ops/arcsinh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7057050Z copying torch/include/ATen/ops/upsample_bicubic2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7058280Z copying torch/include/ATen/ops/_use_cudnn_ctc_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7059600Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7060700Z copying torch/include/ATen/ops/special_bessel_y1_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7061850Z copying torch/include/ATen/ops/corrcoef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7063100Z copying torch/include/ATen/ops/linalg_tensorsolve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7064470Z copying torch/include/ATen/ops/select_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7065610Z copying torch/include/ATen/ops/special_gammaln_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7067040Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7068110Z copying torch/include/ATen/ops/erfc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7069270Z copying torch/include/ATen/ops/ccol_indices_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7070490Z copying torch/include/ATen/ops/reflection_pad1d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7071710Z copying torch/include/ATen/ops/_foreach_asin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7072930Z copying torch/include/ATen/ops/_fused_adam.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7074200Z copying torch/include/ATen/ops/zeros_like.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7075550Z copying torch/include/ATen/ops/mish_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7076740Z copying torch/include/ATen/ops/reshape_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7077920Z copying torch/include/ATen/ops/_foreach_cosh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7079210Z copying torch/include/ATen/ops/lt_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7080610Z copying torch/include/ATen/ops/slow_conv_transpose3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7081930Z copying torch/include/ATen/ops/_index_put_impl_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7083230Z copying torch/include/ATen/ops/gt_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7084750Z copying torch/include/ATen/ops/data_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7086130Z copying torch/include/ATen/ops/fft_rfft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7087250Z copying torch/include/ATen/ops/replication_pad3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7088480Z copying torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7089830Z copying torch/include/ATen/ops/mkldnn_max_pool2d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7090950Z copying torch/include/ATen/ops/unbind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7092110Z copying torch/include/ATen/ops/scatter_reduce_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7093370Z copying torch/include/ATen/ops/unique_dim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7094590Z copying torch/include/ATen/ops/triangular_solve_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7095870Z copying torch/include/ATen/ops/_softmax_backward_data_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7096990Z copying torch/include/ATen/ops/baddbmm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7098220Z copying torch/include/ATen/ops/linear_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7099600Z copying torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7100860Z copying torch/include/ATen/ops/matmul_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7101980Z copying torch/include/ATen/ops/geometric_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7103330Z copying torch/include/ATen/ops/multilabel_margin_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7104490Z copying torch/include/ATen/ops/lstm_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7105650Z copying torch/include/ATen/ops/_foreach_cos_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7106840Z copying torch/include/ATen/ops/max_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7108000Z copying torch/include/ATen/ops/outer_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7109280Z copying torch/include/ATen/ops/_nested_view_from_buffer_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7110440Z copying torch/include/ATen/ops/vdot_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7111730Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7112970Z copying torch/include/ATen/ops/_fused_rms_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7114170Z copying torch/include/ATen/ops/topk.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7115510Z copying torch/include/ATen/ops/_foreach_trunc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7116880Z copying torch/include/ATen/ops/lcm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7118230Z copying torch/include/ATen/ops/_log_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7125350Z copying torch/include/ATen/ops/_cast_Short_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7126240Z copying torch/include/ATen/ops/batch_norm_gather_stats_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7127860Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7129160Z copying torch/include/ATen/ops/hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7130230Z copying torch/include/ATen/ops/batch_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7131470Z copying torch/include/ATen/ops/_to_sparse_bsc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7132830Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7134130Z copying torch/include/ATen/ops/reshape_as_compositeimplicitautogradnestedtensor_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7135310Z copying torch/include/ATen/ops/var_mean_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7136520Z copying torch/include/ATen/ops/empty_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7137740Z copying torch/include/ATen/ops/q_scale_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7138940Z copying torch/include/ATen/ops/lgamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7140150Z copying torch/include/ATen/ops/stft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7141390Z copying torch/include/ATen/ops/_sparse_mask_projection.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7142570Z copying torch/include/ATen/ops/aminmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7143760Z copying torch/include/ATen/ops/_trilinear_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7144970Z copying torch/include/ATen/ops/mse_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7146280Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7147530Z copying torch/include/ATen/ops/affine_grid_generator_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7148780Z copying torch/include/ATen/ops/sinc_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7150160Z copying torch/include/ATen/ops/elu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7151300Z copying torch/include/ATen/ops/unique_dim_consecutive_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7152490Z copying torch/include/ATen/ops/nll_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7153790Z copying torch/include/ATen/ops/quantized_lstm_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7154970Z copying torch/include/ATen/ops/quantize_per_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7156190Z copying torch/include/ATen/ops/avg_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7157400Z copying torch/include/ATen/ops/unsqueeze_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7158570Z copying torch/include/ATen/ops/random_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7159700Z copying torch/include/ATen/ops/repeat_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7161000Z copying torch/include/ATen/ops/fractional_max_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7162210Z copying torch/include/ATen/ops/linalg_matrix_rank_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7163500Z copying torch/include/ATen/ops/norm_except_dim_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7164600Z copying torch/include/ATen/ops/output_nr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7165890Z copying torch/include/ATen/ops/slow_conv3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7167090Z copying torch/include/ATen/ops/not_equal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7168270Z copying torch/include/ATen/ops/cholesky_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7169450Z copying torch/include/ATen/ops/meshgrid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7170760Z copying torch/include/ATen/ops/_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7172040Z copying torch/include/ATen/ops/sym_storage_offset_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7173150Z copying torch/include/ATen/ops/isneginf_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7174330Z copying torch/include/ATen/ops/hardsigmoid_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7175560Z copying torch/include/ATen/ops/unsqueeze_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7176690Z copying torch/include/ATen/ops/rand_like.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7177950Z copying torch/include/ATen/ops/dsplit_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7179130Z copying torch/include/ATen/ops/mse_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7180430Z copying torch/include/ATen/ops/_print_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7181700Z copying torch/include/ATen/ops/_foreach_maximum_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7182960Z copying torch/include/ATen/ops/grid_sampler_2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7184310Z copying torch/include/ATen/ops/arccosh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7185450Z copying torch/include/ATen/ops/float_power_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7186800Z copying torch/include/ATen/ops/upsample_bilinear2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7188200Z copying torch/include/ATen/ops/lstm_mps_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7189470Z copying torch/include/ATen/ops/slow_conv_dilated3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7190630Z copying torch/include/ATen/ops/maximum_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7191940Z copying torch/include/ATen/ops/adaptive_max_pool3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7193240Z copying torch/include/ATen/ops/multi_margin_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7194550Z copying torch/include/ATen/ops/_sparse_semi_structured_tile_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7196140Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7197380Z copying torch/include/ATen/ops/_functional_sym_constrain_range_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7198580Z copying torch/include/ATen/ops/cudnn_batch_norm_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7199780Z copying torch/include/ATen/ops/cosh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7201090Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7202310Z copying torch/include/ATen/ops/asinh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7203620Z copying torch/include/ATen/ops/linalg_pinv_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7204820Z copying torch/include/ATen/ops/tanh_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7206100Z copying torch/include/ATen/ops/log_softmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7207320Z copying torch/include/ATen/ops/_masked_scale.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7208580Z copying torch/include/ATen/ops/_nested_from_padded_and_nested_example_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7209810Z copying torch/include/ATen/ops/_log_softmax_backward_data_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7210990Z copying torch/include/ATen/ops/diff_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7212190Z copying torch/include/ATen/ops/fmax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7213510Z copying torch/include/ATen/ops/grid_sampler_2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7214730Z copying torch/include/ATen/ops/item_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7215940Z copying torch/include/ATen/ops/eye_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7217220Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7218400Z copying torch/include/ATen/ops/reflection_pad2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7219610Z copying torch/include/ATen/ops/ceil_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7221060Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7222360Z copying torch/include/ATen/ops/native_dropout_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7223570Z copying torch/include/ATen/ops/sym_storage_offset.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7224920Z copying torch/include/ATen/ops/_unsafe_masked_index_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7226150Z copying torch/include/ATen/ops/fmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7227380Z copying torch/include/ATen/ops/pixel_unshuffle_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7228690Z copying torch/include/ATen/ops/replication_pad3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7229810Z copying torch/include/ATen/ops/_log_softmax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7231000Z copying torch/include/ATen/ops/_masked_softmax_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7232280Z copying torch/include/ATen/ops/_has_compatible_shallow_copy_type_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7233640Z copying torch/include/ATen/ops/affine_grid_generator_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7234710Z copying torch/include/ATen/ops/and.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7235980Z copying torch/include/ATen/ops/slow_conv_dilated2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7237270Z copying torch/include/ATen/ops/_sparse_csr_sum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7238500Z copying torch/include/ATen/ops/replication_pad3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7239800Z copying torch/include/ATen/ops/nuclear_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7240930Z copying torch/include/ATen/ops/gru_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7242190Z copying torch/include/ATen/ops/logaddexp2_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7243550Z copying torch/include/ATen/ops/cholesky_solve_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7244710Z copying torch/include/ATen/ops/index_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7245940Z copying torch/include/ATen/ops/searchsorted_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7247280Z copying torch/include/ATen/ops/addmv_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7248660Z copying torch/include/ATen/ops/native_group_norm_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7249770Z copying torch/include/ATen/ops/masked_scatter_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7251150Z copying torch/include/ATen/ops/special_modified_bessel_k1_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7252490Z copying torch/include/ATen/ops/_padded_dense_to_jagged_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7253670Z copying torch/include/ATen/ops/clamp_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7254990Z copying torch/include/ATen/ops/layer_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7256210Z copying torch/include/ATen/ops/hann_window.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7257450Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7258750Z copying torch/include/ATen/ops/amin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7260160Z copying torch/include/ATen/ops/log1p_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7261560Z copying torch/include/ATen/ops/_cast_Int.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7262760Z copying torch/include/ATen/ops/nextafter_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7264200Z copying torch/include/ATen/ops/_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7265330Z copying torch/include/ATen/ops/erf_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7266640Z copying torch/include/ATen/ops/as_strided_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7267870Z copying torch/include/ATen/ops/_flash_attention_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7269180Z copying torch/include/ATen/ops/mkldnn_rnn_layer_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7270620Z copying torch/include/ATen/ops/_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7271760Z copying torch/include/ATen/ops/isneginf_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7273040Z copying torch/include/ATen/ops/reflection_pad1d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7274400Z copying torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7275580Z copying torch/include/ATen/ops/concatenate_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7276750Z copying torch/include/ATen/ops/bitwise_or_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7278050Z copying torch/include/ATen/ops/lerp_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7286020Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7287100Z copying torch/include/ATen/ops/clamp_min_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7288230Z copying torch/include/ATen/ops/argmin_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7289480Z copying torch/include/ATen/ops/_index_put_impl_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7290850Z copying torch/include/ATen/ops/unique_consecutive_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7291960Z copying torch/include/ATen/ops/erfc_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7293440Z copying torch/include/ATen/ops/max_pool1d_with_indices_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7294690Z copying torch/include/ATen/ops/lstm_mps_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7295960Z copying torch/include/ATen/ops/range.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7297120Z copying torch/include/ATen/ops/select_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7298570Z copying torch/include/ATen/ops/_foreach_erf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7299790Z copying torch/include/ATen/ops/native_layer_norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7301020Z copying torch/include/ATen/ops/sparse_resize_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7302240Z copying torch/include/ATen/ops/mkldnn_linear_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7303460Z copying torch/include/ATen/ops/sinc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7304710Z copying torch/include/ATen/ops/_conj_physical.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7312220Z copying torch/include/ATen/ops/square_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7313140Z copying torch/include/ATen/ops/copysign_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7321230Z copying torch/include/ATen/ops/amin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7322010Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k1_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7330260Z copying torch/include/ATen/ops/_foreach_tanh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7331050Z copying torch/include/ATen/ops/margin_ranking_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7332310Z copying torch/include/ATen/ops/special_psi_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7333720Z copying torch/include/ATen/ops/special_ndtri_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7335040Z copying torch/include/ATen/ops/to_sparse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7342850Z copying torch/include/ATen/ops/_transform_bias_rescale_qkv_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7343660Z copying torch/include/ATen/ops/_foreach_erfc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7344870Z copying torch/include/ATen/ops/selu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7346090Z copying torch/include/ATen/ops/_cdist_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7347380Z copying torch/include/ATen/ops/log_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7348530Z copying torch/include/ATen/ops/range_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7349960Z copying torch/include/ATen/ops/aminmax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7351330Z copying torch/include/ATen/ops/linalg_solve_triangular.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7352740Z copying torch/include/ATen/ops/xlogy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7354030Z copying torch/include/ATen/ops/cov.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7355430Z copying torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7356590Z copying torch/include/ATen/ops/relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7357790Z copying torch/include/ATen/ops/unique_dim_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7359090Z copying torch/include/ATen/ops/_rowwise_prune_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7360350Z copying torch/include/ATen/ops/min.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7361550Z copying torch/include/ATen/ops/chain_matmul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7362850Z copying torch/include/ATen/ops/tile_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7364120Z copying torch/include/ATen/ops/linalg_ldl_factor_ex_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7365400Z copying torch/include/ATen/ops/_foreach_reciprocal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7366700Z copying torch/include/ATen/ops/hardshrink_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7368130Z copying torch/include/ATen/ops/unique_dim_consecutive.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7369180Z copying torch/include/ATen/ops/is_nonzero_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7370870Z copying torch/include/ATen/ops/_prelu_kernel_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7372310Z copying torch/include/ATen/ops/cudnn_batch_norm_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7373310Z copying torch/include/ATen/ops/kthvalue_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7381210Z copying torch/include/ATen/ops/linspace_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7382270Z copying torch/include/ATen/ops/stride_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7383530Z copying torch/include/ATen/ops/slice_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7385030Z copying torch/include/ATen/ops/_test_parallel_materialize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7386530Z copying torch/include/ATen/ops/_new_zeros_with_same_feature_meta_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7387800Z copying torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7395740Z copying torch/include/ATen/ops/_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7396950Z copying torch/include/ATen/ops/int_repr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7398200Z copying torch/include/ATen/ops/ne_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7399490Z copying torch/include/ATen/ops/inverse_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7400680Z copying torch/include/ATen/ops/_sparse_log_softmax_backward_data_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7402090Z copying torch/include/ATen/ops/upsample_nearest2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7403190Z copying torch/include/ATen/ops/_foreach_mul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7404560Z copying torch/include/ATen/ops/upsample_linear1d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7405840Z copying torch/include/ATen/ops/_cufft_set_plan_cache_max_size_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7407040Z copying torch/include/ATen/ops/_int_mm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7408220Z copying torch/include/ATen/ops/upsample_linear1d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7409480Z copying torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7410970Z copying torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7412000Z copying torch/include/ATen/ops/fill.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7413400Z copying torch/include/ATen/ops/_dyn_quant_matmul_4bit_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7421860Z copying torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7423150Z copying torch/include/ATen/ops/squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7424430Z copying torch/include/ATen/ops/alpha_dropout_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7425680Z copying torch/include/ATen/ops/log1p_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7426930Z copying torch/include/ATen/ops/triplet_margin_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7428100Z copying torch/include/ATen/ops/lcm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7436690Z copying torch/include/ATen/ops/argwhere_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7437560Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7438810Z copying torch/include/ATen/ops/_foreach_frac.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7440000Z copying torch/include/ATen/ops/orgqr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7441450Z copying torch/include/ATen/ops/upsample_trilinear3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7442620Z copying torch/include/ATen/ops/mps_convolution_transpose_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7448800Z copying torch/include/ATen/ops/_foreach_sub_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7449200Z copying torch/include/ATen/ops/sgn_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7449480Z copying torch/include/ATen/ops/nanmedian_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7449740Z copying torch/include/ATen/ops/crow_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7449980Z copying torch/include/ATen/ops/fft_ihfft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7450200Z copying torch/include/ATen/ops/put_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7451330Z copying torch/include/ATen/ops/_standard_gamma_grad_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7452500Z copying torch/include/ATen/ops/std_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7453850Z copying torch/include/ATen/ops/cummax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7461530Z copying torch/include/ATen/ops/choose_qparams_optimized_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7462500Z copying torch/include/ATen/ops/lerp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7463700Z copying torch/include/ATen/ops/clamp_max.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7464890Z copying torch/include/ATen/ops/_int_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7466030Z copying torch/include/ATen/ops/var_mean_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7467330Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7481340Z copying torch/include/ATen/ops/arctan_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7488300Z copying torch/include/ATen/ops/_embedding_bag_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7489170Z copying torch/include/ATen/ops/div_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7490440Z copying torch/include/ATen/ops/round_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7498090Z copying torch/include/ATen/ops/grid_sampler_3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7505000Z copying torch/include/ATen/ops/hypot_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7505930Z copying torch/include/ATen/ops/nll_loss2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7507130Z copying torch/include/ATen/ops/to_mkldnn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7508450Z copying torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7516400Z copying torch/include/ATen/ops/empty_permuted_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7523850Z copying torch/include/ATen/ops/upsample_bicubic2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7524790Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7526000Z copying torch/include/ATen/ops/lt_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7527280Z copying torch/include/ATen/ops/linalg_householder_product_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7528550Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7529750Z copying torch/include/ATen/ops/cudnn_grid_sampler_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7531100Z copying torch/include/ATen/ops/select_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7532390Z copying torch/include/ATen/ops/special_modified_bessel_k0_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7533680Z copying torch/include/ATen/ops/slice_scatter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7535040Z copying torch/include/ATen/ops/_sparse_semi_structured_apply_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7543070Z copying torch/include/ATen/ops/upsample_linear1d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7544020Z copying torch/include/ATen/ops/_nnz.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7545370Z copying torch/include/ATen/ops/grid_sampler_2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7553670Z copying torch/include/ATen/ops/special_erfc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7554420Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7555610Z copying torch/include/ATen/ops/sparse_compressed_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7556790Z copying torch/include/ATen/ops/_nested_tensor_from_mask_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7558050Z copying torch/include/ATen/ops/_grouped_mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7559310Z copying torch/include/ATen/ops/hamming_window_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7560530Z copying torch/include/ATen/ops/nll_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7561760Z copying torch/include/ATen/ops/zeros_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7563140Z copying torch/include/ATen/ops/refine_names_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7564550Z copying torch/include/ATen/ops/special_modified_bessel_k0_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7565560Z copying torch/include/ATen/ops/_convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7566980Z copying torch/include/ATen/ops/special_bessel_j1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7575010Z copying torch/include/ATen/ops/conv3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7583430Z copying torch/include/ATen/ops/_conv_depthwise2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7584650Z copying torch/include/ATen/ops/_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7586000Z copying torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7587310Z copying torch/include/ATen/ops/special_modified_bessel_k0_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7595320Z copying torch/include/ATen/ops/chunk_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7596720Z copying torch/include/ATen/ops/bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7598080Z copying torch/include/ATen/ops/upsample_nearest2d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7599460Z copying torch/include/ATen/ops/special_modified_bessel_k1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7600820Z copying torch/include/ATen/ops/sgn_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7602030Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7610320Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7611340Z copying torch/include/ATen/ops/split_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7612760Z copying torch/include/ATen/ops/linalg_cholesky_ex_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7614010Z copying torch/include/ATen/ops/topk_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.7726810Z copying torch/include/ATen/ops/special_ndtr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9513420Z copying torch/include/ATen/ops/sym_numel_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9613230Z copying torch/include/ATen/ops/leaky_relu_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9713950Z copying torch/include/ATen/ops/mish_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9714210Z copying torch/include/ATen/ops/_values_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9714590Z copying torch/include/ATen/ops/_propagate_xla_data_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9714920Z copying torch/include/ATen/ops/diff_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9715200Z copying torch/include/ATen/ops/bitwise_or_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9715450Z copying torch/include/ATen/ops/sym_numel_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9715860Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9716100Z copying torch/include/ATen/ops/log_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9886670Z copying torch/include/ATen/ops/_to_sparse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9887030Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9887290Z copying torch/include/ATen/ops/_logcumsumexp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9887550Z copying torch/include/ATen/ops/pow_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9887850Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9888090Z copying torch/include/ATen/ops/_foreach_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9888450Z copying torch/include/ATen/ops/adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9888750Z copying torch/include/ATen/ops/linalg_solve_triangular_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9896230Z copying torch/include/ATen/ops/conj_physical_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9896480Z copying torch/include/ATen/ops/silu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9896700Z copying torch/include/ATen/ops/asin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9896990Z copying torch/include/ATen/ops/multinomial_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9897230Z copying torch/include/ATen/ops/_spsolve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9897560Z copying torch/include/ATen/ops/trace_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9897850Z copying torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9898180Z copying torch/include/ATen/ops/squeeze_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9898430Z copying torch/include/ATen/ops/sspaddmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9898700Z copying torch/include/ATen/ops/maximum_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9898950Z copying torch/include/ATen/ops/_batch_norm_impl_index.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9899230Z copying torch/include/ATen/ops/linalg_inv_ex_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9899490Z copying torch/include/ATen/ops/linalg_eigh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9899790Z copying torch/include/ATen/ops/max_pool2d_with_indices_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9900060Z copying torch/include/ATen/ops/quantized_max_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9900320Z copying torch/include/ATen/ops/_fused_sgd_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9900690Z copying torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9900940Z copying torch/include/ATen/ops/_cummax_helper_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9901270Z copying torch/include/ATen/ops/special_i1_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9901610Z copying torch/include/ATen/ops/conj_physical_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9901900Z copying torch/include/ATen/ops/sparse_compressed_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9902190Z copying torch/include/ATen/ops/cudnn_grid_sampler_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9902530Z copying torch/include/ATen/ops/empty_strided_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9902840Z copying torch/include/ATen/ops/sub_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9903090Z copying torch/include/ATen/ops/_cast_Half.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9903410Z copying torch/include/ATen/ops/nan_to_num_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9903910Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9904210Z copying torch/include/ATen/ops/_functional_assert_async_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9904480Z copying torch/include/ATen/ops/elu_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9904710Z copying torch/include/ATen/ops/fmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9904940Z copying torch/include/ATen/ops/_to_sparse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9905200Z copying torch/include/ATen/ops/addr_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9905470Z copying torch/include/ATen/ops/threshold_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9905710Z copying torch/include/ATen/ops/not_equal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9905970Z copying torch/include/ATen/ops/xlogy_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9906230Z copying torch/include/ATen/ops/special_exp2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9906680Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9906950Z copying torch/include/ATen/ops/special_bessel_j0_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9907250Z copying torch/include/ATen/ops/_mixed_dtypes_linear_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9907550Z copying torch/include/ATen/ops/bitwise_left_shift_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9907820Z copying torch/include/ATen/ops/view_as_complex_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9908100Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9908380Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9908660Z copying torch/include/ATen/ops/_linalg_eigvals_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9908980Z copying torch/include/ATen/ops/special_bessel_j1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9909230Z copying torch/include/ATen/ops/_unsafe_index_put.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9909500Z copying torch/include/ATen/ops/row_indices_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9909750Z copying torch/include/ATen/ops/multiply_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9910080Z copying torch/include/ATen/ops/kthvalue_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9910320Z copying torch/include/ATen/ops/_dim_arange_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9910660Z copying torch/include/ATen/ops/rand_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9910890Z copying torch/include/ATen/ops/to_sparse_csc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9911280Z copying torch/include/ATen/ops/sort_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9911570Z copying torch/include/ATen/ops/upsample_nearest2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9912430Z copying torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9913860Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9915190Z copying torch/include/ATen/ops/equal_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9944570Z copying torch/include/ATen/ops/adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9948650Z copying torch/include/ATen/ops/xor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9949760Z copying torch/include/ATen/ops/special_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9951000Z copying torch/include/ATen/ops/scatter_reduce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9952220Z copying torch/include/ATen/ops/slogdet_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9953610Z copying torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9954800Z copying torch/include/ATen/ops/std_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9956170Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9957370Z copying torch/include/ATen/ops/_foreach_log1p_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9958670Z copying torch/include/ATen/ops/_cudnn_rnn_flatten_weight_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9960120Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9961470Z copying torch/include/ATen/ops/floor_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9962710Z copying torch/include/ATen/ops/fractional_max_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9963910Z copying torch/include/ATen/ops/hspmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9965310Z copying torch/include/ATen/ops/vdot_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9966540Z copying torch/include/ATen/ops/take_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9967730Z copying torch/include/ATen/ops/segment_reduce_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9969150Z copying torch/include/ATen/ops/_triton_scaled_dot_attention_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9970390Z copying torch/include/ATen/ops/_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9971590Z copying torch/include/ATen/ops/squeeze_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9972940Z copying torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9974140Z copying torch/include/ATen/ops/less_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9975360Z copying torch/include/ATen/ops/_shape_as_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9976590Z copying torch/include/ATen/ops/mv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9977980Z copying torch/include/ATen/ops/_empty_per_channel_affine_quantized_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9979320Z copying torch/include/ATen/ops/special_legendre_polynomial_p_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9980600Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9981830Z copying torch/include/ATen/ops/threshold_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9983110Z copying torch/include/ATen/ops/clamp_min_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:44.9984520Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0057030Z copying torch/include/ATen/ops/mkldnn_max_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0058270Z copying torch/include/ATen/ops/_mps_convolution_transpose_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0060990Z copying torch/include/ATen/ops/cat_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0062300Z copying torch/include/ATen/ops/swapdims_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0063700Z copying torch/include/ATen/ops/rrelu_with_noise_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0065060Z copying torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0066220Z copying torch/include/ATen/ops/_to_sparse_csc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0067570Z copying torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0068870Z copying torch/include/ATen/ops/rnn_tanh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0070250Z copying torch/include/ATen/ops/hardtanh_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0071490Z copying torch/include/ATen/ops/special_multigammaln_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0072730Z copying torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0073970Z copying torch/include/ATen/ops/amax_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0075370Z copying torch/include/ATen/ops/tan_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0076550Z copying torch/include/ATen/ops/to_dense_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0077830Z copying torch/include/ATen/ops/reflection_pad3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0079120Z copying torch/include/ATen/ops/nan_to_num_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0080400Z copying torch/include/ATen/ops/_cummin_helper_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0081730Z copying torch/include/ATen/ops/_unique_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0083150Z copying torch/include/ATen/ops/softshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0084400Z copying torch/include/ATen/ops/_efficientzerotensor_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0085700Z copying torch/include/ATen/ops/log10_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0087910Z copying torch/include/ATen/ops/_test_parallel_materialize_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0089730Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0090920Z copying torch/include/ATen/ops/bitwise_left_shift.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0092150Z copying torch/include/ATen/ops/_pad_circular_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0093510Z copying torch/include/ATen/ops/mm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0094740Z copying torch/include/ATen/ops/_dyn_quant_pack_4bit_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0096040Z copying torch/include/ATen/ops/upsample_nearest3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0097160Z copying torch/include/ATen/ops/frobenius_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0098470Z copying torch/include/ATen/ops/count_nonzero_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0099630Z copying torch/include/ATen/ops/rsub_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0100880Z copying torch/include/ATen/ops/linalg_qr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0102130Z copying torch/include/ATen/ops/slow_conv_transpose2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0103670Z copying torch/include/ATen/ops/_linalg_det_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0104940Z copying torch/include/ATen/ops/tanh_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0106120Z copying torch/include/ATen/ops/_foreach_lgamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0107370Z copying torch/include/ATen/ops/isin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0108610Z copying torch/include/ATen/ops/ne_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0109900Z copying torch/include/ATen/ops/_linalg_slogdet_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0111200Z copying torch/include/ATen/ops/multinomial_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0112420Z copying torch/include/ATen/ops/_foreach_max_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0113740Z copying torch/include/ATen/ops/tan_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0114930Z copying torch/include/ATen/ops/multinomial_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0116080Z copying torch/include/ATen/ops/new_empty_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0117400Z copying torch/include/ATen/ops/_prelu_kernel_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0118650Z copying torch/include/ATen/ops/all_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0119910Z copying torch/include/ATen/ops/rms_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0121200Z copying torch/include/ATen/ops/to_dense_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0122470Z copying torch/include/ATen/ops/fractional_max_pool3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0123890Z copying torch/include/ATen/ops/flip_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0125110Z copying torch/include/ATen/ops/svd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0126480Z copying torch/include/ATen/ops/mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0127760Z copying torch/include/ATen/ops/mkldnn_max_pool2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0129210Z copying torch/include/ATen/ops/fft_rfft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0130570Z copying torch/include/ATen/ops/special_polygamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0261830Z copying torch/include/ATen/ops/rshift_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0263190Z copying torch/include/ATen/ops/log2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0264690Z copying torch/include/ATen/ops/special_i1e_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0266340Z copying torch/include/ATen/ops/_fused_adam_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0267630Z copying torch/include/ATen/ops/squeeze_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0269170Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0271060Z copying torch/include/ATen/ops/einsum_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0272310Z copying torch/include/ATen/ops/is_leaf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0273760Z copying torch/include/ATen/ops/maximum_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0275240Z copying torch/include/ATen/ops/asinh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0276670Z copying torch/include/ATen/ops/broadcast_to_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0278190Z copying torch/include/ATen/ops/_nested_get_lengths_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0279530Z copying torch/include/ATen/ops/_sparse_broadcast_to_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0280960Z copying torch/include/ATen/ops/tril_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0282450Z copying torch/include/ATen/ops/sqrt_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0284120Z copying torch/include/ATen/ops/_transformer_encoder_layer_fwd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0285580Z copying torch/include/ATen/ops/randint_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0286950Z copying torch/include/ATen/ops/slogdet.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0288590Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0289920Z copying torch/include/ATen/ops/_foreach_erf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0291420Z copying torch/include/ATen/ops/_functional_assert_scalar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0292700Z copying torch/include/ATen/ops/_lazy_clone.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0294350Z copying torch/include/ATen/ops/mps_convolution_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0295800Z copying torch/include/ATen/ops/batch_norm_gather_stats_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0297380Z copying torch/include/ATen/ops/equal_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0351710Z copying torch/include/ATen/ops/empty_quantized_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0353030Z copying torch/include/ATen/ops/special_digamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0354490Z copying torch/include/ATen/ops/fractional_max_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0356070Z copying torch/include/ATen/ops/unfold_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0357630Z copying torch/include/ATen/ops/_flash_attention_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0359120Z copying torch/include/ATen/ops/all_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0360430Z copying torch/include/ATen/ops/cross.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0361950Z copying torch/include/ATen/ops/_convolution_double_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0363350Z copying torch/include/ATen/ops/gelu_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0364720Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0366100Z copying torch/include/ATen/ops/_validate_sparse_csr_tensor_args_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0367370Z copying torch/include/ATen/ops/cudnn_grid_sampler_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0368770Z copying torch/include/ATen/ops/fmin_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0370020Z copying torch/include/ATen/ops/log1p.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0371420Z copying torch/include/ATen/ops/less.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0372790Z copying torch/include/ATen/ops/tensordot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0374190Z copying torch/include/ATen/ops/index_add_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0375520Z copying torch/include/ATen/ops/_sample_dirichlet_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0377070Z copying torch/include/ATen/ops/_gather_sparse_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0378370Z copying torch/include/ATen/ops/log2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0379850Z copying torch/include/ATen/ops/dot_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0381120Z copying torch/include/ATen/ops/linalg_cholesky_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0382400Z copying torch/include/ATen/ops/div_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0383950Z copying torch/include/ATen/ops/log10_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0385310Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0386610Z copying torch/include/ATen/ops/nll_loss_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0387970Z copying torch/include/ATen/ops/bitwise_not_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0389350Z copying torch/include/ATen/ops/_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0390750Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0392180Z copying torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0393460Z copying torch/include/ATen/ops/slow_conv_dilated2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0394770Z copying torch/include/ATen/ops/_foreach_acos_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0396000Z copying torch/include/ATen/ops/gradient_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0397330Z copying torch/include/ATen/ops/conv_transpose1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0398850Z copying torch/include/ATen/ops/or_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0400400Z copying torch/include/ATen/ops/smooth_l1_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0401760Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0403070Z copying torch/include/ATen/ops/_fused_sgd_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0404270Z copying torch/include/ATen/ops/median_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0405620Z copying torch/include/ATen/ops/sym_numel_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0407080Z copying torch/include/ATen/ops/slice_scatter_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0408250Z copying torch/include/ATen/ops/atleast_3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0409430Z copying torch/include/ATen/ops/_chunk_cat_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0410810Z copying torch/include/ATen/ops/_functional_sym_constrain_range_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0412010Z copying torch/include/ATen/ops/im2col.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0413310Z copying torch/include/ATen/ops/upsample_nearest3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0414660Z copying torch/include/ATen/ops/adaptive_max_pool2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0416000Z copying torch/include/ATen/ops/_linalg_eigh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0417220Z copying torch/include/ATen/ops/_mps_convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0418470Z copying torch/include/ATen/ops/fractional_max_pool2d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0526730Z copying torch/include/ATen/ops/retains_grad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0527830Z copying torch/include/ATen/ops/_autocast_to_reduced_precision_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0529100Z copying torch/include/ATen/ops/sign_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0530370Z copying torch/include/ATen/ops/empty_like.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0531630Z copying torch/include/ATen/ops/gelu_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0532950Z copying torch/include/ATen/ops/upsample_linear1d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0534160Z copying torch/include/ATen/ops/elu_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0535680Z copying torch/include/ATen/ops/output_nr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0536790Z copying torch/include/ATen/ops/sqrt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0538120Z copying torch/include/ATen/ops/linalg_lstsq.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0539290Z copying torch/include/ATen/ops/count_nonzero.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0540600Z copying torch/include/ATen/ops/feature_alpha_dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0542060Z copying torch/include/ATen/ops/contiguous_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0543330Z copying torch/include/ATen/ops/softplus_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0544630Z copying torch/include/ATen/ops/trunc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0545970Z copying torch/include/ATen/ops/_cummin_helper_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0547240Z copying torch/include/ATen/ops/atan_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0548560Z copying torch/include/ATen/ops/conv_depthwise3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0549800Z copying torch/include/ATen/ops/as_strided_scatter_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0551080Z copying torch/include/ATen/ops/special_i0e_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0552300Z copying torch/include/ATen/ops/norm_except_dim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0553600Z copying torch/include/ATen/ops/sort_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0554840Z copying torch/include/ATen/ops/logit_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0556060Z copying torch/include/ATen/ops/_stack_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0557260Z copying torch/include/ATen/ops/fft_hfftn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0558650Z copying torch/include/ATen/ops/quantized_rnn_relu_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0559920Z copying torch/include/ATen/ops/quantize_per_tensor_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0561120Z copying torch/include/ATen/ops/view_as_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0562410Z copying torch/include/ATen/ops/grid_sampler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0563590Z copying torch/include/ATen/ops/linalg_lu_solve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0564850Z copying torch/include/ATen/ops/divide.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0566060Z copying torch/include/ATen/ops/_unsafe_masked_index.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0567490Z copying torch/include/ATen/ops/special_gammainc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0568690Z copying torch/include/ATen/ops/is_neg.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0569890Z copying torch/include/ATen/ops/replication_pad2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0571230Z copying torch/include/ATen/ops/_resize_output_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0572470Z copying torch/include/ATen/ops/_fused_adamw_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0573790Z copying torch/include/ATen/ops/slice_inverse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0575010Z copying torch/include/ATen/ops/hardswish_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0576460Z copying torch/include/ATen/ops/fft_ihfft2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0577640Z copying torch/include/ATen/ops/_cufft_get_plan_cache_size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0578990Z copying torch/include/ATen/ops/values_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0580170Z copying torch/include/ATen/ops/feature_dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0581570Z copying torch/include/ATen/ops/resize_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0582780Z copying torch/include/ATen/ops/adaptive_max_pool2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0584130Z copying torch/include/ATen/ops/gt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0585420Z copying torch/include/ATen/ops/slice_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0586800Z copying torch/include/ATen/ops/special_xlog1py_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0587970Z copying torch/include/ATen/ops/linalg_inv_ex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0589290Z copying torch/include/ATen/ops/pin_memory_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0590480Z copying torch/include/ATen/ops/tril_indices_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0591820Z copying torch/include/ATen/ops/threshold_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0593020Z copying torch/include/ATen/ops/sparse_bsr_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0594260Z copying torch/include/ATen/ops/max_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0595550Z copying torch/include/ATen/ops/tensor_split_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0596690Z copying torch/include/ATen/ops/diagonal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0597890Z copying torch/include/ATen/ops/std_mean_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0599200Z copying torch/include/ATen/ops/sparse_bsc_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0723580Z copying torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0724660Z copying torch/include/ATen/ops/special_i0e_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0725800Z copying torch/include/ATen/ops/expand_as.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0727070Z copying torch/include/ATen/ops/adaptive_max_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0728260Z copying torch/include/ATen/ops/le_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0729450Z copying torch/include/ATen/ops/batch_norm_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0730740Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0732110Z copying torch/include/ATen/ops/hardshrink_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0733190Z copying torch/include/ATen/ops/addmv_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0734340Z copying torch/include/ATen/ops/to_sparse_bsc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0735630Z copying torch/include/ATen/ops/max_pool2d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0736910Z copying torch/include/ATen/ops/_sobol_engine_scramble_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0738080Z copying torch/include/ATen/ops/slogdet_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0739300Z copying torch/include/ATen/ops/native_dropout_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0740570Z copying torch/include/ATen/ops/hardswish_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0741880Z copying torch/include/ATen/ops/lshift_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0743090Z copying torch/include/ATen/ops/set_data_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0744310Z copying torch/include/ATen/ops/_linalg_det_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0745720Z copying torch/include/ATen/ops/alias_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0746900Z copying torch/include/ATen/ops/tril_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0748140Z copying torch/include/ATen/ops/_scaled_dot_product_efficient_attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0749380Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0750630Z copying torch/include/ATen/ops/special_log_ndtr_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0751980Z copying torch/include/ATen/ops/linalg_cholesky_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0753100Z copying torch/include/ATen/ops/sinh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0754330Z copying torch/include/ATen/ops/sub_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0755500Z copying torch/include/ATen/ops/glu_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0756640Z copying torch/include/ATen/ops/fmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0757870Z copying torch/include/ATen/ops/_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0759130Z copying torch/include/ATen/ops/cudnn_batch_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0760340Z copying torch/include/ATen/ops/lcm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0761600Z copying torch/include/ATen/ops/atan_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0762930Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0764100Z copying torch/include/ATen/ops/_unique2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0765490Z copying torch/include/ATen/ops/reshape_as_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0766620Z copying torch/include/ATen/ops/_sparse_csr_tensor_unsafe.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0767800Z copying torch/include/ATen/ops/new_full_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0769160Z copying torch/include/ATen/ops/_fused_sdp_choice_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0770320Z copying torch/include/ATen/ops/logspace.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0771600Z copying torch/include/ATen/ops/replication_pad3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0772890Z copying torch/include/ATen/ops/special_bessel_y0_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0774300Z copying torch/include/ATen/ops/to_mkldnn_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0775500Z copying torch/include/ATen/ops/linalg_eigvalsh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0776890Z copying torch/include/ATen/ops/index_select_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0778140Z copying torch/include/ATen/ops/linalg_inv_ex_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0779430Z copying torch/include/ATen/ops/unsqueeze.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0780690Z copying torch/include/ATen/ops/isinf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0781910Z copying torch/include/ATen/ops/_foreach_max.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0783220Z copying torch/include/ATen/ops/floor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0784530Z copying torch/include/ATen/ops/where_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0785860Z copying torch/include/ATen/ops/sigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0787080Z copying torch/include/ATen/ops/special_log_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0788280Z copying torch/include/ATen/ops/_addmm_activation_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0789650Z copying torch/include/ATen/ops/clamp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0790880Z copying torch/include/ATen/ops/special_hermite_polynomial_h.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0792170Z copying torch/include/ATen/ops/set_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0793570Z copying torch/include/ATen/ops/bucketize_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0794830Z copying torch/include/ATen/ops/asinh_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0796190Z copying torch/include/ATen/ops/logsumexp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0797630Z copying torch/include/ATen/ops/chunk_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0798820Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0799990Z copying torch/include/ATen/ops/_conj_physical_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0801260Z copying torch/include/ATen/ops/_sparse_sum_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0802620Z copying torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0803850Z copying torch/include/ATen/ops/alias.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0805160Z copying torch/include/ATen/ops/_linalg_eigvals_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0806420Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0807660Z copying torch/include/ATen/ops/fft_fft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0809070Z copying torch/include/ATen/ops/constant_pad_nd_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0810190Z copying torch/include/ATen/ops/special_i1e_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0811490Z copying torch/include/ATen/ops/replication_pad2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0812730Z copying torch/include/ATen/ops/poisson.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0814080Z copying torch/include/ATen/ops/special_hermite_polynomial_h_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0815460Z copying torch/include/ATen/ops/softplus_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0816690Z copying torch/include/ATen/ops/replication_pad1d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0818070Z copying torch/include/ATen/ops/chain_matmul_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0819370Z copying torch/include/ATen/ops/nan_to_num_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0820780Z copying torch/include/ATen/ops/adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0821980Z copying torch/include/ATen/ops/logspace_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0823400Z copying torch/include/ATen/ops/mT_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0824680Z copying torch/include/ATen/ops/conj_physical_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0825900Z copying torch/include/ATen/ops/heaviside.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0827070Z copying torch/include/ATen/ops/arccosh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0828450Z copying torch/include/ATen/ops/_mkldnn_reshape.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0829620Z copying torch/include/ATen/ops/linalg_slogdet_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0831030Z copying torch/include/ATen/ops/upsample_bicubic2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0832410Z copying torch/include/ATen/ops/special_bessel_j1_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0833720Z copying torch/include/ATen/ops/addcdiv_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0835010Z copying torch/include/ATen/ops/upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0836420Z copying torch/include/ATen/ops/_cast_Double_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0837810Z copying torch/include/ATen/ops/histogramdd_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0839040Z copying torch/include/ATen/ops/aminmax_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0840310Z copying torch/include/ATen/ops/lstm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0841500Z copying torch/include/ATen/ops/_linalg_det_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0844600Z copying torch/include/ATen/ops/conv_transpose2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0845970Z copying torch/include/ATen/ops/_coalesce_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0847490Z copying torch/include/ATen/ops/_triton_scaled_dot_attention_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0854560Z copying torch/include/ATen/ops/batch_norm_backward_elemt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0855500Z copying torch/include/ATen/ops/_saturate_weight_to_fp16_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0862320Z copying torch/include/ATen/ops/log_sigmoid_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0863380Z copying torch/include/ATen/ops/tril_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0870130Z copying torch/include/ATen/ops/special_i1_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0871180Z copying torch/include/ATen/ops/index_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0872370Z copying torch/include/ATen/ops/equal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0878710Z copying torch/include/ATen/ops/_unique2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0879740Z copying torch/include/ATen/ops/adaptive_avg_pool2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0886630Z copying torch/include/ATen/ops/acos_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0887760Z copying torch/include/ATen/ops/heaviside_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0889100Z copying torch/include/ATen/ops/hardshrink_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0894400Z copying torch/include/ATen/ops/fbgemm_pack_quantized_matrix_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0895490Z copying torch/include/ATen/ops/heaviside_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0901630Z copying torch/include/ATen/ops/_nested_view_from_jagged_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0926460Z copying torch/include/ATen/ops/_embedding_bag_dense_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0926710Z copying torch/include/ATen/ops/_fw_primal_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0926970Z copying torch/include/ATen/ops/_nested_tensor_from_mask.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0927240Z copying torch/include/ATen/ops/sparse_bsr_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0927780Z copying torch/include/ATen/ops/fill_diagonal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0934320Z copying torch/include/ATen/ops/sum_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0935200Z copying torch/include/ATen/ops/searchsorted.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0942490Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0943120Z copying torch/include/ATen/ops/linalg_solve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0949890Z copying torch/include/ATen/ops/linalg_solve_ex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0951000Z copying torch/include/ATen/ops/bitwise_and.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0952240Z copying torch/include/ATen/ops/instance_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0958000Z copying torch/include/ATen/ops/_foreach_cosh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0959780Z copying torch/include/ATen/ops/multilabel_margin_loss_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0966310Z copying torch/include/ATen/ops/_slow_conv2d_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0967200Z copying torch/include/ATen/ops/embedding_dense_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0968410Z copying torch/include/ATen/ops/geqrf_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0974120Z copying torch/include/ATen/ops/tile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0975130Z copying torch/include/ATen/ops/_convert_indices_from_coo_to_csr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0981790Z copying torch/include/ATen/ops/slow_conv_dilated3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0982640Z copying torch/include/ATen/ops/_foreach_clamp_min_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0990100Z copying torch/include/ATen/ops/nanmean.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0991110Z copying torch/include/ATen/ops/_cholesky_solve_helper_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0992550Z copying torch/include/ATen/ops/l1_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0994220Z copying torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.0999290Z copying torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1005700Z copying torch/include/ATen/ops/reflection_pad1d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1007240Z copying torch/include/ATen/ops/upsample_nearest3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1013160Z copying torch/include/ATen/ops/sub_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1015410Z copying torch/include/ATen/ops/topk_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1020660Z copying torch/include/ATen/ops/tanh_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1021750Z copying torch/include/ATen/ops/xlogy_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1024630Z copying torch/include/ATen/ops/_histogramdd_from_bin_tensors_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1029420Z copying torch/include/ATen/ops/sparse_coo_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1030450Z copying torch/include/ATen/ops/softplus_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1037240Z copying torch/include/ATen/ops/special_gammaln_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1038560Z copying torch/include/ATen/ops/scalar_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1045350Z copying torch/include/ATen/ops/embedding_bag_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1046310Z copying torch/include/ATen/ops/rnn_relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1047550Z copying torch/include/ATen/ops/special_i1e_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1053000Z copying torch/include/ATen/ops/adaptive_avg_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1054340Z copying torch/include/ATen/ops/as_strided_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1060590Z copying torch/include/ATen/ops/_cudnn_attention_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1061930Z copying torch/include/ATen/ops/ones_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1063290Z copying torch/include/ATen/ops/linalg_lstsq_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1070060Z copying torch/include/ATen/ops/cholesky_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1071070Z copying torch/include/ATen/ops/triu_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1077480Z copying torch/include/ATen/ops/count_nonzero_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1078900Z copying torch/include/ATen/ops/eq_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1085180Z copying torch/include/ATen/ops/fft_rfftn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1086350Z copying torch/include/ATen/ops/reflection_pad2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1087550Z copying torch/include/ATen/ops/hypot_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1092930Z copying torch/include/ATen/ops/batch_norm_gather_stats_with_counts_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1094390Z copying torch/include/ATen/ops/feature_dropout_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1100940Z copying torch/include/ATen/ops/gelu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1102470Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1109120Z copying torch/include/ATen/ops/q_per_channel_zero_points.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1110360Z copying torch/include/ATen/ops/_has_same_storage_numel_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1111600Z copying torch/include/ATen/ops/_pad_enum_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1116870Z copying torch/include/ATen/ops/isclose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1117640Z copying torch/include/ATen/ops/view_as_complex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1124490Z copying torch/include/ATen/ops/lstm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1125940Z copying torch/include/ATen/ops/_linalg_eigvals_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1132640Z copying torch/include/ATen/ops/_mps_convolution_transpose_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1133930Z copying torch/include/ATen/ops/kthvalue.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1135410Z copying torch/include/ATen/ops/_euclidean_dist_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1141290Z copying torch/include/ATen/ops/replication_pad1d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1142420Z copying torch/include/ATen/ops/sin_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1154950Z copying torch/include/ATen/ops/unsafe_chunk_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1155280Z copying torch/include/ATen/ops/_foreach_minimum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1155690Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1157330Z copying torch/include/ATen/ops/select_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1158590Z copying torch/include/ATen/ops/clamp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1165840Z copying torch/include/ATen/ops/greater_equal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1166870Z copying torch/include/ATen/ops/_foreach_maximum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1174230Z copying torch/include/ATen/ops/linalg_cholesky_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1175050Z copying torch/include/ATen/ops/hamming_window.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1182160Z copying torch/include/ATen/ops/flatten_dense_tensors_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1183020Z copying torch/include/ATen/ops/_validate_sparse_coo_tensor_args_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1184370Z copying torch/include/ATen/ops/rot90_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1189610Z copying torch/include/ATen/ops/log_sigmoid_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1190580Z copying torch/include/ATen/ops/softshrink_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1198030Z copying torch/include/ATen/ops/max_pool2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1199060Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1205700Z copying torch/include/ATen/ops/promote_types_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1206850Z copying torch/include/ATen/ops/linalg_lu_factor_ex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1208420Z copying torch/include/ATen/ops/reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1213350Z copying torch/include/ATen/ops/unique_consecutive_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1214580Z copying torch/include/ATen/ops/unique_dim_consecutive_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1221630Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1222490Z copying torch/include/ATen/ops/_neg_view_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1223720Z copying torch/include/ATen/ops/trapezoid_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1230430Z copying torch/include/ATen/ops/bitwise_xor_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1231440Z copying torch/include/ATen/ops/tanh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1238040Z copying torch/include/ATen/ops/avg_pool3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1238960Z copying torch/include/ATen/ops/special_bessel_j0_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1246600Z copying torch/include/ATen/ops/logical_not_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1247590Z copying torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1248800Z copying torch/include/ATen/ops/avg_pool1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1254120Z copying torch/include/ATen/ops/tril_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1255680Z copying torch/include/ATen/ops/is_nonzero_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1261910Z copying torch/include/ATen/ops/dsplit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1263140Z copying torch/include/ATen/ops/is_vulkan_available_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1264230Z copying torch/include/ATen/ops/resolve_neg.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1269410Z copying torch/include/ATen/ops/is_neg_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1271430Z copying torch/include/ATen/ops/rad2deg.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1277500Z copying torch/include/ATen/ops/_mps_convolution_transpose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1278690Z copying torch/include/ATen/ops/_segment_reduce_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1286810Z copying torch/include/ATen/ops/special_logit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1299010Z copying torch/include/ATen/ops/_cummin_helper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1300320Z copying torch/include/ATen/ops/smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1302150Z copying torch/include/ATen/ops/_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1303380Z copying torch/include/ATen/ops/_foreach_addcmul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1304680Z copying torch/include/ATen/ops/split_with_sizes_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1306020Z copying torch/include/ATen/ops/nll_loss_nd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1307430Z copying torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1308770Z copying torch/include/ATen/ops/conv_transpose3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1311770Z copying torch/include/ATen/ops/type_as.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1312670Z copying torch/include/ATen/ops/dot_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1315410Z copying torch/include/ATen/ops/hardswish_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1317450Z copying torch/include/ATen/ops/fill_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1321610Z copying torch/include/ATen/ops/leaky_relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1325290Z copying torch/include/ATen/ops/_masked_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1329850Z copying torch/include/ATen/ops/select_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1335520Z copying torch/include/ATen/ops/matrix_exp_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1339010Z copying torch/include/ATen/ops/sign_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1340510Z copying torch/include/ATen/ops/linalg_tensorsolve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1344560Z copying torch/include/ATen/ops/argwhere_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1347560Z copying torch/include/ATen/ops/erfinv_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1353290Z copying torch/include/ATen/ops/resolve_neg_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1355450Z copying torch/include/ATen/ops/scatter_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1360910Z copying torch/include/ATen/ops/_triton_multi_head_attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1362060Z copying torch/include/ATen/ops/alpha_dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1364290Z copying torch/include/ATen/ops/linalg_solve_ex_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1370810Z copying torch/include/ATen/ops/_functional_sym_constrain_range_for_size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1371590Z copying torch/include/ATen/ops/stride_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1378670Z copying torch/include/ATen/ops/soft_margin_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1379910Z copying torch/include/ATen/ops/col2im_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1386440Z copying torch/include/ATen/ops/lift.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1387630Z copying torch/include/ATen/ops/_fft_c2r_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1388840Z copying torch/include/ATen/ops/atan2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1394920Z copying torch/include/ATen/ops/_sparse_broadcast_to_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1395780Z copying torch/include/ATen/ops/_foreach_floor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1402170Z copying torch/include/ATen/ops/acos_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1403230Z copying torch/include/ATen/ops/_fused_dropout_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1404670Z copying torch/include/ATen/ops/mkldnn_rnn_layer_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1410780Z copying torch/include/ATen/ops/frobenius_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1411860Z copying torch/include/ATen/ops/_unsafe_view_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1418570Z copying torch/include/ATen/ops/stride.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1420340Z copying torch/include/ATen/ops/addmv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1421710Z copying torch/include/ATen/ops/logspace_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1426950Z copying torch/include/ATen/ops/log_normal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1427940Z copying torch/include/ATen/ops/align_to_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1434790Z copying torch/include/ATen/ops/relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1436300Z copying torch/include/ATen/ops/unfold_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1442880Z copying torch/include/ATen/ops/row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1443640Z copying torch/include/ATen/ops/_sample_dirichlet.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1444930Z copying torch/include/ATen/ops/special_ndtr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1450190Z copying torch/include/ATen/ops/special_airy_ai_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1451580Z copying torch/include/ATen/ops/_nested_tensor_storage_offsets_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1458800Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1459790Z copying torch/include/ATen/ops/clone_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1461060Z copying torch/include/ATen/ops/fractional_max_pool3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1466570Z copying torch/include/ATen/ops/sym_size_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1467530Z copying torch/include/ATen/ops/_to_dense_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1474740Z copying torch/include/ATen/ops/_to_cpu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1475540Z copying torch/include/ATen/ops/adaptive_max_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1482810Z copying torch/include/ATen/ops/_nested_view_from_jagged.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1483780Z copying torch/include/ATen/ops/upsample_nearest3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1490780Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1491760Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1498500Z copying torch/include/ATen/ops/_unique2_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1499430Z copying torch/include/ATen/ops/miopen_rnn_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1500620Z copying torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1507410Z copying torch/include/ATen/ops/trunc_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1508460Z copying torch/include/ATen/ops/retain_grad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1515600Z copying torch/include/ATen/ops/max_pool1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1516490Z copying torch/include/ATen/ops/histogramdd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1523180Z copying torch/include/ATen/ops/_sparse_csr_sum_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1524320Z copying torch/include/ATen/ops/tanh_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1525660Z copying torch/include/ATen/ops/nanquantile_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1531310Z copying torch/include/ATen/ops/sinc_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1532170Z copying torch/include/ATen/ops/cumsum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1538180Z copying torch/include/ATen/ops/instance_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1539030Z copying torch/include/ATen/ops/scatter_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1540380Z copying torch/include/ATen/ops/_mixed_dtypes_linear_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1546400Z copying torch/include/ATen/ops/index_select_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1547410Z copying torch/include/ATen/ops/rsqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1553870Z copying torch/include/ATen/ops/refine_names_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1555940Z copying torch/include/ATen/ops/_remove_batch_dim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1561710Z copying torch/include/ATen/ops/_copy_from_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1562770Z copying torch/include/ATen/ops/_foreach_lgamma_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1564130Z copying torch/include/ATen/ops/special_logsumexp_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1569370Z copying torch/include/ATen/ops/acos.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1570940Z copying torch/include/ATen/ops/_foreach_frac_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1577750Z copying torch/include/ATen/ops/replication_pad1d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1578970Z copying torch/include/ATen/ops/adaptive_avg_pool3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1585720Z copying torch/include/ATen/ops/elu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1586650Z copying torch/include/ATen/ops/cudnn_convolution_add_relu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1587760Z copying torch/include/ATen/ops/chunk.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1593150Z copying torch/include/ATen/ops/_functional_assert_async.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1594790Z copying torch/include/ATen/ops/arange_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1601580Z copying torch/include/ATen/ops/log_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1602470Z copying torch/include/ATen/ops/unsqueeze_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1603940Z copying torch/include/ATen/ops/triangular_solve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1610750Z copying torch/include/ATen/ops/view_as_real_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1611710Z copying torch/include/ATen/ops/native_layer_norm_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1618570Z copying torch/include/ATen/ops/_foreach_reciprocal_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1619470Z copying torch/include/ATen/ops/renorm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1625640Z copying torch/include/ATen/ops/_local_scalar_dense.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1626760Z copying torch/include/ATen/ops/absolute.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1627930Z copying torch/include/ATen/ops/_assert_async_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1633800Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1635250Z copying torch/include/ATen/ops/threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1641780Z copying torch/include/ATen/ops/mT_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1642950Z copying torch/include/ATen/ops/_nested_from_padded_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1644200Z copying torch/include/ATen/ops/_amp_update_scale.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1650410Z copying torch/include/ATen/ops/bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1651510Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1658530Z copying torch/include/ATen/ops/index_copy_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1666740Z copying torch/include/ATen/ops/_test_ambiguous_defaults_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1866450Z copying torch/include/ATen/ops/mul_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1867450Z copying torch/include/ATen/ops/conv_transpose3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1868670Z copying torch/include/ATen/ops/rrelu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1870960Z copying torch/include/ATen/ops/logical_or_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1871540Z copying torch/include/ATen/ops/unsqueeze_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1872560Z copying torch/include/ATen/ops/huber_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1873740Z copying torch/include/ATen/ops/renorm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1875010Z copying torch/include/ATen/ops/record_stream_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1876220Z copying torch/include/ATen/ops/promote_types_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1877540Z copying torch/include/ATen/ops/_masked_softmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1878880Z copying torch/include/ATen/ops/_cudnn_rnn_flatten_weight_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1880180Z copying torch/include/ATen/ops/topk_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1881550Z copying torch/include/ATen/ops/linalg_vecdot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1882920Z copying torch/include/ATen/ops/_sample_dirichlet_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1884280Z copying torch/include/ATen/ops/rand_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1885920Z copying torch/include/ATen/ops/hardsigmoid_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1887390Z copying torch/include/ATen/ops/_segment_reduce_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1888640Z copying torch/include/ATen/ops/fft_hfft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1890030Z copying torch/include/ATen/ops/special_bessel_y1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1891450Z copying torch/include/ATen/ops/masked_scatter_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1892840Z copying torch/include/ATen/ops/to_sparse_csc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1894170Z copying torch/include/ATen/ops/upsample_nearest2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1895380Z copying torch/include/ATen/ops/_cummin_helper_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1896590Z copying torch/include/ATen/ops/replication_pad2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1897850Z copying torch/include/ATen/ops/upsample_linear1d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1899020Z copying torch/include/ATen/ops/detach_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1900180Z copying torch/include/ATen/ops/cauchy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1901610Z copying torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1902950Z copying torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1904100Z copying torch/include/ATen/ops/row_indices_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1905310Z copying torch/include/ATen/ops/add_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1906570Z copying torch/include/ATen/ops/unfold_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1907800Z copying torch/include/ATen/ops/gelu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1909070Z copying torch/include/ATen/ops/linalg_svd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1910400Z copying torch/include/ATen/ops/_fused_sdp_choice.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1911660Z copying torch/include/ATen/ops/convolution_backward_overrideable_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1912780Z copying torch/include/ATen/ops/log2_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1913970Z copying torch/include/ATen/ops/selu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1915250Z copying torch/include/ATen/ops/cudnn_grid_sampler_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1916470Z copying torch/include/ATen/ops/nll_loss2d_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1917700Z copying torch/include/ATen/ops/_foreach_frac_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1918870Z copying torch/include/ATen/ops/vander_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1920170Z copying torch/include/ATen/ops/segment_reduce_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1921420Z copying torch/include/ATen/ops/_conv_depthwise2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1922570Z copying torch/include/ATen/ops/linalg_diagonal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1923820Z copying torch/include/ATen/ops/set_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1925050Z copying torch/include/ATen/ops/alpha_dropout_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1926280Z copying torch/include/ATen/ops/take_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1927540Z copying torch/include/ATen/ops/batch_norm_backward_reduce_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1928890Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1929970Z copying torch/include/ATen/ops/adjoint_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1931330Z copying torch/include/ATen/ops/scatter_reduce_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1932530Z copying torch/include/ATen/ops/special_expit_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1933740Z copying torch/include/ATen/ops/_cudnn_attention_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1935010Z copying torch/include/ATen/ops/convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1936400Z copying torch/include/ATen/ops/is_floating_point_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1937560Z copying torch/include/ATen/ops/mish_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1938770Z copying torch/include/ATen/ops/multi_margin_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1940000Z copying torch/include/ATen/ops/hardsigmoid_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1941290Z copying torch/include/ATen/ops/cudnn_convolution_add_relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1942490Z copying torch/include/ATen/ops/special_sinc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1943770Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1945040Z copying torch/include/ATen/ops/logical_and_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1946320Z copying torch/include/ATen/ops/_linalg_svd_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1947500Z copying torch/include/ATen/ops/_foreach_maximum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1948700Z copying torch/include/ATen/ops/_sparse_csr_prod_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1949980Z copying torch/include/ATen/ops/_autocast_to_reduced_precision_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1951290Z copying torch/include/ATen/ops/special_gammaln_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1952540Z copying torch/include/ATen/ops/embedding_bag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1953700Z copying torch/include/ATen/ops/silu_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1954900Z copying torch/include/ATen/ops/greater_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1956300Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1957500Z copying torch/include/ATen/ops/rrelu_with_noise_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1958710Z copying torch/include/ATen/ops/sort_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1959950Z copying torch/include/ATen/ops/fill_diagonal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1961300Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1962420Z copying torch/include/ATen/ops/_to_sparse_csc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1963590Z copying torch/include/ATen/ops/zeros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1964860Z copying torch/include/ATen/ops/_embedding_bag_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1966130Z copying torch/include/ATen/ops/smooth_l1_loss_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1967380Z copying torch/include/ATen/ops/_foreach_log_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1968610Z copying torch/include/ATen/ops/softshrink_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1969800Z copying torch/include/ATen/ops/fmod_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1971050Z copying torch/include/ATen/ops/sigmoid_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1972340Z copying torch/include/ATen/ops/replication_pad1d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1973540Z copying torch/include/ATen/ops/_sobol_engine_draw_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1974830Z copying torch/include/ATen/ops/linalg_lu_factor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1976100Z copying torch/include/ATen/ops/tril_indices_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1977290Z copying torch/include/ATen/ops/bitwise_left_shift_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1978600Z copying torch/include/ATen/ops/arctanh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1979830Z copying torch/include/ATen/ops/triu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1981130Z copying torch/include/ATen/ops/reciprocal_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1982460Z copying torch/include/ATen/ops/aminmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1983750Z copying torch/include/ATen/ops/_nnz_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1985010Z copying torch/include/ATen/ops/unfold_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1990390Z copying torch/include/ATen/ops/_weight_int8pack_mm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1998590Z copying torch/include/ATen/ops/exp2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.1999480Z copying torch/include/ATen/ops/_lstm_mps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2000730Z copying torch/include/ATen/ops/hardsigmoid_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2006520Z copying torch/include/ATen/ops/bucketize_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2007560Z copying torch/include/ATen/ops/_foreach_floor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2014100Z copying torch/include/ATen/ops/_spsolve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2015440Z copying torch/include/ATen/ops/is_set_to_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2022650Z copying torch/include/ATen/ops/log10_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2023590Z copying torch/include/ATen/ops/flip.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2025140Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2030370Z copying torch/include/ATen/ops/_sparse_semi_structured_linear_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2031340Z copying torch/include/ATen/ops/roll_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2037750Z copying torch/include/ATen/ops/eq_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2038850Z copying torch/include/ATen/ops/_cdist_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2040260Z copying torch/include/ATen/ops/put_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2047120Z copying torch/include/ATen/ops/_cudnn_rnn_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2047980Z copying torch/include/ATen/ops/linalg_lu_factor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2054940Z copying torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2055900Z copying torch/include/ATen/ops/cudnn_convolution_relu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2063280Z copying torch/include/ATen/ops/round_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2064280Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2065560Z copying torch/include/ATen/ops/batch_norm_gather_stats_with_counts_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2071020Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2071890Z copying torch/include/ATen/ops/frexp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2078510Z copying torch/include/ATen/ops/as_strided_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2079450Z copying torch/include/ATen/ops/_convert_indices_from_csr_to_coo_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2080710Z copying torch/include/ATen/ops/_standard_gamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2086190Z copying torch/include/ATen/ops/neg_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2087440Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k0_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2093840Z copying torch/include/ATen/ops/pinverse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2096170Z copying torch/include/ATen/ops/diagonal_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2101460Z copying torch/include/ATen/ops/select_scatter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2102910Z copying torch/include/ATen/ops/masked_fill_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2104090Z copying torch/include/ATen/ops/conv1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2109290Z copying torch/include/ATen/ops/random_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2110310Z copying torch/include/ATen/ops/expand_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2117110Z copying torch/include/ATen/ops/upsample_linear1d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2118800Z copying torch/include/ATen/ops/arccosh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2125070Z copying torch/include/ATen/ops/gelu_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2126470Z copying torch/include/ATen/ops/sigmoid_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2127620Z copying torch/include/ATen/ops/_foreach_clamp_max_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2133320Z copying torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2134570Z copying torch/include/ATen/ops/fft_fftfreq.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2141300Z copying torch/include/ATen/ops/im2col_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2142720Z copying torch/include/ATen/ops/_sparse_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2148990Z copying torch/include/ATen/ops/narrow_copy_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2150030Z copying torch/include/ATen/ops/not_equal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2151260Z copying torch/include/ATen/ops/prod_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2157170Z copying torch/include/ATen/ops/linalg_matrix_rank_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2158070Z copying torch/include/ATen/ops/index_select.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2164760Z copying torch/include/ATen/ops/special_ndtr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2166520Z copying torch/include/ATen/ops/fractional_max_pool3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2173110Z copying torch/include/ATen/ops/mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2174780Z copying torch/include/ATen/ops/addcmul_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2180630Z copying torch/include/ATen/ops/special_hermite_polynomial_h_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2181710Z copying torch/include/ATen/ops/_convolution_mode_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2184730Z copying torch/include/ATen/ops/embedding_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2189480Z copying torch/include/ATen/ops/conv_transpose1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2192710Z copying torch/include/ATen/ops/mps_convolution_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2194120Z copying torch/include/ATen/ops/grid_sampler_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2199340Z copying torch/include/ATen/ops/_standard_gamma_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2202140Z copying torch/include/ATen/ops/special_erfcx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2207010Z copying torch/include/ATen/ops/_linalg_solve_ex_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2207860Z copying torch/include/ATen/ops/ge_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2210710Z copying torch/include/ATen/ops/polar_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2216390Z copying torch/include/ATen/ops/_padded_dense_to_jagged_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2220060Z copying torch/include/ATen/ops/copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2224010Z copying torch/include/ATen/ops/_mps_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2225040Z copying torch/include/ATen/ops/_to_sparse_csr_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2229040Z copying torch/include/ATen/ops/data_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2232450Z copying torch/include/ATen/ops/adaptive_avg_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2237510Z copying torch/include/ATen/ops/randn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2452750Z copying torch/include/ATen/ops/nll_loss2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2454130Z copying torch/include/ATen/ops/native_group_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2455410Z copying torch/include/ATen/ops/unbind_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2456620Z copying torch/include/ATen/ops/channel_shuffle_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2458370Z copying torch/include/ATen/ops/eq_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2459910Z copying torch/include/ATen/ops/set_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2460570Z copying torch/include/ATen/ops/_native_multi_head_attention_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2462040Z copying torch/include/ATen/ops/_test_functorch_fallback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2463070Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2464490Z copying torch/include/ATen/ops/mkldnn_rnn_layer_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2465730Z copying torch/include/ATen/ops/_cufft_clear_plan_cache.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2466850Z copying torch/include/ATen/ops/_fused_adagrad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2468300Z copying torch/include/ATen/ops/nanquantile_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2469430Z copying torch/include/ATen/ops/mkldnn_linear_backward_input_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2471140Z copying torch/include/ATen/ops/fft_ihfft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2472060Z copying torch/include/ATen/ops/_weight_norm_differentiable_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2473510Z copying torch/include/ATen/ops/ger_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2475260Z copying torch/include/ATen/ops/miopen_batch_norm_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2475950Z copying torch/include/ATen/ops/_values_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2477410Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2478700Z copying torch/include/ATen/ops/set_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2479630Z copying torch/include/ATen/ops/_foreach_sin_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2481020Z copying torch/include/ATen/ops/is_conj_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2482270Z copying torch/include/ATen/ops/normal_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2483530Z copying torch/include/ATen/ops/max_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2484980Z copying torch/include/ATen/ops/_cufft_get_plan_cache_size_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2486340Z copying torch/include/ATen/ops/grid_sampler_2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2488000Z copying torch/include/ATen/ops/_linalg_det_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2489300Z copying torch/include/ATen/ops/triangular_solve_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2490520Z copying torch/include/ATen/ops/_linalg_slogdet_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2492010Z copying torch/include/ATen/ops/tensor_split_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2493000Z copying torch/include/ATen/ops/lshift_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2494230Z copying torch/include/ATen/ops/empty_quantized.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2495500Z copying torch/include/ATen/ops/cudnn_grid_sampler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2496830Z copying torch/include/ATen/ops/repeat_interleave_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2498140Z copying torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2499500Z copying torch/include/ATen/ops/gather_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2501040Z copying torch/include/ATen/ops/reshape_compositeimplicitautogradnestedtensor_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2502080Z copying torch/include/ATen/ops/logical_and_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2503800Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2504600Z copying torch/include/ATen/ops/roll_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2505890Z copying torch/include/ATen/ops/remainder_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2507150Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2508470Z copying torch/include/ATen/ops/log10_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2509770Z copying torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2510960Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2512350Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2513540Z copying torch/include/ATen/ops/convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2514780Z copying torch/include/ATen/ops/kl_div_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2516090Z copying torch/include/ATen/ops/roll_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2517380Z copying torch/include/ATen/ops/upsample_bicubic2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2518650Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2519810Z copying torch/include/ATen/ops/amax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2521090Z copying torch/include/ATen/ops/multinomial_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2522350Z copying torch/include/ATen/ops/special_log_ndtr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2523650Z copying torch/include/ATen/ops/_to_cpu_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2524960Z copying torch/include/ATen/ops/batch_norm_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2526150Z copying torch/include/ATen/ops/addmv_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2527400Z copying torch/include/ATen/ops/clamp_max_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2528650Z copying torch/include/ATen/ops/_values_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2529850Z copying torch/include/ATen/ops/clone.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2531200Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2532380Z copying torch/include/ATen/ops/avg_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2533760Z copying torch/include/ATen/ops/_choose_qparams_per_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2535050Z copying torch/include/ATen/ops/_sparse_semi_structured_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2536260Z copying torch/include/ATen/ops/reciprocal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2537540Z copying torch/include/ATen/ops/special_bessel_y0_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2538860Z copying torch/include/ATen/ops/unflatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2540110Z copying torch/include/ATen/ops/mkldnn_rnn_layer_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2541550Z copying torch/include/ATen/ops/replication_pad3d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2542780Z copying torch/include/ATen/ops/logical_or_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2544030Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2545370Z copying torch/include/ATen/ops/values_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2546730Z copying torch/include/ATen/ops/corrcoef_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2548050Z copying torch/include/ATen/ops/digamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2549230Z copying torch/include/ATen/ops/swapdims.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2550650Z copying torch/include/ATen/ops/_functional_sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2551940Z copying torch/include/ATen/ops/reflection_pad3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2553140Z copying torch/include/ATen/ops/cauchy_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2554470Z copying torch/include/ATen/ops/reflection_pad1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2555830Z copying torch/include/ATen/ops/mkldnn_linear_backward_input_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2557120Z copying torch/include/ATen/ops/replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2558670Z copying torch/include/ATen/ops/huber_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2559710Z copying torch/include/ATen/ops/permute_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2561230Z copying torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2562390Z copying torch/include/ATen/ops/sub_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2563850Z copying torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2564980Z copying torch/include/ATen/ops/mm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2566210Z copying torch/include/ATen/ops/sinh_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2567440Z copying torch/include/ATen/ops/log2_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2568760Z copying torch/include/ATen/ops/glu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2570150Z copying torch/include/ATen/ops/_cufft_clear_plan_cache_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2571360Z copying torch/include/ATen/ops/linalg_solve_ex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2572580Z copying torch/include/ATen/ops/logsumexp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2574020Z copying torch/include/ATen/ops/all.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2575270Z copying torch/include/ATen/ops/_foobar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2576650Z copying torch/include/ATen/ops/cudnn_grid_sampler_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2577990Z copying torch/include/ATen/ops/nested_to_padded_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2579170Z copying torch/include/ATen/ops/log_normal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2582490Z copying torch/include/ATen/ops/quantized_lstm_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2583590Z copying torch/include/ATen/ops/mvlgamma_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2585070Z copying torch/include/ATen/ops/log1p_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2590540Z copying torch/include/ATen/ops/glu_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2591980Z copying torch/include/ATen/ops/mish_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2597450Z copying torch/include/ATen/ops/_rowwise_prune_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2598630Z copying torch/include/ATen/ops/_foreach_acos_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2600080Z copying torch/include/ATen/ops/linalg_lu_solve_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2607310Z copying torch/include/ATen/ops/rrelu_with_noise_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2608310Z copying torch/include/ATen/ops/size_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2614800Z copying torch/include/ATen/ops/linalg_eigvals_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2615930Z copying torch/include/ATen/ops/special_erf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2622560Z copying torch/include/ATen/ops/amax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2623440Z copying torch/include/ATen/ops/_foreach_lerp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2624820Z copying torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2630240Z copying torch/include/ATen/ops/scatter_reduce_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2631080Z copying torch/include/ATen/ops/nll_loss_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2633400Z copying torch/include/ATen/ops/log_sigmoid_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2639800Z copying torch/include/ATen/ops/multi_margin_loss_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2641720Z copying torch/include/ATen/ops/rms_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2647650Z copying torch/include/ATen/ops/movedim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2648890Z copying torch/include/ATen/ops/mps_convolution_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2650380Z copying torch/include/ATen/ops/arccos.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2656710Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2659640Z copying torch/include/ATen/ops/linear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2664120Z copying torch/include/ATen/ops/bucketize_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2665480Z copying torch/include/ATen/ops/asinh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2668280Z copying torch/include/ATen/ops/_dim_arange.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2672270Z copying torch/include/ATen/ops/special_erfc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2676960Z copying torch/include/ATen/ops/empty_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2677960Z copying torch/include/ATen/ops/nll_loss_nd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2681600Z copying torch/include/ATen/ops/tan_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2686050Z copying torch/include/ATen/ops/_cdist_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2688550Z copying torch/include/ATen/ops/hardtanh_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2690000Z copying torch/include/ATen/ops/matmul_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2695970Z copying torch/include/ATen/ops/_cast_Half_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2697630Z copying torch/include/ATen/ops/_prelu_kernel_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2703240Z copying torch/include/ATen/ops/gather.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2704340Z copying torch/include/ATen/ops/_reshape_alias_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2711300Z copying torch/include/ATen/ops/logaddexp2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2712200Z copying torch/include/ATen/ops/multi_margin_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2713500Z copying torch/include/ATen/ops/_foreach_sin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2720630Z copying torch/include/ATen/ops/fft_rfft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2721670Z copying torch/include/ATen/ops/slow_conv3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2728640Z copying torch/include/ATen/ops/leaky_relu_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2729600Z copying torch/include/ATen/ops/_padded_dense_to_jagged_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2735980Z copying torch/include/ATen/ops/acosh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2737160Z copying torch/include/ATen/ops/special_bessel_j1_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2738410Z copying torch/include/ATen/ops/addcdiv_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2744160Z copying torch/include/ATen/ops/permute_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2745080Z copying torch/include/ATen/ops/to_sparse_csr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2751820Z copying torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2752850Z copying torch/include/ATen/ops/replication_pad2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2754400Z copying torch/include/ATen/ops/linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2759910Z copying torch/include/ATen/ops/adaptive_avg_pool3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2762280Z copying torch/include/ATen/ops/_empty_per_channel_affine_quantized_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2768420Z copying torch/include/ATen/ops/fractional_max_pool2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2769540Z copying torch/include/ATen/ops/_sparse_csc_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2776110Z copying torch/include/ATen/ops/sym_constrain_range_for_size_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2777310Z copying torch/include/ATen/ops/data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2778620Z copying torch/include/ATen/ops/matrix_power_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2784150Z copying torch/include/ATen/ops/cudnn_convolution_transpose_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2785150Z copying torch/include/ATen/ops/_local_scalar_dense_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2792930Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2793730Z copying torch/include/ATen/ops/gather_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2794970Z copying torch/include/ATen/ops/_cast_Long.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2800730Z copying torch/include/ATen/ops/_functional_sym_constrain_range_for_size_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2801860Z copying torch/include/ATen/ops/hardshrink_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2808670Z copying torch/include/ATen/ops/hstack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2809690Z copying torch/include/ATen/ops/miopen_convolution_relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2810970Z copying torch/include/ATen/ops/special_modified_bessel_k1_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2816360Z copying torch/include/ATen/ops/_nested_view_from_buffer_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2817500Z copying torch/include/ATen/ops/gelu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2824230Z copying torch/include/ATen/ops/batch_norm_update_stats_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2831910Z copying torch/include/ATen/ops/hann_window_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2832810Z copying torch/include/ATen/ops/ger_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2834070Z copying torch/include/ATen/ops/div_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2839120Z copying torch/include/ATen/ops/_has_compatible_shallow_copy_type_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2840360Z copying torch/include/ATen/ops/deg2rad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2846810Z copying torch/include/ATen/ops/linalg_ldl_factor_ex_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2847990Z copying torch/include/ATen/ops/native_group_norm_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2854880Z copying torch/include/ATen/ops/triu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2856130Z copying torch/include/ATen/ops/rename_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2857340Z copying torch/include/ATen/ops/linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2863790Z copying torch/include/ATen/ops/_fused_dropout_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2864770Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2871870Z copying torch/include/ATen/ops/_foreach_expm1_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2873050Z copying torch/include/ATen/ops/mkldnn_max_pool3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2879490Z copying torch/include/ATen/ops/tan_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2880730Z copying torch/include/ATen/ops/softshrink_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2882240Z copying torch/include/ATen/ops/as_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2887330Z copying torch/include/ATen/ops/linalg_lu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2888310Z copying torch/include/ATen/ops/_rowwise_prune.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2894840Z copying torch/include/ATen/ops/rshift_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2895930Z copying torch/include/ATen/ops/miopen_depthwise_convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2897200Z copying torch/include/ATen/ops/linalg_lu_factor_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2904420Z copying torch/include/ATen/ops/arctan2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2905410Z copying torch/include/ATen/ops/dequantize_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2912110Z copying torch/include/ATen/ops/_nested_tensor_size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2913300Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2920390Z copying torch/include/ATen/ops/_local_scalar_dense_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2921400Z copying torch/include/ATen/ops/_mkldnn_transpose_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2922880Z copying torch/include/ATen/ops/crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2928480Z copying torch/include/ATen/ops/roll_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2930450Z copying torch/include/ATen/ops/unfold_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2936730Z copying torch/include/ATen/ops/fft_rfft2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2937700Z copying torch/include/ATen/ops/gru.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2938990Z copying torch/include/ATen/ops/sign_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2943710Z copying torch/include/ATen/ops/atleast_1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2945110Z copying torch/include/ATen/ops/masked_fill_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2951910Z copying torch/include/ATen/ops/fft_ifft2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2952850Z copying torch/include/ATen/ops/isneginf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2954180Z copying torch/include/ATen/ops/sign_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2959410Z copying torch/include/ATen/ops/nanquantile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2960990Z copying torch/include/ATen/ops/_foreach_log10_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2967320Z copying torch/include/ATen/ops/fft_rfftfreq_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2968570Z copying torch/include/ATen/ops/zeros_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2974830Z copying torch/include/ATen/ops/_nested_select_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2976060Z copying torch/include/ATen/ops/nested_to_padded_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2977280Z copying torch/include/ATen/ops/hardtanh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2984540Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2985560Z copying torch/include/ATen/ops/_foreach_exp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2992480Z copying torch/include/ATen/ops/linalg_lu_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.2993370Z copying torch/include/ATen/ops/fft_irfft2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3007800Z copying torch/include/ATen/ops/miopen_convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3008130Z copying torch/include/ATen/ops/infinitely_differentiable_gelu_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3008510Z copying torch/include/ATen/ops/_pack_padded_sequence_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3009900Z copying torch/include/ATen/ops/scatter_add_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3015880Z copying torch/include/ATen/ops/max_unpool2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3017370Z copying torch/include/ATen/ops/_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3018580Z copying torch/include/ATen/ops/adaptive_avg_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3024270Z copying torch/include/ATen/ops/embedding_sparse_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3025400Z copying torch/include/ATen/ops/special_psi_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3031870Z copying torch/include/ATen/ops/hardswish_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3033330Z copying torch/include/ATen/ops/tile_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3034170Z copying torch/include/ATen/ops/std_mean_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3039400Z copying torch/include/ATen/ops/softplus_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3040470Z copying torch/include/ATen/ops/special_expm1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3047710Z copying torch/include/ATen/ops/elu_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3048820Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3055440Z copying torch/include/ATen/ops/_foreach_trunc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3057250Z copying torch/include/ATen/ops/mode_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3059840Z copying torch/include/ATen/ops/bitwise_not.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3063240Z copying torch/include/ATen/ops/_foreach_mul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3064610Z copying torch/include/ATen/ops/bartlett_window_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3071510Z copying torch/include/ATen/ops/_cummin_helper_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3072950Z copying torch/include/ATen/ops/is_complex_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3079920Z copying torch/include/ATen/ops/log_sigmoid_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3081180Z copying torch/include/ATen/ops/minimum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3083030Z copying torch/include/ATen/ops/ccol_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3087100Z copying torch/include/ATen/ops/scatter_add_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3089590Z copying torch/include/ATen/ops/multilabel_margin_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3095360Z copying torch/include/ATen/ops/std_mean_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3096630Z copying torch/include/ATen/ops/reciprocal_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3097960Z copying torch/include/ATen/ops/_new_zeros_with_same_feature_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3103140Z copying torch/include/ATen/ops/cdist_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3104220Z copying torch/include/ATen/ops/sparse_sampled_addmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3111810Z copying torch/include/ATen/ops/_add_relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3112890Z copying torch/include/ATen/ops/linalg_vecdot_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3119780Z copying torch/include/ATen/ops/pad_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3120460Z copying torch/include/ATen/ops/randperm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3121860Z copying torch/include/ATen/ops/_foreach_neg_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3128110Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3129050Z copying torch/include/ATen/ops/output_nr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3135520Z copying torch/include/ATen/ops/_nested_sum_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3136410Z copying torch/include/ATen/ops/i0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3137880Z copying torch/include/ATen/ops/_foreach_sinh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3142950Z copying torch/include/ATen/ops/native_dropout_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3144240Z copying torch/include/ATen/ops/_test_functorch_fallback_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3151000Z copying torch/include/ATen/ops/linalg_ldl_solve_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3152070Z copying torch/include/ATen/ops/flipud_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3158750Z copying torch/include/ATen/ops/_ctc_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3159740Z copying torch/include/ATen/ops/t_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3160950Z copying torch/include/ATen/ops/_int_mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3166580Z copying torch/include/ATen/ops/index_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3167530Z copying torch/include/ATen/ops/erf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3174590Z copying torch/include/ATen/ops/igammac_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3176170Z copying torch/include/ATen/ops/linalg_qr_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3182610Z copying torch/include/ATen/ops/_foreach_erf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3183630Z copying torch/include/ATen/ops/max_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3184740Z copying torch/include/ATen/ops/_cast_Char_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3190790Z copying torch/include/ATen/ops/_foreach_acos_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3191800Z copying torch/include/ATen/ops/diag_embed_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3198690Z copying torch/include/ATen/ops/_spdiags_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3199830Z copying torch/include/ATen/ops/fix_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3201040Z copying torch/include/ATen/ops/cov_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3206910Z copying torch/include/ATen/ops/q_scale_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3209360Z copying torch/include/ATen/ops/new_full_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3214980Z copying torch/include/ATen/ops/_transform_bias_rescale_qkv_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3215910Z copying torch/include/ATen/ops/var.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3217180Z copying torch/include/ATen/ops/_foreach_floor_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3223000Z copying torch/include/ATen/ops/bitwise_not_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3224120Z copying torch/include/ATen/ops/index_put.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3230930Z copying torch/include/ATen/ops/dequantize_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3232740Z copying torch/include/ATen/ops/convolution_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3238710Z copying torch/include/ATen/ops/_chunk_cat_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3240030Z copying torch/include/ATen/ops/grid_sampler_2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3241260Z copying torch/include/ATen/ops/special_i0e.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3247010Z copying torch/include/ATen/ops/special_log1p_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3248130Z copying torch/include/ATen/ops/logaddexp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3250640Z copying torch/include/ATen/ops/_wrapped_quantized_linear_prepacked.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3257090Z copying torch/include/ATen/ops/arange_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3259390Z copying torch/include/ATen/ops/logaddexp2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3264780Z copying torch/include/ATen/ops/upsample_nearest3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3265990Z copying torch/include/ATen/ops/isnan_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3267190Z copying torch/include/ATen/ops/index_fill_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3272720Z copying torch/include/ATen/ops/remainder.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3273800Z copying torch/include/ATen/ops/batch_norm_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3280620Z copying torch/include/ATen/ops/repeat_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3282200Z copying torch/include/ATen/ops/cummin_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3288710Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3289620Z copying torch/include/ATen/ops/avg_pool3d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3290830Z copying torch/include/ATen/ops/_foreach_lerp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3297140Z copying torch/include/ATen/ops/_sparse_softmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3297990Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3304360Z copying torch/include/ATen/ops/indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3305870Z copying torch/include/ATen/ops/_histogramdd_from_bin_cts.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3307430Z copying torch/include/ATen/ops/mvlgamma_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3314010Z copying torch/include/ATen/ops/_cudnn_rnn_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3315010Z copying torch/include/ATen/ops/amax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3322150Z copying torch/include/ATen/ops/_assert_tensor_metadata_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3323060Z copying torch/include/ATen/ops/nll_loss2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3329850Z copying torch/include/ATen/ops/linalg_matrix_rank_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3330960Z copying torch/include/ATen/ops/_masked_scale_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3332250Z copying torch/include/ATen/ops/_stack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3337610Z copying torch/include/ATen/ops/histc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3338970Z copying torch/include/ATen/ops/combinations_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3345500Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3346540Z copying torch/include/ATen/ops/tanh_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3347710Z copying torch/include/ATen/ops/fft_hfft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3353730Z copying torch/include/ATen/ops/embedding_bag_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3354500Z copying torch/include/ATen/ops/to_padded_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3361290Z copying torch/include/ATen/ops/fft_fft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3362310Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3363480Z copying torch/include/ATen/ops/requires_grad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3368740Z copying torch/include/ATen/ops/gradient.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3371790Z copying torch/include/ATen/ops/fft_ihfft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3376930Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3378380Z copying torch/include/ATen/ops/upsample_trilinear3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3381460Z copying torch/include/ATen/ops/linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3386000Z copying torch/include/ATen/ops/view_as_real_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3387090Z copying torch/include/ATen/ops/copysign_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3393810Z copying torch/include/ATen/ops/values_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3395260Z copying torch/include/ATen/ops/_prelu_kernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3401520Z copying torch/include/ATen/ops/fractional_max_pool3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3402580Z copying torch/include/ATen/ops/upsample_linear1d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3403810Z copying torch/include/ATen/ops/_add_batch_dim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3409190Z copying torch/include/ATen/ops/cudnn_is_acceptable_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3410510Z copying torch/include/ATen/ops/mH_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3416020Z copying torch/include/ATen/ops/lift_fresh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3418480Z copying torch/include/ATen/ops/ne_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3423620Z copying torch/include/ATen/ops/argsort_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3424940Z copying torch/include/ATen/ops/multinomial_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3427460Z copying torch/include/ATen/ops/special_modified_bessel_k0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3432460Z copying torch/include/ATen/ops/atan2_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3433590Z copying torch/include/ATen/ops/_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3440750Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3448080Z copying torch/include/ATen/ops/special_multigammaln_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3449730Z copying torch/include/ATen/ops/unsafe_chunk_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3451030Z copying torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3457370Z copying torch/include/ATen/ops/native_channel_shuffle_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3458230Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3464800Z copying torch/include/ATen/ops/addmv_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3465780Z copying torch/include/ATen/ops/rshift_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3467090Z copying torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3474020Z copying torch/include/ATen/ops/special_erfinv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3474950Z copying torch/include/ATen/ops/_fused_sdp_choice_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3481510Z copying torch/include/ATen/ops/_copy_from_and_resize_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3482770Z copying torch/include/ATen/ops/_sparse_log_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3490570Z copying torch/include/ATen/ops/select_scatter_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3498330Z copying torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3499520Z copying torch/include/ATen/ops/broadcast_to_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3506840Z copying torch/include/ATen/ops/huber_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3507620Z copying torch/include/ATen/ops/count_nonzero_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3509030Z copying torch/include/ATen/ops/linalg_eigh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3514400Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3515960Z copying torch/include/ATen/ops/true_divide_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3522200Z copying torch/include/ATen/ops/_ctc_loss_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3523150Z copying torch/include/ATen/ops/upsample_bilinear2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3524410Z copying torch/include/ATen/ops/ccol_indices_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3529790Z copying torch/include/ATen/ops/addcmul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3530690Z copying torch/include/ATen/ops/_fused_adagrad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3537570Z copying torch/include/ATen/ops/erfc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3538920Z copying torch/include/ATen/ops/slow_conv_transpose3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3546140Z copying torch/include/ATen/ops/resolve_conj.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3547490Z copying torch/include/ATen/ops/quantized_gru_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3548800Z copying torch/include/ATen/ops/sparse_bsr_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3554440Z copying torch/include/ATen/ops/_foreach_erfc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3555750Z copying torch/include/ATen/ops/glu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3562860Z copying torch/include/ATen/ops/_to_sparse_bsr_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3564000Z copying torch/include/ATen/ops/new_ones_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3565290Z copying torch/include/ATen/ops/cosh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3571420Z copying torch/include/ATen/ops/eye_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3572260Z copying torch/include/ATen/ops/nll_loss_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3578630Z copying torch/include/ATen/ops/istft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3579540Z copying torch/include/ATen/ops/special_spherical_bessel_j0_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3580720Z copying torch/include/ATen/ops/addcmul_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3586220Z copying torch/include/ATen/ops/avg_pool3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3588190Z copying torch/include/ATen/ops/_prelu_kernel_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3593260Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3594910Z copying torch/include/ATen/ops/kron_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3597270Z copying torch/include/ATen/ops/fmod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3602730Z copying torch/include/ATen/ops/scatter_add_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3603830Z copying torch/include/ATen/ops/inverse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3610700Z copying torch/include/ATen/ops/_foreach_round_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3612040Z copying torch/include/ATen/ops/to_dense_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3619140Z copying torch/include/ATen/ops/rshift_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3620150Z copying torch/include/ATen/ops/cumsum_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3621300Z copying torch/include/ATen/ops/item.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3627060Z copying torch/include/ATen/ops/soft_margin_loss_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3628100Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3635180Z copying torch/include/ATen/ops/hypot_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3636020Z copying torch/include/ATen/ops/_foreach_zero.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3642750Z copying torch/include/ATen/ops/zeros_like_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3643700Z copying torch/include/ATen/ops/_mkldnn_reshape_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3644900Z copying torch/include/ATen/ops/index_select_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3650140Z copying torch/include/ATen/ops/to_sparse_bsr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3651340Z copying torch/include/ATen/ops/_foreach_round_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3658390Z copying torch/include/ATen/ops/linalg_cholesky_ex_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3659310Z copying torch/include/ATen/ops/nll_loss_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3666930Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3668100Z copying torch/include/ATen/ops/linalg_eig_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3674530Z copying torch/include/ATen/ops/sgn_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3675750Z copying torch/include/ATen/ops/replication_pad1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3682340Z copying torch/include/ATen/ops/linalg_eigh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3683170Z copying torch/include/ATen/ops/linalg_matrix_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3684340Z copying torch/include/ATen/ops/lu_unpack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3688770Z copying torch/include/ATen/ops/fmax_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3691240Z copying torch/include/ATen/ops/special_modified_bessel_k0_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3695380Z copying torch/include/ATen/ops/linalg_vector_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3696400Z copying torch/include/ATen/ops/native_layer_norm_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3703190Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3704350Z copying torch/include/ATen/ops/_triton_scaled_dot_attention_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3705780Z copying torch/include/ATen/ops/_foreach_sigmoid_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3710930Z copying torch/include/ATen/ops/quantized_batch_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3712410Z copying torch/include/ATen/ops/_to_sparse_csr_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3714700Z copying torch/include/ATen/ops/_pack_padded_sequence_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3719860Z copying torch/include/ATen/ops/_to_sparse_csc_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3720650Z copying torch/include/ATen/ops/matrix_power.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3727090Z copying torch/include/ATen/ops/sgn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3728480Z copying torch/include/ATen/ops/ne_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3734790Z copying torch/include/ATen/ops/_foreach_cos_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3736280Z copying torch/include/ATen/ops/split_with_sizes_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3737600Z copying torch/include/ATen/ops/transpose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3742550Z copying torch/include/ATen/ops/conj_physical_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3743920Z copying torch/include/ATen/ops/silu_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3750110Z copying torch/include/ATen/ops/linalg_matrix_power_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3751580Z copying torch/include/ATen/ops/unsafe_split_with_sizes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3758130Z copying torch/include/ATen/ops/grid_sampler_2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3759430Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3760470Z copying torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3766020Z copying torch/include/ATen/ops/frac_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3767390Z copying torch/include/ATen/ops/less_equal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3774800Z copying torch/include/ATen/ops/rrelu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3775730Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3782220Z copying torch/include/ATen/ops/rnn_tanh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3783260Z copying torch/include/ATen/ops/upsample_nearest1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3784860Z copying torch/include/ATen/ops/pinverse_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3790440Z copying torch/include/ATen/ops/mean_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3791890Z copying torch/include/ATen/ops/new_empty_strided.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3798240Z copying torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3799510Z copying torch/include/ATen/ops/pow_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3800770Z copying torch/include/ATen/ops/channel_shuffle_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3805530Z copying torch/include/ATen/ops/log_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3807040Z copying torch/include/ATen/ops/unique_consecutive_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3813620Z copying torch/include/ATen/ops/unbind_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3814900Z copying torch/include/ATen/ops/alpha_dropout_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3821310Z copying torch/include/ATen/ops/_foreach_abs_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3822260Z copying torch/include/ATen/ops/replication_pad2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3823470Z copying torch/include/ATen/ops/kaiser_window.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3829930Z copying torch/include/ATen/ops/split_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3837540Z copying torch/include/ATen/ops/nansum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3838880Z copying torch/include/ATen/ops/threshold_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3844980Z copying torch/include/ATen/ops/soft_margin_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3846340Z copying torch/include/ATen/ops/det_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3852730Z copying torch/include/ATen/ops/_foreach_sin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3853510Z copying torch/include/ATen/ops/addr_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3861010Z copying torch/include/ATen/ops/_fused_adagrad_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3861870Z copying torch/include/ATen/ops/split_with_sizes_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3869220Z copying torch/include/ATen/ops/_sobol_engine_initialize_state_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3869860Z copying torch/include/ATen/ops/log_sigmoid_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3871080Z copying torch/include/ATen/ops/_foreach_div_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3876760Z copying torch/include/ATen/ops/prelu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3878150Z copying torch/include/ATen/ops/maximum_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3885240Z copying torch/include/ATen/ops/grid_sampler_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3886200Z copying torch/include/ATen/ops/_cslt_compress_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3887530Z copying torch/include/ATen/ops/_validate_compressed_sparse_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3893550Z copying torch/include/ATen/ops/_foreach_ceil_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3894430Z copying torch/include/ATen/ops/to_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3898330Z copying torch/include/ATen/ops/fmod_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3903470Z copying torch/include/ATen/ops/special_xlog1py_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3906350Z copying torch/include/ATen/ops/_cufft_get_plan_cache_size_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3907430Z copying torch/include/ATen/ops/_unsafe_index_put_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3913590Z copying torch/include/ATen/ops/logical_not_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3914580Z copying torch/include/ATen/ops/crow_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3921130Z copying torch/include/ATen/ops/logspace_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3922160Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3929190Z copying torch/include/ATen/ops/max_pool2d_with_indices_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3930000Z copying torch/include/ATen/ops/_fused_sgd_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3931440Z copying torch/include/ATen/ops/miopen_convolution_transpose_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3936730Z copying torch/include/ATen/ops/lift_fresh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3937920Z copying torch/include/ATen/ops/_nested_tensor_from_mask_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3944610Z copying torch/include/ATen/ops/indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3945890Z copying torch/include/ATen/ops/sym_stride_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3946900Z copying torch/include/ATen/ops/isreal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3954310Z copying torch/include/ATen/ops/unbind_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3955210Z copying torch/include/ATen/ops/_spdiags_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3962520Z copying torch/include/ATen/ops/_pad_enum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3963480Z copying torch/include/ATen/ops/equal_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3970350Z copying torch/include/ATen/ops/_autocast_to_reduced_precision.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3971340Z copying torch/include/ATen/ops/mse_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3972610Z copying torch/include/ATen/ops/_addmm_activation_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3978170Z copying torch/include/ATen/ops/pin_memory_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3979100Z copying torch/include/ATen/ops/max_unpool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3986230Z copying torch/include/ATen/ops/flatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3987080Z copying torch/include/ATen/ops/avg_pool1d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3988270Z copying torch/include/ATen/ops/_reshape_alias_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3993520Z copying torch/include/ATen/ops/_histogramdd_from_bin_cts_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.3994590Z copying torch/include/ATen/ops/einsum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4002160Z copying torch/include/ATen/ops/_ctc_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4003750Z copying torch/include/ATen/ops/xlogy_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4009900Z copying torch/include/ATen/ops/diagonal_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4010950Z copying torch/include/ATen/ops/is_conj.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4017940Z copying torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4019490Z copying torch/include/ATen/ops/miopen_convolution_relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4025490Z copying torch/include/ATen/ops/permute_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4026560Z copying torch/include/ATen/ops/multiply.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4027930Z copying torch/include/ATen/ops/batch_norm_stats_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4033960Z copying torch/include/ATen/ops/tensordot_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4034630Z copying torch/include/ATen/ops/silu_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4038100Z copying torch/include/ATen/ops/_native_batch_norm_legit_no_training_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4042460Z copying torch/include/ATen/ops/nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4043320Z copying torch/include/ATen/ops/trapezoid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4050080Z copying torch/include/ATen/ops/prelu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4051640Z copying torch/include/ATen/ops/_convolution_double_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4059370Z copying torch/include/ATen/ops/_nested_tensor_strides_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4060470Z copying torch/include/ATen/ops/q_zero_point.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4066910Z copying torch/include/ATen/ops/_resize_output_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4068190Z copying torch/include/ATen/ops/isfinite_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4074980Z copying torch/include/ATen/ops/masked_fill_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4076180Z copying torch/include/ATen/ops/sparse_resize_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4077450Z copying torch/include/ATen/ops/unfold_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4084410Z copying torch/include/ATen/ops/_weight_int8pack_mm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4085710Z copying torch/include/ATen/ops/rrelu_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4091960Z copying torch/include/ATen/ops/addcdiv_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4093110Z copying torch/include/ATen/ops/mkldnn_linear_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4099790Z copying torch/include/ATen/ops/_sparse_softmax_backward_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4100750Z copying torch/include/ATen/ops/mkldnn_max_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4102070Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4107860Z copying torch/include/ATen/ops/special_bessel_j1_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4108950Z copying torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4115550Z copying torch/include/ATen/ops/_nested_from_padded_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4116590Z copying torch/include/ATen/ops/isin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4118060Z copying torch/include/ATen/ops/_batch_norm_impl_index_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4123650Z copying torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4124840Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4130950Z copying torch/include/ATen/ops/linalg_matmul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4132210Z copying torch/include/ATen/ops/max_pool3d_with_indices_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4133620Z copying torch/include/ATen/ops/special_bessel_y1_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4140570Z copying torch/include/ATen/ops/reciprocal_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4141690Z copying torch/include/ATen/ops/tril_indices_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4148990Z copying torch/include/ATen/ops/isposinf_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4149990Z copying torch/include/ATen/ops/_nested_get_max_seqlen_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4157450Z copying torch/include/ATen/ops/gcd_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4158520Z copying torch/include/ATen/ops/_convolution_double_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4159810Z copying torch/include/ATen/ops/softshrink_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4164960Z copying torch/include/ATen/ops/_sparse_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4166420Z copying torch/include/ATen/ops/_cudnn_ctc_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4173500Z copying torch/include/ATen/ops/_foreach_neg_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4174450Z copying torch/include/ATen/ops/leaky_relu_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4175680Z copying torch/include/ATen/ops/nested_to_padded_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4181670Z copying torch/include/ATen/ops/_add_relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4182600Z copying torch/include/ATen/ops/round_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4189710Z copying torch/include/ATen/ops/resolve_conj_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4190730Z copying torch/include/ATen/ops/mkldnn_linear_backward_input_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4192170Z copying torch/include/ATen/ops/fft_fftshift_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4197800Z copying torch/include/ATen/ops/ones_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4198680Z copying torch/include/ATen/ops/_foreach_clamp_max.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4205910Z copying torch/include/ATen/ops/log_sigmoid_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4206810Z copying torch/include/ATen/ops/_slow_conv2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4208150Z copying torch/include/ATen/ops/neg_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4213440Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k0_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4214590Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4220810Z copying torch/include/ATen/ops/replication_pad2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4222180Z copying torch/include/ATen/ops/lerp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4223470Z copying torch/include/ATen/ops/exp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4230800Z copying torch/include/ATen/ops/is_set_to_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4231670Z copying torch/include/ATen/ops/logsumexp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4238730Z copying torch/include/ATen/ops/scatter_add_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4239470Z copying torch/include/ATen/ops/_pad_packed_sequence.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4246780Z copying torch/include/ATen/ops/round.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4247800Z copying torch/include/ATen/ops/_sparse_coo_tensor_unsafe_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4249020Z copying torch/include/ATen/ops/roll_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4254100Z copying torch/include/ATen/ops/i0_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4256230Z copying torch/include/ATen/ops/alias_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4258700Z copying torch/include/ATen/ops/mish_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4264830Z copying torch/include/ATen/ops/replication_pad2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4267850Z copying torch/include/ATen/ops/addcmul_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4271630Z copying torch/include/ATen/ops/std_mean_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4277360Z copying torch/include/ATen/ops/multilabel_margin_loss_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4278580Z copying torch/include/ATen/ops/prod_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4279810Z copying torch/include/ATen/ops/pow_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4286780Z copying torch/include/ATen/ops/resize_as_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4287910Z copying torch/include/ATen/ops/gcd_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4293350Z copying torch/include/ATen/ops/convolution_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4296870Z copying torch/include/ATen/ops/linalg_det_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4300980Z copying torch/include/ATen/ops/_foreach_log10.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4301920Z copying torch/include/ATen/ops/select_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4305420Z copying torch/include/ATen/ops/_masked_softmax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4309340Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4313650Z copying torch/include/ATen/ops/mean_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4314630Z copying torch/include/ATen/ops/upsample_linear1d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4318050Z copying torch/include/ATen/ops/scalar_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4322580Z copying torch/include/ATen/ops/_embedding_bag_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4326170Z copying torch/include/ATen/ops/nonzero_static.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4327210Z copying torch/include/ATen/ops/im2col_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4331900Z copying torch/include/ATen/ops/special_spherical_bessel_j0_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4335600Z copying torch/include/ATen/ops/_cslt_sparse_mm_search_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4340630Z copying torch/include/ATen/ops/im2col_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4344420Z copying torch/include/ATen/ops/rrelu_with_noise_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4348700Z copying torch/include/ATen/ops/sparse_dim_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4352370Z copying torch/include/ATen/ops/vsplit_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4356050Z copying torch/include/ATen/ops/copysign_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4471180Z copying torch/include/ATen/ops/_reshape_from_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4472110Z copying torch/include/ATen/ops/_fw_primal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4473320Z copying torch/include/ATen/ops/qscheme_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4474720Z copying torch/include/ATen/ops/randint_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4475850Z copying torch/include/ATen/ops/_print.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4477110Z copying torch/include/ATen/ops/max_pool3d_with_indices_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4478300Z copying torch/include/ATen/ops/set_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4479590Z copying torch/include/ATen/ops/_foreach_ceil_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4480820Z copying torch/include/ATen/ops/_cudnn_init_dropout_state.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4482090Z copying torch/include/ATen/ops/index_fill_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4483430Z copying torch/include/ATen/ops/_cudnn_rnn_flatten_weight_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4484760Z copying torch/include/ATen/ops/polygamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4486390Z copying torch/include/ATen/ops/nextafter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4487900Z copying torch/include/ATen/ops/_scaled_dot_product_attention_math_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4489470Z copying torch/include/ATen/ops/upsample_bilinear2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4490760Z copying torch/include/ATen/ops/gt_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4491940Z copying torch/include/ATen/ops/swapaxes_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4493220Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4494490Z copying torch/include/ATen/ops/_nested_tensor_softmax_with_shape_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4495780Z copying torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4497070Z copying torch/include/ATen/ops/sparse_compressed_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4498200Z copying torch/include/ATen/ops/quantile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4499580Z copying torch/include/ATen/ops/argmin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4500990Z copying torch/include/ATen/ops/_linalg_solve_ex_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4501970Z copying torch/include/ATen/ops/narrow_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4503200Z copying torch/include/ATen/ops/convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4504440Z copying torch/include/ATen/ops/masked_scatter_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4505630Z copying torch/include/ATen/ops/_nnpack_available.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4506890Z copying torch/include/ATen/ops/mps_convolution_transpose_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4508320Z copying torch/include/ATen/ops/new_zeros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4509490Z copying torch/include/ATen/ops/cudnn_grid_sampler_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4510680Z copying torch/include/ATen/ops/replication_pad1d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4511910Z copying torch/include/ATen/ops/replication_pad2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4513180Z copying torch/include/ATen/ops/miopen_convolution_relu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4514340Z copying torch/include/ATen/ops/uniform_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4515620Z copying torch/include/ATen/ops/fft_hfftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4517010Z copying torch/include/ATen/ops/_log_softmax_backward_data_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4518280Z copying torch/include/ATen/ops/_foreach_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4519480Z copying torch/include/ATen/ops/mT_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4520720Z copying torch/include/ATen/ops/nonzero_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4521990Z copying torch/include/ATen/ops/_pack_padded_sequence.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4523220Z copying torch/include/ATen/ops/_foreach_neg.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4524480Z copying torch/include/ATen/ops/linalg_multi_dot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4525960Z copying torch/include/ATen/ops/_convert_weight_to_int4pack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4527000Z copying torch/include/ATen/ops/_cummax_helper_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4528460Z copying torch/include/ATen/ops/arange_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4529760Z copying torch/include/ATen/ops/_mkldnn_transpose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4531060Z copying torch/include/ATen/ops/ne.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4532210Z copying torch/include/ATen/ops/threshold_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4751700Z copying torch/include/ATen/ops/rrelu_with_noise_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4753930Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4755010Z copying torch/include/ATen/ops/cumprod_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4756370Z copying torch/include/ATen/ops/lu_unpack_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4757750Z copying torch/include/ATen/ops/special_erfc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4758980Z copying torch/include/ATen/ops/_nested_sum_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4760180Z copying torch/include/ATen/ops/quantized_max_pool1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4761410Z copying torch/include/ATen/ops/linalg_lstsq_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4762720Z copying torch/include/ATen/ops/ormqr_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4764220Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4765520Z copying torch/include/ATen/ops/is_nonzero.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4766920Z copying torch/include/ATen/ops/glu_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4768150Z copying torch/include/ATen/ops/_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4769430Z copying torch/include/ATen/ops/bitwise_xor_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4770810Z copying torch/include/ATen/ops/sigmoid_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4772100Z copying torch/include/ATen/ops/_foreach_cos.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4773240Z copying torch/include/ATen/ops/randn_like_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4774450Z copying torch/include/ATen/ops/_slow_conv2d_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4775810Z copying torch/include/ATen/ops/subtract_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4777030Z copying torch/include/ATen/ops/sparse_compressed_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4778240Z copying torch/include/ATen/ops/_foreach_ceil_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4779430Z copying torch/include/ATen/ops/div_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4780990Z copying torch/include/ATen/ops/_choose_qparams_per_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4782660Z copying torch/include/ATen/ops/_foreach_div_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4783780Z copying torch/include/ATen/ops/logical_or_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4785060Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4786370Z copying torch/include/ATen/ops/mul_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4787760Z copying torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4788970Z copying torch/include/ATen/ops/swapaxes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4790260Z copying torch/include/ATen/ops/divide_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4791640Z copying torch/include/ATen/ops/_foreach_zero_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4792950Z copying torch/include/ATen/ops/sub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4794260Z copying torch/include/ATen/ops/rsub_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4795730Z copying torch/include/ATen/ops/_linalg_check_errors_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4796920Z copying torch/include/ATen/ops/_foreach_sinh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4798160Z copying torch/include/ATen/ops/rrelu_with_noise_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4799430Z copying torch/include/ATen/ops/_fft_r2c_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4800800Z copying torch/include/ATen/ops/special_entr_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4801950Z copying torch/include/ATen/ops/conv1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4803390Z copying torch/include/ATen/ops/view_as_real_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4804600Z copying torch/include/ATen/ops/linalg_svd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4805900Z copying torch/include/ATen/ops/native_batch_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4807290Z copying torch/include/ATen/ops/negative_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4808530Z copying torch/include/ATen/ops/constant_pad_nd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4809770Z copying torch/include/ATen/ops/index_copy_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4811250Z copying torch/include/ATen/ops/logical_or_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4818200Z copying torch/include/ATen/ops/quantized_lstm_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4818670Z copying torch/include/ATen/ops/glu_jvp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4818930Z copying torch/include/ATen/ops/linalg_lu_factor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4819270Z copying torch/include/ATen/ops/to_sparse_csr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4819540Z copying torch/include/ATen/ops/is_leaf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4819840Z copying torch/include/ATen/ops/binomial_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4820820Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4822210Z copying torch/include/ATen/ops/to_sparse_csc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4823410Z copying torch/include/ATen/ops/log2_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4824710Z copying torch/include/ATen/ops/special_hermite_polynomial_h_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4826020Z copying torch/include/ATen/ops/resolve_conj_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4827400Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4828740Z copying torch/include/ATen/ops/row_indices_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4829890Z copying torch/include/ATen/ops/_foreach_exp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4831140Z copying torch/include/ATen/ops/layer_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4832320Z copying torch/include/ATen/ops/sum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4833750Z copying torch/include/ATen/ops/_sobol_engine_draw_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4834960Z copying torch/include/ATen/ops/_sparse_mask_projection_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4836350Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4837590Z copying torch/include/ATen/ops/special_zeta_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4839090Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4840210Z copying torch/include/ATen/ops/special_log_ndtr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4841600Z copying torch/include/ATen/ops/_foreach_erf_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4842680Z copying torch/include/ATen/ops/copy_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4843960Z copying torch/include/ATen/ops/linalg_lu_solve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4845230Z copying torch/include/ATen/ops/log_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4846460Z copying torch/include/ATen/ops/linalg_eigvalsh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4847700Z copying torch/include/ATen/ops/upsample_linear1d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4849000Z copying torch/include/ATen/ops/_test_optional_intlist_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4850120Z copying torch/include/ATen/ops/argmin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4851500Z copying torch/include/ATen/ops/_masked_softmax_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4852710Z copying torch/include/ATen/ops/linear_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4853920Z copying torch/include/ATen/ops/upsample_nearest2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4855160Z copying torch/include/ATen/ops/special_zeta_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4858970Z copying torch/include/ATen/ops/is_complex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4859320Z copying torch/include/ATen/ops/_to_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4859600Z copying torch/include/ATen/ops/_cdist_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4860720Z copying torch/include/ATen/ops/add_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4862050Z copying torch/include/ATen/ops/diagonal_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4863720Z copying torch/include/ATen/ops/_linalg_check_errors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4866870Z copying torch/include/ATen/ops/angle_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4873570Z copying torch/include/ATen/ops/from_file_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4874580Z copying torch/include/ATen/ops/_nested_get_min_seqlen_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4881580Z copying torch/include/ATen/ops/_nested_get_values_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4882780Z copying torch/include/ATen/ops/_masked_softmax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4884020Z copying torch/include/ATen/ops/bincount_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4890180Z copying torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4898580Z copying torch/include/ATen/ops/sort_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4899360Z copying torch/include/ATen/ops/_lazy_clone_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4907620Z copying torch/include/ATen/ops/align_tensors_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4908610Z copying torch/include/ATen/ops/scatter_reduce_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4909800Z copying torch/include/ATen/ops/thnn_conv2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4915630Z copying torch/include/ATen/ops/baddbmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4916710Z copying torch/include/ATen/ops/feature_alpha_dropout_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4923790Z copying torch/include/ATen/ops/embedding_renorm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4924700Z copying torch/include/ATen/ops/avg_pool3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4926010Z copying torch/include/ATen/ops/multilabel_margin_loss_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4931650Z copying torch/include/ATen/ops/reciprocal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4932580Z copying torch/include/ATen/ops/contiguous_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4939800Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4940600Z copying torch/include/ATen/ops/sparse_mask_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4942150Z copying torch/include/ATen/ops/_cufft_get_plan_cache_max_size_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4947560Z copying torch/include/ATen/ops/col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4948630Z copying torch/include/ATen/ops/unique_dim_consecutive_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4955090Z copying torch/include/ATen/ops/_dim_arange_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4955880Z copying torch/include/ATen/ops/tril_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4957080Z copying torch/include/ATen/ops/logical_not_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4962600Z copying torch/include/ATen/ops/_histogramdd_from_bin_cts_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4963740Z copying torch/include/ATen/ops/_validate_sparse_csc_tensor_args_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4970140Z copying torch/include/ATen/ops/bitwise_xor_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4972260Z copying torch/include/ATen/ops/arcsin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4978060Z copying torch/include/ATen/ops/qr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4979380Z copying torch/include/ATen/ops/view_as_real_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4980830Z copying torch/include/ATen/ops/softshrink_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4987030Z copying torch/include/ATen/ops/frac_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4987970Z copying torch/include/ATen/ops/sparse_resize_and_clear_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.4995690Z copying torch/include/ATen/ops/miopen_rnn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5002030Z copying torch/include/ATen/ops/_native_multi_head_attention_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5003240Z copying torch/include/ATen/ops/_segment_reduce_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5004590Z copying torch/include/ATen/ops/_linalg_eigvals_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5009840Z copying torch/include/ATen/ops/_test_string_default_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5010970Z copying torch/include/ATen/ops/sparse_csr_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5017400Z copying torch/include/ATen/ops/logaddexp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5018470Z copying torch/include/ATen/ops/grid_sampler_2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5020300Z copying torch/include/ATen/ops/pairwise_distance.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5027480Z copying torch/include/ATen/ops/avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5028530Z copying torch/include/ATen/ops/hardswish_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5035430Z copying torch/include/ATen/ops/_cast_Long_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5036110Z copying torch/include/ATen/ops/nll_loss2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5039950Z copying torch/include/ATen/ops/fft_ifftshift_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5042970Z copying torch/include/ATen/ops/triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5044080Z copying torch/include/ATen/ops/fractional_max_pool2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5049950Z copying torch/include/ATen/ops/cos_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5051090Z copying torch/include/ATen/ops/adaptive_max_pool1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5057530Z copying torch/include/ATen/ops/_mkldnn_transpose_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5058500Z copying torch/include/ATen/ops/_nested_tensor_strides_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5065250Z copying torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5066610Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5067670Z copying torch/include/ATen/ops/cudnn_convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5072850Z copying torch/include/ATen/ops/mkldnn_linear_backward_weights_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5073930Z copying torch/include/ATen/ops/atleast_2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5082600Z copying torch/include/ATen/ops/choose_qparams_optimized.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5083500Z copying torch/include/ATen/ops/_linalg_slogdet.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5101870Z copying torch/include/ATen/ops/_slow_conv2d_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5105930Z copying torch/include/ATen/ops/real_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5109550Z copying torch/include/ATen/ops/special_bessel_y1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5110990Z copying torch/include/ATen/ops/slice.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5112180Z copying torch/include/ATen/ops/_nested_tensor_size_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5113420Z copying torch/include/ATen/ops/_sparse_csr_tensor_unsafe_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5114680Z copying torch/include/ATen/ops/_spdiags.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5115990Z copying torch/include/ATen/ops/linalg_matmul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5117380Z copying torch/include/ATen/ops/hamming_window_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5118700Z copying torch/include/ATen/ops/_neg_view.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5120040Z copying torch/include/ATen/ops/unsafe_split.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5121280Z copying torch/include/ATen/ops/sign_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5122580Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5126000Z copying torch/include/ATen/ops/logaddexp2_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5129880Z copying torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5130770Z copying torch/include/ATen/ops/div_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5132030Z copying torch/include/ATen/ops/trace_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5135960Z copying torch/include/ATen/ops/trapezoid_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5137720Z copying torch/include/ATen/ops/fft_hfft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5144680Z copying torch/include/ATen/ops/chalf_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5145550Z copying torch/include/ATen/ops/linear_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5148770Z copying torch/include/ATen/ops/nll_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5153570Z copying torch/include/ATen/ops/_nested_tensor_strides_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5154810Z copying torch/include/ATen/ops/_foreach_clamp_min_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5157790Z copying torch/include/ATen/ops/fft_ifft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5163130Z copying torch/include/ATen/ops/value_selecting_reduction_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5166870Z copying torch/include/ATen/ops/triplet_margin_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5171250Z copying torch/include/ATen/ops/_slow_conv2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5172200Z copying torch/include/ATen/ops/mH_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5175500Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5180140Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5182850Z copying torch/include/ATen/ops/col2im_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5183800Z copying torch/include/ATen/ops/_fft_c2r_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5189340Z copying torch/include/ATen/ops/arcsinh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5398200Z copying torch/include/ATen/ops/type_as_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5399250Z copying torch/include/ATen/ops/linalg_eigvals_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5400650Z copying torch/include/ATen/ops/exp2_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5402030Z copying torch/include/ATen/ops/adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5403170Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5404340Z copying torch/include/ATen/ops/_safe_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5405540Z copying torch/include/ATen/ops/_copy_from_and_resize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5406930Z copying torch/include/ATen/ops/linalg_ldl_solve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5408200Z copying torch/include/ATen/ops/logdet.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5409470Z copying torch/include/ATen/ops/align_as_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5410630Z copying torch/include/ATen/ops/tanh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5412040Z copying torch/include/ATen/ops/unique_dim_consecutive_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5413290Z copying torch/include/ATen/ops/special_erfinv_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5414500Z copying torch/include/ATen/ops/_batch_norm_impl_index_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5450830Z copying torch/include/ATen/ops/tanh_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5451890Z copying torch/include/ATen/ops/_unsafe_masked_index_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5453080Z copying torch/include/ATen/ops/trunc_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5454310Z copying torch/include/ATen/ops/_cholesky_solve_helper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5455640Z copying torch/include/ATen/ops/special_laguerre_polynomial_l.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5456870Z copying torch/include/ATen/ops/mv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5458040Z copying torch/include/ATen/ops/logit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5459200Z copying torch/include/ATen/ops/min_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5460530Z copying torch/include/ATen/ops/isnan_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5461720Z copying torch/include/ATen/ops/_unique2_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5487650Z copying torch/include/ATen/ops/_mkldnn_reshape_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5488630Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5489840Z copying torch/include/ATen/ops/_pack_padded_sequence_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5491200Z copying torch/include/ATen/ops/upsample_trilinear3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5492330Z copying torch/include/ATen/ops/normal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5493860Z copying torch/include/ATen/ops/col_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5495160Z copying torch/include/ATen/ops/cumprod_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5496390Z copying torch/include/ATen/ops/smm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5497640Z copying torch/include/ATen/ops/_transformer_encoder_layer_fwd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5499270Z copying torch/include/ATen/ops/less_equal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5500210Z copying torch/include/ATen/ops/new_ones_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5501530Z copying torch/include/ATen/ops/nonzero_static_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5502740Z copying torch/include/ATen/ops/sinc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5504160Z copying torch/include/ATen/ops/binary_cross_entropy_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5505560Z copying torch/include/ATen/ops/rename_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5506840Z copying torch/include/ATen/ops/expand_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5508080Z copying torch/include/ATen/ops/complex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5509400Z copying torch/include/ATen/ops/_weight_norm_interface_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5510800Z copying torch/include/ATen/ops/cross_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5512060Z copying torch/include/ATen/ops/adaptive_avg_pool2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5513240Z copying torch/include/ATen/ops/isin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5514600Z copying torch/include/ATen/ops/special_i1_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5515810Z copying torch/include/ATen/ops/pinverse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5517060Z copying torch/include/ATen/ops/_foreach_atan_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5518390Z copying torch/include/ATen/ops/swapaxes_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5519660Z copying torch/include/ATen/ops/lstm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5520920Z copying torch/include/ATen/ops/_mps_convolution_transpose_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5522140Z copying torch/include/ATen/ops/xlogy_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5523380Z copying torch/include/ATen/ops/expm1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5524720Z copying torch/include/ATen/ops/dist_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5526130Z copying torch/include/ATen/ops/to_dense_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5527250Z copying torch/include/ATen/ops/maximum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5528600Z copying torch/include/ATen/ops/remainder_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5529820Z copying torch/include/ATen/ops/ones.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5531340Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5532390Z copying torch/include/ATen/ops/_foreach_maximum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5533610Z copying torch/include/ATen/ops/slow_conv3d_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5534870Z copying torch/include/ATen/ops/aminmax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5536160Z copying torch/include/ATen/ops/special_modified_bessel_i1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5537550Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5538720Z copying torch/include/ATen/ops/mse_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5539940Z copying torch/include/ATen/ops/_cummax_helper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5541150Z copying torch/include/ATen/ops/pad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5542430Z copying torch/include/ATen/ops/linalg_cross_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5543730Z copying torch/include/ATen/ops/_resize_output_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5545150Z copying torch/include/ATen/ops/gru_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5546380Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5547570Z copying torch/include/ATen/ops/std_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5548900Z copying torch/include/ATen/ops/round_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5550220Z copying torch/include/ATen/ops/_to_cpu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5551470Z copying torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5663160Z copying torch/include/ATen/ops/fft_irfft2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5669580Z copying torch/include/ATen/ops/block_diag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5670620Z copying torch/include/ATen/ops/_nested_get_offsets.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5672050Z copying torch/include/ATen/ops/logaddexp_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5673190Z copying torch/include/ATen/ops/atanh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5674500Z copying torch/include/ATen/ops/scatter_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5675730Z copying torch/include/ATen/ops/to_sparse_bsc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5677230Z copying torch/include/ATen/ops/exponential_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5678470Z copying torch/include/ATen/ops/miopen_depthwise_convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5679860Z copying torch/include/ATen/ops/gather_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5681120Z copying torch/include/ATen/ops/_values_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5682270Z copying torch/include/ATen/ops/geqrf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5683640Z copying torch/include/ATen/ops/_pdist_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5684890Z copying torch/include/ATen/ops/bitwise_xor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5686410Z copying torch/include/ATen/ops/_empty_per_channel_affine_quantized_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5687790Z copying torch/include/ATen/ops/select_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5688920Z copying torch/include/ATen/ops/_aminmax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5690310Z copying torch/include/ATen/ops/native_layer_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5691530Z copying torch/include/ATen/ops/sym_constrain_range_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5692910Z copying torch/include/ATen/ops/rad2deg_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5694230Z copying torch/include/ATen/ops/frexp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5695450Z copying torch/include/ATen/ops/_foreach_log1p_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5697020Z copying torch/include/ATen/ops/special_gammaincc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5698050Z copying torch/include/ATen/ops/linalg_vander_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5699430Z copying torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5700770Z copying torch/include/ATen/ops/view_as_real_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5702010Z copying torch/include/ATen/ops/split_with_sizes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5703370Z copying torch/include/ATen/ops/selu_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5704570Z copying torch/include/ATen/ops/special_i1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5705910Z copying torch/include/ATen/ops/sum_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5707180Z copying torch/include/ATen/ops/vdot_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5708540Z copying torch/include/ATen/ops/special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5709690Z copying torch/include/ATen/ops/pinverse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5711100Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5712380Z copying torch/include/ATen/ops/reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5713550Z copying torch/include/ATen/ops/add.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5714950Z copying torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5716210Z copying torch/include/ATen/ops/_cummax_helper_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5717510Z copying torch/include/ATen/ops/rand_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5718830Z copying torch/include/ATen/ops/flatten_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5720040Z copying torch/include/ATen/ops/eq_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5721370Z copying torch/include/ATen/ops/_batch_norm_impl_index_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5722630Z copying torch/include/ATen/ops/less_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5723850Z copying torch/include/ATen/ops/cholesky_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5725320Z copying torch/include/ATen/ops/upsample_nearest1d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5726490Z copying torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5727630Z copying torch/include/ATen/ops/sort_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5728980Z copying torch/include/ATen/ops/avg_pool2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5832290Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5833300Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5834540Z copying torch/include/ATen/ops/upsample_nearest3d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5836260Z copying torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5837070Z copying torch/include/ATen/ops/reflection_pad1d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5838380Z copying torch/include/ATen/ops/true_divide_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5839550Z copying torch/include/ATen/ops/max_pool1d_with_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5840780Z copying torch/include/ATen/ops/special_erf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5841970Z copying torch/include/ATen/ops/avg_pool3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5843160Z copying torch/include/ATen/ops/upsample_nearest1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5844460Z copying torch/include/ATen/ops/sin_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5845680Z copying torch/include/ATen/ops/sum_to_size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5847000Z copying torch/include/ATen/ops/slice_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5848250Z copying torch/include/ATen/ops/gather_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5849470Z copying torch/include/ATen/ops/special_hermite_polynomial_he_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5850670Z copying torch/include/ATen/ops/gradient_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5851870Z copying torch/include/ATen/ops/_cslt_compress.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5853120Z copying torch/include/ATen/ops/_copy_from_and_resize_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5854370Z copying torch/include/ATen/ops/fractional_max_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5855650Z copying torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5856810Z copying torch/include/ATen/ops/_test_optional_intlist_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5858000Z copying torch/include/ATen/ops/log_normal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5859300Z copying torch/include/ATen/ops/hypot_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5860480Z copying torch/include/ATen/ops/hypot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5861630Z copying torch/include/ATen/ops/nll_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5862830Z copying torch/include/ATen/ops/_nested_tensor_size_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5864090Z copying torch/include/ATen/ops/reflection_pad3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5865350Z copying torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5866570Z copying torch/include/ATen/ops/linalg_qr_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5867920Z copying torch/include/ATen/ops/masked_scatter_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5869240Z copying torch/include/ATen/ops/isclose_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5870580Z copying torch/include/ATen/ops/sqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5871750Z copying torch/include/ATen/ops/_unique2_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5873120Z copying torch/include/ATen/ops/hypot_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5874390Z copying torch/include/ATen/ops/requires_grad_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5875710Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5958900Z copying torch/include/ATen/ops/linalg_cross_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5959880Z copying torch/include/ATen/ops/special_bessel_j0_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5961100Z copying torch/include/ATen/ops/rsub_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5962400Z copying torch/include/ATen/ops/sort_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5972790Z copying torch/include/ATen/ops/sparse_resize_and_clear_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5973690Z copying torch/include/ATen/ops/_grouped_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5988840Z copying torch/include/ATen/ops/put_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5989830Z copying torch/include/ATen/ops/eq_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5991150Z copying torch/include/ATen/ops/native_layer_norm_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5992360Z copying torch/include/ATen/ops/_scaled_dot_product_attention_math_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5993890Z copying torch/include/ATen/ops/_foreach_floor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5995300Z copying torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5996560Z copying torch/include/ATen/ops/signbit_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5997890Z copying torch/include/ATen/ops/erfinv_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.5999080Z copying torch/include/ATen/ops/diag_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6000450Z copying torch/include/ATen/ops/_functional_sym_constrain_range_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6001650Z copying torch/include/ATen/ops/native_layer_norm_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6002910Z copying torch/include/ATen/ops/_logcumsumexp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6004080Z copying torch/include/ATen/ops/fractional_max_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6032880Z copying torch/include/ATen/ops/logical_or.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6033870Z copying torch/include/ATen/ops/prod_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6035070Z copying torch/include/ATen/ops/_foreach_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6036270Z copying torch/include/ATen/ops/_pdist_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6037480Z copying torch/include/ATen/ops/empty_permuted_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6038700Z copying torch/include/ATen/ops/topk_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6058550Z copying torch/include/ATen/ops/zeros_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6064610Z copying torch/include/ATen/ops/linalg_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6065490Z copying torch/include/ATen/ops/bincount_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6066820Z copying torch/include/ATen/ops/set_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6074880Z copying torch/include/ATen/ops/i0_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6075760Z copying torch/include/ATen/ops/linalg_cholesky_ex_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6076950Z copying torch/include/ATen/ops/asinh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6078280Z copying torch/include/ATen/ops/not_equal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6079410Z copying torch/include/ATen/ops/resize_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6080620Z copying torch/include/ATen/ops/logcumsumexp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6081760Z copying torch/include/ATen/ops/ravel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6083120Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6084340Z copying torch/include/ATen/ops/bitwise_and_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6085680Z copying torch/include/ATen/ops/_embedding_bag_sparse_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6086870Z copying torch/include/ATen/ops/_index_put_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6088160Z copying torch/include/ATen/ops/isin_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6089610Z copying torch/include/ATen/ops/_foreach_expm1_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6090720Z copying torch/include/ATen/ops/_cast_Short.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6092030Z copying torch/include/ATen/ops/_sparse_broadcast_to_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6093310Z copying torch/include/ATen/ops/select_scatter_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6131800Z copying torch/include/ATen/ops/fmod_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6132880Z copying torch/include/ATen/ops/masked_scatter_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6141950Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6147940Z copying torch/include/ATen/ops/hardtanh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6155470Z copying torch/include/ATen/ops/lshift_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6161690Z copying torch/include/ATen/ops/index_reduce_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6162690Z copying torch/include/ATen/ops/_linalg_solve_ex_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6164100Z copying torch/include/ATen/ops/_native_multi_head_attention_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6165360Z copying torch/include/ATen/ops/std_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6166610Z copying torch/include/ATen/ops/vsplit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6168150Z copying torch/include/ATen/ops/_add_relu_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6169470Z copying torch/include/ATen/ops/_foreach_tan_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6170640Z copying torch/include/ATen/ops/linalg_lu_solve_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6171900Z copying torch/include/ATen/ops/_sparse_csr_sum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6173230Z copying torch/include/ATen/ops/view_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6174410Z copying torch/include/ATen/ops/ccol_indices_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6175790Z copying torch/include/ATen/ops/resize_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6212050Z copying torch/include/ATen/ops/max_pool2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6212970Z copying torch/include/ATen/ops/constant_pad_nd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6214250Z copying torch/include/ATen/ops/sparse_mask_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6215450Z copying torch/include/ATen/ops/silu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6216660Z copying torch/include/ATen/ops/choose_qparams_optimized_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6217820Z copying torch/include/ATen/ops/log_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6219310Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6220560Z copying torch/include/ATen/ops/_foreach_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6221760Z copying torch/include/ATen/ops/_version_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6223050Z copying torch/include/ATen/ops/_pdist_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6224440Z copying torch/include/ATen/ops/mse_loss_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6225450Z copying torch/include/ATen/ops/corrcoef_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6226690Z copying torch/include/ATen/ops/_neg_view_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6227840Z copying torch/include/ATen/ops/_to_sparse_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6229010Z copying torch/include/ATen/ops/sin_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6230230Z copying torch/include/ATen/ops/_cast_Half_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6231540Z copying torch/include/ATen/ops/resize_as_sparse_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6232840Z copying torch/include/ATen/ops/_unpack_dual_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6233970Z copying torch/include/ATen/ops/glu_backward_jvp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6235170Z copying torch/include/ATen/ops/hardswish_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6236380Z copying torch/include/ATen/ops/_jagged_to_padded_dense_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6237800Z copying torch/include/ATen/ops/_foreach_sinh_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6238910Z copying torch/include/ATen/ops/_foreach_sub_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6240120Z copying torch/include/ATen/ops/_flash_attention_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6241500Z copying torch/include/ATen/ops/is_signed_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6242630Z copying torch/include/ATen/ops/grid_sampler_3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6243980Z copying torch/include/ATen/ops/hardsigmoid_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6245120Z copying torch/include/ATen/ops/linalg_matmul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6246330Z copying torch/include/ATen/ops/_to_sparse_bsr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6247700Z copying torch/include/ATen/ops/int_repr_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6248790Z copying torch/include/ATen/ops/_pad_circular.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6250070Z copying torch/include/ATen/ops/embedding_dense_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6251320Z copying torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6252520Z copying torch/include/ATen/ops/_foreach_div.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6253800Z copying torch/include/ATen/ops/fft_hfft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6255020Z copying torch/include/ATen/ops/native_batch_norm_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6256220Z copying torch/include/ATen/ops/to_sparse_bsr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6257450Z copying torch/include/ATen/ops/bmm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6258660Z copying torch/include/ATen/ops/conv3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6259880Z copying torch/include/ATen/ops/addcdiv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6261140Z copying torch/include/ATen/ops/add_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6262440Z copying torch/include/ATen/ops/multi_margin_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6263900Z copying torch/include/ATen/ops/bitwise_xor_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6265020Z copying torch/include/ATen/ops/exp2_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6266290Z copying torch/include/ATen/ops/_nested_from_padded.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6267530Z copying torch/include/ATen/ops/sparse_bsr_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6268860Z copying torch/include/ATen/ops/combinations_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6270080Z copying torch/include/ATen/ops/fmod_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6271330Z copying torch/include/ATen/ops/broadcast_to.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6272600Z copying torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6273880Z copying torch/include/ATen/ops/hardswish_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6275170Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6276410Z copying torch/include/ATen/ops/_amp_update_scale_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6277640Z copying torch/include/ATen/ops/linalg_lu_solve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6278960Z copying torch/include/ATen/ops/bitwise_or_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6396680Z copying torch/include/ATen/ops/special_i0e_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6397750Z copying torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6398990Z copying torch/include/ATen/ops/ldexp_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6400250Z copying torch/include/ATen/ops/vdot_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6401510Z copying torch/include/ATen/ops/_conj_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6402670Z copying torch/include/ATen/ops/gt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6404050Z copying torch/include/ATen/ops/diag_embed.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6405330Z copying torch/include/ATen/ops/sqrt_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6407310Z copying torch/include/ATen/ops/nan_to_num_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6407970Z copying torch/include/ATen/ops/conv2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6409130Z copying torch/include/ATen/ops/_batch_norm_with_update.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6410270Z copying torch/include/ATen/ops/_foreach_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6411690Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6412860Z copying torch/include/ATen/ops/hardshrink_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6414060Z copying torch/include/ATen/ops/heaviside_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6415230Z copying torch/include/ATen/ops/pdist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6416610Z copying torch/include/ATen/ops/fbgemm_pack_quantized_matrix_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6417800Z copying torch/include/ATen/ops/cholesky_solve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6419210Z copying torch/include/ATen/ops/is_signed.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6420350Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6421520Z copying torch/include/ATen/ops/ne_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6422830Z copying torch/include/ATen/ops/index_reduce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6423940Z copying torch/include/ATen/ops/logit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6425150Z copying torch/include/ATen/ops/linalg_multi_dot_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6426620Z copying torch/include/ATen/ops/_transformer_encoder_layer_fwd_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6427680Z copying torch/include/ATen/ops/linalg_eig_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6429420Z copying torch/include/ATen/ops/special_i1e_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6430350Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6431600Z copying torch/include/ATen/ops/_conj_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6432860Z copying torch/include/ATen/ops/randperm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6434090Z copying torch/include/ATen/ops/blackman_window_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6435450Z copying torch/include/ATen/ops/_fused_adamw_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6436580Z copying torch/include/ATen/ops/rand_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6437940Z copying torch/include/ATen/ops/upsample_nearest1d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6439130Z copying torch/include/ATen/ops/_foreach_cosh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6440540Z copying torch/include/ATen/ops/remainder_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6441630Z copying torch/include/ATen/ops/rename_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6442990Z copying torch/include/ATen/ops/unfold_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6444290Z copying torch/include/ATen/ops/avg_pool2d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6445360Z copying torch/include/ATen/ops/bitwise_right_shift_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6446730Z copying torch/include/ATen/ops/upsample_nearest1d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6448060Z copying torch/include/ATen/ops/index_put_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6449120Z copying torch/include/ATen/ops/_is_zerotensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6450460Z copying torch/include/ATen/ops/exp_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6451630Z copying torch/include/ATen/ops/multilabel_margin_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6453220Z copying torch/include/ATen/ops/_test_check_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6458910Z copying torch/include/ATen/ops/embedding_dense_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6459610Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6460250Z copying torch/include/ATen/ops/_cast_Float.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6460790Z copying torch/include/ATen/ops/_neg_view_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6461370Z copying torch/include/ATen/ops/acosh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6574610Z copying torch/include/ATen/ops/grid_sampler_3d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6575770Z copying torch/include/ATen/ops/_assert_tensor_metadata_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6577200Z copying torch/include/ATen/ops/sigmoid_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6578530Z copying torch/include/ATen/ops/norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6579930Z copying torch/include/ATen/ops/index_fill_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6581000Z copying torch/include/ATen/ops/pad_sequence_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6582280Z copying torch/include/ATen/ops/unsafe_split_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6603570Z copying torch/include/ATen/ops/upsample_linear1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6604490Z copying torch/include/ATen/ops/mish_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6612290Z copying torch/include/ATen/ops/miopen_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6613490Z copying torch/include/ATen/ops/nonzero_numpy_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6622660Z copying torch/include/ATen/ops/addmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6629340Z copying torch/include/ATen/ops/_validate_sparse_coo_tensor_args_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6630580Z copying torch/include/ATen/ops/_convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6631750Z copying torch/include/ATen/ops/atan2_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6632980Z copying torch/include/ATen/ops/bucketize_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6634420Z copying torch/include/ATen/ops/native_layer_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6635510Z copying torch/include/ATen/ops/tan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6636890Z copying torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6638300Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6639540Z copying torch/include/ATen/ops/ge_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6640770Z copying torch/include/ATen/ops/_logcumsumexp_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6641960Z copying torch/include/ATen/ops/hardsigmoid_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6643180Z copying torch/include/ATen/ops/lu_solve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6644540Z copying torch/include/ATen/ops/conv_tbc_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6645970Z copying torch/include/ATen/ops/_log_softmax_backward_data_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6647120Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6648610Z copying torch/include/ATen/ops/_sobol_engine_draw_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6649750Z copying torch/include/ATen/ops/hardtanh_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6651080Z copying torch/include/ATen/ops/bitwise_and_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6652330Z copying torch/include/ATen/ops/masked_select_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6653600Z copying torch/include/ATen/ops/lerp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6655310Z copying torch/include/ATen/ops/matrix_exp_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6656230Z copying torch/include/ATen/ops/special_erfc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6657400Z copying torch/include/ATen/ops/cosh_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6658650Z copying torch/include/ATen/ops/linalg_cross_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6659910Z copying torch/include/ATen/ops/index_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6661220Z copying torch/include/ATen/ops/linalg_multi_dot_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6662990Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6663940Z copying torch/include/ATen/ops/_cslt_sparse_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6665190Z copying torch/include/ATen/ops/adaptive_max_pool3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6666450Z copying torch/include/ATen/ops/index_add.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6667810Z copying torch/include/ATen/ops/lt_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6669160Z copying torch/include/ATen/ops/max_pool2d_with_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6670270Z copying torch/include/ATen/ops/nonzero_static_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6671550Z copying torch/include/ATen/ops/exponential_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6750760Z copying torch/include/ATen/ops/round_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6751790Z copying torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6753040Z copying torch/include/ATen/ops/mkldnn_max_pool2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6754410Z copying torch/include/ATen/ops/nll_loss_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6755630Z copying torch/include/ATen/ops/cummin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6756860Z copying torch/include/ATen/ops/quantize_per_channel_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6758140Z copying torch/include/ATen/ops/cauchy_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6759340Z copying torch/include/ATen/ops/rsqrt_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6760590Z copying torch/include/ATen/ops/linspace_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6762010Z copying torch/include/ATen/ops/max_pool3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6763410Z copying torch/include/ATen/ops/special_modified_bessel_i1_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6764420Z copying torch/include/ATen/ops/frac_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6765910Z copying torch/include/ATen/ops/fft_fftfreq_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6767130Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6768380Z copying torch/include/ATen/ops/select_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6769880Z copying torch/include/ATen/ops/_nested_sum_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6771010Z copying torch/include/ATen/ops/_foreach_log_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6772300Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6773590Z copying torch/include/ATen/ops/logical_not_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6774840Z copying torch/include/ATen/ops/lift_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6776100Z copying torch/include/ATen/ops/inner_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6777370Z copying torch/include/ATen/ops/_triton_scaled_dot_attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6778650Z copying torch/include/ATen/ops/is_coalesced.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6779910Z copying torch/include/ATen/ops/native_group_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6781250Z copying torch/include/ATen/ops/native_dropout_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6782460Z copying torch/include/ATen/ops/fft_fftfreq_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6783770Z copying torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6785040Z copying torch/include/ATen/ops/max_pool2d_with_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6786310Z copying torch/include/ATen/ops/_standard_gamma_grad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6787580Z copying torch/include/ATen/ops/linalg_inv_ex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6788920Z copying torch/include/ATen/ops/quantize_per_tensor_dynamic_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6790300Z copying torch/include/ATen/ops/_sparse_semi_structured_addmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6791580Z copying torch/include/ATen/ops/sum_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6792790Z copying torch/include/ATen/ops/hinge_embedding_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6793980Z copying torch/include/ATen/ops/nanmedian_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6795270Z copying torch/include/ATen/ops/dot_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6796600Z copying torch/include/ATen/ops/new_empty_strided_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6797740Z copying torch/include/ATen/ops/stack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6799040Z copying torch/include/ATen/ops/fbgemm_linear_quantize_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6800310Z copying torch/include/ATen/ops/smooth_l1_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6801730Z copying torch/include/ATen/ops/_sobol_engine_initialize_state_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6889220Z copying torch/include/ATen/ops/scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6890790Z copying torch/include/ATen/ops/smm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6892290Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6894190Z copying torch/include/ATen/ops/_cslt_sparse_mm_search_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6895050Z copying torch/include/ATen/ops/sym_stride_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6896430Z copying torch/include/ATen/ops/index_put_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6897770Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6899640Z copying torch/include/ATen/ops/glu_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6900500Z copying torch/include/ATen/ops/view_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6901940Z copying torch/include/ATen/ops/_foreach_sign_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6903310Z copying torch/include/ATen/ops/index_add_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6904640Z copying torch/include/ATen/ops/native_layer_norm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6906060Z copying torch/include/ATen/ops/to_padded_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6907320Z copying torch/include/ATen/ops/is_set_to_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6908790Z copying torch/include/ATen/ops/_linalg_slogdet_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6910050Z copying torch/include/ATen/ops/_sparse_semi_structured_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6911320Z copying torch/include/ATen/ops/concatenate.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6912570Z copying torch/include/ATen/ops/logaddexp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6913960Z copying torch/include/ATen/ops/batch_norm_backward_reduce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6915140Z copying torch/include/ATen/ops/_linalg_eigvals.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6916520Z copying torch/include/ATen/ops/qscheme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6917930Z copying torch/include/ATen/ops/silu_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6919210Z copying torch/include/ATen/ops/movedim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6920540Z copying torch/include/ATen/ops/t_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6921850Z copying torch/include/ATen/ops/lu_unpack_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6923260Z copying torch/include/ATen/ops/thnn_conv2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6924770Z copying torch/include/ATen/ops/_functional_assert_scalar_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6926070Z copying torch/include/ATen/ops/lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6927280Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6928760Z copying torch/include/ATen/ops/sparse_sampled_addmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6929950Z copying torch/include/ATen/ops/igammac_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6931240Z copying torch/include/ATen/ops/positive_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6932510Z copying torch/include/ATen/ops/quantized_max_pool1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6933880Z copying torch/include/ATen/ops/special_airy_ai_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6935270Z copying torch/include/ATen/ops/addcdiv_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6936570Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6937830Z copying torch/include/ATen/ops/_nested_get_max_seqlen_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6939230Z copying torch/include/ATen/ops/reflection_pad1d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6940470Z copying torch/include/ATen/ops/addcdiv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6941640Z copying torch/include/ATen/ops/rsqrt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6943110Z copying torch/include/ATen/ops/special_spherical_bessel_j0_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6944390Z copying torch/include/ATen/ops/_foreach_lgamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6945670Z copying torch/include/ATen/ops/argmax_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6946980Z copying torch/include/ATen/ops/_functional_sym_constrain_range_for_size_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6948400Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6949700Z copying torch/include/ATen/ops/erfc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6950960Z copying torch/include/ATen/ops/_foreach_sin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6952350Z copying torch/include/ATen/ops/threshold_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6953730Z copying torch/include/ATen/ops/svd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6954900Z copying torch/include/ATen/ops/addmm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6956190Z copying torch/include/ATen/ops/lift_fresh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6957490Z copying torch/include/ATen/ops/_foreach_zero_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6958820Z copying torch/include/ATen/ops/flatten_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.6960060Z copying torch/include/ATen/ops/linalg_lu_factor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7079070Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7080060Z copying torch/include/ATen/ops/where_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7081390Z copying torch/include/ATen/ops/slice_inverse_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7082820Z copying torch/include/ATen/ops/special_airy_ai_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7083940Z copying torch/include/ATen/ops/_pad_enum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7085370Z copying torch/include/ATen/ops/cosine_embedding_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7086660Z copying torch/include/ATen/ops/_fft_c2r_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7087990Z copying torch/include/ATen/ops/from_file.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7089090Z copying torch/include/ATen/ops/row_stack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7090280Z copying torch/include/ATen/ops/clamp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7091630Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k1_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7092860Z copying torch/include/ATen/ops/celu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7094070Z copying torch/include/ATen/ops/matrix_exp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7095270Z copying torch/include/ATen/ops/special_logit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7096580Z copying torch/include/ATen/ops/special_erf_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7097760Z copying torch/include/ATen/ops/lstm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7099010Z copying torch/include/ATen/ops/atan2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7100290Z copying torch/include/ATen/ops/cummaxmin_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7101600Z copying torch/include/ATen/ops/_functional_sym_constrain_range.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7102940Z copying torch/include/ATen/ops/clamp_min_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7104270Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7154220Z copying torch/include/ATen/ops/linalg_inv_ex_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7155180Z copying torch/include/ATen/ops/zero_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7156540Z copying torch/include/ATen/ops/_test_optional_floatlist_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7157730Z copying torch/include/ATen/ops/row_stack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7159030Z copying torch/include/ATen/ops/slow_conv_transpose3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7171290Z copying torch/include/ATen/ops/miopen_convolution_add_relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7172440Z copying torch/include/ATen/ops/max_pool2d_with_indices_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7184460Z copying torch/include/ATen/ops/real.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7185520Z copying torch/include/ATen/ops/replication_pad1d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7186830Z copying torch/include/ATen/ops/pairwise_distance_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7198060Z copying torch/include/ATen/ops/_to_sparse_csr_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7199280Z copying torch/include/ATen/ops/nll_loss2d_forward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7200580Z copying torch/include/ATen/ops/_make_dual.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7201750Z copying torch/include/ATen/ops/_make_dual_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7203190Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7204600Z copying torch/include/ATen/ops/renorm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7205810Z copying torch/include/ATen/ops/relu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7207160Z copying torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7208580Z copying torch/include/ATen/ops/linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7209680Z copying torch/include/ATen/ops/avg_pool2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7240370Z copying torch/include/ATen/ops/_foreach_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7241480Z copying torch/include/ATen/ops/as_strided_scatter_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7242800Z copying torch/include/ATen/ops/_foreach_mul_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7243950Z copying torch/include/ATen/ops/ceil.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7245320Z copying torch/include/ATen/ops/sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7246730Z copying torch/include/ATen/ops/align_to_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7247920Z copying torch/include/ATen/ops/sqrt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7249210Z copying torch/include/ATen/ops/is_pinned_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7250420Z copying torch/include/ATen/ops/min_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7251910Z copying torch/include/ATen/ops/set_data_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7253140Z copying torch/include/ATen/ops/log_normal_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7275230Z copying torch/include/ATen/ops/_nnpack_available_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7276080Z copying torch/include/ATen/ops/bitwise_right_shift.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7277530Z copying torch/include/ATen/ops/threshold_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7278810Z copying torch/include/ATen/ops/take_along_dim_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7280240Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7281450Z copying torch/include/ATen/ops/_autocast_to_full_precision.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7282850Z copying torch/include/ATen/ops/is_distributed_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7284140Z copying torch/include/ATen/ops/_nested_get_min_seqlen.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7285260Z copying torch/include/ATen/ops/remainder_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7286600Z copying torch/include/ATen/ops/linalg_det_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7288030Z copying torch/include/ATen/ops/_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7289350Z copying torch/include/ATen/ops/_pad_packed_sequence_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7290640Z copying torch/include/ATen/ops/max_pool1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7291990Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7293270Z copying torch/include/ATen/ops/randint_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7294770Z copying torch/include/ATen/ops/quantile_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7296070Z copying torch/include/ATen/ops/nested_to_padded_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7297510Z copying torch/include/ATen/ops/unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7298670Z copying torch/include/ATen/ops/resize_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7300020Z copying torch/include/ATen/ops/_linalg_svd_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7301220Z copying torch/include/ATen/ops/isclose_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7302430Z copying torch/include/ATen/ops/resize_as_sparse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7303710Z copying torch/include/ATen/ops/view_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7304950Z copying torch/include/ATen/ops/replication_pad1d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7306260Z copying torch/include/ATen/ops/_scaled_dot_product_attention_math_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7307600Z copying torch/include/ATen/ops/triu_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7309000Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7310270Z copying torch/include/ATen/ops/_scaled_grouped_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7311450Z copying torch/include/ATen/ops/mish_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7312730Z copying torch/include/ATen/ops/atleast_2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7313980Z copying torch/include/ATen/ops/_nested_get_lengths.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7315280Z copying torch/include/ATen/ops/special_hermite_polynomial_h_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7316580Z copying torch/include/ATen/ops/renorm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7318020Z copying torch/include/ATen/ops/native_group_norm_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7319440Z copying torch/include/ATen/ops/split_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7320870Z copying torch/include/ATen/ops/baddbmm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7322170Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7323450Z copying torch/include/ATen/ops/take_along_dim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7324660Z copying torch/include/ATen/ops/_reshape_from_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7326040Z copying torch/include/ATen/ops/hsplit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7327310Z copying torch/include/ATen/ops/gather_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7328760Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7330040Z copying torch/include/ATen/ops/threshold_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7331350Z copying torch/include/ATen/ops/t_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7422340Z copying torch/include/ATen/ops/triu_indices_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7423590Z copying torch/include/ATen/ops/replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7424690Z copying torch/include/ATen/ops/absolute_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7425930Z copying torch/include/ATen/ops/isnan_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7427250Z copying torch/include/ATen/ops/fft_hfft2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7428560Z copying torch/include/ATen/ops/upsample_nearest3d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7429910Z copying torch/include/ATen/ops/atanh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7431230Z copying torch/include/ATen/ops/special_hermite_polynomial_he_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7432640Z copying torch/include/ATen/ops/matrix_H_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7433860Z copying torch/include/ATen/ops/fill_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7435270Z copying torch/include/ATen/ops/_foreach_cosh_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7436590Z copying torch/include/ATen/ops/batch_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7437990Z copying torch/include/ATen/ops/sparse_csr_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7439240Z copying torch/include/ATen/ops/sparse_mask_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7440660Z copying torch/include/ATen/ops/split_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7441920Z copying torch/include/ATen/ops/batch_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7443080Z copying torch/include/ATen/ops/rsub_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7444450Z copying torch/include/ATen/ops/cudnn_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7445690Z copying torch/include/ATen/ops/sinc_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7447040Z copying torch/include/ATen/ops/miopen_depthwise_convolution_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7448350Z copying torch/include/ATen/ops/mean_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7449570Z copying torch/include/ATen/ops/_transform_bias_rescale_qkv_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7507030Z copying torch/include/ATen/ops/_nested_from_padded_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7508050Z copying torch/include/ATen/ops/randint_like_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7509470Z copying torch/include/ATen/ops/q_per_channel_scales_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7510640Z copying torch/include/ATen/ops/embedding_dense_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7511980Z copying torch/include/ATen/ops/view_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7513810Z copying torch/include/ATen/ops/abs.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7514500Z copying torch/include/ATen/ops/isin_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7515810Z copying torch/include/ATen/ops/huber_loss_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7517140Z copying torch/include/ATen/ops/retain_grad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7518360Z copying torch/include/ATen/ops/sparse_resize_and_clear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7519580Z copying torch/include/ATen/ops/kron_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7520850Z copying torch/include/ATen/ops/log1p_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7522150Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7555050Z copying torch/include/ATen/ops/_batch_norm_no_update_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7556070Z copying torch/include/ATen/ops/bucketize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7557420Z copying torch/include/ATen/ops/detach_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7570590Z copying torch/include/ATen/ops/logaddexp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7571510Z copying torch/include/ATen/ops/gather_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7573010Z copying torch/include/ATen/ops/affine_grid_generator_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7579370Z copying torch/include/ATen/ops/embedding_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7580150Z copying torch/include/ATen/ops/linalg_lstsq_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7580790Z copying torch/include/ATen/ops/clip_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7581360Z copying torch/include/ATen/ops/bernoulli_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7581970Z copying torch/include/ATen/ops/_local_scalar_dense_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7605560Z copying torch/include/ATen/ops/_cslt_sparse_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7606580Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7607980Z copying torch/include/ATen/ops/_sobol_engine_ff_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7609360Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7610590Z copying torch/include/ATen/ops/max_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7611940Z copying torch/include/ATen/ops/quantize_per_channel_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7613220Z copying torch/include/ATen/ops/special_erf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7614680Z copying torch/include/ATen/ops/vander_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7615960Z copying torch/include/ATen/ops/_validate_compressed_sparse_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7617230Z copying torch/include/ATen/ops/pow_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7618570Z copying torch/include/ATen/ops/_cast_Double.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7619840Z copying torch/include/ATen/ops/frobenius_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7621120Z copying torch/include/ATen/ops/sinc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7622350Z copying torch/include/ATen/ops/softplus.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7623750Z copying torch/include/ATen/ops/_foreach_pow_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7625000Z copying torch/include/ATen/ops/fractional_max_pool3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7626310Z copying torch/include/ATen/ops/kthvalue_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7627850Z copying torch/include/ATen/ops/_is_any_true.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7629080Z copying torch/include/ATen/ops/reshape_as_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7630410Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7631570Z copying torch/include/ATen/ops/special_bessel_y0_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7633000Z copying torch/include/ATen/ops/crow_indices_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7634200Z copying torch/include/ATen/ops/_weight_int8pack_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7635500Z copying torch/include/ATen/ops/uniform_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7636730Z copying torch/include/ATen/ops/_embedding_bag_dense_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7638260Z copying torch/include/ATen/ops/_cudnn_attention_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7639710Z copying torch/include/ATen/ops/to_sparse_csc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7640740Z copying torch/include/ATen/ops/reshape_as_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7642100Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7643390Z copying torch/include/ATen/ops/replication_pad1d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7644670Z copying torch/include/ATen/ops/adaptive_avg_pool3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7645880Z copying torch/include/ATen/ops/_safe_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7647230Z copying torch/include/ATen/ops/matrix_exp_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7648640Z copying torch/include/ATen/ops/asinh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7649760Z copying torch/include/ATen/ops/cudnn_batch_norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7651080Z copying torch/include/ATen/ops/_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7652250Z copying torch/include/ATen/ops/set_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7653420Z copying torch/include/ATen/ops/numpy_T.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7654880Z copying torch/include/ATen/ops/_efficientzerotensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7656080Z copying torch/include/ATen/ops/miopen_batch_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7657380Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7658810Z copying torch/include/ATen/ops/fractional_max_pool2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7659990Z copying torch/include/ATen/ops/float_power.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7661370Z copying torch/include/ATen/ops/narrow_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7662760Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7664150Z copying torch/include/ATen/ops/unique_consecutive_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7665310Z copying torch/include/ATen/ops/rot90.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7666640Z copying torch/include/ATen/ops/t.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7667920Z copying torch/include/ATen/ops/batch_norm_stats_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7669170Z copying torch/include/ATen/ops/squeeze_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7670370Z copying torch/include/ATen/ops/clamp_min_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7671730Z copying torch/include/ATen/ops/greater.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7672980Z copying torch/include/ATen/ops/swapaxes_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7674400Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7787100Z copying torch/include/ATen/ops/avg_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7788170Z copying torch/include/ATen/ops/_foreach_clamp_min_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7789490Z copying torch/include/ATen/ops/_cudnn_attention_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7790690Z copying torch/include/ATen/ops/_foreach_sign.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7791940Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7793230Z copying torch/include/ATen/ops/_linalg_svd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7794480Z copying torch/include/ATen/ops/from_blob.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7795700Z copying torch/include/ATen/ops/repeat_interleave_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7796920Z copying torch/include/ATen/ops/linalg_ldl_factor_ex_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7798180Z copying torch/include/ATen/ops/exp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7799370Z copying torch/include/ATen/ops/index_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7800580Z copying torch/include/ATen/ops/special_bessel_y0_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7801880Z copying torch/include/ATen/ops/linspace_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7803230Z copying torch/include/ATen/ops/reshape_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7804420Z copying torch/include/ATen/ops/special_ndtri_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7805720Z copying torch/include/ATen/ops/unsqueeze_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7806870Z copying torch/include/ATen/ops/put_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7808290Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7809450Z copying torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7810790Z copying torch/include/ATen/ops/linalg_lu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7812030Z copying torch/include/ATen/ops/lift_fresh_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7813230Z copying torch/include/ATen/ops/log1p_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7814470Z copying torch/include/ATen/ops/_to_sparse_bsr_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7815810Z copying torch/include/ATen/ops/tril_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7817210Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7818520Z copying torch/include/ATen/ops/det_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7876610Z copying torch/include/ATen/ops/_compute_linear_combination_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7878090Z copying torch/include/ATen/ops/poisson_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7878820Z copying torch/include/ATen/ops/put.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7880030Z copying torch/include/ATen/ops/special_airy_ai_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7881310Z copying torch/include/ATen/ops/retain_grad_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7882560Z copying torch/include/ATen/ops/reflection_pad1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7901410Z copying torch/include/ATen/ops/eq_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7902290Z copying torch/include/ATen/ops/_sparse_mm_reduce_impl_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7903510Z copying torch/include/ATen/ops/im2col_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7914620Z copying torch/include/ATen/ops/special_modified_bessel_i1_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7915510Z copying torch/include/ATen/ops/cumprod_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7916760Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7917980Z copying torch/include/ATen/ops/fill_diagonal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7919240Z copying torch/include/ATen/ops/lgamma_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7920410Z copying torch/include/ATen/ops/equal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7921590Z copying torch/include/ATen/ops/linalg_eigvals_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7922930Z copying torch/include/ATen/ops/_flash_attention_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7924150Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7925450Z copying torch/include/ATen/ops/_scaled_dot_product_cudnn_attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7926820Z copying torch/include/ATen/ops/hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7928060Z copying torch/include/ATen/ops/_embedding_bag_dense_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7929360Z copying torch/include/ATen/ops/upsample_trilinear3d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7930640Z copying torch/include/ATen/ops/xor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7931860Z copying torch/include/ATen/ops/value_selecting_reduction_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7933170Z copying torch/include/ATen/ops/_unpack_dual.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7934400Z copying torch/include/ATen/ops/special_log_ndtr_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7935790Z copying torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7937140Z copying torch/include/ATen/ops/sparse_csc_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7938160Z copying torch/include/ATen/ops/log1p_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7939470Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7940610Z copying torch/include/ATen/ops/flatten_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7994780Z copying torch/include/ATen/ops/sym_numel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7996000Z copying torch/include/ATen/ops/linalg_svdvals_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7997290Z copying torch/include/ATen/ops/_index_put_impl_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7998540Z copying torch/include/ATen/ops/masked_select.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.7999810Z copying torch/include/ATen/ops/unfold_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8001210Z copying torch/include/ATen/ops/special_airy_ai.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8002350Z copying torch/include/ATen/ops/min_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8003600Z copying torch/include/ATen/ops/fmin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8004980Z copying torch/include/ATen/ops/logit_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8006370Z copying torch/include/ATen/ops/_triton_multi_head_attention_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8007530Z copying torch/include/ATen/ops/view.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8008740Z copying torch/include/ATen/ops/threshold_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8010050Z copying torch/include/ATen/ops/mkldnn_rnn_layer_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8011450Z copying torch/include/ATen/ops/_dirichlet_grad_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8012740Z copying torch/include/ATen/ops/_efficient_attention_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8013780Z copying torch/include/ATen/ops/slice_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8015190Z copying torch/include/ATen/ops/_mps_convolution_transpose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8016510Z copying torch/include/ATen/ops/polar_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8017710Z copying torch/include/ATen/ops/linspace.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8018960Z copying torch/include/ATen/ops/linalg_matrix_power_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8020330Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8021600Z copying torch/include/ATen/ops/softplus_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8022800Z copying torch/include/ATen/ops/arccos_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8024180Z copying torch/include/ATen/ops/_scaled_mm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8025410Z copying torch/include/ATen/ops/silu_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8026680Z copying torch/include/ATen/ops/digamma_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8027920Z copying torch/include/ATen/ops/cudnn_is_acceptable_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8029230Z copying torch/include/ATen/ops/fractional_max_pool2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8030480Z copying torch/include/ATen/ops/multi_margin_loss_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8031750Z copying torch/include/ATen/ops/mkldnn_linear_backward_weights_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8032910Z copying torch/include/ATen/ops/special_erfcx_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8034180Z copying torch/include/ATen/ops/_cdist_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8035390Z copying torch/include/ATen/ops/mean_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8036640Z copying torch/include/ATen/ops/conv_tbc_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8037740Z copying torch/include/ATen/ops/_foreach_mul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8039260Z copying torch/include/ATen/ops/_cast_Short_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8040420Z copying torch/include/ATen/ops/round_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8041630Z copying torch/include/ATen/ops/moveaxis.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8042890Z copying torch/include/ATen/ops/_efficient_attention_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8044150Z copying torch/include/ATen/ops/mul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8045530Z copying torch/include/ATen/ops/_make_per_tensor_quantized_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8046840Z copying torch/include/ATen/ops/igamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8047910Z copying torch/include/ATen/ops/select_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8138000Z copying torch/include/ATen/ops/acos_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8139000Z copying torch/include/ATen/ops/nansum_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8140270Z copying torch/include/ATen/ops/_assert_tensor_metadata_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8141590Z copying torch/include/ATen/ops/quantize_per_channel_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8142910Z copying torch/include/ATen/ops/hardsigmoid_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8144260Z copying torch/include/ATen/ops/reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8145400Z copying torch/include/ATen/ops/diag_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8146980Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8148070Z copying torch/include/ATen/ops/select_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8149400Z copying torch/include/ATen/ops/_nested_tensor_from_tensor_list_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8150690Z copying torch/include/ATen/ops/_embedding_bag_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8151820Z copying torch/include/ATen/ops/mean_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8153260Z copying torch/include/ATen/ops/alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8154620Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8155780Z copying torch/include/ATen/ops/_cudnn_ctc_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8157180Z copying torch/include/ATen/ops/sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8158340Z copying torch/include/ATen/ops/trunc_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8159640Z copying torch/include/ATen/ops/_jagged_to_padded_dense_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8160860Z copying torch/include/ATen/ops/detach.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8162240Z copying torch/include/ATen/ops/special_hermite_polynomial_he.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8163470Z copying torch/include/ATen/ops/logaddexp2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8164760Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8166000Z copying torch/include/ATen/ops/random_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8224950Z copying torch/include/ATen/ops/_aminmax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8225850Z copying torch/include/ATen/ops/gelu_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8227120Z copying torch/include/ATen/ops/masked_select_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8228310Z copying torch/include/ATen/ops/row_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8229560Z copying torch/include/ATen/ops/expand.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8230820Z copying torch/include/ATen/ops/asinh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8232050Z copying torch/include/ATen/ops/atanh_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8233360Z copying torch/include/ATen/ops/expand_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8234790Z copying torch/include/ATen/ops/sub_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8236120Z copying torch/include/ATen/ops/affine_grid_generator_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8237320Z copying torch/include/ATen/ops/rnn_tanh_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8238530Z copying torch/include/ATen/ops/ger_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8239840Z copying torch/include/ATen/ops/resize_as_sparse_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8241330Z copying torch/include/ATen/ops/margin_ranking_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8242640Z copying torch/include/ATen/ops/upsample_linear1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8243860Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8245130Z copying torch/include/ATen/ops/result_type_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8246590Z copying torch/include/ATen/ops/_prelu_kernel_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8247840Z copying torch/include/ATen/ops/ormqr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8249100Z copying torch/include/ATen/ops/floor_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8250390Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8251740Z copying torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8253030Z copying torch/include/ATen/ops/slice_inverse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8254420Z copying torch/include/ATen/ops/special_hermite_polynomial_he_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8256010Z copying torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8257150Z copying torch/include/ATen/ops/threshold.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8258650Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8260160Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8261670Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8263060Z copying torch/include/ATen/ops/special_ndtri_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8264430Z copying torch/include/ATen/ops/_sparse_addmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8265760Z copying torch/include/ATen/ops/special_xlogy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8267180Z copying torch/include/ATen/ops/_grouped_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8338300Z copying torch/include/ATen/ops/special_log_ndtr_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8339090Z copying torch/include/ATen/ops/is_floating_point_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8340300Z copying torch/include/ATen/ops/mkldnn_rnn_layer_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8341650Z copying torch/include/ATen/ops/_foreach_pow.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8343190Z copying torch/include/ATen/ops/fft_irfftn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8344180Z copying torch/include/ATen/ops/any_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8345450Z copying torch/include/ATen/ops/_foreach_minimum_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8346780Z copying torch/include/ATen/ops/_foreach_sqrt_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8347940Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8378610Z copying torch/include/ATen/ops/median_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8379530Z copying torch/include/ATen/ops/fft_ifft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8380860Z copying torch/include/ATen/ops/fmod_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8381990Z copying torch/include/ATen/ops/ceil_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8383260Z copying torch/include/ATen/ops/leaky_relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8384440Z copying torch/include/ATen/ops/full_like.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8385740Z copying torch/include/ATen/ops/var_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8386940Z copying torch/include/ATen/ops/_nested_get_jagged_dummy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8388210Z copying torch/include/ATen/ops/rad2deg_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8389450Z copying torch/include/ATen/ops/arccos_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8390600Z copying torch/include/ATen/ops/fmax_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8391880Z copying torch/include/ATen/ops/refine_names.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8393040Z copying torch/include/ATen/ops/linalg_cond_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8394350Z copying torch/include/ATen/ops/_validate_compressed_sparse_indices_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8395570Z copying torch/include/ATen/ops/embedding_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8396870Z copying torch/include/ATen/ops/leaky_relu_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8398030Z copying torch/include/ATen/ops/tensordot_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8399360Z copying torch/include/ATen/ops/special_modified_bessel_k1_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8400590Z copying torch/include/ATen/ops/_nested_from_padded_and_nested_example.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8401840Z copying torch/include/ATen/ops/clamp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8403040Z copying torch/include/ATen/ops/_foreach_sqrt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8404350Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8405520Z copying torch/include/ATen/ops/glu_jvp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8406770Z copying torch/include/ATen/ops/batch_norm_elemt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8408190Z copying torch/include/ATen/ops/_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8409400Z copying torch/include/ATen/ops/reflection_pad1d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8410620Z copying torch/include/ATen/ops/special_erfcx_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8411800Z copying torch/include/ATen/ops/nextafter_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8413370Z copying torch/include/ATen/ops/cudnn_convolution_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8414410Z copying torch/include/ATen/ops/_empty_affine_quantized_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8415600Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8416850Z copying torch/include/ATen/ops/batch_norm_stats_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8418290Z copying torch/include/ATen/ops/conv_tbc_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8419580Z copying torch/include/ATen/ops/mkldnn_linear_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8420870Z copying torch/include/ATen/ops/_assert_tensor_metadata.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8422210Z copying torch/include/ATen/ops/slice_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8423450Z copying torch/include/ATen/ops/add_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8424780Z copying torch/include/ATen/ops/rnn_tanh_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8426000Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8427300Z copying torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8428490Z copying torch/include/ATen/ops/expand_as_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8429790Z copying torch/include/ATen/ops/infinitely_differentiable_gelu_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8431150Z copying torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8432330Z copying torch/include/ATen/ops/masked_scatter_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8433710Z copying torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8434880Z copying torch/include/ATen/ops/upsample_nearest2d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8436110Z copying torch/include/ATen/ops/_aminmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8437330Z copying torch/include/ATen/ops/istft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8438630Z copying torch/include/ATen/ops/_weight_norm_interface_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8550220Z copying torch/include/ATen/ops/max_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8551190Z copying torch/include/ATen/ops/special_expit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8552330Z copying torch/include/ATen/ops/_stack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8553580Z copying torch/include/ATen/ops/fliplr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8554790Z copying torch/include/ATen/ops/acos_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8555990Z copying torch/include/ATen/ops/log10_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8557140Z copying torch/include/ATen/ops/argmax_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8558360Z copying torch/include/ATen/ops/triu_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8559530Z copying torch/include/ATen/ops/sparse_dim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8560720Z copying torch/include/ATen/ops/bitwise_and_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8561860Z copying torch/include/ATen/ops/atan_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8563230Z copying torch/include/ATen/ops/binary_cross_entropy_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8564360Z copying torch/include/ATen/ops/prod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8565570Z copying torch/include/ATen/ops/mul_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8566750Z copying torch/include/ATen/ops/is_pinned.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8568120Z copying torch/include/ATen/ops/index_add_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8569360Z copying torch/include/ATen/ops/_cholesky_solve_helper_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8570580Z copying torch/include/ATen/ops/_sparse_semi_structured_tile_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8571790Z copying torch/include/ATen/ops/unfold.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8573150Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k0_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8574350Z copying torch/include/ATen/ops/rrelu_with_noise_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8575660Z copying torch/include/ATen/ops/_nested_tensor_size_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8576850Z copying torch/include/ATen/ops/upsample_trilinear3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8578410Z copying torch/include/ATen/ops/linalg_householder_product.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8579510Z copying torch/include/ATen/ops/_weight_int4pack_mm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8580680Z copying torch/include/ATen/ops/aminmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8581930Z copying torch/include/ATen/ops/view_as_real.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8583320Z copying torch/include/ATen/ops/_softmax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8584710Z copying torch/include/ATen/ops/softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8585820Z copying torch/include/ATen/ops/huber_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8587050Z copying torch/include/ATen/ops/_native_batch_norm_legit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8588410Z copying torch/include/ATen/ops/_native_batch_norm_legit_no_training_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8589680Z copying torch/include/ATen/ops/pairwise_distance_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8590910Z copying torch/include/ATen/ops/special_bessel_j0_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8592200Z copying torch/include/ATen/ops/_log_softmax_backward_data_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8593570Z copying torch/include/ATen/ops/new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8594670Z copying torch/include/ATen/ops/diagflat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8595920Z copying torch/include/ATen/ops/amax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8597150Z copying torch/include/ATen/ops/addr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8598330Z copying torch/include/ATen/ops/special_i1e.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8599490Z copying torch/include/ATen/ops/_embedding_bag_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8693080Z copying torch/include/ATen/ops/_fill_mem_eff_dropout_mask_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8693940Z copying torch/include/ATen/ops/zero_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8695360Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8696730Z copying torch/include/ATen/ops/all_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8697920Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8699070Z copying torch/include/ATen/ops/arange_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8700300Z copying torch/include/ATen/ops/mish_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8701550Z copying torch/include/ATen/ops/chalf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8702780Z copying torch/include/ATen/ops/_fused_rms_norm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8703930Z copying torch/include/ATen/ops/linalg_svdvals.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8705120Z copying torch/include/ATen/ops/upsample_nearest2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8706380Z copying torch/include/ATen/ops/special_spherical_bessel_j0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8707570Z copying torch/include/ATen/ops/_weight_int4pack_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8708760Z copying torch/include/ATen/ops/expm1_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8709960Z copying torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8711200Z copying torch/include/ATen/ops/mse_loss_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8712580Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8713660Z copying torch/include/ATen/ops/std_mean.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8714880Z copying torch/include/ATen/ops/_nnpack_spatial_convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8716150Z copying torch/include/ATen/ops/_linalg_eigh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8717340Z copying torch/include/ATen/ops/hardshrink_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8718530Z copying torch/include/ATen/ops/smooth_l1_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8719720Z copying torch/include/ATen/ops/igamma_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8720990Z copying torch/include/ATen/ops/_embedding_bag_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8722200Z copying torch/include/ATen/ops/remainder_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8723530Z copying torch/include/ATen/ops/cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8724790Z copying torch/include/ATen/ops/linalg_lu_factor_ex_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8725990Z copying torch/include/ATen/ops/masked_select_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8792520Z copying torch/include/ATen/ops/_sparse_sum_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8793490Z copying torch/include/ATen/ops/empty.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8795090Z copying torch/include/ATen/ops/_segment_reduce_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8796300Z copying torch/include/ATen/ops/baddbmm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8797490Z copying torch/include/ATen/ops/poisson_nll_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8798850Z copying torch/include/ATen/ops/baddbmm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8800000Z copying torch/include/ATen/ops/ger.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8801310Z copying torch/include/ATen/ops/_conv_depthwise2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8802650Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8803940Z copying torch/include/ATen/ops/fft_irfft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8805390Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8806520Z copying torch/include/ATen/ops/lift_fresh_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8807720Z copying torch/include/ATen/ops/nll_loss2d_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8809010Z copying torch/include/ATen/ops/imag_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8810240Z copying torch/include/ATen/ops/full_like_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8811470Z copying torch/include/ATen/ops/_cast_Float_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8812810Z copying torch/include/ATen/ops/special_bessel_y1_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8814060Z copying torch/include/ATen/ops/upsample_nearest3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8815370Z copying torch/include/ATen/ops/_ctc_loss_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8816630Z copying torch/include/ATen/ops/lt_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8818140Z copying torch/include/ATen/ops/copysign.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8819480Z copying torch/include/ATen/ops/_indices_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8820860Z copying torch/include/ATen/ops/replication_pad3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8822040Z copying torch/include/ATen/ops/index_fill_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8823430Z copying torch/include/ATen/ops/conv_tbc_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8824650Z copying torch/include/ATen/ops/cat_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8825820Z copying torch/include/ATen/ops/logical_xor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8827100Z copying torch/include/ATen/ops/logit_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8828380Z copying torch/include/ATen/ops/softplus_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8829610Z copying torch/include/ATen/ops/upsample_nearest3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8830930Z copying torch/include/ATen/ops/fft_rfftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8832190Z copying torch/include/ATen/ops/ceil_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8833510Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8834720Z copying torch/include/ATen/ops/nanquantile_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8835930Z copying torch/include/ATen/ops/_make_dep_token_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8837290Z copying torch/include/ATen/ops/_test_warn_in_autograd_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8838560Z copying torch/include/ATen/ops/batch_norm_backward_elemt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8839770Z copying torch/include/ATen/ops/special_round_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8841130Z copying torch/include/ATen/ops/_reshape_alias.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8842380Z copying torch/include/ATen/ops/le_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8843590Z copying torch/include/ATen/ops/softshrink_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8850120Z copying torch/include/ATen/ops/resolve_neg_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8850700Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8850980Z copying torch/include/ATen/ops/binomial_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8851240Z copying torch/include/ATen/ops/mvlgamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8851550Z copying torch/include/ATen/ops/lshift_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8851880Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8852170Z copying torch/include/ATen/ops/_efficient_attention_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8853430Z copying torch/include/ATen/ops/fft_ifft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8854580Z copying torch/include/ATen/ops/special_gammaincc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8856030Z copying torch/include/ATen/ops/fmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8857130Z copying torch/include/ATen/ops/cosh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8858430Z copying torch/include/ATen/ops/clamp_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8859630Z copying torch/include/ATen/ops/binary_cross_entropy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8860850Z copying torch/include/ATen/ops/concat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8982260Z copying torch/include/ATen/ops/mul_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8983370Z copying torch/include/ATen/ops/_sparse_semi_structured_addmm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8984720Z copying torch/include/ATen/ops/special_multigammaln.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8986150Z copying torch/include/ATen/ops/_pad_circular_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8987290Z copying torch/include/ATen/ops/fft_ifftn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8988590Z copying torch/include/ATen/ops/sum_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8989940Z copying torch/include/ATen/ops/nonzero_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8991280Z copying torch/include/ATen/ops/nonzero.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8992500Z copying torch/include/ATen/ops/fliplr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8993730Z copying torch/include/ATen/ops/negative_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8994830Z copying torch/include/ATen/ops/fft_fftn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8996180Z copying torch/include/ATen/ops/native_batch_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8997520Z copying torch/include/ATen/ops/special_xlogy_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.8998740Z copying torch/include/ATen/ops/new_empty_strided_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9000060Z copying torch/include/ATen/ops/_cast_Int_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9001230Z copying torch/include/ATen/ops/scatter_add_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9002490Z copying torch/include/ATen/ops/fft_ifftshift_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9003660Z copying torch/include/ATen/ops/eye_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9005190Z copying torch/include/ATen/ops/cartesian_prod_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9006250Z copying torch/include/ATen/ops/_validate_sparse_csr_tensor_args_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9007570Z copying torch/include/ATen/ops/max_pool2d_with_indices_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9008740Z copying torch/include/ATen/ops/conv_transpose2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9010020Z copying torch/include/ATen/ops/as_strided.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9011260Z copying torch/include/ATen/ops/geometric_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9012400Z copying torch/include/ATen/ops/cosh_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9013650Z copying torch/include/ATen/ops/copysign_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9014930Z copying torch/include/ATen/ops/_fft_r2c_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9016200Z copying torch/include/ATen/ops/output_nr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9017390Z copying torch/include/ATen/ops/argsort_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9018610Z copying torch/include/ATen/ops/fft_hfft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9019800Z copying torch/include/ATen/ops/sinh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9021060Z copying torch/include/ATen/ops/_foreach_sin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9022240Z copying torch/include/ATen/ops/_unique_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9023450Z copying torch/include/ATen/ops/sin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9024690Z copying torch/include/ATen/ops/range_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9026070Z copying torch/include/ATen/ops/special_log_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9027250Z copying torch/include/ATen/ops/cosh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9028610Z copying torch/include/ATen/ops/flip_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9029720Z copying torch/include/ATen/ops/argmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9030930Z copying torch/include/ATen/ops/detach_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9032440Z copying torch/include/ATen/ops/_pdist_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9033450Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9034570Z copying torch/include/ATen/ops/isnan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9035820Z copying torch/include/ATen/ops/special_xlogy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9037100Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9038290Z copying torch/include/ATen/ops/all_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9039630Z copying torch/include/ATen/ops/_sparse_softmax_backward_data_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9040890Z copying torch/include/ATen/ops/subtract_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9042030Z copying torch/include/ATen/ops/mkldnn_rnn_layer_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9043330Z copying torch/include/ATen/ops/cumsum_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9044430Z copying torch/include/ATen/ops/as_strided_scatter_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9045640Z copying torch/include/ATen/ops/scatter_reduce_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9046800Z copying torch/include/ATen/ops/_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9048070Z copying torch/include/ATen/ops/_linalg_det_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9049200Z copying torch/include/ATen/ops/sin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9050480Z copying torch/include/ATen/ops/random_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9178440Z copying torch/include/ATen/ops/_pdist_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9179410Z copying torch/include/ATen/ops/nll_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9180540Z copying torch/include/ATen/ops/tanh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9181820Z copying torch/include/ATen/ops/cumprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9183060Z copying torch/include/ATen/ops/special_entr_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9184270Z copying torch/include/ATen/ops/_foreach_lgamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9185500Z copying torch/include/ATen/ops/any_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9186730Z copying torch/include/ATen/ops/_add_batch_dim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9188040Z copying torch/include/ATen/ops/lu_solve_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9189300Z copying torch/include/ATen/ops/nanmedian_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9190510Z copying torch/include/ATen/ops/_foreach_copy_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9191830Z copying torch/include/ATen/ops/replication_pad3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9193150Z copying torch/include/ATen/ops/cumulative_trapezoid_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9194410Z copying torch/include/ATen/ops/any_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9195630Z copying torch/include/ATen/ops/slow_conv_dilated2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9196910Z copying torch/include/ATen/ops/linalg_cholesky_ex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9198280Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9199440Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9200620Z copying torch/include/ATen/ops/geqrf_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9201900Z copying torch/include/ATen/ops/fft_rfftn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9203160Z copying torch/include/ATen/ops/max_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9204340Z copying torch/include/ATen/ops/special_entr_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9205560Z copying torch/include/ATen/ops/slow_conv3d_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9207150Z copying torch/include/ATen/ops/qr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9208040Z copying torch/include/ATen/ops/linalg_cholesky.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9209320Z copying torch/include/ATen/ops/empty_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9210500Z copying torch/include/ATen/ops/lerp_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9211920Z copying torch/include/ATen/ops/special_entr_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9213060Z copying torch/include/ATen/ops/masked_scatter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9214240Z copying torch/include/ATen/ops/flip_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9215450Z copying torch/include/ATen/ops/topk_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9216790Z copying torch/include/ATen/ops/_neg_view_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9218080Z copying torch/include/ATen/ops/silu_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9219260Z copying torch/include/ATen/ops/_masked_softmax_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9220460Z copying torch/include/ATen/ops/col_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9221890Z copying torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9223050Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9224220Z copying torch/include/ATen/ops/rand_like_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9225490Z copying torch/include/ATen/ops/_foobar_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9226770Z copying torch/include/ATen/ops/histogram_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9227950Z copying torch/include/ATen/ops/all_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9229190Z copying torch/include/ATen/ops/native_channel_shuffle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9230350Z copying torch/include/ATen/ops/vdot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9231620Z copying torch/include/ATen/ops/_grouped_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9232820Z copying torch/include/ATen/ops/slow_conv_dilated3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9233990Z copying torch/include/ATen/ops/any_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9235420Z copying torch/include/ATen/ops/batch_norm_backward_elemt_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9236580Z copying torch/include/ATen/ops/_sparse_log_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9237790Z copying torch/include/ATen/ops/avg_pool2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9238980Z copying torch/include/ATen/ops/_dirichlet_grad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9348550Z copying torch/include/ATen/ops/_coalesced_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9349470Z copying torch/include/ATen/ops/baddbmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9350700Z copying torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9352060Z copying torch/include/ATen/ops/trace_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9353260Z copying torch/include/ATen/ops/nextafter_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9354460Z copying torch/include/ATen/ops/_embedding_bag_forward_only_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9355650Z copying torch/include/ATen/ops/softshrink_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9356920Z copying torch/include/ATen/ops/native_dropout_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9358170Z copying torch/include/ATen/ops/_native_multi_head_attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9359480Z copying torch/include/ATen/ops/copy_sparse_to_sparse_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9360740Z copying torch/include/ATen/ops/upsample_nearest1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9362210Z copying torch/include/ATen/ops/_cast_Byte_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9363840Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9365410Z copying torch/include/ATen/ops/bartlett_window_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9366760Z copying torch/include/ATen/ops/renorm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9368340Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9369690Z copying torch/include/ATen/ops/t_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9371160Z copying torch/include/ATen/ops/unsafe_split_with_sizes_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9372630Z copying torch/include/ATen/ops/pixel_unshuffle_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9374310Z copying torch/include/ATen/ops/fmin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9375610Z copying torch/include/ATen/ops/_sparse_sum_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9377040Z copying torch/include/ATen/ops/special_sinc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9378200Z copying torch/include/ATen/ops/nll_loss_nd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9379530Z copying torch/include/ATen/ops/meshgrid_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9380690Z copying torch/include/ATen/ops/_softmax_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9382140Z copying torch/include/ATen/ops/miopen_batch_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9383200Z copying torch/include/ATen/ops/angle_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9384510Z copying torch/include/ATen/ops/swapdims_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9385660Z copying torch/include/ATen/ops/gather_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9386890Z copying torch/include/ATen/ops/reflection_pad3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9388080Z copying torch/include/ATen/ops/relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9389340Z copying torch/include/ATen/ops/poisson_nll_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9390570Z copying torch/include/ATen/ops/bitwise_not_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9391750Z copying torch/include/ATen/ops/item_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9393050Z copying torch/include/ATen/ops/_native_batch_norm_legit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9394360Z copying torch/include/ATen/ops/adaptive_max_pool2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9395610Z copying torch/include/ATen/ops/_linalg_eigh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9396830Z copying torch/include/ATen/ops/special_legendre_polynomial_p.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9398040Z copying torch/include/ATen/ops/cudnn_batch_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9399470Z copying torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9400780Z copying torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9402000Z copying torch/include/ATen/ops/avg_pool1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9403300Z copying torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9404500Z copying torch/include/ATen/ops/pixel_shuffle_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9405720Z copying torch/include/ATen/ops/rshift.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9406970Z copying torch/include/ATen/ops/_transform_bias_rescale_qkv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9408250Z copying torch/include/ATen/ops/batch_norm_update_stats_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9409680Z copying torch/include/ATen/ops/squeeze_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9411210Z copying torch/include/ATen/ops/special_i0e_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9412540Z copying torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9413730Z copying torch/include/ATen/ops/mish.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9414970Z copying torch/include/ATen/ops/subtract.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9416230Z copying torch/include/ATen/ops/trunc_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9417510Z copying torch/include/ATen/ops/_fused_adamw_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9418780Z copying torch/include/ATen/ops/amin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9420010Z copying torch/include/ATen/ops/amin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9421320Z copying torch/include/ATen/ops/linalg_matrix_exp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9422650Z copying torch/include/ATen/ops/upsample_linear1d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9423810Z copying torch/include/ATen/ops/miopen_convolution_relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9425290Z copying torch/include/ATen/ops/indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9426380Z copying torch/include/ATen/ops/_weight_int4pack_mm_for_cpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9427680Z copying torch/include/ATen/ops/_reshape_from_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9428970Z copying torch/include/ATen/ops/align_as_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9430180Z copying torch/include/ATen/ops/blackman_window_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9431440Z copying torch/include/ATen/ops/batch_norm_elemt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9432680Z copying torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9434060Z copying torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9435430Z copying torch/include/ATen/ops/_sobol_engine_ff_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9436620Z copying torch/include/ATen/ops/sort_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9437910Z copying torch/include/ATen/ops/logit_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9439230Z copying torch/include/ATen/ops/_cummax_helper_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9440500Z copying torch/include/ATen/ops/cat_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9441750Z copying torch/include/ATen/ops/le_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9442970Z copying torch/include/ATen/ops/mean_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9444350Z copying torch/include/ATen/ops/is_inference.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9445590Z copying torch/include/ATen/ops/fft_ihfftn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9446740Z copying torch/include/ATen/ops/mode_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9448100Z copying torch/include/ATen/ops/segment_reduce_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9449330Z copying torch/include/ATen/ops/detach_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9450670Z copying torch/include/ATen/ops/_triton_multi_head_attention_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9452010Z copying torch/include/ATen/ops/unbind_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9453240Z copying torch/include/ATen/ops/corrcoef_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9454550Z copying torch/include/ATen/ops/_ctc_loss_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9455960Z copying torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9457100Z copying torch/include/ATen/ops/_embedding_bag_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9458300Z copying torch/include/ATen/ops/unflatten_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9459650Z copying torch/include/ATen/ops/avg_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9460870Z copying torch/include/ATen/ops/ldexp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9462110Z copying torch/include/ATen/ops/special_log1p.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9463620Z copying torch/include/ATen/ops/transpose_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9464940Z copying torch/include/ATen/ops/arange_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9466120Z copying torch/include/ATen/ops/le_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9467330Z copying torch/include/ATen/ops/threshold_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9468740Z copying torch/include/ATen/ops/fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9469840Z copying torch/include/ATen/ops/align_as.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9471050Z copying torch/include/ATen/ops/linspace_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9472350Z copying torch/include/ATen/ops/_nested_get_ragged_idx_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9477890Z copying torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9479030Z copying torch/include/ATen/ops/slow_conv_transpose2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9486130Z copying torch/include/ATen/ops/narrow.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9487120Z copying torch/include/ATen/ops/to_mkldnn_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9493360Z copying torch/include/ATen/ops/hspmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9494270Z copying torch/include/ATen/ops/_saturate_weight_to_fp16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9500930Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9502670Z copying torch/include/ATen/ops/unsafe_chunk_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9508660Z copying torch/include/ATen/ops/var_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9509610Z copying torch/include/ATen/ops/erfinv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9510870Z copying torch/include/ATen/ops/_cudnn_rnn_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9516390Z copying torch/include/ATen/ops/_sparse_semi_structured_apply_dense_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9517280Z copying torch/include/ATen/ops/dot_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9521340Z copying torch/include/ATen/ops/sparse_dim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9525930Z copying torch/include/ATen/ops/fft_irfft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9529570Z copying torch/include/ATen/ops/resize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9533380Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9534380Z copying torch/include/ATen/ops/_local_scalar_dense_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9538790Z copying torch/include/ATen/ops/erfc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9542490Z copying torch/include/ATen/ops/logical_not_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9546110Z copying torch/include/ATen/ops/_cufft_get_plan_cache_max_size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9546950Z copying torch/include/ATen/ops/to_sparse_bsr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9551810Z copying torch/include/ATen/ops/digamma_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9555630Z copying torch/include/ATen/ops/lstm_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9560170Z copying torch/include/ATen/ops/digamma_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9561310Z copying torch/include/ATen/ops/erfinv_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9571420Z copying torch/include/ATen/ops/col_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9573830Z copying torch/include/ATen/ops/tile_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9588780Z copying torch/include/ATen/ops/mm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9589670Z copying torch/include/ATen/ops/movedim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9590840Z copying torch/include/ATen/ops/bincount_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9592260Z copying torch/include/ATen/ops/tril_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9598170Z copying torch/include/ATen/ops/logical_xor_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9599150Z copying torch/include/ATen/ops/_nested_view_from_jagged_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9600320Z copying torch/include/ATen/ops/matrix_H_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9601630Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9602840Z copying torch/include/ATen/ops/bitwise_not_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9604000Z copying torch/include/ATen/ops/_indices_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9605310Z copying torch/include/ATen/ops/addbmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9606570Z copying torch/include/ATen/ops/sym_storage_offset_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9609530Z copying torch/include/ATen/ops/ctc_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9615180Z copying torch/include/ATen/ops/quantized_max_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9616380Z copying torch/include/ATen/ops/_fused_sdp_choice_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9620970Z copying torch/include/ATen/ops/_sparse_broadcast_to_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9622150Z copying torch/include/ATen/ops/eq_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9628050Z copying torch/include/ATen/ops/angle_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9629010Z copying torch/include/ATen/ops/take_along_dim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9635550Z copying torch/include/ATen/ops/_dimI_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9636480Z copying torch/include/ATen/ops/atan_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9641520Z copying torch/include/ATen/ops/unfold_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9642960Z copying torch/include/ATen/ops/_sparse_sparse_matmul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9647970Z copying torch/include/ATen/ops/_debug_has_internal_overlap.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9648910Z copying torch/include/ATen/ops/special_modified_bessel_i0_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9656020Z copying torch/include/ATen/ops/special_ndtri_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9663020Z copying torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9663800Z copying torch/include/ATen/ops/resize_as_sparse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9668940Z copying torch/include/ATen/ops/to_mkldnn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9670140Z copying torch/include/ATen/ops/le.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9675290Z copying torch/include/ATen/ops/fft_ihfftn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9676200Z copying torch/include/ATen/ops/lstm_mps_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9682170Z copying torch/include/ATen/ops/_is_all_true_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9683240Z copying torch/include/ATen/ops/transpose_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9689230Z copying torch/include/ATen/ops/meshgrid_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9690200Z copying torch/include/ATen/ops/_make_per_channel_quantized_tensor_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9696110Z copying torch/include/ATen/ops/_cudnn_rnn_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9909910Z copying torch/include/ATen/ops/_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9910830Z copying torch/include/ATen/ops/_fused_adam_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9912250Z copying torch/include/ATen/ops/copy_sparse_to_sparse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9913640Z copying torch/include/ATen/ops/_addmm_activation_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9914860Z copying torch/include/ATen/ops/allclose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9916050Z copying torch/include/ATen/ops/special_gammainc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9917350Z copying torch/include/ATen/ops/embedding_sparse_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9918630Z copying torch/include/ATen/ops/adaptive_max_pool1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9919910Z copying torch/include/ATen/ops/_foreach_atan_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9921160Z copying torch/include/ATen/ops/cummin_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9922300Z copying torch/include/ATen/ops/fft_hfft2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9923660Z copying torch/include/ATen/ops/_cudnn_ctc_loss_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9924850Z copying torch/include/ATen/ops/split_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9926010Z copying torch/include/ATen/ops/empty_permuted.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9927200Z copying torch/include/ATen/ops/smm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9928480Z copying torch/include/ATen/ops/_foreach_expm1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9929780Z copying torch/include/ATen/ops/prelu_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9930900Z copying torch/include/ATen/ops/is_conj_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9932160Z copying torch/include/ATen/ops/fft_fftshift_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9933360Z copying torch/include/ATen/ops/_convolution_mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9934680Z copying torch/include/ATen/ops/diagonal_scatter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9935830Z copying torch/include/ATen/ops/sym_constrain_range_for_size_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9937020Z copying torch/include/ATen/ops/_unique_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9938220Z copying torch/include/ATen/ops/cdist_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9939400Z copying torch/include/ATen/ops/conv_tbc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9940640Z copying torch/include/ATen/ops/triangular_solve_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9941880Z copying torch/include/ATen/ops/replication_pad2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9943090Z copying torch/include/ATen/ops/unique_dim_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9944270Z copying torch/include/ATen/ops/searchsorted_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9945520Z copying torch/include/ATen/ops/logspace_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9946810Z copying torch/include/ATen/ops/record_stream_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9948020Z copying torch/include/ATen/ops/replication_pad1d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9949260Z copying torch/include/ATen/ops/_foreach_sign_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9950530Z copying torch/include/ATen/ops/frac.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9951700Z copying torch/include/ATen/ops/binomial_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9952920Z copying torch/include/ATen/ops/fft_ihfft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9954080Z copying torch/include/ATen/ops/amin_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9955370Z copying torch/include/ATen/ops/hamming_window_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9957520Z copying torch/include/ATen/ops/_sparse_softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9958430Z copying torch/include/ATen/ops/_embedding_bag_forward_only_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9959620Z copying torch/include/ATen/ops/indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9960940Z copying torch/include/ATen/ops/upsample_bicubic2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9962060Z copying torch/include/ATen/ops/bitwise_and_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9963290Z copying torch/include/ATen/ops/searchsorted_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9964510Z copying torch/include/ATen/ops/histc_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9965880Z copying torch/include/ATen/ops/exp_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9966990Z copying torch/include/ATen/ops/is_pinned_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9968330Z copying torch/include/ATen/ops/empty_quantized_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9969490Z copying torch/include/ATen/ops/cholesky_inverse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9970660Z copying torch/include/ATen/ops/multi_margin_loss_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9971840Z copying torch/include/ATen/ops/split_with_sizes_copy_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9973180Z copying torch/include/ATen/ops/arctanh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9974340Z copying torch/include/ATen/ops/alias_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9975650Z copying torch/include/ATen/ops/ravel_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9976810Z copying torch/include/ATen/ops/linalg_pinv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9978090Z copying torch/include/ATen/ops/instance_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9979320Z copying torch/include/ATen/ops/upsample_linear1d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9980570Z copying torch/include/ATen/ops/miopen_convolution_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9981790Z copying torch/include/ATen/ops/scatter_add_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9983220Z copying torch/include/ATen/ops/silu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9984360Z copying torch/include/ATen/ops/kron_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9985580Z copying torch/include/ATen/ops/mode_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9986760Z copying torch/include/ATen/ops/arctan2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9988030Z copying torch/include/ATen/ops/eye.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9989460Z copying torch/include/ATen/ops/_foreach_log1p_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9990780Z copying torch/include/ATen/ops/_histogramdd_bin_edges_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9991890Z copying torch/include/ATen/ops/_foreach_sqrt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9993370Z copying torch/include/ATen/ops/upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9994520Z copying torch/include/ATen/ops/silu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9995940Z copying torch/include/ATen/ops/special_modified_bessel_k0_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9997070Z copying torch/include/ATen/ops/nll_loss2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9998350Z copying torch/include/ATen/ops/rnn_relu_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:45.9999610Z copying torch/include/ATen/ops/bitwise_or_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0000920Z copying torch/include/ATen/ops/bartlett_window.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0002100Z copying torch/include/ATen/ops/bitwise_left_shift_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0003440Z copying torch/include/ATen/ops/as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0004580Z copying torch/include/ATen/ops/_triton_scaled_dot_attention_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0005810Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0007070Z copying torch/include/ATen/ops/_copy_from_and_resize_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0008320Z copying torch/include/ATen/ops/empty_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0009570Z copying torch/include/ATen/ops/_linalg_check_errors_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0010820Z copying torch/include/ATen/ops/cudnn_batch_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0012020Z copying torch/include/ATen/ops/_gather_sparse_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0013400Z copying torch/include/ATen/ops/empty_strided_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0014610Z copying torch/include/ATen/ops/view_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0015890Z copying torch/include/ATen/ops/special_entr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0017090Z copying torch/include/ATen/ops/sinh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0018280Z copying torch/include/ATen/ops/_nested_from_padded_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0019600Z copying torch/include/ATen/ops/_scaled_grouped_mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0020980Z copying torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0022550Z copying torch/include/ATen/ops/_validate_sparse_csc_tensor_args_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0023440Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0024650Z copying torch/include/ATen/ops/frac_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0025910Z copying torch/include/ATen/ops/special_i1_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0027290Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0031540Z copying torch/include/ATen/ops/_foreach_tan_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0035850Z copying torch/include/ATen/ops/tan_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0039060Z copying torch/include/ATen/ops/frobenius_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0040450Z copying torch/include/ATen/ops/linalg_matrix_exp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0045790Z copying torch/include/ATen/ops/sgn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0048150Z copying torch/include/ATen/ops/linalg_inv_ex_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0053040Z copying torch/include/ATen/ops/_trilinear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0054250Z copying torch/include/ATen/ops/glu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0057760Z copying torch/include/ATen/ops/silu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0062870Z copying torch/include/ATen/ops/cudnn_convolution_add_relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0066670Z copying torch/include/ATen/ops/fft_ifft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0070410Z copying torch/include/ATen/ops/as_strided_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0071450Z copying torch/include/ATen/ops/_test_optional_floatlist_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0074520Z copying torch/include/ATen/ops/_sparse_log_softmax_backward_data_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0078940Z copying torch/include/ATen/ops/sum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0083070Z copying torch/include/ATen/ops/repeat_interleave_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0086250Z copying torch/include/ATen/ops/special_xlog1py.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0087280Z copying torch/include/ATen/ops/_nested_view_from_buffer_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0092640Z copying torch/include/ATen/ops/inner_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0100480Z copying torch/include/ATen/ops/elu_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0101320Z copying torch/include/ATen/ops/_foreach_round_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0104220Z copying torch/include/ATen/ops/equal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0109660Z copying torch/include/ATen/ops/_prelu_kernel_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0110790Z copying torch/include/ATen/ops/linalg_lu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0117460Z copying torch/include/ATen/ops/unbind_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0118850Z copying torch/include/ATen/ops/_foreach_tanh_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0125580Z copying torch/include/ATen/ops/_foreach_norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0126630Z copying torch/include/ATen/ops/_pin_memory_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0127900Z copying torch/include/ATen/ops/bitwise_left_shift_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0133470Z copying torch/include/ATen/ops/_foreach_minimum_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0134300Z copying torch/include/ATen/ops/linalg_det.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0140790Z copying torch/include/ATen/ops/chalf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0142590Z copying torch/include/ATen/ops/_sobol_engine_scramble_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0147760Z copying torch/include/ATen/ops/floor_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0149350Z copying torch/include/ATen/ops/upsample_nearest3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0151540Z copying torch/include/ATen/ops/special_polygamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0156940Z copying torch/include/ATen/ops/values.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0158160Z copying torch/include/ATen/ops/is_inference_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0160940Z copying torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0166180Z copying torch/include/ATen/ops/embedding_dense_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0169780Z copying torch/include/ATen/ops/size_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0173380Z copying torch/include/ATen/ops/gelu_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0174430Z copying torch/include/ATen/ops/adaptive_avg_pool1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0179140Z copying torch/include/ATen/ops/cumsum_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0181530Z copying torch/include/ATen/ops/bernoulli_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0187460Z copying torch/include/ATen/ops/_assert_async_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0188560Z copying torch/include/ATen/ops/isposinf_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0190000Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0197270Z copying torch/include/ATen/ops/linalg_householder_product_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0198820Z copying torch/include/ATen/ops/abs_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0205000Z copying torch/include/ATen/ops/special_i0_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0206100Z copying torch/include/ATen/ops/linalg_cond_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0207420Z copying torch/include/ATen/ops/to.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0211660Z copying torch/include/ATen/ops/_linalg_svd_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0219700Z copying torch/include/ATen/ops/angle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0220650Z copying torch/include/ATen/ops/softplus_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0227180Z copying torch/include/ATen/ops/allclose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0229780Z copying torch/include/ATen/ops/special_i1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0234410Z copying torch/include/ATen/ops/_embedding_bag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0235810Z copying torch/include/ATen/ops/kaiser_window_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0237090Z copying torch/include/ATen/ops/_unpack_dual_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0243230Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0244050Z copying torch/include/ATen/ops/multilabel_margin_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0250660Z copying torch/include/ATen/ops/_batch_norm_with_update_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0252090Z copying torch/include/ATen/ops/clamp_min_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0258610Z copying torch/include/ATen/ops/expand_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0259650Z copying torch/include/ATen/ops/binary_cross_entropy_with_logits_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0260900Z copying torch/include/ATen/ops/binary_cross_entropy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0267030Z copying torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0268130Z copying torch/include/ATen/ops/_debug_has_internal_overlap_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0275090Z copying torch/include/ATen/ops/_trilinear_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0276470Z copying torch/include/ATen/ops/cauchy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0283020Z copying torch/include/ATen/ops/soft_margin_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0284120Z copying torch/include/ATen/ops/cholesky_inverse_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0285520Z copying torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0290500Z copying torch/include/ATen/ops/special_modified_bessel_k1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0293720Z copying torch/include/ATen/ops/rsqrt_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0298250Z copying torch/include/ATen/ops/to_dense.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0299190Z copying torch/include/ATen/ops/fmin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0302260Z copying torch/include/ATen/ops/_validate_sparse_csc_tensor_args.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0306730Z copying torch/include/ATen/ops/scatter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0307840Z copying torch/include/ATen/ops/scaled_dot_product_attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0311120Z copying torch/include/ATen/ops/mode_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0315690Z copying torch/include/ATen/ops/cudnn_batch_norm_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0319990Z copying torch/include/ATen/ops/linalg_vector_norm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0323910Z copying torch/include/ATen/ops/masked_select_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0324830Z copying torch/include/ATen/ops/_foreach_rsqrt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0329550Z copying torch/include/ATen/ops/_test_ambiguous_defaults.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0332380Z copying torch/include/ATen/ops/ones_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0337120Z copying torch/include/ATen/ops/mul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0338090Z copying torch/include/ATen/ops/relu_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0341540Z copying torch/include/ATen/ops/_efficientzerotensor_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0346160Z copying torch/include/ATen/ops/binary_cross_entropy_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0349280Z copying torch/include/ATen/ops/native_channel_shuffle_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0350230Z copying torch/include/ATen/ops/_nested_from_padded_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0356640Z copying torch/include/ATen/ops/upsample_nearest2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0357980Z copying torch/include/ATen/ops/fmod_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0364830Z copying torch/include/ATen/ops/sparse_csc_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0365680Z copying torch/include/ATen/ops/gcd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0373260Z copying torch/include/ATen/ops/_dimV.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0374220Z copying torch/include/ATen/ops/batch_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0375540Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0381550Z copying torch/include/ATen/ops/pixel_shuffle_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0382270Z copying torch/include/ATen/ops/native_layer_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0389660Z copying torch/include/ATen/ops/special_ndtr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0390760Z copying torch/include/ATen/ops/upsample_nearest2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0391940Z copying torch/include/ATen/ops/retain_grad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0398190Z copying torch/include/ATen/ops/asin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0399240Z copying torch/include/ATen/ops/upsample_nearest3d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0405830Z copying torch/include/ATen/ops/column_stack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0406950Z copying torch/include/ATen/ops/_weight_int8pack_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0408160Z copying torch/include/ATen/ops/isreal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0413530Z copying torch/include/ATen/ops/_flash_attention_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0414960Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0421750Z copying torch/include/ATen/ops/conj_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0422660Z copying torch/include/ATen/ops/repeat_interleave_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.0491410Z copying torch/include/ATen/ops/logit_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1782230Z copying torch/include/ATen/ops/log_normal_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1783280Z copying torch/include/ATen/ops/qr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1784720Z copying torch/include/ATen/ops/full_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1786050Z copying torch/include/ATen/ops/trunc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1787340Z copying torch/include/ATen/ops/miopen_rnn_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1793980Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1794650Z copying torch/include/ATen/ops/_foreach_sub_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1795480Z copying torch/include/ATen/ops/fbgemm_pack_quantized_matrix.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1796120Z copying torch/include/ATen/ops/_wrapped_linear_prepack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1796770Z copying torch/include/ATen/ops/huber_loss_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1797380Z copying torch/include/ATen/ops/clamp_min_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1797920Z copying torch/include/ATen/ops/is_leaf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1799260Z copying torch/include/ATen/ops/grid_sampler_2d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1801270Z copying torch/include/ATen/ops/fbgemm_linear_quantize_weight_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1802760Z copying torch/include/ATen/ops/ldexp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1804190Z copying torch/include/ATen/ops/_foreach_mul_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1805550Z copying torch/include/ATen/ops/quantized_rnn_tanh_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1806700Z copying torch/include/ATen/ops/upsample_nearest3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1808290Z copying torch/include/ATen/ops/bmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1809710Z copying torch/include/ATen/ops/linalg_inv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1811080Z copying torch/include/ATen/ops/pow_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1812390Z copying torch/include/ATen/ops/replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1813710Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1815020Z copying torch/include/ATen/ops/_pack_padded_sequence_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1816260Z copying torch/include/ATen/ops/randperm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1817920Z copying torch/include/ATen/ops/index_reduce_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1819820Z copying torch/include/ATen/ops/lu_solve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1821570Z copying torch/include/ATen/ops/dense_dim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1822990Z copying torch/include/ATen/ops/_softmax_backward_data_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1824180Z copying torch/include/ATen/ops/exp2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1825530Z copying torch/include/ATen/ops/nanmean_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1826980Z copying torch/include/ATen/ops/margin_ranking_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1828230Z copying torch/include/ATen/ops/bitwise_right_shift_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1829560Z copying torch/include/ATen/ops/sparse_csr_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1983460Z copying torch/include/ATen/ops/_cufft_set_plan_cache_max_size_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1984390Z copying torch/include/ATen/ops/sqrt_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1985930Z copying torch/include/ATen/ops/col_indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1986950Z copying torch/include/ATen/ops/index_fill_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1988360Z copying torch/include/ATen/ops/maximum_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1989510Z copying torch/include/ATen/ops/asinh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1990740Z copying torch/include/ATen/ops/bitwise_not_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1992070Z copying torch/include/ATen/ops/random_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1993430Z copying torch/include/ATen/ops/_foreach_div_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1994580Z copying torch/include/ATen/ops/_foreach_expm1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1995850Z copying torch/include/ATen/ops/special_spherical_bessel_j0_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1997190Z copying torch/include/ATen/ops/special_entr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1998380Z copying torch/include/ATen/ops/upsample_bilinear2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.1999710Z copying torch/include/ATen/ops/erf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2000890Z copying torch/include/ATen/ops/_cast_Char.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2002340Z copying torch/include/ATen/ops/norm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2003580Z copying torch/include/ATen/ops/trace_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2004830Z copying torch/include/ATen/ops/hinge_embedding_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2006130Z copying torch/include/ATen/ops/bartlett_window_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2007470Z copying torch/include/ATen/ops/gather_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2008740Z copying torch/include/ATen/ops/indices_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2010000Z copying torch/include/ATen/ops/_nested_view_from_jagged_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2011230Z copying torch/include/ATen/ops/unsafe_chunk.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2012760Z copying torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2013960Z copying torch/include/ATen/ops/_dirichlet_grad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2015250Z copying torch/include/ATen/ops/rand_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2016440Z copying torch/include/ATen/ops/_use_cudnn_ctc_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2017800Z copying torch/include/ATen/ops/glu_backward_jvp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2019020Z copying torch/include/ATen/ops/igammac_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2020340Z copying torch/include/ATen/ops/_nested_view_from_buffer_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2021660Z copying torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2023070Z copying torch/include/ATen/ops/to_padded_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2024300Z copying torch/include/ATen/ops/reflection_pad3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2025630Z copying torch/include/ATen/ops/lgamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2026940Z copying torch/include/ATen/ops/amax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2028120Z copying torch/include/ATen/ops/gt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2029350Z copying torch/include/ATen/ops/_nnpack_available_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2030680Z copying torch/include/ATen/ops/fft_fft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2204680Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2208760Z copying torch/include/ATen/ops/relu_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2209830Z copying torch/include/ATen/ops/_index_put_impl_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2211410Z copying torch/include/ATen/ops/range_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2212670Z copying torch/include/ATen/ops/_cholesky_solve_helper_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2214380Z copying torch/include/ATen/ops/_shape_as_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2215150Z copying torch/include/ATen/ops/logical_and.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2216650Z copying torch/include/ATen/ops/bilinear_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2217830Z copying torch/include/ATen/ops/diff.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2219040Z copying torch/include/ATen/ops/round_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2220380Z copying torch/include/ATen/ops/_foreach_sigmoid_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2221700Z copying torch/include/ATen/ops/softplus_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2222880Z copying torch/include/ATen/ops/bincount_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2224180Z copying torch/include/ATen/ops/_fused_dropout_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2225500Z copying torch/include/ATen/ops/nll_loss_nd_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2226830Z copying torch/include/ATen/ops/_mkldnn_transpose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2228510Z copying torch/include/ATen/ops/_foreach_asin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2229940Z copying torch/include/ATen/ops/hardsigmoid_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2231240Z copying torch/include/ATen/ops/grid_sampler_2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2232530Z copying torch/include/ATen/ops/special_digamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2233910Z copying torch/include/ATen/ops/linalg_eigvalsh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2235090Z copying torch/include/ATen/ops/_cudnn_rnn_flatten_weight_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2236350Z copying torch/include/ATen/ops/_sparse_bsc_tensor_unsafe.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2237660Z copying torch/include/ATen/ops/isposinf_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2239160Z copying torch/include/ATen/ops/_values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2240280Z copying torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2241450Z copying torch/include/ATen/ops/floor_divide_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2242940Z copying torch/include/ATen/ops/full_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2244070Z copying torch/include/ATen/ops/_sparse_compressed_tensor_with_dims.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2245300Z copying torch/include/ATen/ops/_cast_Char_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2246510Z copying torch/include/ATen/ops/embedding_renorm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2247770Z copying torch/include/ATen/ops/promote_types_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2249020Z copying torch/include/ATen/ops/_make_per_tensor_quantized_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2250260Z copying torch/include/ATen/ops/values_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2251470Z copying torch/include/ATen/ops/_to_sparse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2252690Z copying torch/include/ATen/ops/cov_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2253940Z copying torch/include/ATen/ops/greater_equal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2255200Z copying torch/include/ATen/ops/gather_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2256470Z copying torch/include/ATen/ops/scaled_dot_product_attention_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2257790Z copying torch/include/ATen/ops/_is_all_true_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2259010Z copying torch/include/ATen/ops/nonzero_numpy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2260180Z copying torch/include/ATen/ops/masked_scatter_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2261450Z copying torch/include/ATen/ops/hardsigmoid_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2262880Z copying torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2263990Z copying torch/include/ATen/ops/msort.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2265370Z copying torch/include/ATen/ops/_weight_norm_interface_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2266930Z copying torch/include/ATen/ops/hstack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2267860Z copying torch/include/ATen/ops/_unique2_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2269050Z copying torch/include/ATen/ops/divide_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2270250Z copying torch/include/ATen/ops/randn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2271540Z copying torch/include/ATen/ops/var_mean.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2272960Z copying torch/include/ATen/ops/special_xlog1py_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2274080Z copying torch/include/ATen/ops/upsample_bicubic2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2275340Z copying torch/include/ATen/ops/hardsigmoid_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2276650Z copying torch/include/ATen/ops/randperm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2277810Z copying torch/include/ATen/ops/_linalg_svd_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2279060Z copying torch/include/ATen/ops/_sparse_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2280380Z copying torch/include/ATen/ops/q_per_channel_axis.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2281700Z copying torch/include/ATen/ops/cholesky_inverse_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2282930Z copying torch/include/ATen/ops/_fused_adamw_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2284460Z copying torch/include/ATen/ops/complex_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2285610Z copying torch/include/ATen/ops/fix_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2286870Z copying torch/include/ATen/ops/upsample_bicubic2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2288140Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2289340Z copying torch/include/ATen/ops/cat_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2290540Z copying torch/include/ATen/ops/_empty_affine_quantized.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2292160Z copying torch/include/ATen/ops/reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2293280Z copying torch/include/ATen/ops/to_sparse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2294470Z copying torch/include/ATen/ops/pixel_shuffle_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2295730Z copying torch/include/ATen/ops/_foreach_div_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2297080Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2298340Z copying torch/include/ATen/ops/resolve_conj_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2299510Z copying torch/include/ATen/ops/segment_reduce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2300820Z copying torch/include/ATen/ops/cos_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2302050Z copying torch/include/ATen/ops/linalg_tensorinv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2303240Z copying torch/include/ATen/ops/fft_ifft2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2304560Z copying torch/include/ATen/ops/_cslt_sparse_mm_search_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2305930Z copying torch/include/ATen/ops/_pdist_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2307140Z copying torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2308350Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2309630Z copying torch/include/ATen/ops/rrelu_with_noise_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2311240Z copying torch/include/ATen/ops/sym_stride.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2312080Z copying torch/include/ATen/ops/special_hermite_polynomial_h_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2313240Z copying torch/include/ATen/ops/tan_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2314520Z copying torch/include/ATen/ops/replication_pad1d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2315750Z copying torch/include/ATen/ops/_cufft_get_plan_cache_max_size_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2317050Z copying torch/include/ATen/ops/_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2318560Z copying torch/include/ATen/ops/triu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2319730Z copying torch/include/ATen/ops/smooth_l1_loss_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2320990Z copying torch/include/ATen/ops/hardshrink_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2322250Z copying torch/include/ATen/ops/argmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2323540Z copying torch/include/ATen/ops/softshrink_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2324660Z copying torch/include/ATen/ops/randn_like.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2325880Z copying torch/include/ATen/ops/histogram_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2333130Z copying torch/include/ATen/ops/dstack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2334380Z copying torch/include/ATen/ops/_to_sparse_csc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2335670Z copying torch/include/ATen/ops/binary_cross_entropy_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2341420Z copying torch/include/ATen/ops/_int_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2342560Z copying torch/include/ATen/ops/_lu_with_info_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2350070Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2351280Z copying torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2352500Z copying torch/include/ATen/ops/_make_per_tensor_quantized_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2357900Z copying torch/include/ATen/ops/trace.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2359310Z copying torch/include/ATen/ops/matrix_exp_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2366220Z copying torch/include/ATen/ops/indices_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2367330Z copying torch/include/ATen/ops/_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2368700Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2373800Z copying torch/include/ATen/ops/gru_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2374810Z copying torch/include/ATen/ops/_cudnn_attention_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2381820Z copying torch/include/ATen/ops/elu_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2382950Z copying torch/include/ATen/ops/rnn_tanh_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2384220Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2389650Z copying torch/include/ATen/ops/_test_warn_in_autograd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2390950Z copying torch/include/ATen/ops/arcsin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2397570Z copying torch/include/ATen/ops/_test_optional_filled_intlist_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2398710Z copying torch/include/ATen/ops/adaptive_max_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2399980Z copying torch/include/ATen/ops/_chunk_cat_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2407550Z copying torch/include/ATen/ops/_histogramdd_from_bin_tensors_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2408450Z copying torch/include/ATen/ops/atleast_3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2412430Z copying torch/include/ATen/ops/kthvalue_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2416180Z copying torch/include/ATen/ops/_spsolve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2420640Z copying torch/include/ATen/ops/_foreach_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2421630Z copying torch/include/ATen/ops/smooth_l1_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2425560Z copying torch/include/ATen/ops/replication_pad2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2433370Z copying torch/include/ATen/ops/to_sparse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2434670Z copying torch/include/ATen/ops/mkldnn_max_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2438490Z copying torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2442330Z copying torch/include/ATen/ops/trapz.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2445890Z copying torch/include/ATen/ops/_trilinear_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2446950Z copying torch/include/ATen/ops/native_batch_norm_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2452030Z copying torch/include/ATen/ops/linear_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2454700Z copying torch/include/ATen/ops/_ctc_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2460070Z copying torch/include/ATen/ops/dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2461400Z copying torch/include/ATen/ops/diagonal_scatter_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2463160Z copying torch/include/ATen/ops/randperm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2469880Z copying torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2470600Z copying torch/include/ATen/ops/less_equal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2477190Z copying torch/include/ATen/ops/mse_loss_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2478250Z copying torch/include/ATen/ops/nll_loss2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2484890Z copying torch/include/ATen/ops/qscheme_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2485700Z copying torch/include/ATen/ops/cumprod_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2486820Z copying torch/include/ATen/ops/bmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2493450Z copying torch/include/ATen/ops/upsample_bilinear2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2494500Z copying torch/include/ATen/ops/_dyn_quant_matmul_4bit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2501320Z copying torch/include/ATen/ops/blackman_window.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2502290Z copying torch/include/ATen/ops/linalg_matrix_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2508760Z copying torch/include/ATen/ops/elu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2509650Z copying torch/include/ATen/ops/triu_indices_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2510860Z copying torch/include/ATen/ops/conv_transpose3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2517170Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2518180Z copying torch/include/ATen/ops/_foreach_lerp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2524430Z copying torch/include/ATen/ops/gelu_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2525530Z copying torch/include/ATen/ops/sigmoid_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2532490Z copying torch/include/ATen/ops/index_select_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2533410Z copying torch/include/ATen/ops/dropout_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2534660Z copying torch/include/ATen/ops/lstm_mps_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2540810Z copying torch/include/ATen/ops/cartesian_prod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2541710Z copying torch/include/ATen/ops/_sparse_semi_structured_mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2548830Z copying torch/include/ATen/ops/_indices_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2549770Z copying torch/include/ATen/ops/_sparse_broadcast_to_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2556110Z copying torch/include/ATen/ops/ormqr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2557240Z copying torch/include/ATen/ops/hardshrink_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2558740Z copying torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2564880Z copying torch/include/ATen/ops/fractional_max_pool3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2566130Z copying torch/include/ATen/ops/nll_loss_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2573010Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2573930Z copying torch/include/ATen/ops/_test_optional_floatlist_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2575270Z copying torch/include/ATen/ops/mse_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2580630Z copying torch/include/ATen/ops/channel_shuffle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2581680Z copying torch/include/ATen/ops/_histogramdd_from_bin_tensors_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2588110Z copying torch/include/ATen/ops/indices_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2794440Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2795360Z copying torch/include/ATen/ops/ge_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2796530Z copying torch/include/ATen/ops/adaptive_avg_pool3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2797910Z copying torch/include/ATen/ops/minimum_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2799130Z copying torch/include/ATen/ops/_dimI_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2800340Z copying torch/include/ATen/ops/resize_as.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2801620Z copying torch/include/ATen/ops/_standard_gamma_grad_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2802860Z copying torch/include/ATen/ops/reflection_pad3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2804070Z copying torch/include/ATen/ops/or.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2805350Z copying torch/include/ATen/ops/is_same_size_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2806480Z copying torch/include/ATen/ops/cumsum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2807810Z copying torch/include/ATen/ops/upsample_nearest1d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2809140Z copying torch/include/ATen/ops/set_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2810310Z copying torch/include/ATen/ops/exponential_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2811620Z copying torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2812880Z copying torch/include/ATen/ops/linear_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2814110Z copying torch/include/ATen/ops/polar_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2815270Z copying torch/include/ATen/ops/copysign_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2816430Z copying torch/include/ATen/ops/asin_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2817730Z copying torch/include/ATen/ops/upsample_nearest3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2818940Z copying torch/include/ATen/ops/mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2820290Z copying torch/include/ATen/ops/native_layer_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2821600Z copying torch/include/ATen/ops/t_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2822980Z copying torch/include/ATen/ops/_nested_tensor_softmax_with_shape.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2824280Z copying torch/include/ATen/ops/reciprocal_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2825340Z copying torch/include/ATen/ops/_foreach_sigmoid_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2826510Z copying torch/include/ATen/ops/alias_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2827780Z copying torch/include/ATen/ops/ormqr_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2828980Z copying torch/include/ATen/ops/hsplit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2830190Z copying torch/include/ATen/ops/heaviside_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2831350Z copying torch/include/ATen/ops/kaiser_window_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2832630Z copying torch/include/ATen/ops/fft_fftfreq_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2833870Z copying torch/include/ATen/ops/greater_equal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2835130Z copying torch/include/ATen/ops/hardshrink_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2836350Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2837650Z copying torch/include/ATen/ops/batch_norm_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2839050Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2840290Z copying torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2841420Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2842800Z copying torch/include/ATen/ops/zero_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2843990Z copying torch/include/ATen/ops/special_modified_bessel_k0_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2845140Z copying torch/include/ATen/ops/vsplit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2846360Z copying torch/include/ATen/ops/_linalg_eigh_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2847680Z copying torch/include/ATen/ops/special_modified_bessel_i1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2848930Z copying torch/include/ATen/ops/nanmedian_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2855830Z copying torch/include/ATen/ops/new_empty_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2856480Z copying torch/include/ATen/ops/addmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2857010Z copying torch/include/ATen/ops/atan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2857630Z copying torch/include/ATen/ops/where_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2858290Z copying torch/include/ATen/ops/channel_shuffle_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2858880Z copying torch/include/ATen/ops/glu_jvp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2859570Z copying torch/include/ATen/ops/_nested_tensor_storage_offsets.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2860190Z copying torch/include/ATen/ops/mkldnn_convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2860760Z copying torch/include/ATen/ops/_is_all_true.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2861950Z copying torch/include/ATen/ops/le_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2863400Z copying torch/include/ATen/ops/fractional_max_pool3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2864630Z copying torch/include/ATen/ops/polygamma_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2865890Z copying torch/include/ATen/ops/_efficientzerotensor_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2867130Z copying torch/include/ATen/ops/index_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2868410Z copying torch/include/ATen/ops/max_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2869750Z copying torch/include/ATen/ops/special_hermite_polynomial_he_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2870950Z copying torch/include/ATen/ops/_nested_get_values_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2872190Z copying torch/include/ATen/ops/addmv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2873670Z copying torch/include/ATen/ops/view_as_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2874990Z copying torch/include/ATen/ops/_masked_softmax_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2876170Z copying torch/include/ATen/ops/_batch_norm_impl_index_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2877520Z copying torch/include/ATen/ops/crow_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2878840Z copying torch/include/ATen/ops/as_strided_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2880150Z copying torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2881350Z copying torch/include/ATen/ops/embedding_bag_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2882620Z copying torch/include/ATen/ops/flatten_dense_tensors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2883890Z copying torch/include/ATen/ops/fft_hfftn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2885120Z copying torch/include/ATen/ops/mvlgamma_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2886300Z copying torch/include/ATen/ops/_cudnn_rnn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2887890Z copying torch/include/ATen/ops/isreal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2888920Z copying torch/include/ATen/ops/cumprod_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2890100Z copying torch/include/ATen/ops/logical_xor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2891380Z copying torch/include/ATen/ops/_sobol_engine_initialize_state_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2892590Z copying torch/include/ATen/ops/_unsafe_index_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2893870Z copying torch/include/ATen/ops/cos_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2895110Z copying torch/include/ATen/ops/fft_fftn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2896500Z copying torch/include/ATen/ops/linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2898260Z copying torch/include/ATen/ops/multi_margin_loss_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2899470Z copying torch/include/ATen/ops/sparse_resize_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2900830Z copying torch/include/ATen/ops/rnn_tanh_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2902210Z copying torch/include/ATen/ops/_embedding_bag_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2903420Z copying torch/include/ATen/ops/_weight_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2904670Z copying torch/include/ATen/ops/eq.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2906130Z copying torch/include/ATen/ops/_efficient_attention_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2907490Z copying torch/include/ATen/ops/_sparse_sum_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2908660Z copying torch/include/ATen/ops/cumprod_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2909990Z copying torch/include/ATen/ops/fmod_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2911240Z copying torch/include/ATen/ops/isinf_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2912460Z copying torch/include/ATen/ops/_fft_c2c.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2913830Z copying torch/include/ATen/ops/vstack_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2915910Z copying torch/include/ATen/ops/_to_sparse_bsc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2917200Z copying torch/include/ATen/ops/pad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2918570Z copying torch/include/ATen/ops/special_modified_bessel_i0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2924630Z copying torch/include/ATen/ops/reflection_pad1d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2932120Z copying torch/include/ATen/ops/arcsinh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2933230Z copying torch/include/ATen/ops/addr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2934420Z copying torch/include/ATen/ops/_prelu_kernel_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2939630Z copying torch/include/ATen/ops/cudnn_convolution_relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2940820Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2947940Z copying torch/include/ATen/ops/i0_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2948950Z copying torch/include/ATen/ops/huber_loss_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2955410Z copying torch/include/ATen/ops/lu_unpack_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2956210Z copying torch/include/ATen/ops/_coalesced_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2957460Z copying torch/include/ATen/ops/_scaled_grouped_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2963260Z copying torch/include/ATen/ops/special_erfcx_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2964420Z copying torch/include/ATen/ops/var_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2970780Z copying torch/include/ATen/ops/mkldnn_max_pool3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2972690Z copying torch/include/ATen/ops/special_bessel_j0_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2973980Z copying torch/include/ATen/ops/linalg_ldl_factor_ex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2980540Z copying torch/include/ATen/ops/_triton_multi_head_attention_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2981610Z copying torch/include/ATen/ops/igammac_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2988390Z copying torch/include/ATen/ops/var_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2989410Z copying torch/include/ATen/ops/tanh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2996450Z copying torch/include/ATen/ops/avg_pool3d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2997430Z copying torch/include/ATen/ops/mean_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.2998570Z copying torch/include/ATen/ops/lgamma_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3004170Z copying torch/include/ATen/ops/_scaled_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3005570Z copying torch/include/ATen/ops/_fused_sdp_choice_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3011860Z copying torch/include/ATen/ops/to_mkldnn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3012960Z copying torch/include/ATen/ops/replication_pad1d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3014460Z copying torch/include/ATen/ops/_nested_from_padded_and_nested_example_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3019590Z copying torch/include/ATen/ops/binary_cross_entropy_with_logits.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3020400Z copying torch/include/ATen/ops/_validate_sparse_compressed_tensor_args.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3027060Z copying torch/include/ATen/ops/replication_pad3d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3028270Z copying torch/include/ATen/ops/bmm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3034510Z copying torch/include/ATen/ops/_to_dense.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3035740Z copying torch/include/ATen/ops/batch_norm_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3037160Z copying torch/include/ATen/ops/log.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3044310Z copying torch/include/ATen/ops/igamma_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3045350Z copying torch/include/ATen/ops/cudnn_batch_norm_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3052300Z copying torch/include/ATen/ops/new_full.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3053430Z copying torch/include/ATen/ops/_to_sparse_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3060720Z copying torch/include/ATen/ops/embedding_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3061770Z copying torch/include/ATen/ops/linalg_slogdet.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3063070Z copying torch/include/ATen/ops/fft_rfft2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3069120Z copying torch/include/ATen/ops/_foreach_atan_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3070000Z copying torch/include/ATen/ops/clip.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3076440Z copying torch/include/ATen/ops/reshape.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3077740Z copying torch/include/ATen/ops/slow_conv_transpose2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3079260Z copying torch/include/ATen/ops/_cast_Long_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3085090Z copying torch/include/ATen/ops/triu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3086000Z copying torch/include/ATen/ops/index_fill_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3093370Z copying torch/include/ATen/ops/_cslt_sparse_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3094270Z copying torch/include/ATen/ops/isneginf_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3100810Z copying torch/include/ATen/ops/matrix_power_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3102140Z copying torch/include/ATen/ops/special_spherical_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3108880Z copying torch/include/ATen/ops/view_as_complex_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3109840Z copying torch/include/ATen/ops/mvlgamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3111110Z copying torch/include/ATen/ops/permute_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3116980Z copying torch/include/ATen/ops/sign_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3324760Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3325570Z copying torch/include/ATen/ops/reflection_pad2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3326820Z copying torch/include/ATen/ops/_foreach_minimum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3328010Z copying torch/include/ATen/ops/int_repr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3329300Z copying torch/include/ATen/ops/heaviside_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3330550Z copying torch/include/ATen/ops/column_stack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3331770Z copying torch/include/ATen/ops/scatter_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3333020Z copying torch/include/ATen/ops/minimum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3334220Z copying torch/include/ATen/ops/to_sparse_bsc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3335550Z copying torch/include/ATen/ops/absolute_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3336780Z copying torch/include/ATen/ops/from_file_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3338060Z copying torch/include/ATen/ops/miopen_convolution_transpose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3339580Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3340770Z copying torch/include/ATen/ops/sinc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3342090Z copying torch/include/ATen/ops/_foreach_trunc_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3343370Z copying torch/include/ATen/ops/real_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3344790Z copying torch/include/ATen/ops/split_with_sizes_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3346010Z copying torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3347160Z copying torch/include/ATen/ops/align_tensors_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3348490Z copying torch/include/ATen/ops/acos_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3349730Z copying torch/include/ATen/ops/minimum_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3350950Z copying torch/include/ATen/ops/special_bessel_y0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3352180Z copying torch/include/ATen/ops/sspaddmm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3353480Z copying torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3354650Z copying torch/include/ATen/ops/logdet_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3355870Z copying torch/include/ATen/ops/cauchy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3357210Z copying torch/include/ATen/ops/bitwise_xor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3358490Z copying torch/include/ATen/ops/is_vulkan_available_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3359850Z copying torch/include/ATen/ops/max_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3360990Z copying torch/include/ATen/ops/gt_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3362250Z copying torch/include/ATen/ops/ccol_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3363510Z copying torch/include/ATen/ops/normal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3364990Z copying torch/include/ATen/ops/cudnn_convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3366380Z copying torch/include/ATen/ops/_foreach_frac_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3367600Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3369050Z copying torch/include/ATen/ops/_to_sparse_bsc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3370100Z copying torch/include/ATen/ops/linalg_eigh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3371440Z copying torch/include/ATen/ops/upsample_bilinear2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3372670Z copying torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3374020Z copying torch/include/ATen/ops/rnn_relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3375270Z copying torch/include/ATen/ops/reflection_pad2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3376550Z copying torch/include/ATen/ops/replication_pad1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3377970Z copying torch/include/ATen/ops/_nnpack_available_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3379140Z copying torch/include/ATen/ops/_validate_sparse_csr_tensor_args.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3380380Z copying torch/include/ATen/ops/upsample_nearest3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3381680Z copying torch/include/ATen/ops/sym_constrain_range_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3382990Z copying torch/include/ATen/ops/multilabel_margin_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3384290Z copying torch/include/ATen/ops/leaky_relu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3385780Z copying torch/include/ATen/ops/to_sparse_bsc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3386900Z copying torch/include/ATen/ops/native_layer_norm_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3388090Z copying torch/include/ATen/ops/linalg_ldl_factor_ex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3389370Z copying torch/include/ATen/ops/linspace_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3390540Z copying torch/include/ATen/ops/heaviside_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3391850Z copying torch/include/ATen/ops/to_sparse_bsr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3393130Z copying torch/include/ATen/ops/histc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3394250Z copying torch/include/ATen/ops/_pad_packed_sequence_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3395530Z copying torch/include/ATen/ops/q_per_channel_zero_points_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3396750Z copying torch/include/ATen/ops/_embedding_bag_dense_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3398010Z copying torch/include/ATen/ops/square.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3399290Z copying torch/include/ATen/ops/_empty_per_channel_affine_quantized.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3400620Z copying torch/include/ATen/ops/diagflat_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3401910Z copying torch/include/ATen/ops/rnn_relu_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3403400Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3404590Z copying torch/include/ATen/ops/prod_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3405970Z copying torch/include/ATen/ops/cdist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3407330Z copying torch/include/ATen/ops/triu_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3408570Z copying torch/include/ATen/ops/special_expm1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3409850Z copying torch/include/ATen/ops/atleast_1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3411090Z copying torch/include/ATen/ops/nll_loss_forward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3412370Z copying torch/include/ATen/ops/split_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3413820Z copying torch/include/ATen/ops/special_i1e_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3414970Z copying torch/include/ATen/ops/conv_transpose1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3416300Z copying torch/include/ATen/ops/_assert_async_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3417480Z copying torch/include/ATen/ops/fft_rfftfreq.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3418810Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3420080Z copying torch/include/ATen/ops/cummax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3421440Z copying torch/include/ATen/ops/to_sparse_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3422720Z copying torch/include/ATen/ops/normal_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3423930Z copying torch/include/ATen/ops/leaky_relu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3425180Z copying torch/include/ATen/ops/binary_cross_entropy_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3426520Z copying torch/include/ATen/ops/cumsum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3427670Z copying torch/include/ATen/ops/reflection_pad2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3428910Z copying torch/include/ATen/ops/adaptive_max_pool2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3430100Z copying torch/include/ATen/ops/histogram_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3431430Z copying torch/include/ATen/ops/_foreach_acos.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3432710Z copying torch/include/ATen/ops/softshrink_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3433950Z copying torch/include/ATen/ops/_new_zeros_with_same_feature_meta_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3435140Z copying torch/include/ATen/ops/amin_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3436410Z copying torch/include/ATen/ops/_foreach_log_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3437660Z copying torch/include/ATen/ops/linalg_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3438970Z copying torch/include/ATen/ops/_nested_view_from_jagged_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3440290Z copying torch/include/ATen/ops/linalg_matrix_power.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3441490Z copying torch/include/ATen/ops/avg_pool1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3442760Z copying torch/include/ATen/ops/unfold_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3444110Z copying torch/include/ATen/ops/_batch_norm_no_update_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3447990Z copying torch/include/ATen/ops/sigmoid_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3448920Z copying torch/include/ATen/ops/clamp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3455300Z copying torch/include/ATen/ops/norm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3456240Z copying torch/include/ATen/ops/trunc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3457550Z copying torch/include/ATen/ops/linalg_qr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3463340Z copying torch/include/ATen/ops/special_zeta_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3464220Z copying torch/include/ATen/ops/linalg_vector_norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3471270Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3472170Z copying torch/include/ATen/ops/avg_pool2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3478770Z copying torch/include/ATen/ops/conv3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3479700Z copying torch/include/ATen/ops/_fill_mem_eff_dropout_mask.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3480950Z copying torch/include/ATen/ops/lt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3486140Z copying torch/include/ATen/ops/scatter_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3487310Z copying torch/include/ATen/ops/crow_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3494070Z copying torch/include/ATen/ops/to_dense_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3495490Z copying torch/include/ATen/ops/minimum_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3502670Z copying torch/include/ATen/ops/pixel_shuffle_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3503630Z copying torch/include/ATen/ops/_native_batch_norm_legit_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3504890Z copying torch/include/ATen/ops/view_as_complex_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3510450Z copying torch/include/ATen/ops/_foreach_clamp_min_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3511420Z copying torch/include/ATen/ops/_convolution_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3518510Z copying torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3519460Z copying torch/include/ATen/ops/special_expit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3520910Z copying torch/include/ATen/ops/zeros_like_compositeimplicitautogradnestedtensor_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3526190Z copying torch/include/ATen/ops/_amp_update_scale_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3527470Z copying torch/include/ATen/ops/lstm_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3533580Z copying torch/include/ATen/ops/binary_cross_entropy_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3534730Z copying torch/include/ATen/ops/elu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3541550Z copying torch/include/ATen/ops/fractional_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3542340Z copying torch/include/ATen/ops/rename.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3543850Z copying torch/include/ATen/ops/addbmm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3550960Z copying torch/include/ATen/ops/_wrapped_linear_prepack_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3551920Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3558230Z copying torch/include/ATen/ops/_fill_mem_eff_dropout_mask_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3559520Z copying torch/include/ATen/ops/xor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3565620Z copying torch/include/ATen/ops/_batch_norm_with_update_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3566560Z copying torch/include/ATen/ops/max_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3567720Z copying torch/include/ATen/ops/log2_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3574130Z copying torch/include/ATen/ops/sub_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3574830Z copying torch/include/ATen/ops/view_as_real_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3581770Z copying torch/include/ATen/ops/_fft_c2c_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3582870Z copying torch/include/ATen/ops/linalg_ldl_factor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3584130Z copying torch/include/ATen/ops/norm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3590510Z copying torch/include/ATen/ops/_transformer_encoder_layer_fwd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3593430Z copying torch/include/ATen/ops/_validate_sparse_csc_tensor_args_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3599940Z copying torch/include/ATen/ops/empty_like_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3601140Z copying torch/include/ATen/ops/_to_sparse_semi_structured_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3607730Z copying torch/include/ATen/ops/native_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3609210Z copying torch/include/ATen/ops/_linalg_solve_ex_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3615650Z copying torch/include/ATen/ops/_is_zerotensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3616800Z copying torch/include/ATen/ops/_log_softmax_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3618020Z copying torch/include/ATen/ops/col_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3623420Z copying torch/include/ATen/ops/diagonal_scatter_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3624170Z copying torch/include/ATen/ops/index_select_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3631660Z copying torch/include/ATen/ops/gt_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3639880Z copying torch/include/ATen/ops/vander.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3640910Z copying torch/include/ATen/ops/max_pool3d_with_indices_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3642190Z copying torch/include/ATen/ops/_cdist_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3647230Z copying torch/include/ATen/ops/_unsafe_masked_index_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3649650Z copying torch/include/ATen/ops/_cslt_sparse_mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3655260Z copying torch/include/ATen/ops/_batch_norm_impl_index_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3656260Z copying torch/include/ATen/ops/signbit_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3657480Z copying torch/include/ATen/ops/_foreach_add_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3662730Z copying torch/include/ATen/ops/add_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3664060Z copying torch/include/ATen/ops/_addmm_activation_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3670220Z copying torch/include/ATen/ops/maximum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3671840Z copying torch/include/ATen/ops/renorm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3677800Z copying torch/include/ATen/ops/elu_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3678900Z copying torch/include/ATen/ops/quantized_max_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3680250Z copying torch/include/ATen/ops/randn_like_compositeimplicitautogradnestedtensor_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3687670Z copying torch/include/ATen/ops/tril_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3688620Z copying torch/include/ATen/ops/special_bessel_j0_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3695780Z copying torch/include/ATen/ops/fft_fft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3697040Z copying torch/include/ATen/ops/_test_optional_floatlist_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3704210Z copying torch/include/ATen/ops/_lazy_clone_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3705160Z copying torch/include/ATen/ops/silu_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3706470Z copying torch/include/ATen/ops/_slow_conv2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3711840Z copying torch/include/ATen/ops/avg_pool2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3713060Z copying torch/include/ATen/ops/result_type_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3719200Z copying torch/include/ATen/ops/lcm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3921760Z copying torch/include/ATen/ops/_foreach_erfc_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3922750Z copying torch/include/ATen/ops/q_per_channel_zero_points_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3924010Z copying torch/include/ATen/ops/special_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3925250Z copying torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3926550Z copying torch/include/ATen/ops/_make_dep_token_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3927870Z copying torch/include/ATen/ops/special_zeta_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3929040Z copying torch/include/ATen/ops/poisson_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3930300Z copying torch/include/ATen/ops/_amp_update_scale_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3931760Z copying torch/include/ATen/ops/_pad_packed_sequence_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3933050Z copying torch/include/ATen/ops/fft_irfft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3934570Z copying torch/include/ATen/ops/softshrink_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3935490Z copying torch/include/ATen/ops/sum_to_size_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3936830Z copying torch/include/ATen/ops/transpose_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3938000Z copying torch/include/ATen/ops/trace_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3939240Z copying torch/include/ATen/ops/fft_rfft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3940720Z copying torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3942010Z copying torch/include/ATen/ops/quantized_max_pool1d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3943130Z copying torch/include/ATen/ops/one_hot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3944460Z copying torch/include/ATen/ops/_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3945740Z copying torch/include/ATen/ops/_to_sparse_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3946920Z copying torch/include/ATen/ops/atleast_2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3948150Z copying torch/include/ATen/ops/argmin_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3949370Z copying torch/include/ATen/ops/_nested_from_padded_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.3950600Z copying torch/include/ATen/ops/randint.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4023740Z copying torch/include/ATen/ops/max_pool2d_with_indices_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4024820Z copying torch/include/ATen/ops/embedding_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4025940Z copying torch/include/ATen/ops/leaky_relu_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4027280Z copying torch/include/ATen/ops/smooth_l1_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4028540Z copying torch/include/ATen/ops/broadcast_tensors_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4029680Z copying torch/include/ATen/ops/mkldnn_max_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4030930Z copying torch/include/ATen/ops/sym_constrain_range.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4032370Z copying torch/include/ATen/ops/linalg_matrix_exp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4033580Z copying torch/include/ATen/ops/fft_fftshift_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4034790Z copying torch/include/ATen/ops/glu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4036160Z copying torch/include/ATen/ops/asin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4037330Z copying torch/include/ATen/ops/diag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4038890Z copying torch/include/ATen/ops/mse_loss_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4040230Z copying torch/include/ATen/ops/gather_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4042100Z copying torch/include/ATen/ops/_is_zerotensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4043080Z copying torch/include/ATen/ops/median.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4044250Z copying torch/include/ATen/ops/rnn_relu_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4045450Z copying torch/include/ATen/ops/cummin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4046770Z copying torch/include/ATen/ops/dequantize_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4047940Z copying torch/include/ATen/ops/cummax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4049230Z copying torch/include/ATen/ops/native_layer_norm_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4050670Z copying torch/include/ATen/ops/view_as_complex_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4051920Z copying torch/include/ATen/ops/igammac_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4053200Z copying torch/include/ATen/ops/cat_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4054340Z copying torch/include/ATen/ops/linalg_qr_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4055660Z copying torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4056820Z copying torch/include/ATen/ops/celu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4058150Z copying torch/include/ATen/ops/_functional_assert_scalar_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4059180Z copying torch/include/ATen/ops/addr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4060390Z copying torch/include/ATen/ops/where.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4061800Z copying torch/include/ATen/ops/empty_strided_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4063050Z copying torch/include/ATen/ops/quantized_batch_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4064300Z copying torch/include/ATen/ops/_foreach_reciprocal_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4065500Z copying torch/include/ATen/ops/miopen_rnn_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4066790Z copying torch/include/ATen/ops/_weight_norm_interface_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4067960Z copying torch/include/ATen/ops/embedding.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4069240Z copying torch/include/ATen/ops/is_leaf_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4070570Z copying torch/include/ATen/ops/remainder_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4077460Z copying torch/include/ATen/ops/sym_size_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4077720Z copying torch/include/ATen/ops/fill_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4078010Z copying torch/include/ATen/ops/relu6.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4078240Z copying torch/include/ATen/ops/_coalesce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4078510Z copying torch/include/ATen/ops/bitwise_right_shift_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4078780Z copying torch/include/ATen/ops/nextafter_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4079050Z copying torch/include/ATen/ops/reflection_pad3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4080340Z copying torch/include/ATen/ops/nonzero_static_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4081660Z copying torch/include/ATen/ops/_sobol_engine_initialize_state.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4082710Z copying torch/include/ATen/ops/range_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4084110Z copying torch/include/ATen/ops/special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4085410Z copying torch/include/ATen/ops/cross_entropy_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4086580Z copying torch/include/ATen/ops/native_channel_shuffle_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4087970Z copying torch/include/ATen/ops/bmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4089370Z copying torch/include/ATen/ops/_make_per_channel_quantized_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4090680Z copying torch/include/ATen/ops/_add_relu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4091740Z copying torch/include/ATen/ops/triu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4092980Z copying torch/include/ATen/ops/negative.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4094270Z copying torch/include/ATen/ops/linalg_lstsq_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4095500Z copying torch/include/ATen/ops/empty_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4096660Z copying torch/include/ATen/ops/argmax_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4097950Z copying torch/include/ATen/ops/_to_cpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4099320Z copying torch/include/ATen/ops/native_group_norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4100530Z copying torch/include/ATen/ops/upsample_bicubic2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4101680Z copying torch/include/ATen/ops/arcsinh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4102910Z copying torch/include/ATen/ops/q_per_channel_scales.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4104150Z copying torch/include/ATen/ops/tanh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4105380Z copying torch/include/ATen/ops/_test_optional_intlist_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4106590Z copying torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4107920Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4109120Z copying torch/include/ATen/ops/stack_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4110240Z copying torch/include/ATen/ops/pdist_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4111450Z copying torch/include/ATen/ops/_test_string_default.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4112750Z copying torch/include/ATen/ops/nll_loss2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4114020Z copying torch/include/ATen/ops/narrow_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4115420Z copying torch/include/ATen/ops/_sparse_semi_structured_tile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4116340Z copying torch/include/ATen/ops/argmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4117620Z copying torch/include/ATen/ops/_fused_sdp_choice_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4118790Z copying torch/include/ATen/ops/is_signed_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4120090Z copying torch/include/ATen/ops/conv2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4121260Z copying torch/include/ATen/ops/_test_optional_intlist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4122540Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4123860Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4125150Z copying torch/include/ATen/ops/_convert_indices_from_coo_to_csr_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4126320Z copying torch/include/ATen/ops/_weight_norm_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4127470Z copying torch/include/ATen/ops/atanh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4128720Z copying torch/include/ATen/ops/_foreach_sqrt_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4129910Z copying torch/include/ATen/ops/var_mean_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4131220Z copying torch/include/ATen/ops/polar_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4132330Z copying torch/include/ATen/ops/square_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4133520Z copying torch/include/ATen/ops/argsort.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4134730Z copying torch/include/ATen/ops/slice_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4138920Z copying torch/include/ATen/ops/erf_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4139820Z copying torch/include/ATen/ops/_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4140980Z copying torch/include/ATen/ops/linalg_cholesky_ex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4146500Z copying torch/include/ATen/ops/_sparse_log_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4147420Z copying torch/include/ATen/ops/_histogramdd_from_bin_cts_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4154150Z copying torch/include/ATen/ops/norm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4155860Z copying torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4161480Z copying torch/include/ATen/ops/mean.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4162760Z copying torch/include/ATen/ops/_assert_tensor_metadata_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4164940Z copying torch/include/ATen/ops/_sparse_addmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4169540Z copying torch/include/ATen/ops/_cufft_clear_plan_cache_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4170590Z copying torch/include/ATen/ops/empty_strided_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4175120Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4178760Z copying torch/include/ATen/ops/bitwise_right_shift_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4182920Z copying torch/include/ATen/ops/chalf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4184020Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4188980Z copying torch/include/ATen/ops/adaptive_max_pool3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4196510Z copying torch/include/ATen/ops/linalg_lu_factor_ex_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4197500Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4202140Z copying torch/include/ATen/ops/empty_permuted_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4205800Z copying torch/include/ATen/ops/_amp_update_scale_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4209530Z copying torch/include/ATen/ops/hardswish_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4210290Z copying torch/include/ATen/ops/pow_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4215310Z copying torch/include/ATen/ops/frexp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4218960Z copying torch/include/ATen/ops/cholesky_solve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4222400Z copying torch/include/ATen/ops/_dim_arange_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4223640Z copying torch/include/ATen/ops/median_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4228650Z copying torch/include/ATen/ops/sigmoid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4231610Z copying torch/include/ATen/ops/conv1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4234420Z copying torch/include/ATen/ops/_scaled_dot_product_efficient_attention_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4239380Z copying torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4246710Z copying torch/include/ATen/ops/bernoulli_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4247610Z copying torch/include/ATen/ops/_nested_get_values_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4254340Z copying torch/include/ATen/ops/masked_select_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4255370Z copying torch/include/ATen/ops/glu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4262430Z copying torch/include/ATen/ops/_foreach_sigmoid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4263600Z copying torch/include/ATen/ops/logical_and_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4269790Z copying torch/include/ATen/ops/_batch_norm_no_update_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4270980Z copying torch/include/ATen/ops/cudnn_is_acceptable_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4277740Z copying torch/include/ATen/ops/_foreach_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4278920Z copying torch/include/ATen/ops/conv1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4280110Z copying torch/include/ATen/ops/lcm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4286920Z copying torch/include/ATen/ops/rrelu_with_noise_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4288430Z copying torch/include/ATen/ops/retains_grad_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4294700Z copying torch/include/ATen/ops/special_modified_bessel_i0_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4295950Z copying torch/include/ATen/ops/empty_strided_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4303170Z copying torch/include/ATen/ops/_make_dep_token.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4304280Z copying torch/include/ATen/ops/complex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4305630Z copying torch/include/ATen/ops/max_pool1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4311020Z copying torch/include/ATen/ops/count_nonzero_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4311830Z copying torch/include/ATen/ops/logaddexp_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4313170Z copying torch/include/ATen/ops/clamp_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4319880Z copying torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4320940Z copying torch/include/ATen/ops/adaptive_avg_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4327720Z copying torch/include/ATen/ops/reflection_pad2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4328880Z copying torch/include/ATen/ops/special_modified_bessel_i1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4336060Z copying torch/include/ATen/ops/nansum_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4337040Z copying torch/include/ATen/ops/cholesky_inverse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4338340Z copying torch/include/ATen/ops/_test_optional_intlist_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4344280Z copying torch/include/ATen/ops/upsample_nearest1d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4345390Z copying torch/include/ATen/ops/quantized_max_pool2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4353330Z copying torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4354120Z copying torch/include/ATen/ops/_to_sparse_csc_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4355540Z copying torch/include/ATen/ops/ne_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4361420Z copying torch/include/ATen/ops/scatter_reduce_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4363250Z copying torch/include/ATen/ops/floor_divide_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4369190Z copying torch/include/ATen/ops/_efficientzerotensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4370230Z copying torch/include/ATen/ops/_softmax_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4371760Z copying torch/include/ATen/ops/special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4377040Z copying torch/include/ATen/ops/special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4377960Z copying torch/include/ATen/ops/polygamma_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4381560Z copying torch/include/ATen/ops/lgamma_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4386640Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4389620Z copying torch/include/ATen/ops/exponential_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4390580Z copying torch/include/ATen/ops/cholesky_inverse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4396810Z copying torch/include/ATen/ops/max_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4397970Z copying torch/include/ATen/ops/rsqrt_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4400730Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4406710Z copying torch/include/ATen/ops/row_stack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4413260Z copying torch/include/ATen/ops/_make_per_channel_quantized_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4414870Z copying torch/include/ATen/ops/segment_reduce_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4420700Z copying torch/include/ATen/ops/sin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4421710Z copying torch/include/ATen/ops/empty_strided.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4423980Z copying torch/include/ATen/ops/_embedding_bag_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4429150Z copying torch/include/ATen/ops/linalg_solve_triangular_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4429940Z copying torch/include/ATen/ops/abs_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4436980Z copying torch/include/ATen/ops/moveaxis_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4437850Z copying torch/include/ATen/ops/nll_loss_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4444460Z copying torch/include/ATen/ops/_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4445350Z copying torch/include/ATen/ops/ceil_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4452750Z copying torch/include/ATen/ops/conj_physical.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4453810Z copying torch/include/ATen/ops/_foreach_asin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4460210Z copying torch/include/ATen/ops/fft_ihfft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4461330Z copying torch/include/ATen/ops/_histogramdd_from_bin_cts_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4467820Z copying torch/include/ATen/ops/deg2rad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4468570Z copying torch/include/ATen/ops/median_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4469780Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k0_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4476900Z copying torch/include/ATen/ops/reflection_pad3d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4477870Z copying torch/include/ATen/ops/polygamma_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4484330Z copying torch/include/ATen/ops/_linalg_solve_ex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4492840Z copying torch/include/ATen/ops/norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4493570Z copying torch/include/ATen/ops/batch_norm_stats.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4494800Z copying torch/include/ATen/ops/baddbmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4500040Z copying torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4500970Z copying torch/include/ATen/ops/cudnn_grid_sampler_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4507940Z copying torch/include/ATen/ops/_linalg_solve_ex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4509000Z copying torch/include/ATen/ops/smooth_l1_loss_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4516330Z copying torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4517100Z copying torch/include/ATen/ops/unfold_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4518320Z copying torch/include/ATen/ops/view_as_complex_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4524260Z copying torch/include/ATen/ops/adaptive_avg_pool2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4525040Z copying torch/include/ATen/ops/huber_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4532330Z copying torch/include/ATen/ops/_ctc_loss_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4533280Z copying torch/include/ATen/ops/pin_memory.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4534600Z copying torch/include/ATen/ops/_safe_softmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4540070Z copying torch/include/ATen/ops/logaddexp2_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4541470Z copying torch/include/ATen/ops/stft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4548130Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4549140Z copying torch/include/ATen/ops/erf_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4550410Z copying torch/include/ATen/ops/reflection_pad1d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4557140Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4558220Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4564500Z copying torch/include/ATen/ops/linalg_slogdet_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4565450Z copying torch/include/ATen/ops/_embedding_bag_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4566810Z copying torch/include/ATen/ops/conv_depthwise3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4572080Z copying torch/include/ATen/ops/fractional_max_pool2d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4573030Z copying torch/include/ATen/ops/special_ndtri_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4574320Z copying torch/include/ATen/ops/celu_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4579920Z copying torch/include/ATen/ops/logit_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4581190Z copying torch/include/ATen/ops/slow_conv_dilated3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4587010Z copying torch/include/ATen/ops/nanmean_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4589620Z copying torch/include/ATen/ops/to_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4596100Z copying torch/include/ATen/ops/avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4597530Z copying torch/include/ATen/ops/hardswish_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4602750Z copying torch/include/ATen/ops/_convert_weight_to_int4pack_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4603940Z copying torch/include/ATen/ops/polygamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4608980Z copying torch/include/ATen/ops/normal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4616160Z copying torch/include/ATen/ops/avg_pool3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4617360Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4622310Z copying torch/include/ATen/ops/copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4625260Z copying torch/include/ATen/ops/add_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4630670Z copying torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4631740Z copying torch/include/ATen/ops/special_gammainc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4633550Z copying torch/include/ATen/ops/batch_norm_gather_stats.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4639320Z copying torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4640220Z copying torch/include/ATen/ops/sspaddmm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4646250Z copying torch/include/ATen/ops/stack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4648710Z copying torch/include/ATen/ops/isin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4650070Z copying torch/include/ATen/ops/multi_margin_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4655510Z copying torch/include/ATen/ops/mkldnn_max_pool2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4656880Z copying torch/include/ATen/ops/svd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4663050Z copying torch/include/ATen/ops/sparse_bsc_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4664460Z copying torch/include/ATen/ops/hspmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4670060Z copying torch/include/ATen/ops/conj_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4672300Z copying torch/include/ATen/ops/linalg_lu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4673460Z copying torch/include/ATen/ops/addmm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4679590Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4680930Z copying torch/include/ATen/ops/clone_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4687710Z copying torch/include/ATen/ops/_foreach_pow_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4688820Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4690090Z copying torch/include/ATen/ops/_foreach_log2_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4696320Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4703620Z copying torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4704780Z copying torch/include/ATen/ops/linalg_eigvals.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4711080Z copying torch/include/ATen/ops/linalg_vander_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4712330Z copying torch/include/ATen/ops/_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4713570Z copying torch/include/ATen/ops/hardtanh_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4719850Z copying torch/include/ATen/ops/conv_tbc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4720680Z copying torch/include/ATen/ops/isposinf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4727520Z copying torch/include/ATen/ops/cudnn_grid_sampler_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4728650Z copying torch/include/ATen/ops/special_legendre_polynomial_p_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4735330Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4736260Z copying torch/include/ATen/ops/resize_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4737520Z copying torch/include/ATen/ops/triu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4742610Z copying torch/include/ATen/ops/scatter_add.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4743880Z copying torch/include/ATen/ops/_transform_bias_rescale_qkv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4751870Z copying torch/include/ATen/ops/miopen_batch_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4757010Z copying torch/include/ATen/ops/fill_diagonal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4758790Z copying torch/include/ATen/ops/special_digamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4760190Z copying torch/include/ATen/ops/_debug_has_internal_overlap_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4761540Z copying torch/include/ATen/ops/_test_serialization_subcmul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4767130Z copying torch/include/ATen/ops/prod_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4768160Z copying torch/include/ATen/ops/_nested_get_values.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4775220Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4776110Z copying torch/include/ATen/ops/neg_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4783030Z copying torch/include/ATen/ops/linalg_tensorinv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4784080Z copying torch/include/ATen/ops/logical_xor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4785230Z copying torch/include/ATen/ops/sparse_dim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4790790Z copying torch/include/ATen/ops/infinitely_differentiable_gelu_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4791870Z copying torch/include/ATen/ops/linalg_lu_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4796150Z copying torch/include/ATen/ops/linalg_matrix_exp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4800090Z copying torch/include/ATen/ops/_copy_from_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4801520Z copying torch/include/ATen/ops/complex_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4805620Z copying torch/include/ATen/ops/clone_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4808360Z copying torch/include/ATen/ops/linalg_vector_norm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4812780Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4813970Z copying torch/include/ATen/ops/slow_conv_transpose2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4815640Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4822840Z copying torch/include/ATen/ops/special_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4823610Z copying torch/include/ATen/ops/dequantize_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4829760Z copying torch/include/ATen/ops/erfinv_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4832280Z copying torch/include/ATen/ops/_pin_memory_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4837490Z copying torch/include/ATen/ops/sign_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4838410Z copying torch/include/ATen/ops/special_i0_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4840060Z copying torch/include/ATen/ops/_dimV_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4846290Z copying torch/include/ATen/ops/frac_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4847380Z copying torch/include/ATen/ops/ctc_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4854770Z copying torch/include/ATen/ops/_lazy_clone_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4855560Z copying torch/include/ATen/ops/_foreach_cos_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4862290Z copying torch/include/ATen/ops/transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4864080Z copying torch/include/ATen/ops/masked_select_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4871480Z copying torch/include/ATen/ops/quantized_max_pool3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4877160Z copying torch/include/ATen/ops/_prelu_kernel_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4878700Z copying torch/include/ATen/ops/set_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4880070Z copying torch/include/ATen/ops/relu6_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4887480Z copying torch/include/ATen/ops/special_modified_bessel_k1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4888430Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.4894880Z copying torch/include/ATen/ops/expm1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5100000Z copying torch/include/ATen/ops/kron.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5101260Z copying torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5102580Z copying torch/include/ATen/ops/cat_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5103960Z copying torch/include/ATen/ops/_linalg_check_errors_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5105390Z copying torch/include/ATen/ops/triplet_margin_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5106450Z copying torch/include/ATen/ops/tril.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5107850Z copying torch/include/ATen/ops/msort_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5109070Z copying torch/include/ATen/ops/fft_rfft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5110490Z copying torch/include/ATen/ops/bernoulli_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5111890Z copying torch/include/ATen/ops/nanmedian_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5113200Z copying torch/include/ATen/ops/_remove_batch_dim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5114550Z copying torch/include/ATen/ops/linalg_cholesky_ex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5115790Z copying torch/include/ATen/ops/quantized_rnn_relu_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5116990Z copying torch/include/ATen/ops/silu_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5118320Z copying torch/include/ATen/ops/embedding_renorm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5119600Z copying torch/include/ATen/ops/pdist_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5120810Z copying torch/include/ATen/ops/_cudnn_init_dropout_state_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5122180Z copying torch/include/ATen/ops/_to_sparse_semi_structured_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5123540Z copying torch/include/ATen/ops/hardshrink_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5124740Z copying torch/include/ATen/ops/_embedding_bag_dense_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5125940Z copying torch/include/ATen/ops/sym_stride_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5127220Z copying torch/include/ATen/ops/_make_dual_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5128630Z copying torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5129790Z copying torch/include/ATen/ops/hardswish_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5130990Z copying torch/include/ATen/ops/elu_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5132330Z copying torch/include/ATen/ops/miopen_batch_norm_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5133730Z copying torch/include/ATen/ops/tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5134840Z copying torch/include/ATen/ops/abs_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5136120Z copying torch/include/ATen/ops/conv_transpose1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5137430Z copying torch/include/ATen/ops/isneginf_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5138750Z copying torch/include/ATen/ops/adaptive_max_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5139890Z copying torch/include/ATen/ops/poisson_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5141130Z copying torch/include/ATen/ops/embedding_renorm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5142530Z copying torch/include/ATen/ops/_lu_with_info_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5143830Z copying torch/include/ATen/ops/max_pool2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5145000Z copying torch/include/ATen/ops/minimum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5146220Z copying torch/include/ATen/ops/log_sigmoid_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5147500Z copying torch/include/ATen/ops/_sobol_engine_ff.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5148850Z copying torch/include/ATen/ops/native_batch_norm_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5150000Z copying torch/include/ATen/ops/block_diag_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5151350Z copying torch/include/ATen/ops/permute_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5152680Z copying torch/include/ATen/ops/binary_cross_entropy_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5153970Z copying torch/include/ATen/ops/_sparse_csc_tensor_unsafe.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5155190Z copying torch/include/ATen/ops/smooth_l1_loss_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5156480Z copying torch/include/ATen/ops/empty_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5157630Z copying torch/include/ATen/ops/acosh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5158940Z copying torch/include/ATen/ops/roll_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5160160Z copying torch/include/ATen/ops/_copy_from_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5161450Z copying torch/include/ATen/ops/_foreach_log2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5162800Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5164070Z copying torch/include/ATen/ops/linear_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5165280Z copying torch/include/ATen/ops/upsample_bilinear2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5166660Z copying torch/include/ATen/ops/prod_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5167990Z copying torch/include/ATen/ops/_transform_bias_rescale_qkv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5169250Z copying torch/include/ATen/ops/native_batch_norm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5170500Z copying torch/include/ATen/ops/digamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5171790Z copying torch/include/ATen/ops/_log_softmax_backward_data_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5173000Z copying torch/include/ATen/ops/_sparse_csc_tensor_unsafe_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5174280Z copying torch/include/ATen/ops/native_dropout_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5175430Z copying torch/include/ATen/ops/conj_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5176730Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5178050Z copying torch/include/ATen/ops/native_dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5179350Z copying torch/include/ATen/ops/_unsafe_index.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5180620Z copying torch/include/ATen/ops/cosh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5181850Z copying torch/include/ATen/ops/_nested_get_jagged_dummy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5183180Z copying torch/include/ATen/ops/record_stream_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5184420Z copying torch/include/ATen/ops/cudnn_convolution_transpose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5185810Z copying torch/include/ATen/ops/_unique2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5187020Z copying torch/include/ATen/ops/special_i1e_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5188310Z copying torch/include/ATen/ops/_foreach_log2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5189510Z copying torch/include/ATen/ops/native_dropout_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5190740Z copying torch/include/ATen/ops/sum_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5191970Z copying torch/include/ATen/ops/linalg_solve_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5193220Z copying torch/include/ATen/ops/_to_dense_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5194430Z copying torch/include/ATen/ops/empty_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5195670Z copying torch/include/ATen/ops/_test_parallel_materialize_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5196930Z copying torch/include/ATen/ops/bernoulli.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5198240Z copying torch/include/ATen/ops/_pad_circular_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5199510Z copying torch/include/ATen/ops/diagonal_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5200910Z copying torch/include/ATen/ops/index_select_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5202260Z copying torch/include/ATen/ops/special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5203570Z copying torch/include/ATen/ops/empty_quantized_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5204650Z copying torch/include/ATen/ops/size_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5205930Z copying torch/include/ATen/ops/_log_softmax_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5207300Z copying torch/include/ATen/ops/replication_pad3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5208480Z copying torch/include/ATen/ops/special_psi.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5209680Z copying torch/include/ATen/ops/_log_softmax_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5210870Z copying torch/include/ATen/ops/addcmul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5212180Z copying torch/include/ATen/ops/sigmoid_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5213440Z copying torch/include/ATen/ops/select_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5214620Z copying torch/include/ATen/ops/special_multigammaln_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5216020Z copying torch/include/ATen/ops/exp2_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5217010Z copying torch/include/ATen/ops/_foreach_addcmul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5223950Z copying torch/include/ATen/ops/addmv_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5225150Z copying torch/include/ATen/ops/log_sigmoid_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5231390Z copying torch/include/ATen/ops/type_as_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5232490Z copying torch/include/ATen/ops/linalg_tensorsolve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5239570Z copying torch/include/ATen/ops/range_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5240750Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5241940Z copying torch/include/ATen/ops/glu_backward_jvp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5247110Z copying torch/include/ATen/ops/_dirichlet_grad_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5248760Z copying torch/include/ATen/ops/upsample_nearest1d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5255950Z copying torch/include/ATen/ops/sinh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5256770Z copying torch/include/ATen/ops/max_unpool3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5263410Z copying torch/include/ATen/ops/bincount.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5264850Z copying torch/include/ATen/ops/silu_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5270960Z copying torch/include/ATen/ops/hann_window_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5272470Z copying torch/include/ATen/ops/sparse_resize_and_clear_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5273870Z copying torch/include/ATen/ops/fbgemm_linear_quantize_weight_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5279940Z copying torch/include/ATen/ops/elu_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5280880Z copying torch/include/ATen/ops/greater_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5287880Z copying torch/include/ATen/ops/cummaxmin_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5288780Z copying torch/include/ATen/ops/batch_norm_elemt_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5295930Z copying torch/include/ATen/ops/affine_grid_generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5296890Z copying torch/include/ATen/ops/logical_and_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5298270Z copying torch/include/ATen/ops/split_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5303860Z copying torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5304810Z copying torch/include/ATen/ops/native_channel_shuffle_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5311250Z copying torch/include/ATen/ops/greater_equal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5312700Z copying torch/include/ATen/ops/imag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5314220Z copying torch/include/ATen/ops/argmin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5321280Z copying torch/include/ATen/ops/special_i0e_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5322320Z copying torch/include/ATen/ops/max_unpool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5329060Z copying torch/include/ATen/ops/erf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5330380Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5336860Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5337840Z copying torch/include/ATen/ops/matrix_H.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5339070Z copying torch/include/ATen/ops/transpose_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5345240Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5346060Z copying torch/include/ATen/ops/fill_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5352870Z copying torch/include/ATen/ops/_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5353690Z copying torch/include/ATen/ops/copysign_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5354990Z copying torch/include/ATen/ops/amin_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5360540Z copying torch/include/ATen/ops/rms_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5361800Z copying torch/include/ATen/ops/asin_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5368450Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5578690Z copying torch/include/ATen/ops/fliplr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5579720Z copying torch/include/ATen/ops/grid_sampler_3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5580990Z copying torch/include/ATen/ops/sigmoid_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5582840Z copying torch/include/ATen/ops/mkldnn_reorder_conv3d_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5583730Z copying torch/include/ATen/ops/upsample_trilinear3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5585060Z copying torch/include/ATen/ops/smooth_l1_loss_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5586270Z copying torch/include/ATen/ops/moveaxis_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5587510Z copying torch/include/ATen/ops/sparse_sampled_addmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5588730Z copying torch/include/ATen/ops/log10.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5589970Z copying torch/include/ATen/ops/aminmax_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5591180Z copying torch/include/ATen/ops/quantized_max_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5592460Z copying torch/include/ATen/ops/masked_scatter_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5593680Z copying torch/include/ATen/ops/i0_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5595030Z copying torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5596240Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5597500Z copying torch/include/ATen/ops/log_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5598720Z copying torch/include/ATen/ops/scatter_add_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5599970Z copying torch/include/ATen/ops/_reshape_alias_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5601240Z copying torch/include/ATen/ops/_nested_view_from_jagged_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5602500Z copying torch/include/ATen/ops/lcm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5603790Z copying torch/include/ATen/ops/grid_sampler_2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5605110Z copying torch/include/ATen/ops/_cdist_forward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5606250Z copying torch/include/ATen/ops/softplus_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5607600Z copying torch/include/ATen/ops/bernoulli_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5608830Z copying torch/include/ATen/ops/_padded_dense_to_jagged_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5610160Z copying torch/include/ATen/ops/hardshrink_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5611580Z copying torch/include/ATen/ops/glu_backward_jvp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5612770Z copying torch/include/ATen/ops/conj_physical_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5614120Z copying torch/include/ATen/ops/upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5615310Z copying torch/include/ATen/ops/erfinv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5616450Z copying torch/include/ATen/ops/avg_pool1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5617780Z copying torch/include/ATen/ops/_gather_sparse_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5618990Z copying torch/include/ATen/ops/addbmm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5620240Z copying torch/include/ATen/ops/upsample_trilinear3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5621530Z copying torch/include/ATen/ops/relu6_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5622850Z copying torch/include/ATen/ops/slow_conv3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5623940Z copying torch/include/ATen/ops/matmul_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5625110Z copying torch/include/ATen/ops/coalesce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5626290Z copying torch/include/ATen/ops/_foreach_log10_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5627560Z copying torch/include/ATen/ops/_lu_with_info_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5628800Z copying torch/include/ATen/ops/_scaled_dot_product_efficient_attention_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5629950Z copying torch/include/ATen/ops/expm1_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5631250Z copying torch/include/ATen/ops/native_batch_norm_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5632480Z copying torch/include/ATen/ops/_sparse_semi_structured_linear_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5633680Z copying torch/include/ATen/ops/_weight_norm_interface_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5634890Z copying torch/include/ATen/ops/scatter_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5636110Z copying torch/include/ATen/ops/ne_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5637300Z copying torch/include/ATen/ops/addcmul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5638560Z copying torch/include/ATen/ops/special_logsumexp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5639800Z copying torch/include/ATen/ops/_sparse_semi_structured_apply_dense_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5640970Z copying torch/include/ATen/ops/to_sparse_csr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5642130Z copying torch/include/ATen/ops/_foreach_round.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5643380Z copying torch/include/ATen/ops/floor_divide_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5644730Z copying torch/include/ATen/ops/diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5645890Z copying torch/include/ATen/ops/margin_ranking_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5647090Z copying torch/include/ATen/ops/_foreach_acos_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5648470Z copying torch/include/ATen/ops/_has_compatible_shallow_copy_type_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5649710Z copying torch/include/ATen/ops/triangular_solve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5650970Z copying torch/include/ATen/ops/unbind_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5652070Z copying torch/include/ATen/ops/dstack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5653360Z copying torch/include/ATen/ops/log_sigmoid_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5654700Z copying torch/include/ATen/ops/_sparse_semi_structured_linear_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5655940Z copying torch/include/ATen/ops/special_xlog1py_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5657090Z copying torch/include/ATen/ops/maximum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5658390Z copying torch/include/ATen/ops/_lstm_mps_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5659690Z copying torch/include/ATen/ops/_nnpack_spatial_convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5660820Z copying torch/include/ATen/ops/contiguous.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5661970Z copying torch/include/ATen/ops/view_as.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5663460Z copying torch/include/ATen/ops/special_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5664770Z copying torch/include/ATen/ops/group_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5665870Z copying torch/include/ATen/ops/_fused_dropout_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5667040Z copying torch/include/ATen/ops/sgn_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5668340Z copying torch/include/ATen/ops/max_pool2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5669580Z copying torch/include/ATen/ops/multiply_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5670900Z copying torch/include/ATen/ops/_sparse_mask_projection_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5672200Z copying torch/include/ATen/ops/all_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5673430Z copying torch/include/ATen/ops/cudnn_affine_grid_generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5674680Z copying torch/include/ATen/ops/is_signed_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5675890Z copying torch/include/ATen/ops/special_ndtri.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5677220Z copying torch/include/ATen/ops/_weight_norm_differentiable_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5678710Z copying torch/include/ATen/ops/lt_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5680290Z copying torch/include/ATen/ops/requires_grad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5681650Z copying torch/include/ATen/ops/hypot_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5683120Z copying torch/include/ATen/ops/movedim_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5684510Z copying torch/include/ATen/ops/_compute_linear_combination_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5686060Z copying torch/include/ATen/ops/_transformer_encoder_layer_fwd_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5687400Z copying torch/include/ATen/ops/round_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5688790Z copying torch/include/ATen/ops/reflection_pad1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5690060Z copying torch/include/ATen/ops/norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5691350Z copying torch/include/ATen/ops/_prelu_kernel_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5692550Z copying torch/include/ATen/ops/nonzero_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5693860Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5695260Z copying torch/include/ATen/ops/batch_norm_backward_reduce_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5696450Z copying torch/include/ATen/ops/fmin_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5697720Z copying torch/include/ATen/ops/index_copy_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5702610Z copying torch/include/ATen/ops/rand.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5912010Z copying torch/include/ATen/ops/searchsorted_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5913060Z copying torch/include/ATen/ops/prod_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5914420Z copying torch/include/ATen/ops/_pdist_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5915720Z copying torch/include/ATen/ops/q_per_channel_scales_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5916990Z copying torch/include/ATen/ops/special_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5918100Z copying torch/include/ATen/ops/erfc_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5919260Z copying torch/include/ATen/ops/i0_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5920750Z copying torch/include/ATen/ops/_cufft_get_plan_cache_size_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5922120Z copying torch/include/ATen/ops/quantized_gru_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5929840Z copying torch/include/ATen/ops/quantize_per_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5930140Z copying torch/include/ATen/ops/_nested_get_values_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5930430Z copying torch/include/ATen/ops/special_hermite_polynomial_he_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5930730Z copying torch/include/ATen/ops/upsample_linear1d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5931080Z copying torch/include/ATen/ops/sym_storage_offset_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5931330Z copying torch/include/ATen/ops/_cslt_sparse_mm_search.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5931680Z copying torch/include/ATen/ops/arctan_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5931930Z copying torch/include/ATen/ops/_sparse_csr_prod_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5933220Z copying torch/include/ATen/ops/any_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5934440Z copying torch/include/ATen/ops/replication_pad3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5935660Z copying torch/include/ATen/ops/avg_pool3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5936910Z copying torch/include/ATen/ops/reflection_pad2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5938370Z copying torch/include/ATen/ops/_make_dual_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5939500Z copying torch/include/ATen/ops/_pin_memory_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5940850Z copying torch/include/ATen/ops/nuclear_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5942050Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5943250Z copying torch/include/ATen/ops/ceil_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5944550Z copying torch/include/ATen/ops/_empty_affine_quantized_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5945770Z copying torch/include/ATen/ops/zero_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5947050Z copying torch/include/ATen/ops/_embedding_bag_sparse_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5948260Z copying torch/include/ATen/ops/gelu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5949440Z copying torch/include/ATen/ops/isnan_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5950710Z copying torch/include/ATen/ops/frac_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5952120Z copying torch/include/ATen/ops/special_zeta_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5953250Z copying torch/include/ATen/ops/avg_pool2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5954560Z copying torch/include/ATen/ops/_weight_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5956000Z copying torch/include/ATen/ops/linalg_tensorsolve_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5957080Z copying torch/include/ATen/ops/quantized_max_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5958410Z copying torch/include/ATen/ops/replication_pad3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.5959710Z copying torch/include/ATen/ops/_sparse_mm_reduce_impl_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6058110Z copying torch/include/ATen/ops/logsumexp_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6058960Z copying torch/include/ATen/ops/erf_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6060190Z copying torch/include/ATen/ops/eye_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6061470Z copying torch/include/ATen/ops/argsort_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6062750Z copying torch/include/ATen/ops/column_stack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6063930Z copying torch/include/ATen/ops/quantize_per_channel_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6065170Z copying torch/include/ATen/ops/uniform_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6066480Z copying torch/include/ATen/ops/upsample_nearest3d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6067740Z copying torch/include/ATen/ops/_fw_primal_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6068930Z copying torch/include/ATen/ops/sum_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6070110Z copying torch/include/ATen/ops/asin_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6071350Z copying torch/include/ATen/ops/cross_entropy_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6072620Z copying torch/include/ATen/ops/fft_irfft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6073870Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6075040Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6076400Z copying torch/include/ATen/ops/permute_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6077650Z copying torch/include/ATen/ops/_cdist_forward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6078860Z copying torch/include/ATen/ops/_logcumsumexp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6080100Z copying torch/include/ATen/ops/tanh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6081340Z copying torch/include/ATen/ops/row_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6082570Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6083740Z copying torch/include/ATen/ops/matrix_exp_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6085000Z copying torch/include/ATen/ops/quantize_per_channel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6086320Z copying torch/include/ATen/ops/gcd_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6087530Z copying torch/include/ATen/ops/slow_conv_dilated2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6088700Z copying torch/include/ATen/ops/histogram.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6089980Z copying torch/include/ATen/ops/_conv_depthwise2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6091300Z copying torch/include/ATen/ops/special_i0e_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6092560Z copying torch/include/ATen/ops/_efficient_attention_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6093700Z copying torch/include/ATen/ops/as_strided_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6094910Z copying torch/include/ATen/ops/miopen_rnn_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6096210Z copying torch/include/ATen/ops/special_xlog1py_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6097450Z copying torch/include/ATen/ops/_functional_assert_async_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6098630Z copying torch/include/ATen/ops/amax_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6099820Z copying torch/include/ATen/ops/retains_grad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6101090Z copying torch/include/ATen/ops/mean_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6102390Z copying torch/include/ATen/ops/nll_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6103510Z copying torch/include/ATen/ops/smooth_l1_loss_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6104780Z copying torch/include/ATen/ops/linalg_inv_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6106060Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6107310Z copying torch/include/ATen/ops/detach_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6108530Z copying torch/include/ATen/ops/fft_fftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6109640Z copying torch/include/ATen/ops/view_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6110980Z copying torch/include/ATen/ops/binary_cross_entropy_with_logits_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6112230Z copying torch/include/ATen/ops/_histogramdd_from_bin_tensors_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6113400Z copying torch/include/ATen/ops/numpy_T_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6114710Z copying torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6115970Z copying torch/include/ATen/ops/fft_rfftfreq_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6117140Z copying torch/include/ATen/ops/cauchy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6118380Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6119600Z copying torch/include/ATen/ops/_foreach_neg_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6120950Z copying torch/include/ATen/ops/unflatten_dense_tensors_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6122080Z copying torch/include/ATen/ops/atanh_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6123280Z copying torch/include/ATen/ops/miopen_convolution_add_relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6124490Z copying torch/include/ATen/ops/native_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6125880Z copying torch/include/ATen/ops/linalg_matrix_power_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6126990Z copying torch/include/ATen/ops/_masked_softmax_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6128210Z copying torch/include/ATen/ops/floor_divide_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6129420Z copying torch/include/ATen/ops/_foreach_expm1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6130670Z copying torch/include/ATen/ops/fft_fftshift.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6131980Z copying torch/include/ATen/ops/_to_sparse_bsc_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6133360Z copying torch/include/ATen/ops/_pack_padded_sequence_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6134640Z copying torch/include/ATen/ops/_to_sparse_bsr_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6135890Z copying torch/include/ATen/ops/dist_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6137170Z copying torch/include/ATen/ops/polygamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6138510Z copying torch/include/ATen/ops/_remove_batch_dim_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6139590Z copying torch/include/ATen/ops/_cast_Short_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6140870Z copying torch/include/ATen/ops/linspace_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6142050Z copying torch/include/ATen/ops/logit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6143310Z copying torch/include/ATen/ops/remainder_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6144530Z copying torch/include/ATen/ops/bilinear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6145780Z copying torch/include/ATen/ops/reflection_pad2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6146950Z copying torch/include/ATen/ops/_sparse_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6148230Z copying torch/include/ATen/ops/_foreach_asin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6149570Z copying torch/include/ATen/ops/max_pool3d_with_indices_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6150760Z copying torch/include/ATen/ops/split_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6152050Z copying torch/include/ATen/ops/linalg_multi_dot_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6153250Z copying torch/include/ATen/ops/any_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6154530Z copying torch/include/ATen/ops/upsample_nearest2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6155760Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6156960Z copying torch/include/ATen/ops/softplus_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6158110Z copying torch/include/ATen/ops/softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6159290Z copying torch/include/ATen/ops/ccol_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6160640Z copying torch/include/ATen/ops/quantized_rnn_relu_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6161750Z copying torch/include/ATen/ops/_fft_r2c.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6162950Z copying torch/include/ATen/ops/outer_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6164360Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6165480Z copying torch/include/ATen/ops/hypot_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6166890Z copying torch/include/ATen/ops/indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6167910Z copying torch/include/ATen/ops/adjoint.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6169250Z copying torch/include/ATen/ops/native_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6170410Z copying torch/include/ATen/ops/flip_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6171600Z copying torch/include/ATen/ops/flipud.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6172890Z copying torch/include/ATen/ops/argmin_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6174510Z copying torch/include/ATen/ops/_foreach_exp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6175980Z copying torch/include/ATen/ops/_foreach_erf_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6182540Z copying torch/include/ATen/ops/addbmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6183410Z copying torch/include/ATen/ops/masked_fill_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6184610Z copying torch/include/ATen/ops/exp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6190510Z copying torch/include/ATen/ops/_ctc_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6191830Z copying torch/include/ATen/ops/flipud_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6198110Z copying torch/include/ATen/ops/log_sigmoid_forward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6199310Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6200740Z copying torch/include/ATen/ops/leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6207510Z copying torch/include/ATen/ops/_dimV_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6208510Z copying torch/include/ATen/ops/reflection_pad2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6215780Z copying torch/include/ATen/ops/mvlgamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6216920Z copying torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6223600Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6224620Z copying torch/include/ATen/ops/_batch_norm_with_update_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6225820Z copying torch/include/ATen/ops/log_normal_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6231290Z copying torch/include/ATen/ops/_sparse_sum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6232550Z copying torch/include/ATen/ops/_aminmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6239740Z copying torch/include/ATen/ops/_segment_reduce_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6240970Z copying torch/include/ATen/ops/miopen_convolution_transpose_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6242000Z copying torch/include/ATen/ops/miopen_rnn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6247080Z copying torch/include/ATen/ops/normal_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6247930Z copying torch/include/ATen/ops/dot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6254960Z copying torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6255780Z copying torch/include/ATen/ops/view_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6263330Z copying torch/include/ATen/ops/special_sinc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6264210Z copying torch/include/ATen/ops/angle_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6271090Z copying torch/include/ATen/ops/group_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6271930Z copying torch/include/ATen/ops/_unsafe_masked_index_put_accumulate.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6279190Z copying torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6279940Z copying torch/include/ATen/ops/_make_dual_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6281250Z copying torch/include/ATen/ops/_rowwise_prune_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6287510Z copying torch/include/ATen/ops/special_erfcx_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6288600Z copying torch/include/ATen/ops/_make_per_channel_quantized_tensor_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6295080Z copying torch/include/ATen/ops/cosine_embedding_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6296270Z copying torch/include/ATen/ops/special_modified_bessel_i0_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6297740Z copying torch/include/ATen/ops/ge_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6303130Z copying torch/include/ATen/ops/_reshape_from_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6304690Z copying torch/include/ATen/ops/_unsafe_view.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6310920Z copying torch/include/ATen/ops/_conj_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6312130Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6314630Z copying torch/include/ATen/ops/special_log_ndtr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6320520Z copying torch/include/ATen/ops/asinh_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6321500Z copying torch/include/ATen/ops/_sparse_csr_tensor_unsafe_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6327760Z copying torch/include/ATen/ops/cumulative_trapezoid_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6329070Z copying torch/include/ATen/ops/grid_sampler_2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6335690Z copying torch/include/ATen/ops/_padded_dense_to_jagged_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6336670Z copying torch/include/ATen/ops/_fused_sgd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6337980Z copying torch/include/ATen/ops/_fused_adam_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6343540Z copying torch/include/ATen/ops/mish_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6344710Z copying torch/include/ATen/ops/can_cast_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6351420Z copying torch/include/ATen/ops/ge_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6352550Z copying torch/include/ATen/ops/unique_consecutive.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6353770Z copying torch/include/ATen/ops/grid_sampler_3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6359940Z copying torch/include/ATen/ops/max.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6360860Z copying torch/include/ATen/ops/fbgemm_pack_quantized_matrix_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6367380Z copying torch/include/ATen/ops/_euclidean_dist_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6368620Z copying torch/include/ATen/ops/avg_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6376080Z copying torch/include/ATen/ops/logical_and_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6376850Z copying torch/include/ATen/ops/special_bessel_y1_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6378120Z copying torch/include/ATen/ops/as_strided_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6383660Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6384610Z copying torch/include/ATen/ops/add_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6391530Z copying torch/include/ATen/ops/sym_constrain_range_for_size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6392400Z copying torch/include/ATen/ops/soft_margin_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6399490Z copying torch/include/ATen/ops/isinf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6400670Z copying torch/include/ATen/ops/arctan2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6402040Z copying torch/include/ATen/ops/special_modified_bessel_i1_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6407090Z copying torch/include/ATen/ops/clamp_max_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6408260Z copying torch/include/ATen/ops/mkldnn_max_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6415050Z copying torch/include/ATen/ops/_foreach_rsqrt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6416090Z copying torch/include/ATen/ops/linear_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6417370Z copying torch/include/ATen/ops/acosh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6423520Z copying torch/include/ATen/ops/max_pool3d_with_indices_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6424680Z copying torch/include/ATen/ops/addmv_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6431490Z copying torch/include/ATen/ops/_sparse_csc_tensor_unsafe_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6432850Z copying torch/include/ATen/ops/exp_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6440160Z copying torch/include/ATen/ops/upsample_bicubic2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6441120Z copying torch/include/ATen/ops/_foreach_abs_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6447300Z copying torch/include/ATen/ops/select_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6448970Z copying torch/include/ATen/ops/miopen_convolution_transpose_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6455060Z copying torch/include/ATen/ops/zeros_like_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6455960Z copying torch/include/ATen/ops/triangular_solve_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6457170Z copying torch/include/ATen/ops/_softmax_backward_data_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6463140Z copying torch/include/ATen/ops/special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6464130Z copying torch/include/ATen/ops/_sparse_coo_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6470640Z copying torch/include/ATen/ops/_foreach_sinh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6471830Z copying torch/include/ATen/ops/to_mkldnn_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6478510Z copying torch/include/ATen/ops/_to_sparse_semi_structured.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6479670Z copying torch/include/ATen/ops/_foreach_log2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6480890Z copying torch/include/ATen/ops/_foreach_rsqrt_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6486270Z copying torch/include/ATen/ops/logspace_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6487110Z copying torch/include/ATen/ops/softshrink_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6493960Z copying torch/include/ATen/ops/_aminmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6494940Z copying torch/include/ATen/ops/cholesky.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6501300Z copying torch/include/ATen/ops/_masked_scale_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6502290Z copying torch/include/ATen/ops/fft_ihfftn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6503750Z copying torch/include/ATen/ops/or_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6510940Z copying torch/include/ATen/ops/sparse_coo_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6512110Z copying torch/include/ATen/ops/_efficient_attention_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6518670Z copying torch/include/ATen/ops/upsample_nearest3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6519530Z copying torch/include/ATen/ops/max_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6527430Z copying torch/include/ATen/ops/isfinite_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6528520Z copying torch/include/ATen/ops/copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6529590Z copying torch/include/ATen/ops/clamp_min.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6535510Z copying torch/include/ATen/ops/index_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6536340Z copying torch/include/ATen/ops/repeat_interleave.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6543230Z copying torch/include/ATen/ops/upsample_nearest2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6544260Z copying torch/include/ATen/ops/item_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6545470Z copying torch/include/ATen/ops/cudnn_convolution_relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6550830Z copying torch/include/ATen/ops/nextafter_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6552090Z copying torch/include/ATen/ops/diag_embed_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6553690Z copying torch/include/ATen/ops/fft_fft2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6560700Z copying torch/include/ATen/ops/leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6561690Z copying torch/include/ATen/ops/log2_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6568530Z copying torch/include/ATen/ops/mkldnn_convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6569360Z copying torch/include/ATen/ops/_unsafe_index_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6576140Z copying torch/include/ATen/ops/_fft_r2c_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6577050Z copying torch/include/ATen/ops/glu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6578430Z copying torch/include/ATen/ops/_test_optional_filled_intlist_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6584290Z copying torch/include/ATen/ops/cat_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6585340Z copying torch/include/ATen/ops/_stack_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6591880Z copying torch/include/ATen/ops/_test_warn_in_autograd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6593140Z copying torch/include/ATen/ops/_coalesced_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6600510Z copying torch/include/ATen/ops/cudnn_convolution_relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6601420Z copying torch/include/ATen/ops/upsample_nearest2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6608350Z copying torch/include/ATen/ops/special_gammaln.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6609490Z copying torch/include/ATen/ops/_ctc_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6610610Z copying torch/include/ATen/ops/fill_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6616110Z copying torch/include/ATen/ops/view_as_real_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6617160Z copying torch/include/ATen/ops/multilabel_margin_loss_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6623900Z copying torch/include/ATen/ops/cummaxmin_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6625720Z copying torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6631710Z copying torch/include/ATen/ops/sparse_bsc_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6632550Z copying torch/include/ATen/ops/gcd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6633760Z copying torch/include/ATen/ops/index_add_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6639370Z copying torch/include/ATen/ops/logit_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6640240Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6646760Z copying torch/include/ATen/ops/fft_hfftn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6647990Z copying torch/include/ATen/ops/_flash_attention_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6654830Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6655860Z copying torch/include/ATen/ops/linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6656910Z copying torch/include/ATen/ops/_foreach_trunc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6663800Z copying torch/include/ATen/ops/arccos_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6664720Z copying torch/include/ATen/ops/unfold_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6671620Z copying torch/include/ATen/ops/conv_tbc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6672590Z copying torch/include/ATen/ops/_foreach_frac_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6680380Z copying torch/include/ATen/ops/new_empty_strided_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6681580Z copying torch/include/ATen/ops/slow_conv_dilated3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6682780Z copying torch/include/ATen/ops/sparse_mask.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6687940Z copying torch/include/ATen/ops/hardtanh_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6689550Z copying torch/include/ATen/ops/atanh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6695690Z copying torch/include/ATen/ops/multilabel_margin_loss_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6696470Z copying torch/include/ATen/ops/exponential_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6697670Z copying torch/include/ATen/ops/_sparse_semi_structured_apply.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6703320Z copying torch/include/ATen/ops/lift_fresh_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6704340Z copying torch/include/ATen/ops/ones_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6710900Z copying torch/include/ATen/ops/_foreach_sign_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6712010Z copying torch/include/ATen/ops/adjoint_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6719080Z copying torch/include/ATen/ops/addcdiv_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6720170Z copying torch/include/ATen/ops/_native_batch_norm_legit_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6721650Z copying torch/include/ATen/ops/linalg_vander_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6726930Z copying torch/include/ATen/ops/cov_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6728110Z copying torch/include/ATen/ops/mish_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6734380Z copying torch/include/ATen/ops/full.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6735740Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6736970Z copying torch/include/ATen/ops/view_as_real_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6744330Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6745680Z copying torch/include/ATen/ops/batch_norm_gather_stats_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6746830Z copying torch/include/ATen/ops/_foreach_log2_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6752800Z copying torch/include/ATen/ops/linear_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6753800Z copying torch/include/ATen/ops/addmm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6755050Z copying torch/include/ATen/ops/reshape_as.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6760300Z copying torch/include/ATen/ops/upsample_nearest1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6768000Z copying torch/include/ATen/ops/prod_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6769160Z copying torch/include/ATen/ops/abs_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6770410Z copying torch/include/ATen/ops/lift_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6777680Z copying torch/include/ATen/ops/median_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6778840Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6785450Z copying torch/include/ATen/ops/erfc_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6786470Z copying torch/include/ATen/ops/reflection_pad1d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6793510Z copying torch/include/ATen/ops/nll_loss2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6794440Z copying torch/include/ATen/ops/_linalg_slogdet_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6795830Z copying torch/include/ATen/ops/linalg_lu_solve_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6797050Z copying torch/include/ATen/ops/pad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6802740Z copying torch/include/ATen/ops/signbit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6804420Z copying torch/include/ATen/ops/adaptive_max_pool1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6811140Z copying torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6812090Z copying torch/include/ATen/ops/convolution_backward_overrideable_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6813790Z copying torch/include/ATen/ops/linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6820190Z copying torch/include/ATen/ops/clamp_max_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6821180Z copying torch/include/ATen/ops/sort_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6828560Z copying torch/include/ATen/ops/triu_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6829260Z copying torch/include/ATen/ops/batch_norm_update_stats_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6835830Z copying torch/include/ATen/ops/_autocast_to_reduced_precision_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.6836990Z copying torch/include/ATen/ops/cudnn_batch_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7045120Z copying torch/include/ATen/ops/special_i0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7046110Z copying torch/include/ATen/ops/atleast_3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7047440Z copying torch/include/ATen/ops/_nested_select_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7048930Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7050120Z copying torch/include/ATen/ops/special_airy_ai_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7051340Z copying torch/include/ATen/ops/addmm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7052550Z copying torch/include/ATen/ops/_validate_compressed_sparse_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7053820Z copying torch/include/ATen/ops/special_gammaincc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7055050Z copying torch/include/ATen/ops/mish_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7056210Z copying torch/include/ATen/ops/min_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7057400Z copying torch/include/ATen/ops/acosh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7058760Z copying torch/include/ATen/ops/_pad_enum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7060050Z copying torch/include/ATen/ops/inverse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7061260Z copying torch/include/ATen/ops/_safe_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7062440Z copying torch/include/ATen/ops/mm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7063740Z copying torch/include/ATen/ops/broadcast_tensors_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7064980Z copying torch/include/ATen/ops/_slow_conv2d_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7066130Z copying torch/include/ATen/ops/zero_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7067330Z copying torch/include/ATen/ops/_foreach_tanh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7068720Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7069830Z copying torch/include/ATen/ops/reflection_pad1d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7071070Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7072460Z copying torch/include/ATen/ops/addcmul_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7078810Z copying torch/include/ATen/ops/huber_loss_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7079520Z copying torch/include/ATen/ops/renorm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7080220Z copying torch/include/ATen/ops/addmm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7080970Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7081710Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7082380Z copying torch/include/ATen/ops/conv_depthwise3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7083010Z copying torch/include/ATen/ops/_pack_padded_sequence_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7083640Z copying torch/include/ATen/ops/_foreach_reciprocal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7084450Z copying torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7085260Z copying torch/include/ATen/ops/poisson_nll_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7086030Z copying torch/include/ATen/ops/logdet_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7087230Z copying torch/include/ATen/ops/rsub_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7088450Z copying torch/include/ATen/ops/fractional_max_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7089780Z copying torch/include/ATen/ops/_sparse_sum_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7090950Z copying torch/include/ATen/ops/isneginf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7092290Z copying torch/include/ATen/ops/unsafe_split_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7093480Z copying torch/include/ATen/ops/cat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7094660Z copying torch/include/ATen/ops/_thnn_fused_gru_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7096040Z copying torch/include/ATen/ops/_cudnn_rnn_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7097260Z copying torch/include/ATen/ops/rand_like_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7098540Z copying torch/include/ATen/ops/stft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7099700Z copying torch/include/ATen/ops/trapezoid_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7100950Z copying torch/include/ATen/ops/relu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7102200Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7103480Z copying torch/include/ATen/ops/_nested_get_jagged_dummy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7104670Z copying torch/include/ATen/ops/clamp_max_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7105860Z copying torch/include/ATen/ops/_unpack_dual_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7107210Z copying torch/include/ATen/ops/slow_conv_dilated2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7108440Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7109630Z copying torch/include/ATen/ops/var_mean_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7110880Z copying torch/include/ATen/ops/polar_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7112050Z copying torch/include/ATen/ops/narrow_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7113300Z copying torch/include/ATen/ops/vstack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7114620Z copying torch/include/ATen/ops/convolution_overrideable_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7115930Z copying torch/include/ATen/ops/_foreach_exp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7117080Z copying torch/include/ATen/ops/transpose_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7118360Z copying torch/include/ATen/ops/threshold_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7119500Z copying torch/include/ATen/ops/tanh_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7120750Z copying torch/include/ATen/ops/bucketize_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7122110Z copying torch/include/ATen/ops/special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7123300Z copying torch/include/ATen/ops/_make_per_channel_quantized_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7124630Z copying torch/include/ATen/ops/ccol_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7125800Z copying torch/include/ATen/ops/_cdist_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7126970Z copying torch/include/ATen/ops/view_as_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7128260Z copying torch/include/ATen/ops/reflection_pad2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7129500Z copying torch/include/ATen/ops/log_sigmoid_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7130770Z copying torch/include/ATen/ops/_cudnn_ctc_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7132080Z copying torch/include/ATen/ops/channel_shuffle_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7133320Z copying torch/include/ATen/ops/view_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7134540Z copying torch/include/ATen/ops/_sparse_coo_tensor_unsafe.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7135870Z copying torch/include/ATen/ops/div_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7136990Z copying torch/include/ATen/ops/eye_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7138260Z copying torch/include/ATen/ops/exp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7139530Z copying torch/include/ATen/ops/randn_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7140630Z copying torch/include/ATen/ops/expm1_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7142150Z copying torch/include/ATen/ops/_sparse_csr_prod_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7143220Z copying torch/include/ATen/ops/numpy_T_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7144570Z copying torch/include/ATen/ops/_empty_affine_quantized_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7145840Z copying torch/include/ATen/ops/rsqrt_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7147330Z copying torch/include/ATen/ops/triu_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7148170Z copying torch/include/ATen/ops/convolution_overrideable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7149660Z copying torch/include/ATen/ops/diag_embed_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7150810Z copying torch/include/ATen/ops/std_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7152500Z copying torch/include/ATen/ops/_weight_norm_interface_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7153860Z copying torch/include/ATen/ops/lift_fresh_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7155890Z copying torch/include/ATen/ops/atanh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7156490Z copying torch/include/ATen/ops/reciprocal_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7157760Z copying torch/include/ATen/ops/im2col_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7159010Z copying torch/include/ATen/ops/linalg_solve_triangular_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7160360Z copying torch/include/ATen/ops/_nested_view_from_buffer_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7161640Z copying torch/include/ATen/ops/sum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7162710Z copying torch/include/ATen/ops/fft_ifft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7164580Z copying torch/include/ATen/ops/combinations.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7169330Z copying torch/include/ATen/ops/_to_sparse_csr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7171180Z copying torch/include/ATen/ops/_fft_r2c_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7174810Z copying torch/include/ATen/ops/hardtanh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7178640Z copying torch/include/ATen/ops/promote_types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7182420Z copying torch/include/ATen/ops/cross_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7183240Z copying torch/include/ATen/ops/nansum_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7188430Z copying torch/include/ATen/ops/fft_ihfftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7191370Z copying torch/include/ATen/ops/log1p_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7195830Z copying torch/include/ATen/ops/_foreach_sub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7196760Z copying torch/include/ATen/ops/copysign_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7200910Z copying torch/include/ATen/ops/_cast_Int_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7205380Z copying torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7209450Z copying torch/include/ATen/ops/lshift_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7213660Z copying torch/include/ATen/ops/special_i1_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7214840Z copying torch/include/ATen/ops/negative_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7218980Z copying torch/include/ATen/ops/_cast_Byte.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7221830Z copying torch/include/ATen/ops/_version_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7227190Z copying torch/include/ATen/ops/logaddexp2_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7228060Z copying torch/include/ATen/ops/mish_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7230030Z copying torch/include/ATen/ops/_scaled_mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7236410Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7238390Z copying torch/include/ATen/ops/linalg_cross_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7244350Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7245200Z copying torch/include/ATen/ops/view_as_complex_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7247290Z copying torch/include/ATen/ops/cos.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7253650Z copying torch/include/ATen/ops/bernoulli_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7256140Z copying torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7261270Z copying torch/include/ATen/ops/rrelu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7264720Z copying torch/include/ATen/ops/special_logit_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7269910Z copying torch/include/ATen/ops/can_cast_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7271010Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7277080Z copying torch/include/ATen/ops/to_sparse_csr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7278450Z copying torch/include/ATen/ops/median_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7285150Z copying torch/include/ATen/ops/_histogramdd_from_bin_cts_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7286100Z copying torch/include/ATen/ops/linalg_diagonal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7287350Z copying torch/include/ATen/ops/uniform_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7293180Z copying torch/include/ATen/ops/mkldnn_linear_backward_weights_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7294230Z copying torch/include/ATen/ops/linalg_diagonal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7300730Z copying torch/include/ATen/ops/index_reduce_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7301850Z copying torch/include/ATen/ops/_foobar_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7308790Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7309610Z copying torch/include/ATen/ops/randn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7310890Z copying torch/include/ATen/ops/logical_or_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7315630Z copying torch/include/ATen/ops/special_softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7317390Z copying torch/include/ATen/ops/neg.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7323260Z copying torch/include/ATen/ops/igamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7324490Z copying torch/include/ATen/ops/mkldnn_linear_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7331650Z copying torch/include/ATen/ops/reflection_pad3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7332430Z copying torch/include/ATen/ops/norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7333910Z copying torch/include/ATen/ops/trace_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7339050Z copying torch/include/ATen/ops/log_sigmoid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7340820Z copying torch/include/ATen/ops/linalg_ldl_factor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7346760Z copying torch/include/ATen/ops/eq_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7348030Z copying torch/include/ATen/ops/put_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7355070Z copying torch/include/ATen/ops/hinge_embedding_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7355960Z copying torch/include/ATen/ops/cartesian_prod_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7357110Z copying torch/include/ATen/ops/softshrink_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7364620Z copying torch/include/ATen/ops/native_dropout_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7365630Z copying torch/include/ATen/ops/argmin_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7372470Z copying torch/include/ATen/ops/vstack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7373410Z copying torch/include/ATen/ops/_ctc_loss_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7380600Z copying torch/include/ATen/ops/addcdiv_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7381480Z copying torch/include/ATen/ops/can_cast_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7382820Z copying torch/include/ATen/ops/_make_dual_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7388830Z copying torch/include/ATen/ops/_to_sparse_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7389690Z copying torch/include/ATen/ops/lstm_mps_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7396590Z copying torch/include/ATen/ops/topk_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7397470Z copying torch/include/ATen/ops/_foreach_tan_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7398700Z copying torch/include/ATen/ops/expm1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7404250Z copying torch/include/ATen/ops/_nested_get_values_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7405550Z copying torch/include/ATen/ops/_amp_update_scale_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7411880Z copying torch/include/ATen/ops/_masked_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7412820Z copying torch/include/ATen/ops/_foreach_lerp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7414290Z copying torch/include/ATen/ops/matmul_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7419960Z copying torch/include/ATen/ops/special_zeta_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7420900Z copying torch/include/ATen/ops/huber_loss_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7428570Z copying torch/include/ATen/ops/slow_conv_dilated2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7437070Z copying torch/include/ATen/ops/conv_transpose2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7438010Z copying torch/include/ATen/ops/avg_pool2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7439370Z copying torch/include/ATen/ops/convolution_overrideable_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7445180Z copying torch/include/ATen/ops/std_mean_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7446260Z copying torch/include/ATen/ops/signbit_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7453210Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7454360Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7455610Z copying torch/include/ATen/ops/logsumexp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7460710Z copying torch/include/ATen/ops/_foreach_neg_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7461900Z copying torch/include/ATen/ops/_embedding_bag_forward_only_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7463900Z copying torch/include/ATen/ops/_log_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7469070Z copying torch/include/ATen/ops/neg_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7470230Z copying torch/include/ATen/ops/take_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7477140Z copying torch/include/ATen/ops/_convert_weight_to_int4pack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7478130Z copying torch/include/ATen/ops/i0_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7485090Z copying torch/include/ATen/ops/linalg_cholesky_ex_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7486050Z copying torch/include/ATen/ops/special_gammainc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7487190Z copying torch/include/ATen/ops/squeeze_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7492780Z copying torch/include/ATen/ops/_sparse_broadcast_to.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7494140Z copying torch/include/ATen/ops/hardtanh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7500650Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7502680Z copying torch/include/ATen/ops/_nested_from_padded_and_nested_example_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7508690Z copying torch/include/ATen/ops/leaky_relu_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7509750Z copying torch/include/ATen/ops/row_stack_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7510920Z copying torch/include/ATen/ops/_reshape_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7516360Z copying torch/include/ATen/ops/index_reduce_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7517440Z copying torch/include/ATen/ops/diagonal_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7521280Z copying torch/include/ATen/ops/dsplit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7526040Z copying torch/include/ATen/ops/gather_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7529540Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7533890Z copying torch/include/ATen/ops/trace_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7534810Z copying torch/include/ATen/ops/_spdiags_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7538760Z copying torch/include/ATen/ops/_debug_has_internal_overlap_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7542380Z copying torch/include/ATen/ops/_assert_scalar_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7546870Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7547740Z copying torch/include/ATen/ops/_unique.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7552410Z copying torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7555780Z copying torch/include/ATen/ops/index_copy_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7560060Z copying torch/include/ATen/ops/silu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7561320Z copying torch/include/ATen/ops/resize_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7565220Z copying torch/include/ATen/ops/range_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7568830Z copying torch/include/ATen/ops/max_pool1d_with_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7572930Z copying torch/include/ATen/ops/replication_pad1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7573750Z copying torch/include/ATen/ops/int_repr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7578530Z copying torch/include/ATen/ops/upsample_linear1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7581460Z copying torch/include/ATen/ops/_foreach_addcmul_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7586020Z copying torch/include/ATen/ops/hardsigmoid_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7586840Z copying torch/include/ATen/ops/_lstm_mps_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7591660Z copying torch/include/ATen/ops/mul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7594930Z copying torch/include/ATen/ops/replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7598640Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7599860Z copying torch/include/ATen/ops/cos_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7604390Z copying torch/include/ATen/ops/_weight_norm_interface_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7608080Z copying torch/include/ATen/ops/exp2_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7613700Z copying torch/include/ATen/ops/_test_serialization_subcmul_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7615120Z copying torch/include/ATen/ops/nll_loss2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7616390Z copying torch/include/ATen/ops/coalesce_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7623390Z copying torch/include/ATen/ops/smooth_l1_loss_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7624240Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7630830Z copying torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7632280Z copying torch/include/ATen/ops/_batch_norm_impl_index_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7634490Z copying torch/include/ATen/ops/add_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7638810Z copying torch/include/ATen/ops/bitwise_xor_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7639960Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7644050Z copying torch/include/ATen/ops/bmm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7647740Z copying torch/include/ATen/ops/to_mkldnn_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7652920Z copying torch/include/ATen/ops/tanh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7655780Z copying torch/include/ATen/ops/special_bessel_y0_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7660360Z copying torch/include/ATen/ops/row_indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7661430Z copying torch/include/ATen/ops/real_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7665070Z copying torch/include/ATen/ops/_amp_update_scale_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7669460Z copying torch/include/ATen/ops/_validate_sparse_coo_tensor_args_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7672360Z copying torch/include/ATen/ops/max_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7673500Z copying torch/include/ATen/ops/_reshape_alias_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7679120Z copying torch/include/ATen/ops/col_indices_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7681130Z copying torch/include/ATen/ops/logcumsumexp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7686710Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7687710Z copying torch/include/ATen/ops/fmod_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7690380Z copying torch/include/ATen/ops/_foreach_clamp_max_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7696490Z copying torch/include/ATen/ops/_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7698630Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7704160Z copying torch/include/ATen/ops/_foreach_max_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7705140Z copying torch/include/ATen/ops/logcumsumexp_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7707270Z copying torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7712990Z copying torch/include/ATen/ops/_batch_norm_with_update_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7714150Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7721100Z copying torch/include/ATen/ops/nll_loss_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7721830Z copying torch/include/ATen/ops/copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7728790Z copying torch/include/ATen/ops/adaptive_max_pool2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7729960Z copying torch/include/ATen/ops/linalg_lstsq_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7731230Z copying torch/include/ATen/ops/_foreach_abs_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7736660Z copying torch/include/ATen/ops/cudnn_convolution_add_relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7737710Z copying torch/include/ATen/ops/linalg_solve_triangular_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7948500Z copying torch/include/ATen/ops/max_unpool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7949580Z copying torch/include/ATen/ops/bitwise_xor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7950870Z copying torch/include/ATen/ops/feature_alpha_dropout_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7952160Z copying torch/include/ATen/ops/_empty_affine_quantized_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7953460Z copying torch/include/ATen/ops/upsample_nearest1d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7954640Z copying torch/include/ATen/ops/_standard_gamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7955960Z copying torch/include/ATen/ops/kaiser_window_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7957170Z copying torch/include/ATen/ops/_has_compatible_shallow_copy_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7958380Z copying torch/include/ATen/ops/batch_norm_update_stats_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7959620Z copying torch/include/ATen/ops/special_i1e_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7960820Z copying torch/include/ATen/ops/baddbmm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7962050Z copying torch/include/ATen/ops/cummax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7963300Z copying torch/include/ATen/ops/_cdist_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7964670Z copying torch/include/ATen/ops/svd_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7965740Z copying torch/include/ATen/ops/norm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7967000Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7968200Z copying torch/include/ATen/ops/concat_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7969430Z copying torch/include/ATen/ops/uniform_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7970580Z copying torch/include/ATen/ops/gcd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7971860Z copying torch/include/ATen/ops/avg_pool2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7973020Z copying torch/include/ATen/ops/new_zeros_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7974270Z copying torch/include/ATen/ops/sigmoid_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7975610Z copying torch/include/ATen/ops/isposinf_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7976780Z copying torch/include/ATen/ops/_cast_Int_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7978040Z copying torch/include/ATen/ops/_unsafe_index_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7979240Z copying torch/include/ATen/ops/lerp_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7980540Z copying torch/include/ATen/ops/_foreach_add.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7981730Z copying torch/include/ATen/ops/unfold_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7982970Z copying torch/include/ATen/ops/max_pool1d_with_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7984270Z copying torch/include/ATen/ops/alias_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7985450Z copying torch/include/ATen/ops/masked_fill.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7986670Z copying torch/include/ATen/ops/_log_softmax_backward_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7987980Z copying torch/include/ATen/ops/_sparse_log_softmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7989170Z copying torch/include/ATen/ops/_cufft_clear_plan_cache_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7990490Z copying torch/include/ATen/ops/unflatten_dense_tensors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7991660Z copying torch/include/ATen/ops/new_ones_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7992960Z copying torch/include/ATen/ops/addcdiv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7994200Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7995480Z copying torch/include/ATen/ops/_to_sparse_bsr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.7996790Z copying torch/include/ATen/ops/_test_string_default_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8003360Z copying torch/include/ATen/ops/ravel_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8003920Z copying torch/include/ATen/ops/_foreach_addcdiv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8004580Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8005260Z copying torch/include/ATen/ops/linalg_pinv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8005950Z copying torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8006610Z copying torch/include/ATen/ops/view_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8007160Z copying torch/include/ATen/ops/max_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8007720Z copying torch/include/ATen/ops/msort_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8008290Z copying torch/include/ATen/ops/q_per_channel_scales_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8009100Z copying torch/include/ATen/ops/binomial_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8010360Z copying torch/include/ATen/ops/random_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8011490Z copying torch/include/ATen/ops/scatter_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8012700Z copying torch/include/ATen/ops/miopen_convolution_add_relu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8013950Z copying torch/include/ATen/ops/linalg_cross_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8015300Z copying torch/include/ATen/ops/square_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8016420Z copying torch/include/ATen/ops/mkldnn_linear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8017630Z copying torch/include/ATen/ops/index_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8018930Z copying torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8020300Z copying torch/include/ATen/ops/float_power_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8021480Z copying torch/include/ATen/ops/lerp_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8022760Z copying torch/include/ATen/ops/mul_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8024010Z copying torch/include/ATen/ops/_foreach_addcdiv_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8025220Z copying torch/include/ATen/ops/_native_batch_norm_legit_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8026500Z copying torch/include/ATen/ops/softmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8027670Z copying torch/include/ATen/ops/_add_relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8028940Z copying torch/include/ATen/ops/fft_ihfft2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8030200Z copying torch/include/ATen/ops/mul_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8031370Z copying torch/include/ATen/ops/sin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8032690Z copying torch/include/ATen/ops/hardsigmoid_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8033910Z copying torch/include/ATen/ops/fmin_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8035140Z copying torch/include/ATen/ops/hardshrink_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8036350Z copying torch/include/ATen/ops/hsplit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8037610Z copying torch/include/ATen/ops/nll_loss_forward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8038890Z copying torch/include/ATen/ops/signbit_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8040120Z copying torch/include/ATen/ops/adaptive_max_pool3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8041360Z copying torch/include/ATen/ops/hardtanh_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8042570Z copying torch/include/ATen/ops/special_modified_bessel_i0_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8043820Z copying torch/include/ATen/ops/_mps_convolution_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8045030Z copying torch/include/ATen/ops/repeat_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8046270Z copying torch/include/ATen/ops/_reshape_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8047530Z copying torch/include/ATen/ops/multilabel_margin_loss_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8048960Z copying torch/include/ATen/ops/slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8050060Z copying torch/include/ATen/ops/less_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8051310Z copying torch/include/ATen/ops/one_hot_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8052510Z copying torch/include/ATen/ops/gcd_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8053790Z copying torch/include/ATen/ops/_fft_c2c_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8055060Z copying torch/include/ATen/ops/max_pool2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8056390Z copying torch/include/ATen/ops/max_pool3d_with_indices_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8057650Z copying torch/include/ATen/ops/hsplit_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8058880Z copying torch/include/ATen/ops/_foreach_log1p.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8060120Z copying torch/include/ATen/ops/cauchy_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8061260Z copying torch/include/ATen/ops/rsqrt_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8062550Z copying torch/include/ATen/ops/_foreach_trunc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8063850Z copying torch/include/ATen/ops/trapz_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8067270Z copying torch/include/ATen/ops/expand_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8068510Z copying torch/include/ATen/ops/mps_convolution_transpose_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8074970Z copying torch/include/ATen/ops/linalg_matrix_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8076380Z copying torch/include/ATen/ops/mkldnn_linear_backward_weights.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8077880Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8082660Z copying torch/include/ATen/ops/mul_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8084530Z copying torch/include/ATen/ops/miopen_batch_norm_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8090410Z copying torch/include/ATen/ops/divide_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8091250Z copying torch/include/ATen/ops/unfold_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8094020Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8099640Z copying torch/include/ATen/ops/linalg_svd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8100610Z copying torch/include/ATen/ops/bitwise_and_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8108020Z copying torch/include/ATen/ops/div_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8109020Z copying torch/include/ATen/ops/linalg_eigvals_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8115320Z copying torch/include/ATen/ops/fft_fft2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8116400Z copying torch/include/ATen/ops/var_mean_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8117650Z copying torch/include/ATen/ops/normal_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8123270Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8125660Z copying torch/include/ATen/ops/max_pool2d_with_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8131750Z copying torch/include/ATen/ops/adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8132790Z copying torch/include/ATen/ops/fft_ifft2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8133970Z copying torch/include/ATen/ops/argmax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8139020Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8140400Z copying torch/include/ATen/ops/adaptive_max_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8147410Z copying torch/include/ATen/ops/logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8148300Z copying torch/include/ATen/ops/amax_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8156430Z copying torch/include/ATen/ops/native_dropout_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8157310Z copying torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8164380Z copying torch/include/ATen/ops/tril_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8165310Z copying torch/include/ATen/ops/_unsafe_view_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8172310Z copying torch/include/ATen/ops/_sparse_semi_structured_apply_dense.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8173430Z copying torch/include/ATen/ops/upsample_bilinear2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8179870Z copying torch/include/ATen/ops/_compute_linear_combination_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8180960Z copying torch/include/ATen/ops/log_sigmoid_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8182210Z copying torch/include/ATen/ops/masked_fill_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8187350Z copying torch/include/ATen/ops/polygamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8188570Z copying torch/include/ATen/ops/l1_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8195300Z copying torch/include/ATen/ops/trace_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8196320Z copying torch/include/ATen/ops/block_diag_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8197520Z copying torch/include/ATen/ops/values_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8202900Z copying torch/include/ATen/ops/sort.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8203910Z copying torch/include/ATen/ops/upsample_nearest2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8210790Z copying torch/include/ATen/ops/mish_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8211860Z copying torch/include/ATen/ops/is_set_to.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8219360Z copying torch/include/ATen/ops/unflatten_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8220300Z copying torch/include/ATen/ops/_fused_adam_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8221520Z copying torch/include/ATen/ops/_dirichlet_grad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8226830Z copying torch/include/ATen/ops/einsum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8227690Z copying torch/include/ATen/ops/nan_to_num.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8234670Z copying torch/include/ATen/ops/q_zero_point_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8235940Z copying torch/include/ATen/ops/as_strided_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8237330Z copying torch/include/ATen/ops/t_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8244580Z copying torch/include/ATen/ops/logical_and_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8245480Z copying torch/include/ATen/ops/split_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8252430Z copying torch/include/ATen/ops/gru_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8253270Z copying torch/include/ATen/ops/_addmm_activation_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8259980Z copying torch/include/ATen/ops/lerp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8261080Z copying torch/include/ATen/ops/nansum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8262760Z copying torch/include/ATen/ops/_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8268270Z copying torch/include/ATen/ops/_fft_c2r_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8269380Z copying torch/include/ATen/ops/_foreach_addcmul_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8275670Z copying torch/include/ATen/ops/infinitely_differentiable_gelu_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8277110Z copying torch/include/ATen/ops/cosine_similarity_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8278620Z copying torch/include/ATen/ops/fix_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8283520Z copying torch/include/ATen/ops/_reshape_alias_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8285020Z copying torch/include/ATen/ops/flatten_dense_tensors_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8291360Z copying torch/include/ATen/ops/special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8292710Z copying torch/include/ATen/ops/dstack_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8294090Z copying torch/include/ATen/ops/igamma_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8300560Z copying torch/include/ATen/ops/poisson_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8301660Z copying torch/include/ATen/ops/full_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8309020Z copying torch/include/ATen/ops/convolution_backward_overrideable_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8316700Z copying torch/include/ATen/ops/_conj_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8317960Z copying torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8319270Z copying torch/include/ATen/ops/linalg_eig_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8325680Z copying torch/include/ATen/ops/_test_parallel_materialize_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8326460Z copying torch/include/ATen/ops/_cudnn_rnn_flatten_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8327830Z copying torch/include/ATen/ops/soft_margin_loss_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8333400Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8334410Z copying torch/include/ATen/ops/expm1_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8340800Z copying torch/include/ATen/ops/crow_indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8341890Z copying torch/include/ATen/ops/cummax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8343110Z copying torch/include/ATen/ops/sinh_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8350890Z copying torch/include/ATen/ops/upsample_linear1d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8351860Z copying torch/include/ATen/ops/baddbmm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8358640Z copying torch/include/ATen/ops/native_batch_norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8359560Z copying torch/include/ATen/ops/group_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8366920Z copying torch/include/ATen/ops/cumsum_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8367850Z copying torch/include/ATen/ops/_autocast_to_full_precision_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8369020Z copying torch/include/ATen/ops/exp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8375380Z copying torch/include/ATen/ops/_nested_tensor_storage_offsets_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8376200Z copying torch/include/ATen/ops/upsample_bilinear2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8383680Z copying torch/include/ATen/ops/upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8384670Z copying torch/include/ATen/ops/avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8386070Z copying torch/include/ATen/ops/as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8391220Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8392190Z copying torch/include/ATen/ops/special_modified_bessel_i1_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8398670Z copying torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8399720Z copying torch/include/ATen/ops/clamp_max_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8401070Z copying torch/include/ATen/ops/_choose_qparams_per_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8407590Z copying torch/include/ATen/ops/_cslt_compress_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8408620Z copying torch/include/ATen/ops/arange.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8415550Z copying torch/include/ATen/ops/max_pool3d_with_indices_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8416860Z copying torch/include/ATen/ops/quantize_per_tensor_dynamic.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8422560Z copying torch/include/ATen/ops/hardshrink.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8423680Z copying torch/include/ATen/ops/_is_any_true_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8424890Z copying torch/include/ATen/ops/special_round_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8430230Z copying torch/include/ATen/ops/_reshape_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8431710Z copying torch/include/ATen/ops/_fft_r2c_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8438420Z copying torch/include/ATen/ops/index_fill.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8439360Z copying torch/include/ATen/ops/ceil_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8440660Z copying torch/include/ATen/ops/convolution_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8445940Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8447380Z copying torch/include/ATen/ops/linalg_diagonal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8454100Z copying torch/include/ATen/ops/nonzero_numpy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8455500Z copying torch/include/ATen/ops/_index_put_impl_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8462190Z copying torch/include/ATen/ops/istft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8463700Z copying torch/include/ATen/ops/_foreach_erfc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8465070Z copying torch/include/ATen/ops/logit_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8469790Z copying torch/include/ATen/ops/chain_matmul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8471270Z copying torch/include/ATen/ops/_conj_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8473210Z copying torch/include/ATen/ops/softplus_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8479280Z copying torch/include/ATen/ops/_foreach_addcmul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8480390Z copying torch/include/ATen/ops/slice_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8487240Z copying torch/include/ATen/ops/_compute_linear_combination.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8488670Z copying torch/include/ATen/ops/_nested_tensor_from_mask_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8494860Z copying torch/include/ATen/ops/_nnz_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8495740Z copying torch/include/ATen/ops/cummaxmin_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8497020Z copying torch/include/ATen/ops/fft_rfft2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8502950Z copying torch/include/ATen/ops/_stack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8504010Z copying torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8510370Z copying torch/include/ATen/ops/cartesian_prod_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8511680Z copying torch/include/ATen/ops/_cudnn_attention_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8518040Z copying torch/include/ATen/ops/_test_optional_filled_intlist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8520260Z copying torch/include/ATen/ops/huber_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8526750Z copying torch/include/ATen/ops/index_select_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8527710Z copying torch/include/ATen/ops/grid_sampler_3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8534510Z copying torch/include/ATen/ops/view_as_real_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8536160Z copying torch/include/ATen/ops/_foreach_sign_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8542400Z copying torch/include/ATen/ops/index_add_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8543960Z copying torch/include/ATen/ops/_to_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8551200Z copying torch/include/ATen/ops/max_unpool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8566660Z copying torch/include/ATen/ops/_trilinear_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8568120Z copying torch/include/ATen/ops/native_batch_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8569360Z copying torch/include/ATen/ops/avg_pool2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8574990Z copying torch/include/ATen/ops/_fw_primal_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8576050Z copying torch/include/ATen/ops/isnan_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8582940Z copying torch/include/ATen/ops/full_like_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8583840Z copying torch/include/ATen/ops/slice_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8585050Z copying torch/include/ATen/ops/fmax_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8591320Z copying torch/include/ATen/ops/randint_like.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8599670Z copying torch/include/ATen/ops/_neg_view_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8600480Z copying torch/include/ATen/ops/lshift_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8601740Z copying torch/include/ATen/ops/unfold_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8607460Z copying torch/include/ATen/ops/copy_sparse_to_sparse_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8608610Z copying torch/include/ATen/ops/istft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8615740Z copying torch/include/ATen/ops/_unique_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8616790Z copying torch/include/ATen/ops/fmin_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8618120Z copying torch/include/ATen/ops/constant_pad_nd_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8624220Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8624950Z copying torch/include/ATen/ops/rsqrt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8631740Z copying torch/include/ATen/ops/searchsorted_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8632660Z copying torch/include/ATen/ops/ones_like_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8633890Z copying torch/include/ATen/ops/erfc_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8639370Z copying torch/include/ATen/ops/tanh_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8640510Z copying torch/include/ATen/ops/_cdist_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8647210Z copying torch/include/ATen/ops/_softmax_backward_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8648480Z copying torch/include/ATen/ops/_foreach_log10_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8652070Z copying torch/include/ATen/ops/_to_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8657000Z copying torch/include/ATen/ops/sinh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8658110Z copying torch/include/ATen/ops/special_expm1_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8661660Z copying torch/include/ATen/ops/_sparse_compressed_tensor_unsafe.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8666030Z copying torch/include/ATen/ops/unsafe_split_with_sizes_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8668740Z copying torch/include/ATen/ops/geometric_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8669940Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8675680Z copying torch/include/ATen/ops/erf_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8677270Z copying torch/include/ATen/ops/align_as_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8683120Z copying torch/include/ATen/ops/zero.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8683940Z copying torch/include/ATen/ops/xlogy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8690880Z copying torch/include/ATen/ops/upsample_nearest3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8691800Z copying torch/include/ATen/ops/mT.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8698640Z copying torch/include/ATen/ops/uniform_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8699890Z copying torch/include/ATen/ops/embedding_dense_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8701250Z copying torch/include/ATen/ops/orgqr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8707170Z copying torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8708340Z copying torch/include/ATen/ops/cumprod_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8715380Z copying torch/include/ATen/ops/range_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8716670Z copying torch/include/ATen/ops/q_per_channel_zero_points_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8723070Z copying torch/include/ATen/ops/_adaptive_avg_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8723980Z copying torch/include/ATen/ops/_masked_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8725140Z copying torch/include/ATen/ops/linalg_ldl_solve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8730710Z copying torch/include/ATen/ops/_validate_sparse_csr_tensor_args_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8732010Z copying torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8738920Z copying torch/include/ATen/ops/slice_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8739820Z copying torch/include/ATen/ops/random_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8741150Z copying torch/include/ATen/ops/_sparse_semi_structured_addmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8746460Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8747680Z copying torch/include/ATen/ops/_shape_as_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8754810Z copying torch/include/ATen/ops/linalg_solve_triangular_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8755850Z copying torch/include/ATen/ops/floor_divide_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8763790Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8764760Z copying torch/include/ATen/ops/_linalg_det_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8771100Z copying torch/include/ATen/ops/sin_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8772080Z copying torch/include/ATen/ops/can_cast.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8779100Z copying torch/include/ATen/ops/cumsum_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8780100Z copying torch/include/ATen/ops/atanh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8781580Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8787490Z copying torch/include/ATen/ops/kl_div_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8788810Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8789930Z copying torch/include/ATen/ops/clip_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8796510Z copying torch/include/ATen/ops/special_airy_ai_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8798830Z copying torch/include/ATen/ops/linalg_vector_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8803840Z copying torch/include/ATen/ops/embedding_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8805080Z copying torch/include/ATen/ops/igamma_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8806550Z copying torch/include/ATen/ops/sparse_bsc_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8812870Z copying torch/include/ATen/ops/special_i0e_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8813800Z copying torch/include/ATen/ops/is_floating_point.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8820830Z copying torch/include/ATen/ops/fft_fft2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8822240Z copying torch/include/ATen/ops/xlogy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8828940Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8829760Z copying torch/include/ATen/ops/ceil_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8831060Z copying torch/include/ATen/ops/avg_pool3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8836350Z copying torch/include/ATen/ops/masked_scatter_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8837170Z copying torch/include/ATen/ops/ge_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8846400Z copying torch/include/ATen/ops/_test_check_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8847430Z copying torch/include/ATen/ops/resize_as_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8852550Z copying torch/include/ATen/ops/squeeze.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8855180Z copying torch/include/ATen/ops/_to_sparse_bsc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8855740Z copying torch/include/ATen/ops/linalg_pinv_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8856990Z copying torch/include/ATen/ops/log_softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8859620Z copying torch/include/ATen/ops/permute_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8860940Z copying torch/include/ATen/ops/is_distributed_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8864340Z copying torch/include/ATen/ops/_histogramdd_bin_edges.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8870060Z copying torch/include/ATen/ops/max_unpool2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8873550Z copying torch/include/ATen/ops/relu6_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8877050Z copying torch/include/ATen/ops/sigmoid_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8878240Z copying torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8882470Z copying torch/include/ATen/ops/fft_fft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8885190Z copying torch/include/ATen/ops/fft_hfft2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8890560Z copying torch/include/ATen/ops/rad2deg_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8891600Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8894660Z copying torch/include/ATen/ops/leaky_relu_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8899800Z copying torch/include/ATen/ops/copysign_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8902580Z copying torch/include/ATen/ops/upsample_nearest2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8908020Z copying torch/include/ATen/ops/silu_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8908930Z copying torch/include/ATen/ops/linalg_solve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8911940Z copying torch/include/ATen/ops/special_zeta_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8916540Z copying torch/include/ATen/ops/quantized_rnn_tanh_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8920340Z copying torch/include/ATen/ops/dropout_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8921360Z copying torch/include/ATen/ops/native_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8926540Z copying torch/include/ATen/ops/_foreach_sigmoid_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8934160Z copying torch/include/ATen/ops/lshift.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8935040Z copying torch/include/ATen/ops/outer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8939040Z copying torch/include/ATen/ops/bilinear_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8942430Z copying torch/include/ATen/ops/rms_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8943460Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8948710Z copying torch/include/ATen/ops/instance_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8951620Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8957140Z copying torch/include/ATen/ops/fractional_max_pool2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8957940Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8960370Z copying torch/include/ATen/ops/new_zeros_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8961850Z copying torch/include/ATen/ops/_foreach_asin_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8969680Z copying torch/include/ATen/ops/stft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8970570Z copying torch/include/ATen/ops/linalg_lu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8977370Z copying torch/include/ATen/ops/smooth_l1_loss_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8978860Z copying torch/include/ATen/ops/_make_dep_token_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8984750Z copying torch/include/ATen/ops/sigmoid_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8985560Z copying torch/include/ATen/ops/_linalg_det.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8986750Z copying torch/include/ATen/ops/cholesky_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8992600Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.8993430Z copying torch/include/ATen/ops/asin_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9000090Z copying torch/include/ATen/ops/from_file_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9001670Z copying torch/include/ATen/ops/_sparse_softmax_backward_data_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9008080Z copying torch/include/ATen/ops/_test_serialization_subcmul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9009010Z copying torch/include/ATen/ops/linalg_ldl_factor_ex_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9010260Z copying torch/include/ATen/ops/_assert_async_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9016690Z copying torch/include/ATen/ops/nansum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9017710Z copying torch/include/ATen/ops/native_dropout_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9025160Z copying torch/include/ATen/ops/add_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9025980Z copying torch/include/ATen/ops/linalg_householder_product_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9033840Z copying torch/include/ATen/ops/argmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9034660Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9035990Z copying torch/include/ATen/ops/norm_except_dim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9041140Z copying torch/include/ATen/ops/fft_irfft2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9042530Z copying torch/include/ATen/ops/_make_dual_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9048850Z copying torch/include/ATen/ops/unique_consecutive_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9049980Z copying torch/include/ATen/ops/linalg_solve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9051370Z copying torch/include/ATen/ops/concatenate_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9056830Z copying torch/include/ATen/ops/log1p_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9058290Z copying torch/include/ATen/ops/view_as_complex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9065010Z copying torch/include/ATen/ops/repeat_interleave_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9065900Z copying torch/include/ATen/ops/is_complex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9067150Z copying torch/include/ATen/ops/softplus_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9073300Z copying torch/include/ATen/ops/var_mean_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9074230Z copying torch/include/ATen/ops/_weight_int4pack_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9081210Z copying torch/include/ATen/ops/_version.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9082530Z copying torch/include/ATen/ops/grid_sampler_2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9089510Z copying torch/include/ATen/ops/_fused_adamw_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9090840Z copying torch/include/ATen/ops/softplus_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9098400Z copying torch/include/ATen/ops/_reshape_alias_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9099350Z copying torch/include/ATen/ops/scatter_add_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9105580Z copying torch/include/ATen/ops/tril_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9106820Z copying torch/include/ATen/ops/isneginf_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9107900Z copying torch/include/ATen/ops/clip_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9113770Z copying torch/include/ATen/ops/matmul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9114940Z copying torch/include/ATen/ops/linalg_solve_ex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9122450Z copying torch/include/ATen/ops/special_bessel_y0_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9123300Z copying torch/include/ATen/ops/_mkldnn_transpose_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9124500Z copying torch/include/ATen/ops/special_ndtri_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9130910Z copying torch/include/ATen/ops/tensor_split_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9131720Z copying torch/include/ATen/ops/align_to_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9138500Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9139520Z copying torch/include/ATen/ops/convolution_backward_overrideable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9141130Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9145610Z copying torch/include/ATen/ops/geometric.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9147170Z copying torch/include/ATen/ops/randn_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9154330Z copying torch/include/ATen/ops/special_modified_bessel_i1_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9155200Z copying torch/include/ATen/ops/i0_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9162500Z copying torch/include/ATen/ops/hardshrink_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9163420Z copying torch/include/ATen/ops/requires_grad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9164640Z copying torch/include/ATen/ops/elu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9169920Z copying torch/include/ATen/ops/threshold_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9170910Z copying torch/include/ATen/ops/special_entr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9177560Z copying torch/include/ATen/ops/heaviside_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9178720Z copying torch/include/ATen/ops/_coalesce_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9179880Z copying torch/include/ATen/ops/bitwise_xor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9187280Z copying torch/include/ATen/ops/special_xlogy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9188190Z copying torch/include/ATen/ops/acos_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9195110Z copying torch/include/ATen/ops/cumprod_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9196030Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9202770Z copying torch/include/ATen/ops/lgamma_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9203720Z copying torch/include/ATen/ops/_amp_update_scale_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9204950Z copying torch/include/ATen/ops/expm1_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9211100Z copying torch/include/ATen/ops/native_batch_norm_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9212030Z copying torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9219280Z copying torch/include/ATen/ops/_sparse_semi_structured_apply_dense_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9220450Z copying torch/include/ATen/ops/_index_put_impl_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9221670Z copying torch/include/ATen/ops/unfold_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9227670Z copying torch/include/ATen/ops/reflection_pad3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9228590Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9235630Z copying torch/include/ATen/ops/addbmm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9236790Z copying torch/include/ATen/ops/matrix_power_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9238050Z copying torch/include/ATen/ops/upsample_nearest1d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9241880Z copying torch/include/ATen/ops/matmul_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9245100Z copying torch/include/ATen/ops/max_pool3d_with_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9249830Z copying torch/include/ATen/ops/_lstm_mps_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9250970Z copying torch/include/ATen/ops/_softmax_backward_data_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9255120Z copying torch/include/ATen/ops/_weight_norm_differentiable_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9262840Z copying torch/include/ATen/ops/mps_convolution_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9264110Z copying torch/include/ATen/ops/detach_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9268310Z copying torch/include/ATen/ops/_coalesce_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9271060Z copying torch/include/ATen/ops/special_exp2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9276530Z copying torch/include/ATen/ops/special_erfcx_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9277520Z copying torch/include/ATen/ops/min_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9284100Z copying torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9285000Z copying torch/include/ATen/ops/logit_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9291310Z copying torch/include/ATen/ops/scalar_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9292270Z copying torch/include/ATen/ops/quantize_per_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9294010Z copying torch/include/ATen/ops/_cholesky_solve_helper_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9300070Z copying torch/include/ATen/ops/rnn_relu_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9301090Z copying torch/include/ATen/ops/_test_functorch_fallback_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9307370Z copying torch/include/ATen/ops/special_legendre_polynomial_p_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9308590Z copying torch/include/ATen/ops/mps_convolution_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9315030Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9315950Z copying torch/include/ATen/ops/_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9317250Z copying torch/include/ATen/ops/_foreach_reciprocal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9324050Z copying torch/include/ATen/ops/softplus_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9324890Z copying torch/include/ATen/ops/is_inference_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9331270Z copying torch/include/ATen/ops/any_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9332420Z copying torch/include/ATen/ops/digamma_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9339040Z copying torch/include/ATen/ops/abs_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9340170Z copying torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9341380Z copying torch/include/ATen/ops/elu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9347080Z copying torch/include/ATen/ops/mH_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9348210Z copying torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9355810Z copying torch/include/ATen/ops/linalg_cross.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9356770Z copying torch/include/ATen/ops/inner.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9363810Z copying torch/include/ATen/ops/nanmedian_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9364680Z copying torch/include/ATen/ops/fractional_max_pool2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9365950Z copying torch/include/ATen/ops/kthvalue_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9371380Z copying torch/include/ATen/ops/conj.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9372590Z copying torch/include/ATen/ops/native_group_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9373940Z copying torch/include/ATen/ops/mkldnn_linear_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9380390Z copying torch/include/ATen/ops/select_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9381550Z copying torch/include/ATen/ops/special_log_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9388400Z copying torch/include/ATen/ops/reshape_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9389390Z copying torch/include/ATen/ops/addcmul_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9396260Z copying torch/include/ATen/ops/atan_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9397300Z copying torch/include/ATen/ops/_test_serialization_subcmul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9398470Z copying torch/include/ATen/ops/_scaled_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9404030Z copying torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9405040Z copying torch/include/ATen/ops/neg_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9412030Z copying torch/include/ATen/ops/_weight_int4pack_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9412830Z copying torch/include/ATen/ops/addmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9414030Z copying torch/include/ATen/ops/hardshrink_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9419730Z copying torch/include/ATen/ops/_cudnn_attention_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9420760Z copying torch/include/ATen/ops/softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9427210Z copying torch/include/ATen/ops/silu_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9431890Z copying torch/include/ATen/ops/copy_sparse_to_sparse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9435940Z copying torch/include/ATen/ops/mse_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9438420Z copying torch/include/ATen/ops/index_add_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9439790Z copying torch/include/ATen/ops/vander_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9446160Z copying torch/include/ATen/ops/quantize_per_tensor_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9446930Z copying torch/include/ATen/ops/cumprod_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9453700Z copying torch/include/ATen/ops/_upsample_nearest_exact3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9455120Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9461150Z copying torch/include/ATen/ops/matrix_H_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9462380Z copying torch/include/ATen/ops/_resize_output.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9463430Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9470620Z copying torch/include/ATen/ops/special_hermite_polynomial_he_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9471560Z copying torch/include/ATen/ops/linalg_cond.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9478290Z copying torch/include/ATen/ops/special_polygamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9479210Z copying torch/include/ATen/ops/smooth_l1_loss_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9485830Z copying torch/include/ATen/ops/replication_pad2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9486770Z copying torch/include/ATen/ops/nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9487920Z copying torch/include/ATen/ops/hardswish_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9493000Z copying torch/include/ATen/ops/_addmm_activation_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9495010Z copying torch/include/ATen/ops/smm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9500840Z copying torch/include/ATen/ops/native_batch_norm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9501660Z copying torch/include/ATen/ops/_addmm_activation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9504340Z copying torch/include/ATen/ops/ormqr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9510090Z copying torch/include/ATen/ops/_cudnn_rnn_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9510980Z copying torch/include/ATen/ops/floor_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9517860Z copying torch/include/ATen/ops/sin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9519060Z copying torch/include/ATen/ops/_spdiags_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9525400Z copying torch/include/ATen/ops/float_power_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9526420Z copying torch/include/ATen/ops/imag_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9527860Z copying torch/include/ATen/ops/batch_norm_backward_elemt_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9533530Z copying torch/include/ATen/ops/_foreach_pow_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9534530Z copying torch/include/ATen/ops/sinh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9541490Z copying torch/include/ATen/ops/_validate_sparse_coo_tensor_args.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9542980Z copying torch/include/ATen/ops/special_log_ndtr_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9549010Z copying torch/include/ATen/ops/crow_indices_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9550190Z copying torch/include/ATen/ops/fft_ifftn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9551520Z copying torch/include/ATen/ops/mps_convolution_transpose_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9557030Z copying torch/include/ATen/ops/sum_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9558750Z copying torch/include/ATen/ops/exp2_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9564990Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9565790Z copying torch/include/ATen/ops/_assert_scalar_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9567150Z copying torch/include/ATen/ops/_convert_weight_to_int4pack_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9572750Z copying torch/include/ATen/ops/view_as_complex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9574180Z copying torch/include/ATen/ops/_log_softmax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9581760Z copying torch/include/ATen/ops/sigmoid_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9582930Z copying torch/include/ATen/ops/batch_norm_gather_stats_with_counts_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9589190Z copying torch/include/ATen/ops/uniform_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9589900Z copying torch/include/ATen/ops/empty_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9597420Z copying torch/include/ATen/ops/_use_cudnn_ctc_loss_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9599240Z copying torch/include/ATen/ops/is_neg_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9605760Z copying torch/include/ATen/ops/special_i1e_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9606580Z copying torch/include/ATen/ops/floor_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9608050Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9613470Z copying torch/include/ATen/ops/prelu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9614600Z copying torch/include/ATen/ops/take_along_dim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9621290Z copying torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9622260Z copying torch/include/ATen/ops/glu_backward_jvp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9630220Z copying torch/include/ATen/ops/xlogy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9631220Z copying torch/include/ATen/ops/_unsafe_index_put_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9632500Z copying torch/include/ATen/ops/softshrink_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9633790Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9635000Z copying torch/include/ATen/ops/_cudnn_rnn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9642980Z copying torch/include/ATen/ops/replication_pad1d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9650720Z copying torch/include/ATen/ops/_histogramdd_from_bin_tensors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9651720Z copying torch/include/ATen/ops/_linalg_det_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9653040Z copying torch/include/ATen/ops/sort_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9658690Z copying torch/include/ATen/ops/_cdist_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9659800Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9661050Z copying torch/include/ATen/ops/reflection_pad3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9666670Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9668280Z copying torch/include/ATen/ops/select_scatter_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9674190Z copying torch/include/ATen/ops/_cdist_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9675600Z copying torch/include/ATen/ops/multi_margin_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9676880Z copying torch/include/ATen/ops/_foreach_add_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9683780Z copying torch/include/ATen/ops/group_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9684720Z copying torch/include/ATen/ops/special_erfcx_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9691380Z copying torch/include/ATen/ops/_foreach_minimum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9692310Z copying torch/include/ATen/ops/randint_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9699550Z copying torch/include/ATen/ops/leaky_relu_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9700580Z copying torch/include/ATen/ops/_standard_gamma_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9702010Z copying torch/include/ATen/ops/_coalesced.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9706860Z copying torch/include/ATen/ops/sgn_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9709290Z copying torch/include/ATen/ops/_nested_get_ragged_idx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9714520Z copying torch/include/ATen/ops/segment_reduce_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9715390Z copying torch/include/ATen/ops/conv2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9717980Z copying torch/include/ATen/ops/special_logsumexp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9722990Z copying torch/include/ATen/ops/linalg_eigvalsh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9724020Z copying torch/include/ATen/ops/upsample_nearest2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9727420Z copying torch/include/ATen/ops/log_sigmoid_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9732490Z copying torch/include/ATen/ops/dsplit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9736240Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9739820Z copying torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9740810Z copying torch/include/ATen/ops/igammac.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9745050Z copying torch/include/ATen/ops/_efficientzerotensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9748730Z copying torch/include/ATen/ops/arange_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9753150Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9754140Z copying torch/include/ATen/ops/clamp_min_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9759000Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9766910Z copying torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9767790Z copying torch/include/ATen/ops/celu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9771700Z copying torch/include/ATen/ops/batch_norm_gather_stats_with_counts.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9775870Z copying torch/include/ATen/ops/mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9779710Z copying torch/include/ATen/ops/_batch_norm_with_update_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9780700Z copying torch/include/ATen/ops/_foreach_addcdiv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9785580Z copying torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9788800Z copying torch/include/ATen/ops/clamp_max_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9793010Z copying torch/include/ATen/ops/_chunk_cat_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9794030Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9795570Z copying torch/include/ATen/ops/fmin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9802480Z copying torch/include/ATen/ops/upsample_nearest2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9803580Z copying torch/include/ATen/ops/fft_ifftshift_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9810790Z copying torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9812120Z copying torch/include/ATen/ops/_embedding_bag_sparse_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9818230Z copying torch/include/ATen/ops/softplus_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9819050Z copying torch/include/ATen/ops/_euclidean_dist_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9820250Z copying torch/include/ATen/ops/index_fill_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9825750Z copying torch/include/ATen/ops/quantized_max_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9826950Z copying torch/include/ATen/ops/logaddexp_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9834050Z copying torch/include/ATen/ops/arange_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9836370Z copying torch/include/ATen/ops/_nnpack_spatial_convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9841800Z copying torch/include/ATen/ops/bitwise_not_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9842910Z copying torch/include/ATen/ops/conv_depthwise3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9844250Z copying torch/include/ATen/ops/logsumexp_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9849960Z copying torch/include/ATen/ops/convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9851030Z copying torch/include/ATen/ops/_triton_multi_head_attention_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9858380Z copying torch/include/ATen/ops/_sparse_semi_structured_apply_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9859450Z copying torch/include/ATen/ops/_batch_norm_impl_index_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9865860Z copying torch/include/ATen/ops/rrelu_with_noise_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9866940Z copying torch/include/ATen/ops/binary_cross_entropy_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9868100Z copying torch/include/ATen/ops/_foreach_sub_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9873560Z copying torch/include/ATen/ops/sub_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9875000Z copying torch/include/ATen/ops/_to_sparse_semi_structured_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9881560Z copying torch/include/ATen/ops/unbind_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9882830Z copying torch/include/ATen/ops/minimum_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9884030Z copying torch/include/ATen/ops/signbit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9890060Z copying torch/include/ATen/ops/gelu_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9891000Z copying torch/include/ATen/ops/is_neg_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9897870Z copying torch/include/ATen/ops/numpy_T_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9899420Z copying torch/include/ATen/ops/unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9906710Z copying torch/include/ATen/ops/to_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9907720Z copying torch/include/ATen/ops/upsample_trilinear3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9908960Z copying torch/include/ATen/ops/replication_pad2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9914480Z copying torch/include/ATen/ops/is_floating_point_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9915540Z copying torch/include/ATen/ops/scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9922890Z copying torch/include/ATen/ops/avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9923850Z copying torch/include/ATen/ops/_nested_tensor_strides.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9931070Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9932170Z copying torch/include/ATen/ops/batch_norm_update_stats_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9939510Z copying torch/include/ATen/ops/all_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9940610Z copying torch/include/ATen/ops/tanh_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9941930Z copying torch/include/ATen/ops/adaptive_avg_pool1d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9947280Z copying torch/include/ATen/ops/slow_conv_transpose3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9948500Z copying torch/include/ATen/ops/linalg_vector_norm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9954700Z copying torch/include/ATen/ops/masked_select_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9955790Z copying torch/include/ATen/ops/_flash_attention_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9957060Z copying torch/include/ATen/ops/logit_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9964080Z copying torch/include/ATen/ops/to_dense_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9965000Z copying torch/include/ATen/ops/chunk_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9968530Z copying torch/include/ATen/ops/_foobar_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9972620Z copying torch/include/ATen/ops/atan2_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9975630Z copying torch/include/ATen/ops/nextafter_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9976610Z copying torch/include/ATen/ops/amin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9982280Z copying torch/include/ATen/ops/pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9985290Z copying torch/include/ATen/ops/_cudnn_init_dropout_state_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9989580Z copying torch/include/ATen/ops/_sparse_csr_prod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9990550Z copying torch/include/ATen/ops/_cholesky_solve_helper_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9994590Z copying torch/include/ATen/ops/frexp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:46.9998950Z copying torch/include/ATen/ops/alias_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0002290Z copying torch/include/ATen/ops/bitwise_or_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0002950Z copying torch/include/ATen/ops/gru_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0008520Z copying torch/include/ATen/ops/isclose_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0009970Z copying torch/include/ATen/ops/batch_norm_gather_stats_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0016040Z copying torch/include/ATen/ops/gather_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0017460Z copying torch/include/ATen/ops/mkldnn_linear_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0023970Z copying torch/include/ATen/ops/grid_sampler_3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0025280Z copying torch/include/ATen/ops/diagonal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0026470Z copying torch/include/ATen/ops/sspaddmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0033890Z copying torch/include/ATen/ops/_reshape_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0035080Z copying torch/include/ATen/ops/_test_string_default_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0041360Z copying torch/include/ATen/ops/_logcumsumexp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0042620Z copying torch/include/ATen/ops/_softmax_backward_data_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0048890Z copying torch/include/ATen/ops/_native_multi_head_attention_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0050240Z copying torch/include/ATen/ops/_unique_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0051120Z copying torch/include/ATen/ops/_sobol_engine_draw.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0056810Z copying torch/include/ATen/ops/is_vulkan_available_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0057530Z copying torch/include/ATen/ops/feature_dropout_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0064230Z copying torch/include/ATen/ops/diagflat_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0065440Z copying torch/include/ATen/ops/_values.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0072280Z copying torch/include/ATen/ops/cudnn_convolution_add_relu_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0072990Z copying torch/include/ATen/ops/index_add_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0074350Z copying torch/include/ATen/ops/glu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0080010Z copying torch/include/ATen/ops/_wrapped_linear_prepack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0081100Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0088540Z copying torch/include/ATen/ops/combinations_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0096620Z copying torch/include/ATen/ops/_assert_scalar_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0097690Z copying torch/include/ATen/ops/_test_check_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0098970Z copying torch/include/ATen/ops/lt_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0104120Z copying torch/include/ATen/ops/swapdims_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0105250Z copying torch/include/ATen/ops/view_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0112120Z copying torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0112980Z copying torch/include/ATen/ops/special_spherical_bessel_j0_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0114040Z copying torch/include/ATen/ops/isreal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0120100Z copying torch/include/ATen/ops/addcmul_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0120910Z copying torch/include/ATen/ops/less_equal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0128070Z copying torch/include/ATen/ops/cumulative_trapezoid_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0128730Z copying torch/include/ATen/ops/arctan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0132540Z copying torch/include/ATen/ops/_cufft_set_plan_cache_max_size_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0135890Z copying torch/include/ATen/ops/_sparse_sum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0137130Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0141350Z copying torch/include/ATen/ops/sinh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0145750Z copying torch/include/ATen/ops/reflection_pad1d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0150090Z copying torch/include/ATen/ops/arctanh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0151040Z copying torch/include/ATen/ops/col2im.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0156400Z copying torch/include/ATen/ops/batch_norm_stats_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0158900Z copying torch/include/ATen/ops/kl_div_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0164710Z copying torch/include/ATen/ops/_histogramdd_bin_edges_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0165810Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0167460Z copying torch/include/ATen/ops/upsample_linear1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0172140Z copying torch/include/ATen/ops/_cudnn_rnn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0173260Z copying torch/include/ATen/ops/_sparse_semi_structured_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0179760Z copying torch/include/ATen/ops/_foreach_log1p_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0181180Z copying torch/include/ATen/ops/histc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0187850Z copying torch/include/ATen/ops/unique_dim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0188990Z copying torch/include/ATen/ops/gru_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0190270Z copying torch/include/ATen/ops/_indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0195980Z copying torch/include/ATen/ops/index_select_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0197420Z copying torch/include/ATen/ops/floor_divide_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0202950Z copying torch/include/ATen/ops/_prelu_kernel_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0205230Z copying torch/include/ATen/ops/geometric_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0210460Z copying torch/include/ATen/ops/logit_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0211990Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0213120Z copying torch/include/ATen/ops/mH.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0220040Z copying torch/include/ATen/ops/count_nonzero_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0221060Z copying torch/include/ATen/ops/fmax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0227910Z copying torch/include/ATen/ops/_nested_view_from_buffer_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0229170Z copying torch/include/ATen/ops/avg_pool3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0235760Z copying torch/include/ATen/ops/_to_sparse_bsc_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0237010Z copying torch/include/ATen/ops/trace_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0238110Z copying torch/include/ATen/ops/_weight_norm_interface_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0242870Z copying torch/include/ATen/ops/addbmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0244320Z copying torch/include/ATen/ops/empty_strided_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0251510Z copying torch/include/ATen/ops/mv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0252390Z copying torch/include/ATen/ops/_nested_from_padded_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0253790Z copying torch/include/ATen/ops/tensor_split.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0260150Z copying torch/include/ATen/ops/adaptive_avg_pool3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0268490Z copying torch/include/ATen/ops/var_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0269730Z copying torch/include/ATen/ops/slice_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0276580Z copying torch/include/ATen/ops/feature_alpha_dropout_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0277390Z copying torch/include/ATen/ops/softshrink.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0278740Z copying torch/include/ATen/ops/bitwise_left_shift_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0283750Z copying torch/include/ATen/ops/lgamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0285010Z copying torch/include/ATen/ops/_convert_indices_from_coo_to_csr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0291510Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0292280Z copying torch/include/ATen/ops/polar_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0294090Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0295340Z copying torch/include/ATen/ops/mean_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0301360Z copying torch/include/ATen/ops/_convert_indices_from_coo_to_csr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0303730Z copying torch/include/ATen/ops/_adaptive_avg_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0309240Z copying torch/include/ATen/ops/pow.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0310650Z copying torch/include/ATen/ops/_foreach_zero_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0316770Z copying torch/include/ATen/ops/lt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0318250Z copying torch/include/ATen/ops/_foreach_cosh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0324450Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0325370Z copying torch/include/ATen/ops/repeat_interleave_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0326570Z copying torch/include/ATen/ops/gelu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0333410Z copying torch/include/ATen/ops/adaptive_max_pool1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0334620Z copying torch/include/ATen/ops/_foreach_ceil_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0341650Z copying torch/include/ATen/ops/logical_not.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0342520Z copying torch/include/ATen/ops/min_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0349060Z copying torch/include/ATen/ops/multiply_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0350160Z copying torch/include/ATen/ops/max_pool1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0351390Z copying torch/include/ATen/ops/clamp_max_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0357470Z copying torch/include/ATen/ops/cross_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0358330Z copying torch/include/ATen/ops/_foreach_lerp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0365360Z copying torch/include/ATen/ops/outer_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0366360Z copying torch/include/ATen/ops/unbind_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0367560Z copying torch/include/ATen/ops/frac_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0373630Z copying torch/include/ATen/ops/_autocast_to_full_precision_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0374630Z copying torch/include/ATen/ops/arcsin_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0381140Z copying torch/include/ATen/ops/select_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0382250Z copying torch/include/ATen/ops/slice_inverse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0383890Z copying torch/include/ATen/ops/slice_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0390340Z copying torch/include/ATen/ops/ravel_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0391320Z copying torch/include/ATen/ops/_nested_select_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0398270Z copying torch/include/ATen/ops/_cast_Float_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0399210Z copying torch/include/ATen/ops/floor_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0406850Z copying torch/include/ATen/ops/and_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0407730Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0409030Z copying torch/include/ATen/ops/as_strided_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0414730Z copying torch/include/ATen/ops/renorm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0415660Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0422280Z copying torch/include/ATen/ops/_sparse_mm_reduce_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0423290Z copying torch/include/ATen/ops/bernoulli_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0430000Z copying torch/include/ATen/ops/cumsum_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0431340Z copying torch/include/ATen/ops/from_file_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0437290Z copying torch/include/ATen/ops/layer_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0438390Z copying torch/include/ATen/ops/all_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0439650Z copying torch/include/ATen/ops/gelu_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0447080Z copying torch/include/ATen/ops/diagonal_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0448070Z copying torch/include/ATen/ops/fft_ifftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0455030Z copying torch/include/ATen/ops/one_hot_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0456100Z copying torch/include/ATen/ops/miopen_batch_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0462810Z copying torch/include/ATen/ops/allclose_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0463760Z copying torch/include/ATen/ops/special_bessel_j0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0465260Z copying torch/include/ATen/ops/tensordot_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0471470Z copying torch/include/ATen/ops/_foreach_tanh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0472280Z copying torch/include/ATen/ops/linalg_ldl_factor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0478900Z copying torch/include/ATen/ops/thnn_conv2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0479820Z copying torch/include/ATen/ops/_reshape_alias_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0481280Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0486530Z copying torch/include/ATen/ops/_embedding_bag_forward_only_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0487810Z copying torch/include/ATen/ops/_lu_with_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0494160Z copying torch/include/ATen/ops/bincount_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0495730Z copying torch/include/ATen/ops/_conj_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0497040Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0503430Z copying torch/include/ATen/ops/mm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0504680Z copying torch/include/ATen/ops/digamma_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0511300Z copying torch/include/ATen/ops/positive_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0512450Z copying torch/include/ATen/ops/log10_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0520450Z copying torch/include/ATen/ops/remainder_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0521370Z copying torch/include/ATen/ops/bitwise_not_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0522550Z copying torch/include/ATen/ops/_euclidean_dist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0528470Z copying torch/include/ATen/ops/_linalg_slogdet_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0529090Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0536800Z copying torch/include/ATen/ops/_sparse_addmm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0537630Z copying torch/include/ATen/ops/logical_xor_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0539020Z copying torch/include/ATen/ops/conv_tbc_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0544610Z copying torch/include/ATen/ops/_foreach_addcdiv_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0545600Z copying torch/include/ATen/ops/resize_as_sparse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0552620Z copying torch/include/ATen/ops/col2im_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0553640Z copying torch/include/ATen/ops/clamp_max_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0554820Z copying torch/include/ATen/ops/einsum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0561340Z copying torch/include/ATen/ops/align_tensors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0562450Z copying torch/include/ATen/ops/_sobol_engine_scramble_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0568980Z copying torch/include/ATen/ops/mode_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0569880Z copying torch/include/ATen/ops/_local_scalar_dense_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0571090Z copying torch/include/ATen/ops/rnn_tanh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0576400Z copying torch/include/ATen/ops/_compute_linear_combination_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0577590Z copying torch/include/ATen/ops/is_set_to_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0583820Z copying torch/include/ATen/ops/linalg_householder_product_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0584880Z copying torch/include/ATen/ops/orgqr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0586560Z copying torch/include/ATen/ops/imag_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0593840Z copying torch/include/ATen/ops/quantized_rnn_relu_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0602660Z copying torch/include/ATen/ops/special_modified_bessel_i0_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0609160Z copying torch/include/ATen/ops/reflection_pad3d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0610200Z copying torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0611380Z copying torch/include/ATen/ops/_cast_Byte_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0616810Z copying torch/include/ATen/ops/dstack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0618150Z copying torch/include/ATen/ops/cudnn_convolution_transpose_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0624880Z copying torch/include/ATen/ops/sign.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0625990Z copying torch/include/ATen/ops/triu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0627260Z copying torch/include/ATen/ops/is_distributed.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0633350Z copying torch/include/ATen/ops/_sparse_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0634200Z copying torch/include/ATen/ops/unflatten.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0641040Z copying torch/include/ATen/ops/_segment_reduce_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0642360Z copying torch/include/ATen/ops/_validate_sparse_bsc_tensor_args.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0649250Z copying torch/include/ATen/ops/_convert_indices_from_csr_to_coo.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0650290Z copying torch/include/ATen/ops/fft_irfftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0651560Z copying torch/include/ATen/ops/dense_dim_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0657280Z copying torch/include/ATen/ops/special_log1p_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0658220Z copying torch/include/ATen/ops/_foreach_clamp_max_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0665030Z copying torch/include/ATen/ops/gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0665890Z copying torch/include/ATen/ops/_nested_get_offsets_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0667120Z copying torch/include/ATen/ops/mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0674650Z copying torch/include/ATen/ops/gru_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0675620Z copying torch/include/ATen/ops/log2_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0682940Z copying torch/include/ATen/ops/_fused_adam_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0683920Z copying torch/include/ATen/ops/one_hot_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0690550Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0691450Z copying torch/include/ATen/ops/as_strided_scatter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0692720Z copying torch/include/ATen/ops/_foreach_erfc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0698750Z copying torch/include/ATen/ops/_convert_indices_from_csr_to_coo_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0699580Z copying torch/include/ATen/ops/linalg_lu_solve_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0706450Z copying torch/include/ATen/ops/new_zeros_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0707350Z copying torch/include/ATen/ops/batch_norm_gather_stats_with_counts_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0708620Z copying torch/include/ATen/ops/indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0714820Z copying torch/include/ATen/ops/_saturate_weight_to_fp16_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0715850Z copying torch/include/ATen/ops/tan_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0722680Z copying torch/include/ATen/ops/lu_solve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0723750Z copying torch/include/ATen/ops/quantized_batch_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0724870Z copying torch/include/ATen/ops/sgn_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0730620Z copying torch/include/ATen/ops/resolve_neg_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0731730Z copying torch/include/ATen/ops/_test_functorch_fallback_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0738720Z copying torch/include/ATen/ops/_fw_primal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0739730Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0741000Z copying torch/include/ATen/ops/scatter_reduce_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0746460Z copying torch/include/ATen/ops/fft_irfftn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0747500Z copying torch/include/ATen/ops/addmm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0753800Z copying torch/include/ATen/ops/embedding_sparse_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0754990Z copying torch/include/ATen/ops/blackman_window_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0761630Z copying torch/include/ATen/ops/_fill_mem_eff_dropout_mask_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0762940Z copying torch/include/ATen/ops/_foreach_zero_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0764960Z copying torch/include/ATen/ops/quantize_per_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0771210Z copying torch/include/ATen/ops/transpose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0777440Z copying torch/include/ATen/ops/_fused_sgd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0778780Z copying torch/include/ATen/ops/amin_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0785750Z copying torch/include/ATen/ops/acosh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0786780Z copying torch/include/ATen/ops/_foreach_rsqrt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0787960Z copying torch/include/ATen/ops/sum_to_size_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0793630Z copying torch/include/ATen/ops/var_mean_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0794680Z copying torch/include/ATen/ops/histc_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0802030Z copying torch/include/ATen/ops/align_tensors_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0802830Z copying torch/include/ATen/ops/diagonal_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0809960Z copying torch/include/ATen/ops/sym_size_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0811050Z copying torch/include/ATen/ops/quantize_per_tensor_dynamic_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0812340Z copying torch/include/ATen/ops/tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0814240Z copying torch/include/ATen/ops/quantile_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0815490Z copying torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0819120Z copying torch/include/ATen/ops/ge_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0824520Z copying torch/include/ATen/ops/triangular_solve_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0828800Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0833180Z copying torch/include/ATen/ops/_slow_conv2d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0836800Z copying torch/include/ATen/ops/amax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0837870Z copying torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0842760Z copying torch/include/ATen/ops/max_pool3d_with_indices_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0844920Z copying torch/include/ATen/ops/fft_ifftn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0850930Z copying torch/include/ATen/ops/log_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0851910Z copying torch/include/ATen/ops/pow_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0853790Z copying torch/include/ATen/ops/_histogramdd_bin_edges_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0859570Z copying torch/include/ATen/ops/q_scale.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0862060Z copying torch/include/ATen/ops/linalg_matmul_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0867310Z copying torch/include/ATen/ops/scalar_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0868320Z copying torch/include/ATen/ops/rot90_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0871010Z copying torch/include/ATen/ops/linalg_eig.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0876640Z copying torch/include/ATen/ops/conj_physical_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0878990Z copying torch/include/ATen/ops/pixel_unshuffle_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0884130Z copying torch/include/ATen/ops/special_modified_bessel_k1_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0885220Z copying torch/include/ATen/ops/channel_shuffle_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0887630Z copying torch/include/ATen/ops/stride_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0892790Z copying torch/include/ATen/ops/cudnn_is_acceptable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0895870Z copying torch/include/ATen/ops/special_zeta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0900960Z copying torch/include/ATen/ops/avg_pool2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0901890Z copying torch/include/ATen/ops/renorm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0904550Z copying torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0910200Z copying torch/include/ATen/ops/is_coalesced_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0911730Z copying torch/include/ATen/ops/affine_grid_generator_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0912930Z copying torch/include/ATen/ops/_nested_view_from_buffer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0919870Z copying torch/include/ATen/ops/true_divide_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0920890Z copying torch/include/ATen/ops/_linalg_solve_ex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0927670Z copying torch/include/ATen/ops/squeeze_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0929060Z copying torch/include/ATen/ops/histogram_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0935330Z copying torch/include/ATen/ops/linalg_lu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0936230Z copying torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0937470Z copying torch/include/ATen/ops/flipud_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0943220Z copying torch/include/ATen/ops/poisson_nll_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0944270Z copying torch/include/ATen/ops/unique_dim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0950910Z copying torch/include/ATen/ops/rshift_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0952410Z copying torch/include/ATen/ops/_new_zeros_with_same_feature_meta_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0959610Z copying torch/include/ATen/ops/unsafe_split_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0960600Z copying torch/include/ATen/ops/value_selecting_reduction_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0961720Z copying torch/include/ATen/ops/dense_dim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0967940Z copying torch/include/ATen/ops/bitwise_right_shift_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0968810Z copying torch/include/ATen/ops/masked_fill_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0976240Z copying torch/include/ATen/ops/masked_fill_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0977420Z copying torch/include/ATen/ops/_use_cudnn_ctc_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0978860Z copying torch/include/ATen/ops/_empty_per_channel_affine_quantized_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0983940Z copying torch/include/ATen/ops/_cast_Byte_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0985420Z copying torch/include/ATen/ops/logit_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0991780Z copying torch/include/ATen/ops/any.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0992970Z copying torch/include/ATen/ops/kthvalue_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0994120Z copying torch/include/ATen/ops/convolution_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.0999390Z copying torch/include/ATen/ops/unique_consecutive_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1000920Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1007220Z copying torch/include/ATen/ops/sort_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1009550Z copying torch/include/ATen/ops/_reshape_alias_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1015600Z copying torch/include/ATen/ops/_upsample_nearest_exact2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1016570Z copying torch/include/ATen/ops/nll_loss_forward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1017960Z copying torch/include/ATen/ops/_foreach_lgamma_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1032710Z copying torch/include/ATen/ops/linalg_vector_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1033770Z copying torch/include/ATen/ops/linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1034880Z copying torch/include/ATen/ops/contiguous_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1040430Z copying torch/include/ATen/ops/le_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1041760Z copying torch/include/ATen/ops/convolution_overrideable_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1048960Z copying torch/include/ATen/ops/hardtanh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1050010Z copying torch/include/ATen/ops/elu_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1051190Z copying torch/include/ATen/ops/_sparse_mm_reduce_impl_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1057120Z copying torch/include/ATen/ops/elu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1058030Z copying torch/include/ATen/ops/angle_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1064620Z copying torch/include/ATen/ops/cross_entropy_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1065880Z copying torch/include/ATen/ops/special_gammaincc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1067160Z copying torch/include/ATen/ops/subtract_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1074420Z copying torch/include/ATen/ops/diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1075240Z copying torch/include/ATen/ops/poisson_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1082110Z copying torch/include/ATen/ops/floor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1083170Z copying torch/include/ATen/ops/retains_grad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1089970Z copying torch/include/ATen/ops/sspaddmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1090980Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1092410Z copying torch/include/ATen/ops/index_reduce_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1098520Z copying torch/include/ATen/ops/_cummax_helper_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1099610Z copying torch/include/ATen/ops/scatter_add_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1106710Z copying torch/include/ATen/ops/_copy_from.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1107800Z copying torch/include/ATen/ops/narrow_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1109050Z copying torch/include/ATen/ops/flip_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1114380Z copying torch/include/ATen/ops/result_type_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1115390Z copying torch/include/ATen/ops/logical_not_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1122540Z copying torch/include/ATen/ops/_scaled_grouped_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1123560Z copying torch/include/ATen/ops/select_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1124890Z copying torch/include/ATen/ops/mse_loss_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1130130Z copying torch/include/ATen/ops/fractional_max_pool3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1131340Z copying torch/include/ATen/ops/mkldnn_linear_backward_input.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1138290Z copying torch/include/ATen/ops/special_logsumexp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1139020Z copying torch/include/ATen/ops/adaptive_avg_pool1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1146160Z copying torch/include/ATen/ops/linalg_svd_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1147210Z copying torch/include/ATen/ops/batch_norm_backward_reduce_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1148400Z copying torch/include/ATen/ops/bitwise_or_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1153860Z copying torch/include/ATen/ops/l1_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1155300Z copying torch/include/ATen/ops/geqrf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1361460Z copying torch/include/ATen/ops/log2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1362280Z copying torch/include/ATen/ops/isposinf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1363530Z copying torch/include/ATen/ops/_masked_scale_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1364830Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1366110Z copying torch/include/ATen/ops/reciprocal_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1367270Z copying torch/include/ATen/ops/lcm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1368390Z copying torch/include/ATen/ops/frexp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1369680Z copying torch/include/ATen/ops/linalg_ldl_solve_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1371190Z copying torch/include/ATen/ops/hardshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1372270Z copying torch/include/ATen/ops/view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1373440Z copying torch/include/ATen/ops/special_xlog1py_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1374670Z copying torch/include/ATen/ops/exp2_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1375910Z copying torch/include/ATen/ops/mean_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1377190Z copying torch/include/ATen/ops/values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1378410Z copying torch/include/ATen/ops/le_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1379610Z copying torch/include/ATen/ops/conv3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1380830Z copying torch/include/ATen/ops/stack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1382080Z copying torch/include/ATen/ops/linalg_svdvals_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1383320Z copying torch/include/ATen/ops/special_erfinv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1384530Z copying torch/include/ATen/ops/var_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1385710Z copying torch/include/ATen/ops/rsqrt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1387000Z copying torch/include/ATen/ops/_convolution_double_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1393200Z copying torch/include/ATen/ops/polar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1393790Z copying torch/include/ATen/ops/_softmax_backward_data_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1394400Z copying torch/include/ATen/ops/_make_dual_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1394960Z copying torch/include/ATen/ops/trunc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1395610Z copying torch/include/ATen/ops/meshgrid_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1396210Z copying torch/include/ATen/ops/slow_conv_transpose2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1396840Z copying torch/include/ATen/ops/_sample_dirichlet_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1397410Z copying torch/include/ATen/ops/silu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1398160Z copying torch/include/ATen/ops/special_log_softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1399420Z copying torch/include/ATen/ops/zeros_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1400530Z copying torch/include/ATen/ops/special_logit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1401850Z copying torch/include/ATen/ops/affine_grid_generator_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1403090Z copying torch/include/ATen/ops/full_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1404270Z copying torch/include/ATen/ops/lgamma_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1405430Z copying torch/include/ATen/ops/isneginf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1406760Z copying torch/include/ATen/ops/_sparse_csr_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1407930Z copying torch/include/ATen/ops/linalg_inv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1409220Z copying torch/include/ATen/ops/mkldnn_reorder_conv2d_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1410370Z copying torch/include/ATen/ops/index_put_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1411600Z copying torch/include/ATen/ops/data_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1412800Z copying torch/include/ATen/ops/_prelu_kernel_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1414150Z copying torch/include/ATen/ops/special_exp2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1415430Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k0_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1416630Z copying torch/include/ATen/ops/div_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1417880Z copying torch/include/ATen/ops/logaddexp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1419150Z copying torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1420380Z copying torch/include/ATen/ops/permute_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1421600Z copying torch/include/ATen/ops/dense_dim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1422860Z copying torch/include/ATen/ops/xor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1424320Z copying torch/include/ATen/ops/max_unpool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1425590Z copying torch/include/ATen/ops/linalg_inv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1426880Z copying torch/include/ATen/ops/_sparse_sparse_matmul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1428080Z copying torch/include/ATen/ops/huber_loss_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1429290Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1430480Z copying torch/include/ATen/ops/ge.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1431730Z copying torch/include/ATen/ops/_foreach_clamp_min.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1432890Z copying torch/include/ATen/ops/index_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1434150Z copying torch/include/ATen/ops/tanh_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1435320Z copying torch/include/ATen/ops/cos_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1436640Z copying torch/include/ATen/ops/grid_sampler_3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1437790Z copying torch/include/ATen/ops/split.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1438960Z copying torch/include/ATen/ops/div.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1440150Z copying torch/include/ATen/ops/msort_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1441370Z copying torch/include/ATen/ops/refine_names_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1442560Z copying torch/include/ATen/ops/t_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1443840Z copying torch/include/ATen/ops/isneginf_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1445110Z copying torch/include/ATen/ops/miopen_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1446360Z copying torch/include/ATen/ops/slow_conv3d_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1447760Z copying torch/include/ATen/ops/_sparse_semi_structured_addmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1448960Z copying torch/include/ATen/ops/_sparse_mask_projection_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1450120Z copying torch/include/ATen/ops/complex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1451540Z copying torch/include/ATen/ops/masked_scatter_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1452840Z copying torch/include/ATen/ops/copy_sparse_to_sparse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1454030Z copying torch/include/ATen/ops/bmm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1455300Z copying torch/include/ATen/ops/_foreach_log_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1456780Z copying torch/include/ATen/ops/_foreach_max_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1457970Z copying torch/include/ATen/ops/logaddexp2_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1459180Z copying torch/include/ATen/ops/replication_pad3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1460640Z copying torch/include/ATen/ops/softplus_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1461820Z copying torch/include/ATen/ops/log_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1462980Z copying torch/include/ATen/ops/trapz_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1464330Z copying torch/include/ATen/ops/replication_pad1d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1465670Z copying torch/include/ATen/ops/unique_dim_consecutive_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1467050Z copying torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1468230Z copying torch/include/ATen/ops/arcsin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1469490Z copying torch/include/ATen/ops/batch_norm_update_stats.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1470710Z copying torch/include/ATen/ops/exp2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1472100Z copying torch/include/ATen/ops/cosine_embedding_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1473350Z copying torch/include/ATen/ops/_sparse_sparse_matmul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1474680Z copying torch/include/ATen/ops/fractional_max_pool2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1476070Z copying torch/include/ATen/ops/sspaddmm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1479100Z copying torch/include/ATen/ops/col_indices_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1484470Z copying torch/include/ATen/ops/lgamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1485560Z copying torch/include/ATen/ops/unique_dim_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1486950Z copying torch/include/ATen/ops/pin_memory_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1493310Z copying torch/include/ATen/ops/_foreach_addcdiv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1494310Z copying torch/include/ATen/ops/linalg_lu_factor_ex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1500920Z copying torch/include/ATen/ops/special_bessel_j1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1502180Z copying torch/include/ATen/ops/div_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1509460Z copying torch/include/ATen/ops/_copy_from_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1510440Z copying torch/include/ATen/ops/_neg_view_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1511590Z copying torch/include/ATen/ops/concat_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1517420Z copying torch/include/ATen/ops/_validate_compressed_sparse_indices_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1518450Z copying torch/include/ATen/ops/histogramdd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1524500Z copying torch/include/ATen/ops/_native_batch_norm_legit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1525720Z copying torch/include/ATen/ops/_foreach_rsqrt_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1526940Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1534520Z copying torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1535310Z copying torch/include/ATen/ops/igamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1542210Z copying torch/include/ATen/ops/_nested_get_offsets_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1543110Z copying torch/include/ATen/ops/bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1544570Z copying torch/include/ATen/ops/_standard_gamma_grad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1549520Z copying torch/include/ATen/ops/zero_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1550890Z copying torch/include/ATen/ops/_nested_tensor_storage_offsets_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1554900Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1559490Z copying torch/include/ATen/ops/reflection_pad2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1562270Z copying torch/include/ATen/ops/_foreach_clamp_max_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1563620Z copying torch/include/ATen/ops/pixel_unshuffle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1569230Z copying torch/include/ATen/ops/_nested_tensor_softmax_with_shape_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1570370Z copying torch/include/ATen/ops/diagonal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1576570Z copying torch/include/ATen/ops/logcumsumexp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1577760Z copying torch/include/ATen/ops/leaky_relu_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1584270Z copying torch/include/ATen/ops/isin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1585350Z copying torch/include/ATen/ops/to_mkldnn_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1586780Z copying torch/include/ATen/ops/upsample_nearest1d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1593910Z copying torch/include/ATen/ops/miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1594790Z copying torch/include/ATen/ops/_nested_tensor_from_tensor_list_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1601470Z copying torch/include/ATen/ops/linalg_matrix_exp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1602430Z copying torch/include/ATen/ops/_is_any_true_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1609090Z copying torch/include/ATen/ops/linalg_tensorinv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1610320Z copying torch/include/ATen/ops/random.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1616860Z copying torch/include/ATen/ops/upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1618140Z copying torch/include/ATen/ops/exponential.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1624570Z copying torch/include/ATen/ops/gt_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1625690Z copying torch/include/ATen/ops/linalg_det_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1626920Z copying torch/include/ATen/ops/masked_select_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1633920Z copying torch/include/ATen/ops/xlogy_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1635120Z copying torch/include/ATen/ops/upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1641730Z copying torch/include/ATen/ops/cudnn_convolution_transpose_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1642660Z copying torch/include/ATen/ops/linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1649570Z copying torch/include/ATen/ops/expand_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1650450Z copying torch/include/ATen/ops/_foreach_sqrt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1651670Z copying torch/include/ATen/ops/atleast_1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1657040Z copying torch/include/ATen/ops/isin_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1658380Z copying torch/include/ATen/ops/_cudnn_init_dropout_state_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1664540Z copying torch/include/ATen/ops/_to_sparse_csr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1665780Z copying torch/include/ATen/ops/sinc_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1666940Z copying torch/include/ATen/ops/dist_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1673310Z copying torch/include/ATen/ops/norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1674270Z copying torch/include/ATen/ops/hardtanh_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1681240Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1682280Z copying torch/include/ATen/ops/copysign_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1689950Z copying torch/include/ATen/ops/quantize_per_tensor_dynamic_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1690960Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1692190Z copying torch/include/ATen/ops/_cummin_helper_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1698390Z copying torch/include/ATen/ops/_reshape_alias_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1699290Z copying torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1706180Z copying torch/include/ATen/ops/histogramdd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1707330Z copying torch/include/ATen/ops/aminmax_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1708480Z copying torch/include/ATen/ops/index_reduce_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1714070Z copying torch/include/ATen/ops/_nested_get_ragged_idx_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1715950Z copying torch/include/ATen/ops/leaky_relu_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1722220Z copying torch/include/ATen/ops/lshift_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1723360Z copying torch/include/ATen/ops/fft_irfft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1724590Z copying torch/include/ATen/ops/digamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1729890Z copying torch/include/ATen/ops/grid_sampler_3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1730910Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1737730Z copying torch/include/ATen/ops/_sparse_addmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1738890Z copying torch/include/ATen/ops/gather_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1745440Z copying torch/include/ATen/ops/_has_same_storage_numel_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1746410Z copying torch/include/ATen/ops/_dimI.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1747630Z copying torch/include/ATen/ops/exponential_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1753350Z copying torch/include/ATen/ops/_weight_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1754480Z copying torch/include/ATen/ops/lu_unpack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1761740Z copying torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1763420Z copying torch/include/ATen/ops/_foreach_ceil.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1769490Z copying torch/include/ATen/ops/_convert_weight_to_int4pack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1770460Z copying torch/include/ATen/ops/bmm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1777220Z copying torch/include/ATen/ops/matmul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1779160Z copying torch/include/ATen/ops/_print_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1785700Z copying torch/include/ATen/ops/to_dense_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1786650Z copying torch/include/ATen/ops/linalg_ldl_solve_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1787910Z copying torch/include/ATen/ops/nanmedian_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1793490Z copying torch/include/ATen/ops/quantize_per_channel_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1794320Z copying torch/include/ATen/ops/_neg_view_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1796650Z copying torch/include/ATen/ops/replication_pad3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1802880Z copying torch/include/ATen/ops/ctc_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1804880Z copying torch/include/ATen/ops/argwhere.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1810580Z copying torch/include/ATen/ops/_foreach_tan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1811730Z copying torch/include/ATen/ops/asin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1813180Z copying torch/include/ATen/ops/index_add_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1820360Z copying torch/include/ATen/ops/avg_pool2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1821670Z copying torch/include/ATen/ops/bitwise_or.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1828180Z copying torch/include/ATen/ops/_conj_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1829400Z copying torch/include/ATen/ops/embedding_renorm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1835830Z copying torch/include/ATen/ops/diff_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1836750Z copying torch/include/ATen/ops/fix.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1838250Z copying torch/include/ATen/ops/_standard_gamma_grad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1843510Z copying torch/include/ATen/ops/special_expit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1844450Z copying torch/include/ATen/ops/rsub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1850880Z copying torch/include/ATen/ops/cos_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1852080Z copying torch/include/ATen/ops/unsafe_split_with_sizes_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1858730Z copying torch/include/ATen/ops/_fft_c2c_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1859670Z copying torch/include/ATen/ops/std.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1861040Z copying torch/include/ATen/ops/_is_all_true_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1866800Z copying torch/include/ATen/ops/_jagged_to_padded_dense_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1867790Z copying torch/include/ATen/ops/broadcast_tensors_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1874340Z copying torch/include/ATen/ops/polygamma_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1875390Z copying torch/include/ATen/ops/index_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1883100Z copying torch/include/ATen/ops/_efficientzerotensor_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1884050Z copying torch/include/ATen/ops/_test_optional_floatlist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1885370Z copying torch/include/ATen/ops/to_mkldnn_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1890930Z copying torch/include/ATen/ops/_embedding_bag_forward_only.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1891720Z copying torch/include/ATen/ops/index_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1898760Z copying torch/include/ATen/ops/aminmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1899700Z copying torch/include/ATen/ops/_log_softmax_backward_data_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1901130Z copying torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1906500Z copying torch/include/ATen/ops/tril_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1907780Z copying torch/include/ATen/ops/_conj_physical_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1914280Z copying torch/include/ATen/ops/threshold_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1915220Z copying torch/include/ATen/ops/fmod_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1916500Z copying torch/include/ATen/ops/randint_like_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1923360Z copying torch/include/ATen/ops/linalg_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1932140Z copying torch/include/ATen/ops/fmin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1933060Z copying torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1939540Z copying torch/include/ATen/ops/_dirichlet_grad_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1940290Z copying torch/include/ATen/ops/special_expm1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1941510Z copying torch/include/ATen/ops/special_erfinv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1947040Z copying torch/include/ATen/ops/linalg_ldl_solve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1948310Z copying torch/include/ATen/ops/linalg_qr_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1955080Z copying torch/include/ATen/ops/pad_sequence.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1955980Z copying torch/include/ATen/ops/hardswish.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1957240Z copying torch/include/ATen/ops/geqrf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1962510Z copying torch/include/ATen/ops/reflection_pad3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1963920Z copying torch/include/ATen/ops/grid_sampler_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1970630Z copying torch/include/ATen/ops/logit_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1971620Z copying torch/include/ATen/ops/ones_like.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1978080Z copying torch/include/ATen/ops/_test_optional_filled_intlist_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1979250Z copying torch/include/ATen/ops/split_with_sizes_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1980350Z copying torch/include/ATen/ops/_test_warn_in_autograd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1987670Z copying torch/include/ATen/ops/neg_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1988690Z copying torch/include/ATen/ops/isfinite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1995400Z copying torch/include/ATen/ops/_coalesced_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.1996410Z copying torch/include/ATen/ops/q_per_channel_axis_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2003040Z copying torch/include/ATen/ops/_to_sparse_csc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2004120Z copying torch/include/ATen/ops/_batch_norm_no_update.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2005540Z copying torch/include/ATen/ops/hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2011390Z copying torch/include/ATen/ops/deg2rad_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2012390Z copying torch/include/ATen/ops/special_bessel_j1_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2019730Z copying torch/include/ATen/ops/upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2020590Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2021880Z copying torch/include/ATen/ops/sparse_coo_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2027270Z copying torch/include/ATen/ops/_is_zerotensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2028220Z copying torch/include/ATen/ops/xlogy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2034790Z copying torch/include/ATen/ops/is_conj_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2035820Z copying torch/include/ATen/ops/log10_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2037140Z copying torch/include/ATen/ops/_standard_gamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2044240Z copying torch/include/ATen/ops/conv2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2045210Z copying torch/include/ATen/ops/dequantize_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2051900Z copying torch/include/ATen/ops/nll_loss2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2053290Z copying torch/include/ATen/ops/special_round_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2059870Z copying torch/include/ATen/ops/_pin_memory.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2060940Z copying torch/include/ATen/ops/fliplr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2062160Z copying torch/include/ATen/ops/gcd_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2068330Z copying torch/include/ATen/ops/_convolution_mode_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2069180Z copying torch/include/ATen/ops/convolution_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2076260Z copying torch/include/ATen/ops/cosine_similarity_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2077260Z copying torch/include/ATen/ops/_shape_as_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2079330Z copying torch/include/ATen/ops/inner_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2084830Z copying torch/include/ATen/ops/isposinf_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2085800Z copying torch/include/ATen/ops/conv_transpose3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2087140Z copying torch/include/ATen/ops/_nested_tensor_from_mask_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2093710Z copying torch/include/ATen/ops/reflection_pad3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2094890Z copying torch/include/ATen/ops/unflatten_dense_tensors_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2101160Z copying torch/include/ATen/ops/_version_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2102450Z copying torch/include/ATen/ops/_pdist_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2103860Z copying torch/include/ATen/ops/sum_to_size_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2110490Z copying torch/include/ATen/ops/empty_like_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2111330Z copying torch/include/ATen/ops/uniform.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2119040Z copying torch/include/ATen/ops/grid_sampler_3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2119960Z copying torch/include/ATen/ops/masked_scatter_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2127410Z copying torch/include/ATen/ops/rshift_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2128310Z copying torch/include/ATen/ops/cumprod_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2129580Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2135760Z copying torch/include/ATen/ops/mse_loss_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2136780Z copying torch/include/ATen/ops/diagonal_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2144160Z copying torch/include/ATen/ops/_nested_tensor_from_tensor_list.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2145180Z copying torch/include/ATen/ops/avg_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2146490Z copying torch/include/ATen/ops/count_nonzero_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2151930Z copying torch/include/ATen/ops/sparse_coo_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2153300Z copying torch/include/ATen/ops/slow_conv_transpose3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2160010Z copying torch/include/ATen/ops/bmm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2160900Z copying torch/include/ATen/ops/detach_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2162090Z copying torch/include/ATen/ops/set.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2168280Z copying torch/include/ATen/ops/upsample_bilinear2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2169330Z copying torch/include/ATen/ops/feature_dropout_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2176030Z copying torch/include/ATen/ops/_sparse_log_softmax_backward_data_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2176810Z copying torch/include/ATen/ops/silu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2178100Z copying torch/include/ATen/ops/native_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2184360Z copying torch/include/ATen/ops/_fused_sgd_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2185330Z copying torch/include/ATen/ops/_add_relu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2192850Z copying torch/include/ATen/ops/acos_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2193910Z copying torch/include/ATen/ops/replication_pad2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2195230Z copying torch/include/ATen/ops/randperm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2201890Z copying torch/include/ATen/ops/special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2202570Z copying torch/include/ATen/ops/det.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2209270Z copying torch/include/ATen/ops/diagflat_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2210270Z copying torch/include/ATen/ops/exp_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2211560Z copying torch/include/ATen/ops/special_modified_bessel_k0_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2216900Z copying torch/include/ATen/ops/_fft_c2r_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2217780Z copying torch/include/ATen/ops/_add_batch_dim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2224640Z copying torch/include/ATen/ops/_jagged_to_padded_dense_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2225490Z copying torch/include/ATen/ops/threshold_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2233430Z copying torch/include/ATen/ops/_foreach_tanh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2234330Z copying torch/include/ATen/ops/linalg_vander.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2235610Z copying torch/include/ATen/ops/sigmoid_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2241350Z copying torch/include/ATen/ops/mish_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2242470Z copying torch/include/ATen/ops/_sparse_mm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2243880Z copying torch/include/ATen/ops/_has_same_storage_numel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2250410Z copying torch/include/ATen/ops/embedding_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2251680Z copying torch/include/ATen/ops/linalg_ldl_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2258220Z copying torch/include/ATen/ops/_cast_Double_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2266610Z copying torch/include/ATen/ops/nll_loss_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2267530Z copying torch/include/ATen/ops/_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2268780Z copying torch/include/ATen/ops/diagonal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2274200Z copying torch/include/ATen/ops/new_full_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2275330Z copying torch/include/ATen/ops/isposinf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2277330Z copying torch/include/ATen/ops/new_empty_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2283700Z copying torch/include/ATen/ops/_weight_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2284730Z copying torch/include/ATen/ops/triu_indices_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2291860Z copying torch/include/ATen/ops/upsample_nearest1d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2292580Z copying torch/include/ATen/ops/special_round.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2299450Z copying torch/include/ATen/ops/cumprod_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2300470Z copying torch/include/ATen/ops/_has_same_storage_numel_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2301630Z copying torch/include/ATen/ops/quantile_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2307060Z copying torch/include/ATen/ops/_slow_conv2d_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2308730Z copying torch/include/ATen/ops/index_select_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2315300Z copying torch/include/ATen/ops/_dyn_quant_matmul_4bit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2316300Z copying torch/include/ATen/ops/pad_sequence_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2317600Z copying torch/include/ATen/ops/upsample_nearest1d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2323630Z copying torch/include/ATen/ops/_native_batch_norm_legit_no_training.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2324420Z copying torch/include/ATen/ops/elu_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2331420Z copying torch/include/ATen/ops/glu_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2333070Z copying torch/include/ATen/ops/_native_batch_norm_legit_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2334410Z copying torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2339110Z copying torch/include/ATen/ops/_fw_primal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2340370Z copying torch/include/ATen/ops/sym_size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2346560Z copying torch/include/ATen/ops/_scaled_dot_product_attention_math.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2348130Z copying torch/include/ATen/ops/_validate_sparse_bsr_tensor_args.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2354080Z copying torch/include/ATen/ops/hardsigmoid_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2355590Z copying torch/include/ATen/ops/reflection_pad3d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2356890Z copying torch/include/ATen/ops/batch_norm_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2363400Z copying torch/include/ATen/ops/row_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2364500Z copying torch/include/ATen/ops/batch_norm_backward_elemt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2371260Z copying torch/include/ATen/ops/slow_conv3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2372140Z copying torch/include/ATen/ops/_foobar_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2379350Z copying torch/include/ATen/ops/special_bessel_j1_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2380420Z copying torch/include/ATen/ops/t_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2381580Z copying torch/include/ATen/ops/det_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2387420Z copying torch/include/ATen/ops/_to_sparse_bsr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2388440Z copying torch/include/ATen/ops/randperm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2395240Z copying torch/include/ATen/ops/expand_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2396290Z copying torch/include/ATen/ops/_fft_c2r.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2397560Z copying torch/include/ATen/ops/sqrt_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2403480Z copying torch/include/ATen/ops/cosine_similarity.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2404350Z copying torch/include/ATen/ops/_foreach_add_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2411220Z copying torch/include/ATen/ops/nonzero_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2412560Z copying torch/include/ATen/ops/_histogramdd_from_bin_tensors_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2419060Z copying torch/include/ATen/ops/sparse_csc_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2420110Z copying torch/include/ATen/ops/trunc_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2421670Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2427330Z copying torch/include/ATen/ops/q_per_channel_axis_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2434950Z copying torch/include/ATen/ops/logdet_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2435960Z copying torch/include/ATen/ops/take_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2443330Z copying torch/include/ATen/ops/miopen_rnn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2444330Z copying torch/include/ATen/ops/minimum_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2445760Z copying torch/include/ATen/ops/_nested_tensor_from_tensor_list_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2450810Z copying torch/include/ATen/ops/greater_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2451990Z copying torch/include/ATen/ops/_sparse_semi_structured_apply_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2458480Z copying torch/include/ATen/ops/sparse_resize_and_clear_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2459560Z copying torch/include/ATen/ops/prod_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2460800Z copying torch/include/ATen/ops/tril_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2465900Z copying torch/include/ATen/ops/miopen_depthwise_convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2467060Z copying torch/include/ATen/ops/_functional_assert_async_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2473690Z copying torch/include/ATen/ops/arctanh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2474750Z copying torch/include/ATen/ops/_is_any_true_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2476010Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2481630Z copying torch/include/ATen/ops/_fused_adam_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2482470Z copying torch/include/ATen/ops/max_unpool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2483740Z copying torch/include/ATen/ops/linalg_pinv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2489570Z copying torch/include/ATen/ops/_cast_Half_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2490650Z copying torch/include/ATen/ops/neg_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2497380Z copying torch/include/ATen/ops/native_batch_norm_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2498830Z copying torch/include/ATen/ops/unique_dim_consecutive_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2504930Z copying torch/include/ATen/ops/geometric_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2506290Z copying torch/include/ATen/ops/col2im_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2507620Z copying torch/include/ATen/ops/replication_pad2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2512400Z copying torch/include/ATen/ops/mkldnn_max_pool3d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2513780Z copying torch/include/ATen/ops/crow_indices_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2520500Z copying torch/include/ATen/ops/cosh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2521440Z copying torch/include/ATen/ops/rshift_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2528070Z copying torch/include/ATen/ops/threshold_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2529440Z copying torch/include/ATen/ops/_sparse_semi_structured_tile_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2530910Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2535520Z copying torch/include/ATen/ops/_foreach_exp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2537050Z copying torch/include/ATen/ops/_embedding_bag_dense_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2542980Z copying torch/include/ATen/ops/binary_cross_entropy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2545000Z copying torch/include/ATen/ops/_softmax_backward_data_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2551010Z copying torch/include/ATen/ops/log_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2552100Z copying torch/include/ATen/ops/special_modified_bessel_i0_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2553870Z copying torch/include/ATen/ops/_cudnn_attention_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2559380Z copying torch/include/ATen/ops/sparse_coo_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2560210Z copying torch/include/ATen/ops/_to_sparse_csr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2567980Z copying torch/include/ATen/ops/_saturate_weight_to_fp16_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2568790Z copying torch/include/ATen/ops/lu_unpack_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2576030Z copying torch/include/ATen/ops/expand_as_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2576940Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2578140Z copying torch/include/ATen/ops/is_pinned_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2583590Z copying torch/include/ATen/ops/mkldnn_rnn_layer_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2584680Z copying torch/include/ATen/ops/isposinf_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2591410Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2593400Z copying torch/include/ATen/ops/_cslt_compress_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2600330Z copying torch/include/ATen/ops/slow_conv_dilated3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2601320Z copying torch/include/ATen/ops/_foreach_abs.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2608360Z copying torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2609580Z copying torch/include/ATen/ops/upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2616040Z copying torch/include/ATen/ops/histc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2617070Z copying torch/include/ATen/ops/upsample_trilinear3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2618470Z copying torch/include/ATen/ops/_sparse_sum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2623730Z copying torch/include/ATen/ops/glu_backward_jvp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2624790Z copying torch/include/ATen/ops/relu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2631030Z copying torch/include/ATen/ops/gradient_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2632190Z copying torch/include/ATen/ops/linalg_matrix_exp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2633390Z copying torch/include/ATen/ops/_index_put_impl_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2638930Z copying torch/include/ATen/ops/diag_embed_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2639970Z copying torch/include/ATen/ops/_scaled_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2646820Z copying torch/include/ATen/ops/_weight_norm_interface_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2648160Z copying torch/include/ATen/ops/trapz_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2654390Z copying torch/include/ATen/ops/block_diag_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2655960Z copying torch/include/ATen/ops/logical_or_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2657220Z copying torch/include/ATen/ops/copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2663910Z copying torch/include/ATen/ops/binary_cross_entropy_with_logits_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2665110Z copying torch/include/ATen/ops/fractional_max_pool3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2672160Z copying torch/include/ATen/ops/cumsum_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2673520Z copying torch/include/ATen/ops/special_entr_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2680380Z copying torch/include/ATen/ops/fft_ifftshift.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2681740Z copying torch/include/ATen/ops/batch_norm_elemt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2683230Z copying torch/include/ATen/ops/_assert_async.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2688400Z copying torch/include/ATen/ops/q_zero_point_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2689220Z copying torch/include/ATen/ops/special_zeta_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2696520Z copying torch/include/ATen/ops/_values_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2697620Z copying torch/include/ATen/ops/is_same_size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2698800Z copying torch/include/ATen/ops/atan2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2704960Z copying torch/include/ATen/ops/linalg_cond_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2706110Z copying torch/include/ATen/ops/diagonal_scatter_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2712300Z copying torch/include/ATen/ops/upsample_bicubic2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2713380Z copying torch/include/ATen/ops/special_xlog1py_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2720440Z copying torch/include/ATen/ops/isnan_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2721600Z copying torch/include/ATen/ops/scaled_dot_product_attention_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2728610Z copying torch/include/ATen/ops/bitwise_left_shift_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2729870Z copying torch/include/ATen/ops/l1_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2731200Z copying torch/include/ATen/ops/special_hermite_polynomial_h_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2736780Z copying torch/include/ATen/ops/_foreach_add_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2737620Z copying torch/include/ATen/ops/cholesky_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2743850Z copying torch/include/ATen/ops/nuclear_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2745020Z copying torch/include/ATen/ops/lift_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2746660Z copying torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2753880Z copying torch/include/ATen/ops/addr_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2755230Z copying torch/include/ATen/ops/repeat_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2762970Z copying torch/include/ATen/ops/linear_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2769410Z copying torch/include/ATen/ops/and_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2770270Z copying torch/include/ATen/ops/select.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2771620Z copying torch/include/ATen/ops/fused_moving_avg_obs_fake_quant.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2776760Z copying torch/include/ATen/ops/true_divide.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2777990Z copying torch/include/ATen/ops/multilabel_margin_loss_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2785110Z copying torch/include/ATen/ops/_foreach_tan_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2786120Z copying torch/include/ATen/ops/_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2787260Z copying torch/include/ATen/ops/nonzero_numpy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2792540Z copying torch/include/ATen/ops/special_sinc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2793740Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2797930Z copying torch/include/ATen/ops/_foreach_cos_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2802790Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2805730Z copying torch/include/ATen/ops/_pdist_forward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2809870Z copying torch/include/ATen/ops/_pdist_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2811510Z copying torch/include/ATen/ops/cos_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2814520Z copying torch/include/ATen/ops/pixel_shuffle_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2818980Z copying torch/include/ATen/ops/tan_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2821890Z copying torch/include/ATen/ops/ones_like_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2822870Z copying torch/include/ATen/ops/_conj_physical_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2828800Z copying torch/include/ATen/ops/nll_loss2d_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2830890Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2836470Z copying torch/include/ATen/ops/_to_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2837780Z copying torch/include/ATen/ops/cos_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2840650Z copying torch/include/ATen/ops/mps_convolution_transpose_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2845830Z copying torch/include/ATen/ops/mkldnn_convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2846820Z copying torch/include/ATen/ops/_fused_rms_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2853460Z copying torch/include/ATen/ops/_linalg_eigh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2854650Z copying torch/include/ATen/ops/_print_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2861150Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2862090Z copying torch/include/ATen/ops/embedding_renorm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2863250Z copying torch/include/ATen/ops/cat_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2869310Z copying torch/include/ATen/ops/ne_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2871400Z copying torch/include/ATen/ops/expand_as_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2877310Z copying torch/include/ATen/ops/scaled_dot_product_attention_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2878280Z copying torch/include/ATen/ops/complex_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2880530Z copying torch/include/ATen/ops/linalg_ldl_solve_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2887180Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-17T06:37:47.2888310Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-07-17T06:37:47.2889000Z copying torch/include/ATen/functorch/BatchedFallback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-07-17T06:37:47.2894310Z copying torch/include/ATen/functorch/FunctionalizeInterpreter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-07-17T06:37:47.2895350Z copying torch/include/ATen/functorch/ADInterpreters.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-07-17T06:37:47.2902020Z copying torch/include/ATen/functorch/Interpreter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-07-17T06:37:47.2903210Z copying torch/include/ATen/functorch/TensorWrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-07-17T06:37:47.2904530Z copying torch/include/ATen/functorch/BatchRulesHelper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-07-17T06:37:47.3111890Z copying torch/include/ATen/functorch/PlumbingHelper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-07-17T06:37:47.3112840Z copying torch/include/ATen/functorch/VmapInterpreter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-07-17T06:37:47.3114020Z copying torch/include/ATen/functorch/Macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-07-17T06:37:47.3115320Z copying torch/include/ATen/functorch/BatchingMetaprogramming.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-07-17T06:37:47.3116580Z copying torch/include/ATen/functorch/BatchedTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-07-17T06:37:47.3117910Z copying torch/include/ATen/functorch/LegacyVmapTransforms.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-07-17T06:37:47.3119450Z copying torch/include/ATen/functorch/DynamicLayer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-07-17T06:37:47.3121170Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn 2025-07-17T06:37:47.3122280Z copying torch/include/ATen/cudnn/Handles.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn 2025-07-17T06:37:47.3123670Z copying torch/include/ATen/cudnn/Utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn 2025-07-17T06:37:47.3125020Z copying torch/include/ATen/cudnn/Types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn 2025-07-17T06:37:47.3126220Z copying torch/include/ATen/cudnn/Descriptors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn 2025-07-17T06:37:47.3127710Z copying torch/include/ATen/cudnn/Handle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn 2025-07-17T06:37:47.3129010Z copying torch/include/ATen/cudnn/cudnn-wrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn 2025-07-17T06:37:47.3130320Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10 2025-07-17T06:37:47.3130820Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3131460Z copying torch/include/c10/core/RefcountedDeleter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3132740Z copying torch/include/c10/core/QEngine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3134000Z copying torch/include/c10/core/TensorOptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3135570Z copying torch/include/c10/core/SymFloat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3136710Z copying torch/include/c10/core/GradMode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3137950Z copying torch/include/c10/core/Device.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3139190Z copying torch/include/c10/core/CPUAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3140420Z copying torch/include/c10/core/DefaultDtype.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3141620Z copying torch/include/c10/core/DefaultTensorOptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3142860Z copying torch/include/c10/core/alignment.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3144080Z copying torch/include/c10/core/Event.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3145310Z copying torch/include/c10/core/Backend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3146790Z copying torch/include/c10/core/CompileTimeFunctionPointer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3147950Z copying torch/include/c10/core/DeviceArray.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3149130Z copying torch/include/c10/core/PyHandleCache.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3150350Z copying torch/include/c10/core/ConstantSymNodeImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3151590Z copying torch/include/c10/core/WrapDimMinimal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3152870Z copying torch/include/c10/core/QScheme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3154030Z copying torch/include/c10/core/SafePyObject.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3155210Z copying torch/include/c10/core/Stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3156410Z copying torch/include/c10/core/UndefinedTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3157680Z copying torch/include/c10/core/Scalar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3159120Z copying torch/include/c10/core/AutogradState.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3160280Z copying torch/include/c10/core/SymIntArrayRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3161470Z copying torch/include/c10/core/thread_pool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3162670Z copying torch/include/c10/core/CopyBytes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3163890Z copying torch/include/c10/core/SymNodeImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3165070Z copying torch/include/c10/core/StreamGuard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3166220Z copying torch/include/c10/core/DynamicCast.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3167440Z copying torch/include/c10/core/Layout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3168710Z copying torch/include/c10/core/GeneratorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3169970Z copying torch/include/c10/core/DispatchKeySet.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3171540Z copying torch/include/c10/core/Allocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3172960Z copying torch/include/c10/core/TensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3175310Z copying torch/include/c10/core/Contiguity.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3176130Z copying torch/include/c10/core/ScalarType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3177990Z copying torch/include/c10/core/Storage.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3178880Z copying torch/include/c10/core/DeviceType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3180110Z copying torch/include/c10/core/DeviceGuard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3181280Z copying torch/include/c10/core/StorageImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3183090Z copying torch/include/c10/core/SymbolicShapeMeta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3183950Z copying torch/include/c10/core/MemoryFormat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3185270Z copying torch/include/c10/core/SymBool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3186370Z copying torch/include/c10/core/DispatchKey.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3187900Z copying torch/include/c10/core/ScalarTypeToTypeMeta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3189100Z copying torch/include/c10/core/InferenceMode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3190320Z copying torch/include/c10/core/SymInt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3191730Z copying torch/include/c10/core/OptionalRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3193060Z copying torch/include/c10/core/CachingDeviceAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-17T06:37:47.3194320Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-07-17T06:37:47.3194960Z copying torch/include/c10/core/impl/InlineStreamGuard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-07-17T06:37:47.3196340Z copying torch/include/c10/core/impl/SizesAndStrides.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-07-17T06:37:47.3197730Z copying torch/include/c10/core/impl/InlineDeviceGuard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-07-17T06:37:47.3199180Z copying torch/include/c10/core/impl/GPUTrace.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-07-17T06:37:47.3200330Z copying torch/include/c10/core/impl/COWDeleter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-07-17T06:37:47.3201650Z copying torch/include/c10/core/impl/LocalDispatchKeySet.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-07-17T06:37:47.3202840Z copying torch/include/c10/core/impl/alloc_cpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-07-17T06:37:47.3204100Z copying torch/include/c10/core/impl/VirtualGuardImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-07-17T06:37:47.3205360Z copying torch/include/c10/core/impl/HermeticPyObjectTLS.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-07-17T06:37:47.3206590Z copying torch/include/c10/core/impl/PyObjectSlot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-07-17T06:37:47.3207830Z copying torch/include/c10/core/impl/TorchDispatchModeTLS.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-07-17T06:37:47.3209020Z copying torch/include/c10/core/impl/PyInterpreter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-07-17T06:37:47.3210400Z copying torch/include/c10/core/impl/PythonDispatcherTLS.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-07-17T06:37:47.3211590Z copying torch/include/c10/core/impl/COW.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-07-17T06:37:47.3212820Z copying torch/include/c10/core/impl/InlineEvent.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-07-17T06:37:47.3214140Z copying torch/include/c10/core/impl/DeviceGuardImplInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-07-17T06:37:47.3215580Z copying torch/include/c10/core/impl/FakeGuardImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-07-17T06:37:47.3216840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/test 2025-07-17T06:37:47.3217340Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/test/util 2025-07-17T06:37:47.3218010Z copying torch/include/c10/test/util/complex_test_common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/test/util 2025-07-17T06:37:47.3219470Z copying torch/include/c10/test/util/complex_math_test_common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/test/util 2025-07-17T06:37:47.3352980Z copying torch/include/c10/test/util/Macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/test/util 2025-07-17T06:37:47.3354100Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3354790Z copying torch/include/c10/util/Type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3356150Z copying torch/include/c10/util/order_preserving_flat_hash_map.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3358580Z copying torch/include/c10/util/Float8_e4m3fn-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3359470Z copying torch/include/c10/util/quint4x2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3360650Z copying torch/include/c10/util/FbcodeMaps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3361860Z copying torch/include/c10/util/Semaphore.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3363300Z copying torch/include/c10/util/signal_handler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3364590Z copying torch/include/c10/util/error.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3365930Z copying torch/include/c10/util/safe_numerics.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3367090Z copying torch/include/c10/util/Half.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3368620Z copying torch/include/c10/util/flat_hash_map.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3370400Z copying torch/include/c10/util/env.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3371590Z copying torch/include/c10/util/llvmMathExtras.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3373050Z copying torch/include/c10/util/Gauge.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3374400Z copying torch/include/c10/util/WaitCounterDynamicBackend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3375560Z copying torch/include/c10/util/Float8_e8m0fnu-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3376880Z copying torch/include/c10/util/Synchronized.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3434160Z copying torch/include/c10/util/Bitset.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3462120Z copying torch/include/c10/util/typeid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3472760Z copying torch/include/c10/util/Float8_e4m3fnuz-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3473860Z copying torch/include/c10/util/TypeSafeSignMath.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3475030Z copying torch/include/c10/util/intrusive_ptr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3476610Z copying torch/include/c10/util/string_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3477860Z copying torch/include/c10/util/IntrusiveList.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3479110Z copying torch/include/c10/util/win32-headers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3480270Z copying torch/include/c10/util/AlignOf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3481520Z copying torch/include/c10/util/static_tracepoint.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3491630Z copying torch/include/c10/util/ssize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3492530Z copying torch/include/c10/util/Enumerate.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3493680Z copying torch/include/c10/util/numa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3494890Z copying torch/include/c10/util/qint32.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3496100Z copying torch/include/c10/util/Float4_e2m1fn_x2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3497370Z copying torch/include/c10/util/CallOnce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3498550Z copying torch/include/c10/util/Float8_e5m2fnuz.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3499820Z copying torch/include/c10/util/MaybeOwned.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3501080Z copying torch/include/c10/util/Half-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3502390Z copying torch/include/c10/util/TypeTraits.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3503770Z copying torch/include/c10/util/DeadlockDetection.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3504920Z copying torch/include/c10/util/FunctionRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3506190Z copying torch/include/c10/util/Backtrace.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3507480Z copying torch/include/c10/util/overflows.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3508740Z copying torch/include/c10/util/ExclusivelyOwned.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3510020Z copying torch/include/c10/util/Load.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3511290Z copying torch/include/c10/util/BFloat16-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3512740Z copying torch/include/c10/util/static_tracepoint_elfx86.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3513870Z copying torch/include/c10/util/ConstexprCrc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3515120Z copying torch/include/c10/util/ThreadLocal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3516310Z copying torch/include/c10/util/IdWrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3517530Z copying torch/include/c10/util/Flags.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3518890Z copying torch/include/c10/util/overloaded.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3520180Z copying torch/include/c10/util/Float8_e4m3fnuz.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3568640Z copying torch/include/c10/util/quint8.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3569620Z copying torch/include/c10/util/Float8_e5m2-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3570990Z copying torch/include/c10/util/StringUtil.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3572200Z copying torch/include/c10/util/Logging.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3573700Z copying torch/include/c10/util/MathConstants.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3574820Z copying torch/include/c10/util/Registry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3576230Z copying torch/include/c10/util/Optional.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3577430Z copying torch/include/c10/util/Float8_e5m2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3578680Z copying torch/include/c10/util/tempfile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3579980Z copying torch/include/c10/util/copysign.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3581110Z copying torch/include/c10/util/ArrayRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3582460Z copying torch/include/c10/util/thread_name.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3583630Z copying torch/include/c10/util/strides.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3590440Z copying torch/include/c10/util/Unicode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3590820Z copying torch/include/c10/util/Float8_e8m0fnu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3591060Z copying torch/include/c10/util/TypeCast.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3591840Z copying torch/include/c10/util/sparse_bitset.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3592160Z copying torch/include/c10/util/OptionalArrayRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3592480Z copying torch/include/c10/util/BFloat16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3593150Z copying torch/include/c10/util/TypeList.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3594030Z copying torch/include/c10/util/TypeIndex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3595200Z copying torch/include/c10/util/NetworkFlow.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3596300Z copying torch/include/c10/util/Array.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3597560Z copying torch/include/c10/util/logging_is_google_glog.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3598740Z copying torch/include/c10/util/Metaprogramming.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3599900Z copying torch/include/c10/util/WaitCounter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3601130Z copying torch/include/c10/util/quint2x4.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3602540Z copying torch/include/c10/util/floating_point_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3603740Z copying torch/include/c10/util/ParallelGuard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3605130Z copying torch/include/c10/util/BFloat16-math.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3606580Z copying torch/include/c10/util/int128.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3608160Z copying torch/include/c10/util/Lazy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3609400Z copying torch/include/c10/util/Deprecated.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3610620Z copying torch/include/c10/util/irange.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3611730Z copying torch/include/c10/util/SmallBuffer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3612870Z copying torch/include/c10/util/ScopeExit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3614010Z copying torch/include/c10/util/Unroll.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3615230Z copying torch/include/c10/util/LeftRight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3616370Z copying torch/include/c10/util/bit_cast.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3617590Z copying torch/include/c10/util/qint8.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3618850Z copying torch/include/c10/util/complex_math.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3620370Z copying torch/include/c10/util/logging_is_not_google_glog.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3716540Z copying torch/include/c10/util/DynamicCounter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3717550Z copying torch/include/c10/util/Exception.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3719060Z copying torch/include/c10/util/UniqueVoidPtr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3720320Z copying torch/include/c10/util/ThreadLocalDebugInfo.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3721480Z copying torch/include/c10/util/Float8_e4m3fn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3722680Z copying torch/include/c10/util/AbortHandler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3723980Z copying torch/include/c10/util/DimVector.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3725210Z copying torch/include/c10/util/accumulate.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3726340Z copying torch/include/c10/util/C++17.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3727460Z copying torch/include/c10/util/strong_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3729620Z copying torch/include/c10/util/ApproximateClock.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3730310Z copying torch/include/c10/util/SmallVector.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3731920Z copying torch/include/c10/util/Float8_e5m2fnuz-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3733230Z copying torch/include/c10/util/hash.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3734600Z copying torch/include/c10/util/python_stub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3735800Z copying torch/include/c10/util/complex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3737230Z copying torch/include/c10/util/bits.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3738530Z copying torch/include/c10/util/string_view.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3739970Z copying torch/include/c10/util/Float8_fnuz_cvt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3768330Z copying torch/include/c10/util/complex_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3769480Z copying torch/include/c10/util/ExclusivelyOwnedTensorTraits.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3770500Z copying torch/include/c10/util/generic_math.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-17T06:37:47.3771830Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-07-17T06:37:47.3772480Z copying torch/include/c10/metal/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-07-17T06:37:47.3773800Z copying torch/include/c10/metal/special_math.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-07-17T06:37:47.3775360Z copying torch/include/c10/metal/reduction_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-07-17T06:37:47.3776510Z copying torch/include/c10/metal/expm1f.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-07-17T06:37:47.3777750Z copying torch/include/c10/metal/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-07-17T06:37:47.3778940Z copying torch/include/c10/metal/indexing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-07-17T06:37:47.3780420Z copying torch/include/c10/metal/random.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-07-17T06:37:47.3781650Z copying torch/include/c10/metal/atomic.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-07-17T06:37:47.3782960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-07-17T06:37:47.3783530Z copying torch/include/c10/cuda/CUDADeviceAssertion.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-07-17T06:37:47.3784890Z copying torch/include/c10/cuda/driver_api.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-07-17T06:37:47.3825820Z copying torch/include/c10/cuda/CUDAMathCompat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-07-17T06:37:47.3826820Z copying torch/include/c10/cuda/CUDAAlgorithm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-07-17T06:37:47.3828060Z copying torch/include/c10/cuda/CUDAStream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-07-17T06:37:47.3829390Z copying torch/include/c10/cuda/CUDAGuard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-07-17T06:37:47.3830830Z copying torch/include/c10/cuda/CUDAMiscFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-07-17T06:37:47.3832380Z copying torch/include/c10/cuda/CUDAGraphsC10Utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-07-17T06:37:47.3833300Z copying torch/include/c10/cuda/CUDAMacros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-07-17T06:37:47.3834570Z copying torch/include/c10/cuda/CUDAAllocatorConfig.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-07-17T06:37:47.3835790Z copying torch/include/c10/cuda/CUDAFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-07-17T06:37:47.3836980Z copying torch/include/c10/cuda/CUDAException.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-07-17T06:37:47.3838240Z copying torch/include/c10/cuda/CUDACachingAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-07-17T06:37:47.3839860Z copying torch/include/c10/cuda/CUDADeviceAssertionHost.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-07-17T06:37:47.3841060Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/impl 2025-07-17T06:37:47.3841660Z copying torch/include/c10/cuda/impl/CUDATest.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/impl 2025-07-17T06:37:47.3842950Z copying torch/include/c10/cuda/impl/CUDAGuardImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/impl 2025-07-17T06:37:47.3844320Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu 2025-07-17T06:37:47.3844920Z copying torch/include/c10/xpu/XPUStream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu 2025-07-17T06:37:47.3846280Z copying torch/include/c10/xpu/XPUDeviceProp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu 2025-07-17T06:37:47.3847750Z copying torch/include/c10/xpu/XPUCachingAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu 2025-07-17T06:37:47.3848950Z copying torch/include/c10/xpu/XPUMacros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu 2025-07-17T06:37:47.3850180Z copying torch/include/c10/xpu/XPUException.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu 2025-07-17T06:37:47.3851420Z copying torch/include/c10/xpu/XPUFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu 2025-07-17T06:37:47.3852660Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/impl 2025-07-17T06:37:47.3853310Z copying torch/include/c10/xpu/impl/XPUGuardImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/impl 2025-07-17T06:37:47.3854660Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/test 2025-07-17T06:37:47.3855100Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/test/impl 2025-07-17T06:37:47.3855750Z copying torch/include/c10/xpu/test/impl/XPUTest.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/test/impl 2025-07-17T06:37:47.3857100Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/macros 2025-07-17T06:37:47.3857540Z copying torch/include/c10/macros/cmake_macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/macros 2025-07-17T06:37:47.3858760Z copying torch/include/c10/macros/Export.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/macros 2025-07-17T06:37:47.3860200Z copying torch/include/c10/macros/Macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/macros 2025-07-17T06:37:47.3861390Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/mobile 2025-07-17T06:37:47.3862070Z copying torch/include/c10/mobile/CPUCachingAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/mobile 2025-07-17T06:37:47.3863310Z copying torch/include/c10/mobile/CPUProfilingAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/mobile 2025-07-17T06:37:47.3864590Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/fp16 2025-07-17T06:37:47.3865120Z copying torch/include/fp16/fp16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fp16 2025-07-17T06:37:47.3866580Z copying torch/include/fp16/psimd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fp16 2025-07-17T06:37:47.3867870Z copying torch/include/fp16/bitcasts.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fp16 2025-07-17T06:37:47.3869270Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroup.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:47.3871450Z copying torch/include/torch/csrc/distributed/c10d/PyProcessGroup.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:47.3872480Z copying torch/include/torch/csrc/distributed/c10d/logger.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:47.3873980Z copying torch/include/torch/csrc/distributed/c10d/Work.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:47.3875430Z copying torch/include/torch/csrc/distributed/c10d/FlightRecorder.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:47.3876930Z copying torch/include/torch/csrc/distributed/c10d/default_comm_hooks.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:47.3878340Z copying torch/include/torch/csrc/distributed/c10d/TCPStoreBackend.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:47.3879660Z copying torch/include/torch/csrc/distributed/c10d/Store.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:47.3881080Z copying torch/include/torch/csrc/distributed/c10d/WinSockUtils.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:47.3882480Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupUCC.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:47.3884120Z copying torch/include/torch/csrc/distributed/c10d/GlooDeviceFactory.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:47.3885320Z copying torch/include/torch/csrc/distributed/c10d/RankLocal.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:47.3886700Z copying torch/include/torch/csrc/distributed/c10d/UnixSockUtils.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:47.3887980Z copying torch/include/torch/csrc/distributed/c10d/FileStore.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:47.3889190Z copying torch/include/torch/csrc/distributed/c10d/reducer.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:47.3890770Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupWrapper.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:47.3891910Z copying torch/include/torch/csrc/distributed/c10d/NCCLUtils.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:47.3893620Z copying torch/include/torch/csrc/distributed/c10d/FakeProcessGroup.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:47.3894900Z copying torch/include/torch/csrc/distributed/c10d/comm.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:47.3896130Z copying torch/include/torch/csrc/distributed/c10d/Functional.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:47.3897530Z copying torch/include/torch/csrc/distributed/c10d/Backoff.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:47.3898850Z copying torch/include/torch/csrc/distributed/c10d/TCPStore.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:47.3900170Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupMPI.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:47.3901500Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupGloo.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:47.3903050Z copying torch/include/torch/csrc/distributed/c10d/NanCheck.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:47.3904310Z copying torch/include/torch/csrc/distributed/c10d/GroupRegistry.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:47.3905590Z copying torch/include/torch/csrc/distributed/c10d/UCCUtils.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:47.3906830Z copying torch/include/torch/csrc/distributed/c10d/reducer_timer.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:47.3908230Z copying torch/include/torch/csrc/distributed/c10d/HashStore.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:47.3909780Z copying torch/include/torch/csrc/distributed/c10d/sequence_num.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:47.3910750Z copying torch/include/torch/csrc/distributed/c10d/UCCTracing.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:47.3912100Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupGlooDetail.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:47.3913590Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupNCCL.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:47.3915240Z copying torch/include/torch/csrc/distributed/c10d/Backend.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:47.3916740Z copying torch/include/torch/csrc/distributed/c10d/FlightRecorderDetail.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:47.3918230Z copying torch/include/torch/csrc/distributed/c10d/Utils.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:47.4032080Z copying torch/include/torch/csrc/distributed/c10d/Types.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:47.4033110Z copying torch/include/torch/csrc/distributed/c10d/PrefixStore.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:47.4034260Z copying torch/include/torch/csrc/distributed/c10d/ParamCommsUtils.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:47.4035740Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/control_collectives 2025-07-17T06:37:47.4036540Z copying torch/include/torch/csrc/distributed/c10d/control_collectives/StoreCollectives.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/control_collectives 2025-07-17T06:37:47.4037830Z copying torch/include/torch/csrc/distributed/c10d/control_collectives/ControlCollectives.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/control_collectives 2025-07-17T06:37:47.4038930Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/cuda 2025-07-17T06:37:47.4039580Z copying torch/include/torch/csrc/distributed/c10d/cuda/StreamBlock.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/cuda 2025-07-17T06:37:47.4040760Z copying torch/include/torch/csrc/distributed/c10d/cuda/utils.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/cuda 2025-07-17T06:37:47.4041920Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/control_plane 2025-07-17T06:37:47.4042650Z copying torch/include/torch/csrc/distributed/c10d/control_plane/WorkerServer.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/control_plane 2025-07-17T06:37:47.4043890Z copying torch/include/torch/csrc/distributed/c10d/control_plane/Handlers.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/control_plane 2025-07-17T06:37:47.4045130Z copying torch/include/torch/csrc/distributed/c10d/symm_mem/SymmetricMemory.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-07-17T06:37:47.4046520Z copying torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemoryTypes.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-07-17T06:37:47.4047760Z copying torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemoryUtils.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-07-17T06:37:47.4048930Z copying torch/include/torch/csrc/distributed/c10d/symm_mem/intra_node_comm.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-07-17T06:37:47.4050270Z copying torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemory.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-07-17T06:37:47.4051520Z copying torch/include/torch/csrc/distributed/c10d/symm_mem/DMAConnectivity.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-07-17T06:37:47.4052630Z copying torch/include/torch/csrc/jit/testing/catch_utils.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/testing 2025-07-17T06:37:47.4053870Z copying torch/include/ATen/native/cuda/Normalization.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:47.4056070Z copying torch/include/ATen/native/cuda/SortingRadixSelect.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:47.4057150Z copying torch/include/ATen/native/cuda/block_reduce.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:47.4058450Z copying torch/include/ATen/native/cuda/TensorModeKernel.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:47.4059870Z copying torch/include/ATen/native/cuda/MemoryAccess.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:47.4061400Z copying torch/include/ATen/native/cuda/CUDAJitLoops.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:47.4062700Z copying torch/include/ATen/native/cuda/im2col.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:47.4064050Z copying torch/include/ATen/native/cuda/cutlass_common.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:47.4065270Z copying torch/include/ATen/native/cuda/SortUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:47.4066750Z copying torch/include/ATen/native/cuda/DeviceSqrt.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:47.4067910Z copying torch/include/ATen/native/cuda/UpSample.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:47.4069270Z copying torch/include/ATen/native/cuda/Randperm.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:47.4070490Z copying torch/include/ATen/native/cuda/vol2col.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:47.4071720Z copying torch/include/ATen/native/cuda/Pow.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:47.4073010Z copying torch/include/ATen/native/cuda/reduction_template.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:47.4074630Z copying torch/include/ATen/native/cuda/fused_adamw_impl.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:47.4075820Z copying torch/include/ATen/native/cuda/Math.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:47.4077740Z copying torch/include/ATen/native/cuda/SortingCommon.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:47.4079050Z copying torch/include/ATen/native/cuda/ScanUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:47.4080600Z copying torch/include/ATen/native/cuda/MultiTensorApply.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:47.4082010Z copying torch/include/ATen/native/cuda/EmbeddingBackwardKernel.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:47.4083200Z copying torch/include/ATen/native/cuda/fused_adamw_amsgrad_impl.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:47.4084420Z copying torch/include/ATen/native/cuda/fused_adam_utils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:47.4085660Z copying torch/include/ATen/native/cuda/GroupMMCommon.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:47.4086870Z copying torch/include/ATen/native/cuda/JitLoops.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:47.4088150Z copying torch/include/ATen/native/cuda/KernelUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:47.4089720Z copying torch/include/ATen/native/cuda/ForeachFunctors.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:47.4091080Z copying torch/include/ATen/native/cuda/fused_adam_amsgrad_impl.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:47.4092390Z copying torch/include/ATen/native/cuda/Loops.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:47.4093690Z copying torch/include/ATen/native/cuda/UniqueCub.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:47.4094900Z copying torch/include/ATen/native/cuda/CUDALoops.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:47.4096420Z copying torch/include/ATen/native/cuda/GridSampler.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:47.4097750Z copying torch/include/ATen/native/cuda/PersistentSoftmax.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:47.4099240Z copying torch/include/ATen/native/cuda/Reduce.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:47.4101200Z copying torch/include/ATen/native/cuda/ForeachMinMaxFunctors.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:47.4102180Z copying torch/include/ATen/native/cuda/fused_adam_impl.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-17T06:37:47.4103320Z copying torch/include/ATen/cuda/AsmUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-17T06:37:47.4104680Z copying torch/include/ATen/cuda/cub-RadixSortPairs.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-17T06:37:47.4105890Z copying torch/include/ATen/cuda/DeviceUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-17T06:37:47.4107060Z copying torch/include/ATen/cuda/cub_definitions.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-17T06:37:47.4108250Z copying torch/include/ATen/cuda/ApplyGridUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-17T06:37:47.4109400Z copying torch/include/ATen/cuda/PhiloxUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-17T06:37:47.4110780Z copying torch/include/ATen/cuda/ScanUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-17T06:37:47.4111950Z copying torch/include/ATen/cuda/NumericLimits.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-17T06:37:47.4113340Z copying torch/include/ATen/cuda/CUDATensorMethods.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-17T06:37:47.4114460Z copying torch/include/ATen/cuda/cub.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-17T06:37:47.4116040Z copying torch/include/ATen/cuda/CUDAGraphsUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-17T06:37:47.4117220Z copying torch/include/ATen/cuda/CUDAApplyUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-17T06:37:47.4118760Z copying torch/include/ATen/cuda/Atomic.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-17T06:37:47.4120300Z copying torch/include/ATen/cuda/detail/TensorInfo.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-07-17T06:37:47.4121620Z copying torch/include/ATen/cuda/detail/IntegerDivider.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-07-17T06:37:47.4122890Z copying torch/include/ATen/cuda/detail/PhiloxCudaStateRaw.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-07-17T06:37:47.4124080Z copying torch/include/ATen/cuda/detail/OffsetCalculator.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-07-17T06:37:47.4125270Z copying torch/include/ATen/cuda/detail/IndexUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-07-17T06:37:47.4126530Z copying torch/include/ATen/cuda/detail/UnpackRaw.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-07-17T06:37:47.4127830Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/csrc 2025-07-17T06:37:47.4128350Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/csrc/inductor 2025-07-17T06:37:47.4128860Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/csrc/inductor/aoti_runtime 2025-07-17T06:37:47.4129470Z copying torch/csrc/inductor/aoti_runtime/model.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/csrc/inductor/aoti_runtime 2025-07-17T06:37:47.4130760Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/aoti_runtime 2025-07-17T06:37:47.4131430Z copying torch/_inductor/codegen/aoti_runtime/interface.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/aoti_runtime 2025-07-17T06:37:47.4285750Z copying torch/_inductor/script.ld -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-17T06:37:47.4301140Z copying torch/_export/serde/schema.yaml -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-07-17T06:37:47.4313060Z copying torch/_export/serde/export_schema.thrift -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-07-17T06:37:47.4320960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share 2025-07-17T06:37:47.4321210Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake 2025-07-17T06:37:47.4321660Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/ATen 2025-07-17T06:37:47.4322250Z copying torch/share/cmake/ATen/ATenConfig.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/ATen 2025-07-17T06:37:47.4323570Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-07-17T06:37:47.4324130Z copying torch/share/cmake/Caffe2/Caffe2Config.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-07-17T06:37:47.4325420Z copying torch/share/cmake/Caffe2/FindSYCLToolkit.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-07-17T06:37:47.4326710Z copying torch/share/cmake/Caffe2/FindCUSPARSELT.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-07-17T06:37:47.4327910Z copying torch/share/cmake/Caffe2/FindCUDAToolkit.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-07-17T06:37:47.4329410Z copying torch/share/cmake/Caffe2/Caffe2Targets.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-07-17T06:37:47.4330670Z copying torch/share/cmake/Caffe2/Caffe2Targets-release.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-07-17T06:37:47.4331880Z copying torch/share/cmake/Caffe2/FindCUDSS.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-07-17T06:37:47.4333120Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-07-17T06:37:47.4333720Z copying torch/share/cmake/Caffe2/public/LoadHIP.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-07-17T06:37:47.4335110Z copying torch/share/cmake/Caffe2/public/mkldnn.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-07-17T06:37:47.4336300Z copying torch/share/cmake/Caffe2/public/glog.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-07-17T06:37:47.4337560Z copying torch/share/cmake/Caffe2/public/utils.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-07-17T06:37:47.4339040Z copying torch/share/cmake/Caffe2/public/protobuf.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-07-17T06:37:47.4340220Z copying torch/share/cmake/Caffe2/public/mkl.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-07-17T06:37:47.4341500Z copying torch/share/cmake/Caffe2/public/gflags.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-07-17T06:37:47.4342740Z copying torch/share/cmake/Caffe2/public/cuda.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-07-17T06:37:47.4344130Z copying torch/share/cmake/Caffe2/public/xpu.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-07-17T06:37:47.4345600Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix 2025-07-17T06:37:47.4345960Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDNN.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix 2025-07-17T06:37:47.4347230Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDA.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix 2025-07-17T06:37:47.4348440Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2025-07-17T06:37:47.4349170Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindPackageHandleStandardArgs.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2025-07-17T06:37:47.4350730Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/CMakeInitializeConfigs.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2025-07-17T06:37:47.4351930Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2025-07-17T06:37:47.4354240Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindPackageMessage.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2025-07-17T06:37:47.4354980Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2025-07-17T06:37:47.4355700Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/parse_cubin.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2025-07-17T06:37:47.4356960Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/run_nvcc.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2025-07-17T06:37:47.4358480Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/select_compute_arch.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2025-07-17T06:37:47.4359870Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/make2cmake.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2025-07-17T06:37:47.4361110Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Torch 2025-07-17T06:37:47.4361680Z copying torch/share/cmake/Torch/TorchConfig.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Torch 2025-07-17T06:37:47.4363080Z copying torch/share/cmake/Torch/TorchConfigVersion.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Torch 2025-07-17T06:37:47.4364420Z copying torch/utils/benchmark/utils/timeit_template.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-07-17T06:37:47.4398210Z copying torch/utils/benchmark/utils/valgrind_wrapper/timer_callgrind_template.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper 2025-07-17T06:37:47.4417290Z copying torch/utils/benchmark/utils/valgrind_wrapper/compat_bindings.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper 2025-07-17T06:37:47.4423820Z copying torch/utils/benchmark/utils/valgrind_wrapper/valgrind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper 2025-07-17T06:37:47.4427550Z copying torch/utils/benchmark/utils/valgrind_wrapper/callgrind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper 2025-07-17T06:37:47.4428300Z copying torch/utils/model_dump/skeleton.html -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump 2025-07-17T06:37:47.4436870Z copying torch/utils/model_dump/code.js -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump 2025-07-17T06:37:47.4448100Z copying torch/utils/model_dump/preact.mjs -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump 2025-07-17T06:37:47.4456160Z copying torch/utils/model_dump/htm.mjs -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump 2025-07-17T06:37:47.4462370Z copying torch/_dynamo/graph_break_registry.json -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-17T06:37:47.4489980Z copying torch/lib/libtorch_python.dylib -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-07-17T06:37:47.5120040Z copying torch/lib/libtorch.dylib -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-07-17T06:37:47.5132180Z copying torch/lib/libtorch_global_deps.dylib -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-07-17T06:37:47.5144060Z copying torch/lib/libtorch_cpu.dylib -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-07-17T06:37:48.7742730Z copying torch/lib/libc10.dylib -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-07-17T06:37:48.7903200Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged 2025-07-17T06:37:48.7903580Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-07-17T06:37:48.7904390Z copying torchgen/packaged/autograd/load_derivatives.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-07-17T06:37:48.7906250Z copying torchgen/packaged/autograd/build.bzl -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-07-17T06:37:48.7907750Z copying torchgen/packaged/autograd/gen_autograd.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-07-17T06:37:48.7909240Z copying torchgen/packaged/autograd/gen_python_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-07-17T06:37:48.7910800Z copying torchgen/packaged/autograd/gen_autograd_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-07-17T06:37:48.7912500Z copying torchgen/packaged/autograd/gen_variable_factories.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-07-17T06:37:48.7913790Z copying torchgen/packaged/autograd/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-07-17T06:37:48.7914870Z copying torchgen/packaged/autograd/gen_variable_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-07-17T06:37:48.7916710Z copying torchgen/packaged/autograd/README.md -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-07-17T06:37:48.7917960Z copying torchgen/packaged/autograd/context.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-07-17T06:37:48.7919330Z copying torchgen/packaged/autograd/gen_inplace_or_view_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-07-17T06:37:48.7920910Z copying torchgen/packaged/autograd/deprecated.yaml -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-07-17T06:37:48.7922190Z copying torchgen/packaged/autograd/BUILD.bazel -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-07-17T06:37:48.7924040Z copying torchgen/packaged/autograd/gen_trace_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-07-17T06:37:48.7925250Z copying torchgen/packaged/autograd/gen_annotated_fn_args.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-07-17T06:37:48.7926640Z copying torchgen/packaged/autograd/derivatives.yaml -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-07-17T06:37:48.7929600Z copying torchgen/packaged/autograd/gen_view_funcs.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-07-17T06:37:48.7931020Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-17T06:37:48.7931780Z copying torchgen/packaged/autograd/templates/python_return_types.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-17T06:37:48.7933100Z copying torchgen/packaged/autograd/templates/python_enum_tag.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-17T06:37:48.7934420Z copying torchgen/packaged/autograd/templates/python_nn_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-17T06:37:48.7935850Z copying torchgen/packaged/autograd/templates/python_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-17T06:37:48.7937230Z copying torchgen/packaged/autograd/templates/python_fft_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-17T06:37:48.7938520Z copying torchgen/packaged/autograd/templates/python_sparse_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-17T06:37:48.7939720Z copying torchgen/packaged/autograd/templates/python_linalg_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-17T06:37:48.7941070Z copying torchgen/packaged/autograd/templates/ViewFuncs.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-17T06:37:48.7942410Z copying torchgen/packaged/autograd/templates/python_return_types.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-17T06:37:48.7943680Z copying torchgen/packaged/autograd/templates/ADInplaceOrViewType.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-17T06:37:48.7944950Z copying torchgen/packaged/autograd/templates/TraceType.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-17T06:37:48.7946300Z copying torchgen/packaged/autograd/templates/python_variable_methods.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-17T06:37:48.7947980Z copying torchgen/packaged/autograd/templates/ViewFuncs.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-17T06:37:48.7949180Z copying torchgen/packaged/autograd/templates/python_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-17T06:37:48.7950550Z copying torchgen/packaged/autograd/templates/python_nested_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-17T06:37:48.7951770Z copying torchgen/packaged/autograd/templates/VariableType.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-17T06:37:48.7953050Z copying torchgen/packaged/autograd/templates/annotated_fn_args.py.in -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-17T06:37:48.7954280Z copying torchgen/packaged/autograd/templates/VariableType.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-17T06:37:48.7955580Z copying torchgen/packaged/autograd/templates/Functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-17T06:37:48.7956790Z copying torchgen/packaged/autograd/templates/python_special_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-17T06:37:48.7958080Z copying torchgen/packaged/autograd/templates/variable_factories.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-17T06:37:48.7959410Z copying torchgen/packaged/autograd/templates/python_torch_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-17T06:37:48.7960570Z copying torchgen/packaged/autograd/templates/Functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-17T06:37:48.7962150Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen 2025-07-17T06:37:48.7962550Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/native 2025-07-17T06:37:48.7963240Z copying torchgen/packaged/ATen/native/native_functions.yaml -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/native 2025-07-17T06:37:48.7968070Z copying torchgen/packaged/ATen/native/tags.yaml -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/native 2025-07-17T06:37:48.7968960Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-17T06:37:48.7969640Z copying torchgen/packaged/ATen/templates/CompositeViewCopyKernels.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-17T06:37:48.7970870Z copying torchgen/packaged/ATen/templates/TensorBody.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-17T06:37:48.7972390Z copying torchgen/packaged/ATen/templates/UnboxingFunctions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-17T06:37:48.7973690Z copying torchgen/packaged/ATen/templates/DispatchKeyFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-17T06:37:48.7974830Z copying torchgen/packaged/ATen/templates/RedispatchFunctions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-17T06:37:48.7976140Z copying torchgen/packaged/ATen/templates/Operators.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-17T06:37:48.7977420Z copying torchgen/packaged/ATen/templates/NativeMetaFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-17T06:37:48.7978750Z copying torchgen/packaged/ATen/templates/NativeFunction.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-17T06:37:48.7979990Z copying torchgen/packaged/ATen/templates/Operator.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-17T06:37:48.7981410Z copying torchgen/packaged/ATen/templates/RegistrationDeclarations.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-17T06:37:48.7982560Z copying torchgen/packaged/ATen/templates/UfuncCPU.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-17T06:37:48.7983740Z copying torchgen/packaged/ATen/templates/UfuncCUDA.cu -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-17T06:37:48.7985110Z copying torchgen/packaged/ATen/templates/RegisterFunctionalization.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-17T06:37:48.7986390Z copying torchgen/packaged/ATen/templates/RegisterDispatchDefinitions.ini -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-17T06:37:48.7987610Z copying torchgen/packaged/ATen/templates/RedispatchFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-17T06:37:48.7988820Z copying torchgen/packaged/ATen/templates/aten_interned_strings.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-17T06:37:48.7990220Z copying torchgen/packaged/ATen/templates/MethodOperators.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-17T06:37:48.7991510Z copying torchgen/packaged/ATen/templates/RegisterCodegenUnboxedKernels.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-17T06:37:48.7992660Z copying torchgen/packaged/ATen/templates/Operators.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-17T06:37:48.7993860Z copying torchgen/packaged/ATen/templates/ATenOpList.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-17T06:37:48.7995290Z copying torchgen/packaged/ATen/templates/RegisterBackendSelect.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-17T06:37:48.7996600Z copying torchgen/packaged/ATen/templates/RegisterDispatchKey.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-17T06:37:48.7997850Z copying torchgen/packaged/ATen/templates/TensorMethods.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-17T06:37:48.7999130Z copying torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-17T06:37:48.8000360Z copying torchgen/packaged/ATen/templates/DispatchKeyFunction.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-17T06:37:48.8001640Z copying torchgen/packaged/ATen/templates/UnboxingFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-17T06:37:48.8002850Z copying torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-17T06:37:48.8004030Z copying torchgen/packaged/ATen/templates/Functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-17T06:37:48.8005360Z copying torchgen/packaged/ATen/templates/NativeFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-17T06:37:48.8006730Z copying torchgen/packaged/ATen/templates/DispatchKeyFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-17T06:37:48.8007960Z copying torchgen/packaged/ATen/templates/UfuncCPUKernel.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-17T06:37:48.8009230Z copying torchgen/packaged/ATen/templates/enum_tag.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-17T06:37:48.8010460Z copying torchgen/packaged/ATen/templates/Functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-17T06:37:48.8011920Z copying torchgen/packaged/ATen/templates/RegisterSchema.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-17T06:37:48.8013190Z copying torchgen/packaged/ATen/templates/LazyNonNativeIr.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-17T06:37:48.8014390Z copying torchgen/packaged/ATen/templates/Function.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-17T06:37:48.8015610Z copying torchgen/packaged/ATen/templates/FunctionalInverses.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-17T06:37:48.8017000Z copying torchgen/packaged/ATen/templates/NativeMetaFunction.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-17T06:37:48.8018350Z copying torchgen/packaged/ATen/templates/LazyIr.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-17T06:37:48.8019570Z copying torch/nn/parameter.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-07-17T06:37:48.8021700Z copying torch/nn/functional.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-07-17T06:37:48.8024210Z copying torch/utils/_config_typing.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-17T06:37:48.8025590Z copying torch/jit/_script.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-17T06:37:48.8027840Z copying torch/distributed/optim/zero_redundancy_optimizer.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-07-17T06:37:48.8029520Z copying torch/optim/_multi_tensor/__init__.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim/_multi_tensor 2025-07-17T06:37:48.8031190Z copying torch/utils/data/datapipes/datapipe.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-07-17T06:37:48.8370270Z running build_ext 2025-07-17T06:37:48.8388290Z -- Building with NumPy bindings 2025-07-17T06:37:48.8388530Z -- Not using cuDNN 2025-07-17T06:37:48.8388670Z -- Not using CUDA 2025-07-17T06:37:48.8393870Z -- Not using XPU 2025-07-17T06:37:48.8394020Z -- Not using MKLDNN 2025-07-17T06:37:48.8394160Z -- Not using NCCL 2025-07-17T06:37:48.8394310Z -- Building with distributed package: 2025-07-17T06:37:48.8394500Z -- USE_TENSORPIPE=False 2025-07-17T06:37:48.8394650Z -- USE_GLOO=False 2025-07-17T06:37:48.8394780Z -- USE_MPI=False 2025-07-17T06:37:48.8394910Z -- Not using ITT 2025-07-17T06:37:48.9230930Z Copying functorch._C from functorch/functorch.so to /Users/ec2-user/runner/_work/pytorch/pytorch/build/lib.macosx-14.0-arm64-cpython-312/functorch/_C.cpython-312-darwin.so 2025-07-17T06:37:48.9231760Z copying functorch/functorch.so -> /Users/ec2-user/runner/_work/pytorch/pytorch/build/lib.macosx-14.0-arm64-cpython-312/functorch/_C.cpython-312-darwin.so 2025-07-17T06:37:48.9272200Z building 'torch._C' extension 2025-07-17T06:37:48.9272590Z creating build/temp.macosx-14.0-arm64-cpython-312 2025-07-17T06:37:48.9273270Z creating build/temp.macosx-14.0-arm64-cpython-312/torch 2025-07-17T06:37:48.9273860Z creating build/temp.macosx-14.0-arm64-cpython-312/torch/csrc 2025-07-17T06:37:48.9276870Z clang -fno-strict-overflow -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk -I/Users/ec2-user/runner/_work/_temp/venv-3.12-1752734038/include -I/opt/homebrew/opt/python@3.12/Frameworks/Python.framework/Versions/3.12/include/python3.12 -c torch/csrc/stub.c -o build/temp.macosx-14.0-arm64-cpython-312/torch/csrc/stub.o -Wall -Wextra -Wno-strict-overflow -Wno-unused-parameter -Wno-missing-field-initializers -Wno-unknown-pragmas -fno-strict-aliasing 2025-07-17T06:37:49.0257480Z clang -bundle -undefined dynamic_lookup -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk build/temp.macosx-14.0-arm64-cpython-312/torch/csrc/stub.o -L/Users/ec2-user/runner/_work/pytorch/pytorch/torch/lib -ltorch_python -o build/lib.macosx-14.0-arm64-cpython-312/torch/_C.cpython-312-darwin.so -Wl,-rpath,@loader_path/lib 2025-07-17T06:37:49.1451570Z copying /opt/homebrew/opt/libomp/lib/libomp.dylib -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-07-17T06:37:49.9615930Z copying /opt/homebrew/opt/libomp/include/omp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-07-17T06:37:49.9652610Z /Users/ec2-user/runner/_work/_temp/venv-3.12-1752734038/lib/python3.12/site-packages/setuptools/_distutils/cmd.py:66: SetuptoolsDeprecationWarning: setup.py install is deprecated. 2025-07-17T06:37:49.9653160Z !! 2025-07-17T06:37:49.9653340Z 2025-07-17T06:37:49.9653530Z ******************************************************************************** 2025-07-17T06:37:49.9653780Z Please avoid running ``setup.py`` directly. 2025-07-17T06:37:49.9654030Z Instead, use pypa/build, pypa/installer or other 2025-07-17T06:37:49.9654250Z standards-based tools. 2025-07-17T06:37:49.9654360Z 2025-07-17T06:37:49.9654560Z See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details. 2025-07-17T06:37:49.9654870Z ******************************************************************************** 2025-07-17T06:37:49.9655030Z 2025-07-17T06:37:49.9655080Z !! 2025-07-17T06:37:49.9655270Z self.initialize_options() 2025-07-17T06:37:49.9677330Z installing to build/bdist.macosx-14.0-arm64/wheel 2025-07-17T06:37:49.9677550Z running install 2025-07-17T06:37:49.9716400Z running install_lib 2025-07-17T06:37:49.9743230Z creating build/bdist.macosx-14.0-arm64 2025-07-17T06:37:49.9743670Z creating build/bdist.macosx-14.0-arm64/wheel 2025-07-17T06:37:49.9745170Z creating build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:49.9746210Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-17T06:37:49.9746960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/flat_apply.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-17T06:37:49.9748640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/foreach_map.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-17T06:37:49.9749860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/effects.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-17T06:37:49.9751370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/_invoke_quant.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-17T06:37:49.9752650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/invoke_subgraph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-17T06:37:49.9769350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/aoti_call_delegate.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-17T06:37:49.9770200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/while_loop.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-17T06:37:49.9775850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/base_hop.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-17T06:37:49.9776900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-17T06:37:49.9778040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/strict_mode.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-17T06:37:49.9779150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/torchbind.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-17T06:37:49.9780250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/cond.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-17T06:37:49.9790560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/map.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-17T06:37:49.9791590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/hints_wrap.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-17T06:37:49.9792810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-17T06:37:49.9794270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/out_dtype.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-17T06:37:49.9795400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/executorch_call_delegate.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-17T06:37:49.9796490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/scan.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-17T06:37:49.9798110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/run_const_graph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-17T06:37:49.9799180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/associative_scan.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-17T06:37:49.9800620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/auto_functionalize.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-17T06:37:49.9802020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/triton_kernel_wrap.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-17T06:37:49.9803670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/flex_attention.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-17T06:37:49.9805220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/wrap.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-17T06:37:49.9806410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/schema.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-17T06:37:49.9808070Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_prims 2025-07-17T06:37:49.9808730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_prims/debug_prims.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_prims 2025-07-17T06:37:49.9809880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_prims/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_prims 2025-07-17T06:37:49.9811510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_prims/context.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_prims 2025-07-17T06:37:49.9812590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_prims/rng_prims.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_prims 2025-07-17T06:37:49.9813930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_prims/executor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_prims 2025-07-17T06:37:49.9815040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_storage_docs.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:49.9816330Z creating build/bdist.macosx-14.0-arm64/wheel/torch/csrc 2025-07-17T06:37:49.9817230Z creating build/bdist.macosx-14.0-arm64/wheel/torch/csrc/inductor 2025-07-17T06:37:49.9818070Z creating build/bdist.macosx-14.0-arm64/wheel/torch/csrc/inductor/aoti_runtime 2025-07-17T06:37:49.9819110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/csrc/inductor/aoti_runtime/model.h -> build/bdist.macosx-14.0-arm64/wheel/torch/csrc/inductor/aoti_runtime 2025-07-17T06:37:49.9819980Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_logging 2025-07-17T06:37:49.9820630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_logging/_internal.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_logging 2025-07-17T06:37:49.9822090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_logging/scribe.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_logging 2025-07-17T06:37:49.9823180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_logging/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_logging 2025-07-17T06:37:49.9824320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_logging/_registrations.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_logging 2025-07-17T06:37:49.9825390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_logging/structured.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_logging 2025-07-17T06:37:49.9826880Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-07-17T06:37:49.9827720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/partitioners.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-07-17T06:37:49.9829390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/compile_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-07-17T06:37:49.9830460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-07-17T06:37:49.9831670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/autograd_function.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-07-17T06:37:49.9838220Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_activation_checkpointing 2025-07-17T06:37:49.9838930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing/graph_info_provider.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_activation_checkpointing 2025-07-17T06:37:49.9839980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing/knapsack.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_activation_checkpointing 2025-07-17T06:37:49.9841110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_activation_checkpointing 2025-07-17T06:37:49.9842310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing/ac_logging_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_activation_checkpointing 2025-07-17T06:37:49.9843500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing/knapsack_evaluator.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_activation_checkpointing 2025-07-17T06:37:49.9844740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/python_key.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-07-17T06:37:49.9845850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/pytree_hacks.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-07-17T06:37:49.9847030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/pyfunctorch.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-07-17T06:37:49.9848390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/deprecated.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-07-17T06:37:49.9849620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/top_operators_github_usage.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-07-17T06:37:49.9851030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-07-17T06:37:49.9852110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/batch_norm_replacement.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-07-17T06:37:49.9853200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/fx_minifier.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-07-17T06:37:49.9854930Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-07-17T06:37:49.9855730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/input_output_analysis.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-07-17T06:37:49.9857650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/runtime_wrappers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-07-17T06:37:49.9858990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-07-17T06:37:49.9860170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/dispatch_and_compile_graph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-07-17T06:37:49.9861770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/functional_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-07-17T06:37:49.9862990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/autograd_cache.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-07-17T06:37:49.9868900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/traced_function_transforms.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-07-17T06:37:49.9870270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/schemas.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-07-17T06:37:49.9871730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/jit_compile_runtime_wrappers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-07-17T06:37:49.9873220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-07-17T06:37:49.9884360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/collect_metadata_analysis.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-07-17T06:37:49.9885470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/frontend_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-07-17T06:37:49.9895150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/subclass_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-07-17T06:37:49.9896110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/logging_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-07-17T06:37:49.9897420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/subclass_parametrization.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-07-17T06:37:49.9898580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/apis.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-07-17T06:37:49.9899900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-07-17T06:37:49.9900960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/aot_autograd.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-07-17T06:37:49.9902550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/compilers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-07-17T06:37:49.9903890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/eager_transforms.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-07-17T06:37:49.9905470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/vmap.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-07-17T06:37:49.9906860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/benchmark_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-07-17T06:37:49.9908040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/make_functional.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-07-17T06:37:49.9909300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/functional_call.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-07-17T06:37:49.9910900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-07-17T06:37:49.9911550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_reductions_impl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-07-17T06:37:49.9912900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_getlimits.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-07-17T06:37:49.9913960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_unary_ufuncs_impl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-07-17T06:37:49.9915060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_casting_dicts.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-07-17T06:37:49.9916530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-07-17T06:37:49.9917650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_binary_ufuncs_impl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-07-17T06:37:49.9918740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/random.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-07-17T06:37:49.9920130Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_numpy/testing 2025-07-17T06:37:49.9920790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/testing/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy/testing 2025-07-17T06:37:49.9922090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/testing/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy/testing 2025-07-17T06:37:49.9923700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_dtypes.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-07-17T06:37:49.9925000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/linalg.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-07-17T06:37:49.9926130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_ndarray.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-07-17T06:37:49.9927590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_ufuncs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-07-17T06:37:49.9928770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_util.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-07-17T06:37:49.9930120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_normalizations.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-07-17T06:37:49.9931330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_dtypes_impl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-07-17T06:37:49.9932400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/fft.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-07-17T06:37:49.9933540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_funcs_impl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-07-17T06:37:49.9935040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_funcs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-07-17T06:37:49.9936260Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-07-17T06:37:49.9936910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/error.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-07-17T06:37:49.9937980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/tools.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-07-17T06:37:49.9939360Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_export/pass_infra 2025-07-17T06:37:49.9940010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/pass_infra/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/pass_infra 2025-07-17T06:37:49.9940870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/pass_infra/proxy_value.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/pass_infra 2025-07-17T06:37:49.9941990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/pass_infra/node_metadata.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/pass_infra 2025-07-17T06:37:49.9943310Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-07-17T06:37:49.9944000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes/insert_custom_op_guards.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-07-17T06:37:49.9945180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-07-17T06:37:49.9946570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes/replace_view_ops_with_view_copy_ops_pass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-07-17T06:37:49.9947570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes/collect_tracepoints_pass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-07-17T06:37:49.9948700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes/replace_with_hop_pass_util.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-07-17T06:37:49.9949770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-07-17T06:37:49.9950880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes/_node_metadata_hook.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-07-17T06:37:49.9951950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes/lift_constants_pass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-07-17T06:37:49.9961430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes/constant_folding.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-07-17T06:37:49.9962530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes/add_runtime_assertions_for_constraints_pass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-07-17T06:37:49.9973290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes/replace_autocast_with_hop_pass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-07-17T06:37:49.9974100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes/functionalize_side_effectful_ops_pass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-07-17T06:37:49.9975260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes/replace_set_grad_with_hop_pass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-07-17T06:37:49.9976310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes/remove_runtime_assertions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-07-17T06:37:49.9977360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/converter.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-07-17T06:37:49.9978840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-07-17T06:37:49.9979960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/pass_base.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-07-17T06:37:49.9981190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-07-17T06:37:49.9982670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/wrappers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-07-17T06:37:49.9988810Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_export/db 2025-07-17T06:37:49.9989290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/logging.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db 2025-07-17T06:37:49.9990250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db 2025-07-17T06:37:49.9991330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/gen_example.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db 2025-07-17T06:37:49.9992930Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-17T06:37:49.9993500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/list_unpack.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-17T06:37:49.9994720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/specialized_attribute.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-17T06:37:49.9995830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/static_for_loop.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-17T06:37:49.9997030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/cond_closed_over_variable.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-17T06:37:49.9998330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/fn_with_kwargs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-17T06:37:49.9999160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/constrain_as_value_example.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-17T06:37:50.0000310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/dynamic_shape_slicing.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-17T06:37:50.0001450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/cond_branch_nonlocal_variables.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-17T06:37:50.0002490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/autograd_function.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-17T06:37:50.0003640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/type_reflection_method.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-17T06:37:50.0004720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/cond_operands.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-17T06:37:50.0005900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/decorator.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-17T06:37:50.0007050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/dynamic_shape_view.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-17T06:37:50.0008110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/dynamic_shape_map.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-17T06:37:50.0009200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/nested_function.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-17T06:37:50.0010420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/dynamic_shape_constructor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-17T06:37:50.0011600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-17T06:37:50.0012700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/dynamic_shape_if_guard.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-17T06:37:50.0014010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/assume_constant_result.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-17T06:37:50.0014820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/cond_branch_class_method.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-17T06:37:50.0015940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/class_method.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-17T06:37:50.0017090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/pytree_flatten.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-17T06:37:50.0018170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/scalar_output.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-17T06:37:50.0019360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/cond_predicate.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-17T06:37:50.0020550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/dynamic_shape_assert.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-17T06:37:50.0021620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/unsupported_operator.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-17T06:37:50.0022790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/tensor_setattr.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-17T06:37:50.0023950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/optional_input.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-17T06:37:50.0025120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/constrain_as_size_example.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-17T06:37:50.0026300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/static_if.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-17T06:37:50.0027350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/dictionary.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-17T06:37:50.0028460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/list_contains.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-17T06:37:50.0029620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/dynamic_shape_round.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-17T06:37:50.0030770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/user_input_mutation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-17T06:37:50.0031920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/null_context_manager.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-17T06:37:50.0033030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/cond_branch_nested_function.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-17T06:37:50.0034200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/model_attr_mutation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-17T06:37:50.0035360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/case.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db 2025-07-17T06:37:50.0036470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/non_strict_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-07-17T06:37:50.0038140Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_export/serde 2025-07-17T06:37:50.0038830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde/serialize.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/serde 2025-07-17T06:37:50.0041020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/serde 2025-07-17T06:37:50.0041910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde/schema_check.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/serde 2025-07-17T06:37:50.0043480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde/schema.yaml -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/serde 2025-07-17T06:37:50.0049900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde/dynamic_shapes.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/serde 2025-07-17T06:37:50.0050890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde/export_schema.thrift -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/serde 2025-07-17T06:37:50.0051950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde/union.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/serde 2025-07-17T06:37:50.0053060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde/schema.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/serde 2025-07-17T06:37:50.0054460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/verifier.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-07-17T06:37:50.0056060Z creating build/bdist.macosx-14.0-arm64/wheel/torch/monitor 2025-07-17T06:37:50.0056960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/monitor/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/monitor 2025-07-17T06:37:50.0058300Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_dispatch 2025-07-17T06:37:50.0058970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dispatch/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dispatch 2025-07-17T06:37:50.0059930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dispatch/python.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dispatch 2025-07-17T06:37:50.0061150Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_subclasses 2025-07-17T06:37:50.0061840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses/functional_tensor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_subclasses 2025-07-17T06:37:50.0063360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses/meta_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_subclasses 2025-07-17T06:37:50.0065120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_subclasses 2025-07-17T06:37:50.0066240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses/_fake_tensor_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_subclasses 2025-07-17T06:37:50.0067610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses/fake_impls.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_subclasses 2025-07-17T06:37:50.0068890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses/fake_tensor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_subclasses 2025-07-17T06:37:50.0070990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses/schema_check_mode.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_subclasses 2025-07-17T06:37:50.0076820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses/fake_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_subclasses 2025-07-17T06:37:50.0082460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_meta_registrations.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:50.0084970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/version.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:50.0086090Z creating build/bdist.macosx-14.0-arm64/wheel/torch/futures 2025-07-17T06:37:50.0086760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/futures/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/futures 2025-07-17T06:37:50.0088240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/library.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:50.0089920Z creating build/bdist.macosx-14.0-arm64/wheel/torch/linalg 2025-07-17T06:37:50.0090550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/linalg/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/linalg 2025-07-17T06:37:50.0092510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_jit_internal.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:50.0094200Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_custom_op 2025-07-17T06:37:50.0094860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_custom_op/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_custom_op 2025-07-17T06:37:50.0095820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_custom_op/autograd.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_custom_op 2025-07-17T06:37:50.0097040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_custom_op/impl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_custom_op 2025-07-17T06:37:50.0105910Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-07-17T06:37:50.0106470Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/attention 2025-07-17T06:37:50.0107120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention/bias.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/attention 2025-07-17T06:37:50.0108660Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/attention/experimental 2025-07-17T06:37:50.0109420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention/experimental/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/attention/experimental 2025-07-17T06:37:50.0110540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention/experimental/_paged_attention.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/attention/experimental 2025-07-17T06:37:50.0111780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/attention 2025-07-17T06:37:50.0112950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention/flex_attention.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/attention 2025-07-17T06:37:50.0114520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/attention 2025-07-17T06:37:50.0115850Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/parallel 2025-07-17T06:37:50.0116570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel/parallel_apply.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/parallel 2025-07-17T06:37:50.0117750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel/comm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/parallel 2025-07-17T06:37:50.0119240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel/scatter_gather.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/parallel 2025-07-17T06:37:50.0120600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel/replicate.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/parallel 2025-07-17T06:37:50.0121470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel/_functions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/parallel 2025-07-17T06:37:50.0122520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel/data_parallel.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/parallel 2025-07-17T06:37:50.0123950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/parallel 2025-07-17T06:37:50.0125010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel/distributed.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/parallel 2025-07-17T06:37:50.0127510Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat 2025-07-17T06:37:50.0127820Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat/dynamic 2025-07-17T06:37:50.0128390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/dynamic/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat/dynamic 2025-07-17T06:37:50.0129860Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat/dynamic/modules 2025-07-17T06:37:50.0130580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/dynamic/modules/linear.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat/dynamic/modules 2025-07-17T06:37:50.0131670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/dynamic/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat/dynamic/modules 2025-07-17T06:37:50.0132780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat 2025-07-17T06:37:50.0134170Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat/modules 2025-07-17T06:37:50.0134800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/modules/linear.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat/modules 2025-07-17T06:37:50.0135900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat/modules 2025-07-17T06:37:50.0137080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/modules/conv.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat/modules 2025-07-17T06:37:50.0143360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/modules/embedding_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat/modules 2025-07-17T06:37:50.0144100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/common_types.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-07-17T06:37:50.0144550Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized 2025-07-17T06:37:50.0144900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/_reference 2025-07-17T06:37:50.0145470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/_reference 2025-07-17T06:37:50.0146060Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/_reference/modules 2025-07-17T06:37:50.0146690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules/linear.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/_reference/modules 2025-07-17T06:37:50.0147540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/_reference/modules 2025-07-17T06:37:50.0148380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/_reference/modules 2025-07-17T06:37:50.0149230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules/sparse.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/_reference/modules 2025-07-17T06:37:50.0150060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules/conv.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/_reference/modules 2025-07-17T06:37:50.0151180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules/rnn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/_reference/modules 2025-07-17T06:37:50.0152480Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/dynamic 2025-07-17T06:37:50.0153350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/dynamic 2025-07-17T06:37:50.0154520Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/dynamic/modules 2025-07-17T06:37:50.0155340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic/modules/linear.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/dynamic/modules 2025-07-17T06:37:50.0156610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/dynamic/modules 2025-07-17T06:37:50.0157840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic/modules/conv.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/dynamic/modules 2025-07-17T06:37:50.0159090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic/modules/rnn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/dynamic/modules 2025-07-17T06:37:50.0160110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized 2025-07-17T06:37:50.0161330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/functional.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized 2025-07-17T06:37:50.0162780Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/modules 2025-07-17T06:37:50.0163610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules/batchnorm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/modules 2025-07-17T06:37:50.0164890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules/functional_modules.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/modules 2025-07-17T06:37:50.0165950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules/linear.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/modules 2025-07-17T06:37:50.0167120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/modules 2025-07-17T06:37:50.0168310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules/activation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/modules 2025-07-17T06:37:50.0169400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/modules 2025-07-17T06:37:50.0170540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules/dropout.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/modules 2025-07-17T06:37:50.0171840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules/conv.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/modules 2025-07-17T06:37:50.0173210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules/normalization.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/modules 2025-07-17T06:37:50.0174450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules/rnn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/modules 2025-07-17T06:37:50.0175670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules/embedding_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/modules 2025-07-17T06:37:50.0177020Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/backends 2025-07-17T06:37:50.0177690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/backends/thnn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/backends 2025-07-17T06:37:50.0179010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/backends/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/backends 2025-07-17T06:37:50.0179890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parameter.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-07-17T06:37:50.0181010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-07-17T06:37:50.0182350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/_reduction.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-07-17T06:37:50.0183800Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-07-17T06:37:50.0184430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_named_member_accessor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-07-17T06:37:50.0185980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/spectral_norm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-07-17T06:37:50.0187450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/convert_parameters.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-07-17T06:37:50.0188740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/stateless.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-07-17T06:37:50.0190080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/parametrize.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-07-17T06:37:50.0191660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/memory_format.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-07-17T06:37:50.0193000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_per_sample_grad.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-07-17T06:37:50.0194140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-07-17T06:37:50.0195360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/weight_norm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-07-17T06:37:50.0196590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/fusion.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-07-17T06:37:50.0197770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/prune.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-07-17T06:37:50.0199560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/parametrizations.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-07-17T06:37:50.0209150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/init.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-07-17T06:37:50.0210090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_deprecation_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-07-17T06:37:50.0211210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/rnn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-07-17T06:37:50.0213120Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils/_expanded_weights 2025-07-17T06:37:50.0213920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights/group_norm_expanded_weights.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils/_expanded_weights 2025-07-17T06:37:50.0215360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights/layer_norm_expanded_weights.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils/_expanded_weights 2025-07-17T06:37:50.0216400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights/conv_expanded_weights.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils/_expanded_weights 2025-07-17T06:37:50.0217660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights/expanded_weights_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils/_expanded_weights 2025-07-17T06:37:50.0218880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils/_expanded_weights 2025-07-17T06:37:50.0220130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights/embedding_expanded_weights.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils/_expanded_weights 2025-07-17T06:37:50.0221250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights/conv_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils/_expanded_weights 2025-07-17T06:37:50.0222780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights/instance_norm_expanded_weights.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils/_expanded_weights 2025-07-17T06:37:50.0223980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights/linear_expanded_weights.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils/_expanded_weights 2025-07-17T06:37:50.0225260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights/expanded_weights_impl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils/_expanded_weights 2025-07-17T06:37:50.0226500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/clip_grad.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-07-17T06:37:50.0233020Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantizable 2025-07-17T06:37:50.0233760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantizable 2025-07-17T06:37:50.0235380Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantizable/modules 2025-07-17T06:37:50.0236140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantizable/modules 2025-07-17T06:37:50.0237450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable/modules/activation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantizable/modules 2025-07-17T06:37:50.0238700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable/modules/rnn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantizable/modules 2025-07-17T06:37:50.0239780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/cpp.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-07-17T06:37:50.0241200Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic 2025-07-17T06:37:50.0242140Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/qat 2025-07-17T06:37:50.0242740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/qat 2025-07-17T06:37:50.0244920Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/qat/modules 2025-07-17T06:37:50.0245520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat/modules/conv_fused.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/qat/modules 2025-07-17T06:37:50.0246320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/qat/modules 2025-07-17T06:37:50.0247130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat/modules/linear_relu.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/qat/modules 2025-07-17T06:37:50.0248220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat/modules/linear_fused.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/qat/modules 2025-07-17T06:37:50.0249470Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized 2025-07-17T06:37:50.0250280Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized/dynamic 2025-07-17T06:37:50.0251020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/dynamic/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized/dynamic 2025-07-17T06:37:50.0252350Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized/dynamic/modules 2025-07-17T06:37:50.0253100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/dynamic/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized/dynamic/modules 2025-07-17T06:37:50.0254400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/dynamic/modules/linear_relu.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized/dynamic/modules 2025-07-17T06:37:50.0255380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized 2025-07-17T06:37:50.0256640Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized/modules 2025-07-17T06:37:50.0257400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/modules/bn_relu.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized/modules 2025-07-17T06:37:50.0258570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized/modules 2025-07-17T06:37:50.0259670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/modules/conv_relu.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized/modules 2025-07-17T06:37:50.0260720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/modules/linear_relu.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized/modules 2025-07-17T06:37:50.0261640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic 2025-07-17T06:37:50.0262980Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/modules 2025-07-17T06:37:50.0263650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/modules/fused.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/modules 2025-07-17T06:37:50.0264740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/modules 2025-07-17T06:37:50.0265750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/functional.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-07-17T06:37:50.0279120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/init.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-07-17T06:37:50.0280510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/functional.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-07-17T06:37:50.0281720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/grad.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-07-17T06:37:50.0283370Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-17T06:37:50.0284050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/upsampling.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-17T06:37:50.0285390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/channelshuffle.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-17T06:37:50.0286500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/instancenorm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-17T06:37:50.0287960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/flatten.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-17T06:37:50.0289030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/batchnorm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-17T06:37:50.0290360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/linear.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-17T06:37:50.0291710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/_functions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-17T06:37:50.0292990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/pooling.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-17T06:37:50.0294410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-17T06:37:50.0295520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/distance.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-17T06:37:50.0296600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/container.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-17T06:37:50.0298000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/pixelshuffle.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-17T06:37:50.0299080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/adaptive.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-17T06:37:50.0300340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/loss.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-17T06:37:50.0301990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/activation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-17T06:37:50.0303510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-17T06:37:50.0304660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/transformer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-17T06:37:50.0306130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/sparse.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-17T06:37:50.0307370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/module.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-17T06:37:50.0309110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/dropout.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-17T06:37:50.0310480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/conv.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-17T06:37:50.0311970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/lazy.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-17T06:37:50.0313340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/normalization.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-17T06:37:50.0314560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/rnn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-17T06:37:50.0316050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/padding.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-17T06:37:50.0317410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/fold.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-17T06:37:50.0318780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parameter.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-07-17T06:37:50.0320050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_thread_safe_fork.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:50.0321240Z creating build/bdist.macosx-14.0-arm64/wheel/torch/mps 2025-07-17T06:37:50.0321880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/mps/event.py -> build/bdist.macosx-14.0-arm64/wheel/torch/mps 2025-07-17T06:37:50.0323100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/mps/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/mps 2025-07-17T06:37:50.0324290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/mps/profiler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/mps 2025-07-17T06:37:50.0325420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_custom_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:50.0327740Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-17T06:37:50.0328190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_type_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-17T06:37:50.0329180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_constants.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-17T06:37:50.0330540Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal 2025-07-17T06:37:50.0331260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/registration.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal 2025-07-17T06:37:50.0332740Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/fx 2025-07-17T06:37:50.0333570Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/fx/passes 2025-07-17T06:37:50.0334260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx/passes/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/fx/passes 2025-07-17T06:37:50.0335420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx/passes/type_promotion.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/fx/passes 2025-07-17T06:37:50.0337200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx/passes/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/fx/passes 2025-07-17T06:37:50.0338070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx/type_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/fx 2025-07-17T06:37:50.0339320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/fx 2025-07-17T06:37:50.0340380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx/patcher.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/fx 2025-07-17T06:37:50.0341600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx/_pass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/fx 2025-07-17T06:37:50.0342940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx/serialization.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/fx 2025-07-17T06:37:50.0347430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal 2025-07-17T06:37:50.0348310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/_lazy_import.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal 2025-07-17T06:37:50.0349310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/_exporter_legacy.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal 2025-07-17T06:37:50.0350810Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-17T06:37:50.0351520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_constants.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-17T06:37:50.0352700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_analysis.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-17T06:37:50.0353920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_flags.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-17T06:37:50.0355050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_errors.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-17T06:37:50.0356210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_capture_strategies.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-17T06:37:50.0357550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_tensors.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-17T06:37:50.0358680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_dispatching.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-17T06:37:50.0359930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_isolated.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-17T06:37:50.0361000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_decomp.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-17T06:37:50.0362160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-17T06:37:50.0363460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_onnx_program.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-17T06:37:50.0364510Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter/_torchlib 2025-07-17T06:37:50.0365310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/_torchlib_registry.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter/_torchlib 2025-07-17T06:37:50.0366400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter/_torchlib 2025-07-17T06:37:50.0367460Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter/_torchlib/ops 2025-07-17T06:37:50.0368190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops/nn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter/_torchlib/ops 2025-07-17T06:37:50.0370050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter/_torchlib/ops 2025-07-17T06:37:50.0371030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops/core.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter/_torchlib/ops 2025-07-17T06:37:50.0371920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops/symops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter/_torchlib/ops 2025-07-17T06:37:50.0373120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops/symbolic.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter/_torchlib/ops 2025-07-17T06:37:50.0374330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops/hop.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter/_torchlib/ops 2025-07-17T06:37:50.0375360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/_tensor_typing.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter/_torchlib 2025-07-17T06:37:50.0376360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_building.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-17T06:37:50.0377760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_dynamic_shapes.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-17T06:37:50.0379140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_schemas.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-17T06:37:50.0380480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_core.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-17T06:37:50.0382130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_verification.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-17T06:37:50.0383560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_reporting.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-17T06:37:50.0384830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_registration.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-17T06:37:50.0385990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_testing.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-17T06:37:50.0387220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_compat.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-17T06:37:50.0388390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_ir_passes.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-17T06:37:50.0389600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_type_casting.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-17T06:37:50.0390800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_fx_passes.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-17T06:37:50.0391890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/onnx_proto_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal 2025-07-17T06:37:50.0393250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/jit_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal 2025-07-17T06:37:50.0394530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset15.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-17T06:37:50.0395720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_onnx_supported_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-17T06:37:50.0396780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset7.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-17T06:37:50.0397920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset11.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-17T06:37:50.0399380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/verification.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-17T06:37:50.0401010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_flags.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-17T06:37:50.0402230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset10.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-17T06:37:50.0403580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset20.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-17T06:37:50.0404740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset14.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-17T06:37:50.0405990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_globals.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-17T06:37:50.0407270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_helper.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-17T06:37:50.0408760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset9.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-17T06:37:50.0411120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-17T06:37:50.0412400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset8.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-17T06:37:50.0413640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset19.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-17T06:37:50.0414780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-17T06:37:50.0416290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_experimental.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-17T06:37:50.0417410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset18.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-17T06:37:50.0418780Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx/ops 2025-07-17T06:37:50.0419440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/ops/_dtype_mappings.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/ops 2025-07-17T06:37:50.0420690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/ops/_symbolic_impl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/ops 2025-07-17T06:37:50.0421900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/ops/_impl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/ops 2025-07-17T06:37:50.0423320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/ops/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/ops 2025-07-17T06:37:50.0424550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/errors.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-17T06:37:50.0425780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset13.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-17T06:37:50.0427170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/operators.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-17T06:37:50.0428310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset17.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-17T06:37:50.0429420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset16.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-17T06:37:50.0430550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset12.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-17T06:37:50.0432120Z creating build/bdist.macosx-14.0-arm64/wheel/torch/bin 2025-07-17T06:37:50.0432760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/bin/protoc-3.13.0.0 -> build/bdist.macosx-14.0-arm64/wheel/torch/bin 2025-07-17T06:37:50.0490000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/bin/torch_shm_manager -> build/bdist.macosx-14.0-arm64/wheel/torch/bin 2025-07-17T06:37:50.0491580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/bin/protoc -> build/bdist.macosx-14.0-arm64/wheel/torch/bin 2025-07-17T06:37:50.0564850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/return_types.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:50.0566880Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_vendor 2025-07-17T06:37:50.0567240Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_vendor/packaging 2025-07-17T06:37:50.0567800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor/packaging/version.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_vendor/packaging 2025-07-17T06:37:50.0569240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor/packaging/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_vendor/packaging 2025-07-17T06:37:50.0570430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor/packaging/_structures.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_vendor/packaging 2025-07-17T06:37:50.0571440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_vendor 2025-07-17T06:37:50.0572630Z creating build/bdist.macosx-14.0-arm64/wheel/torch/cpu 2025-07-17T06:37:50.0573280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cpu/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cpu 2025-07-17T06:37:50.0574740Z creating build/bdist.macosx-14.0-arm64/wheel/torch/cpu/amp 2025-07-17T06:37:50.0575350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cpu/amp/autocast_mode.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cpu/amp 2025-07-17T06:37:50.0576560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cpu/amp/grad_scaler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cpu/amp 2025-07-17T06:37:50.0577760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cpu/amp/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cpu/amp 2025-07-17T06:37:50.0579970Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-07-17T06:37:50.0581190Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tensor 2025-07-17T06:37:50.0582060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tensor/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tensor 2025-07-17T06:37:50.0583410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tensor/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tensor 2025-07-17T06:37:50.0584760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tensor/placement_types.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tensor 2025-07-17T06:37:50.0586570Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_sharding_spec 2025-07-17T06:37:50.0587210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_sharding_spec/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_sharding_spec 2025-07-17T06:37:50.0588160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable_state.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-07-17T06:37:50.0589500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/logging_handlers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-07-17T06:37:50.0590850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rendezvous.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-07-17T06:37:50.0592330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/run.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-07-17T06:37:50.0593760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_state_dict_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-07-17T06:37:50.0595240Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/launcher 2025-07-17T06:37:50.0595890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/launcher/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/launcher 2025-07-17T06:37:50.0597020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/launcher/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/launcher 2025-07-17T06:37:50.0598740Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-17T06:37:50.0599510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_async_process_executor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-17T06:37:50.0601130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/logging_handlers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-17T06:37:50.0601980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/format_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-17T06:37:50.0603300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/planner.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-17T06:37:50.0604670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_consolidate_hf_safetensors.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-17T06:37:50.0606300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_dedup_save_plans.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-17T06:37:50.0607220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/state_dict.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-17T06:37:50.0608720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/metadata.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-17T06:37:50.0609800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_storage_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-17T06:37:50.0610880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_version.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-17T06:37:50.0612460Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint/_experimental 2025-07-17T06:37:50.0613160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental/config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint/_experimental 2025-07-17T06:37:50.0614310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental/barriers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint/_experimental 2025-07-17T06:37:50.0615540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental/checkpointer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint/_experimental 2025-07-17T06:37:50.0616630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint/_experimental 2025-07-17T06:37:50.0617710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental/types.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint/_experimental 2025-07-17T06:37:50.0618860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental/builder.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint/_experimental 2025-07-17T06:37:50.0619980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental/checkpoint_reader.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint/_experimental 2025-07-17T06:37:50.0621260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint/_experimental 2025-07-17T06:37:50.0622440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental/checkpoint_process.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint/_experimental 2025-07-17T06:37:50.0623780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental/checkpoint_writer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint/_experimental 2025-07-17T06:37:50.0624800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental/staging.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint/_experimental 2025-07-17T06:37:50.0625910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_traverse.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-17T06:37:50.0627170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_sharded_tensor_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-17T06:37:50.0628230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_dedup_tensors.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-17T06:37:50.0629340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/filesystem.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-17T06:37:50.0630730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/state_dict_saver.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-17T06:37:50.0631990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-17T06:37:50.0633220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_hf_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-17T06:37:50.0634310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/logger.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-17T06:37:50.0640850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_pg_transport.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-17T06:37:50.0641660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/resharding.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-17T06:37:50.0642460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-17T06:37:50.0643260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/state_dict_loader.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-17T06:37:50.0644080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_async_executor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-17T06:37:50.0644870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-17T06:37:50.0645680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/default_planner.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-17T06:37:50.0646610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/storage.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-17T06:37:50.0647420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_state_dict_stager.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-17T06:37:50.0648240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/planner_helpers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-17T06:37:50.0649060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/optimizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-17T06:37:50.0649910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_async_thread_executor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-17T06:37:50.0650730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/staging.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-17T06:37:50.0651650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_checkpointer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-17T06:37:50.0652810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/stateful.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-17T06:37:50.0653930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_fsspec_filesystem.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-17T06:37:50.0655100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_extension.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-17T06:37:50.0656230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_nested_dict.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-17T06:37:50.0657240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/hf_storage.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-17T06:37:50.0658470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_serialization.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-07-17T06:37:50.0659830Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_sharded_tensor 2025-07-17T06:37:50.0660580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_sharded_tensor/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_sharded_tensor 2025-07-17T06:37:50.0661830Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn 2025-07-17T06:37:50.0662540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn 2025-07-17T06:37:50.0663660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/functional.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn 2025-07-17T06:37:50.0665110Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn/jit 2025-07-17T06:37:50.0665810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit/instantiator.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn/jit 2025-07-17T06:37:50.0667030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn/jit 2025-07-17T06:37:50.0668040Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn/jit/templates 2025-07-17T06:37:50.0668760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit/templates/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn/jit/templates 2025-07-17T06:37:50.0669760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit/templates/remote_module_template.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn/jit/templates 2025-07-17T06:37:50.0671040Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn/api 2025-07-17T06:37:50.0671810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/api/remote_module.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn/api 2025-07-17T06:37:50.0673120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/api/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn/api 2025-07-17T06:37:50.0674280Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic 2025-07-17T06:37:50.0675120Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/metrics 2025-07-17T06:37:50.0675960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/metrics/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/metrics 2025-07-17T06:37:50.0677070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/metrics/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/metrics 2025-07-17T06:37:50.0678430Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/rendezvous 2025-07-17T06:37:50.0679160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous/etcd_store.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/rendezvous 2025-07-17T06:37:50.0680370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous/registry.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/rendezvous 2025-07-17T06:37:50.0681500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/rendezvous 2025-07-17T06:37:50.0682700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous/_etcd_stub.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/rendezvous 2025-07-17T06:37:50.0683910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous/etcd_rendezvous.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/rendezvous 2025-07-17T06:37:50.0685350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous/c10d_rendezvous_backend.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/rendezvous 2025-07-17T06:37:50.0686630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/rendezvous 2025-07-17T06:37:50.0688210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous/etcd_rendezvous_backend.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/rendezvous 2025-07-17T06:37:50.0689360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/rendezvous 2025-07-17T06:37:50.0690650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous/dynamic_rendezvous.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/rendezvous 2025-07-17T06:37:50.0692110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous/etcd_server.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/rendezvous 2025-07-17T06:37:50.0693550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous/static_tcp_rendezvous.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/rendezvous 2025-07-17T06:37:50.0694870Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing 2025-07-17T06:37:50.0695890Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing/subprocess_handler 2025-07-17T06:37:50.0696790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/subprocess_handler/subprocess_handler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing/subprocess_handler 2025-07-17T06:37:50.0698040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/subprocess_handler/handlers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing/subprocess_handler 2025-07-17T06:37:50.0699210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/subprocess_handler/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing/subprocess_handler 2025-07-17T06:37:50.0700250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/tail_log.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing 2025-07-17T06:37:50.0701310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing 2025-07-17T06:37:50.0702460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing 2025-07-17T06:37:50.0703900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/redirects.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing 2025-07-17T06:37:50.0705320Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing/errors 2025-07-17T06:37:50.0706100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/errors/handlers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing/errors 2025-07-17T06:37:50.0707270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/errors/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing/errors 2025-07-17T06:37:50.0709220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/errors/error_handler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing/errors 2025-07-17T06:37:50.0710160Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/timer 2025-07-17T06:37:50.0710900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer/local_timer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/timer 2025-07-17T06:37:50.0712260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer/debug_info_logging.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/timer 2025-07-17T06:37:50.0713420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/timer 2025-07-17T06:37:50.0714470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/timer 2025-07-17T06:37:50.0715800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer/file_based_local_timer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/timer 2025-07-17T06:37:50.0717170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic 2025-07-17T06:37:50.0718410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/control_plane.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic 2025-07-17T06:37:50.0719620Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/utils 2025-07-17T06:37:50.0720400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/store.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/utils 2025-07-17T06:37:50.0721600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/logging.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/utils 2025-07-17T06:37:50.0722850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/utils 2025-07-17T06:37:50.0724030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/log_level.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/utils 2025-07-17T06:37:50.0725140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/utils 2025-07-17T06:37:50.0726230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/distributed.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/utils 2025-07-17T06:37:50.0727620Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/utils/data 2025-07-17T06:37:50.0728390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/data/elastic_distributed_sampler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/utils/data 2025-07-17T06:37:50.0729520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/data/cycling_iterator.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/utils/data 2025-07-17T06:37:50.0730600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/data/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/utils/data 2025-07-17T06:37:50.0731900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/agent 2025-07-17T06:37:50.0732650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/agent 2025-07-17T06:37:50.0733740Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/agent/server 2025-07-17T06:37:50.0734580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent/server/health_check_server.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/agent/server 2025-07-17T06:37:50.0735720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent/server/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/agent/server 2025-07-17T06:37:50.0736860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent/server/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/agent/server 2025-07-17T06:37:50.0738460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent/server/local_elastic_agent.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/agent/server 2025-07-17T06:37:50.0740070Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/events 2025-07-17T06:37:50.0740690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/events/handlers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/events 2025-07-17T06:37:50.0741890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/events/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/events 2025-07-17T06:37:50.0742970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/events/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/events 2025-07-17T06:37:50.0744310Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/autograd 2025-07-17T06:37:50.0745000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/autograd/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/autograd 2025-07-17T06:37:50.0746170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/distributed_c10d.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-07-17T06:37:50.0748820Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/pipelining 2025-07-17T06:37:50.0749490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining/_IR.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/pipelining 2025-07-17T06:37:50.0751070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining/_unflatten.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/pipelining 2025-07-17T06:37:50.0752340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining/_schedule_visualizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/pipelining 2025-07-17T06:37:50.0753520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/pipelining 2025-07-17T06:37:50.0754680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining/microbatch.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/pipelining 2025-07-17T06:37:50.0755940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining/_backward.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/pipelining 2025-07-17T06:37:50.0757210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining/_debug.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/pipelining 2025-07-17T06:37:50.0758290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining/stage.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/pipelining 2025-07-17T06:37:50.0759790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining/schedules.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/pipelining 2025-07-17T06:37:50.0761540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/pipelining 2025-07-17T06:37:50.0762590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/argparse_util.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-07-17T06:37:50.0763660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_checkpointable.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-07-17T06:37:50.0764720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/constants.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-07-17T06:37:50.0765870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/c10d_logger.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-07-17T06:37:50.0767200Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms 2025-07-17T06:37:50.0768030Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_comm_hooks 2025-07-17T06:37:50.0768790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_comm_hooks/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_comm_hooks 2025-07-17T06:37:50.0769900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_comm_hooks/default_hooks.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_comm_hooks 2025-07-17T06:37:50.0771130Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_checkpoint 2025-07-17T06:37:50.0771850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_checkpoint/checkpoint_wrapper.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_checkpoint 2025-07-17T06:37:50.0773210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_checkpoint/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_checkpoint 2025-07-17T06:37:50.0774200Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/model_averaging 2025-07-17T06:37:50.0774990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/model_averaging/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/model_averaging 2025-07-17T06:37:50.0775980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/model_averaging/averagers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/model_averaging 2025-07-17T06:37:50.0777020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/model_averaging/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/model_averaging 2025-07-17T06:37:50.0778240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/model_averaging/hierarchical_model_averager.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/model_averaging 2025-07-17T06:37:50.0779740Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2025-07-17T06:37:50.0780490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2025-07-17T06:37:50.0781810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks/optimizer_overlap_hooks.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2025-07-17T06:37:50.0782890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks/post_localSGD_hook.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2025-07-17T06:37:50.0783950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2025-07-17T06:37:50.0785050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks/debugging_hooks.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2025-07-17T06:37:50.0786110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks/ddp_zero_hook.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2025-07-17T06:37:50.0787480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2025-07-17T06:37:50.0788610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks/mixed_precision_hooks.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2025-07-17T06:37:50.0789720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2025-07-17T06:37:50.0791100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms 2025-07-17T06:37:50.0792190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/join.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms 2025-07-17T06:37:50.0793690Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_optimizer_overlap 2025-07-17T06:37:50.0794510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_optimizer_overlap/optimizer_overlap.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_optimizer_overlap 2025-07-17T06:37:50.0795590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_optimizer_overlap/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_optimizer_overlap 2025-07-17T06:37:50.0796780Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_quantization 2025-07-17T06:37:50.0797540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_quantization/quantization.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_quantization 2025-07-17T06:37:50.0798630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_quantization/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_quantization 2025-07-17T06:37:50.0799630Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-07-17T06:37:50.0800370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/_deprecation_warning.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-07-17T06:37:50.0801410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/named_optimizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-07-17T06:37:50.0802760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/zero_redundancy_optimizer.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-07-17T06:37:50.0803790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-07-17T06:37:50.0804860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/functional_sgd.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-07-17T06:37:50.0806000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/functional_adagrad.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-07-17T06:37:50.0807100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/functional_adamw.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-07-17T06:37:50.0808280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/apply_optimizer_in_backward.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-07-17T06:37:50.0809360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/functional_adam.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-07-17T06:37:50.0810420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-07-17T06:37:50.0811540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/functional_rprop.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-07-17T06:37:50.0812680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/post_localSGD_optimizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-07-17T06:37:50.0813760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/optimizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-07-17T06:37:50.0815020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/functional_adadelta.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-07-17T06:37:50.0816170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/functional_rmsprop.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-07-17T06:37:50.0817330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/zero_redundancy_optimizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-07-17T06:37:50.0818880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/functional_adamax.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-07-17T06:37:50.0819960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-07-17T06:37:50.0821120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_dist2.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-07-17T06:37:50.0822490Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_composable 2025-07-17T06:37:50.0823240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable/replicate.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_composable 2025-07-17T06:37:50.0824470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_composable 2025-07-17T06:37:50.0825780Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_composable/fsdp 2025-07-17T06:37:50.0826470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable/fsdp/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_composable/fsdp 2025-07-17T06:37:50.0827700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable/fsdp/fully_shard.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_composable/fsdp 2025-07-17T06:37:50.0828880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable/contract.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_composable 2025-07-17T06:37:50.0830150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable/checkpoint_activation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_composable 2025-07-17T06:37:50.0831400Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tools 2025-07-17T06:37:50.0832050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools/mem_tracker.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tools 2025-07-17T06:37:50.0833620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools/ilp_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tools 2025-07-17T06:37:50.0834980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools/runtime_estimator.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tools 2025-07-17T06:37:50.0836370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools/fsdp2_mem_tracker.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tools 2025-07-17T06:37:50.0837680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools/sac_estimator.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tools 2025-07-17T06:37:50.0839200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tools 2025-07-17T06:37:50.0840400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools/memory_tracker.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tools 2025-07-17T06:37:50.0841760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools/fake_collectives.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tools 2025-07-17T06:37:50.0843100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools/common_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tools 2025-07-17T06:37:50.0844180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools/sac_ilp.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tools 2025-07-17T06:37:50.0845420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools/mod_tracker.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tools 2025-07-17T06:37:50.0847040Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-07-17T06:37:50.0847800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_exec_order_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-07-17T06:37:50.0849150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_traversal_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-07-17T06:37:50.0850330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/sharded_grad_scaler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-07-17T06:37:50.0851610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_state_dict_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-07-17T06:37:50.0853340Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp/_fully_shard 2025-07-17T06:37:50.0854030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard/_fsdp_api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp/_fully_shard 2025-07-17T06:37:50.0855280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard/_fsdp_common.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp/_fully_shard 2025-07-17T06:37:50.0856520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp/_fully_shard 2025-07-17T06:37:50.0862580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp/_fully_shard 2025-07-17T06:37:50.0863650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard/_fsdp_param.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp/_fully_shard 2025-07-17T06:37:50.0865010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard/_fsdp_init.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp/_fully_shard 2025-07-17T06:37:50.0866380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp/_fully_shard 2025-07-17T06:37:50.0867820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard/_fully_shard.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp/_fully_shard 2025-07-17T06:37:50.0869100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard/_fsdp_state.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp/_fully_shard 2025-07-17T06:37:50.0870430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/fully_sharded_data_parallel.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-07-17T06:37:50.0872250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_wrap_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-07-17T06:37:50.0873500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_optim_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-07-17T06:37:50.0875130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_trace_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-07-17T06:37:50.0876470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_common_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-07-17T06:37:50.0878160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-07-17T06:37:50.0878980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-07-17T06:37:50.0880330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_limiter_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-07-17T06:37:50.0881460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_dynamo_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-07-17T06:37:50.0882730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_unshard_param_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-07-17T06:37:50.0884050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_shard_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-07-17T06:37:50.0885240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/wrap.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-07-17T06:37:50.0886580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_runtime_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-07-17T06:37:50.0888280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fsdp_extensions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-07-17T06:37:50.0889330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_init_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-07-17T06:37:50.0890800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_debug_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-07-17T06:37:50.0891930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_flat_param.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-07-17T06:37:50.0893810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/collective_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-07-17T06:37:50.0895030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_functional_collectives.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-07-17T06:37:50.0896700Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard 2025-07-17T06:37:50.0897380Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/checkpoint 2025-07-17T06:37:50.0898220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/checkpoint/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/checkpoint 2025-07-17T06:37:50.0899340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/metadata.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard 2025-07-17T06:37:50.0900550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/op_registry_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard 2025-07-17T06:37:50.0901840Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor 2025-07-17T06:37:50.0902630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/logging_handlers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor 2025-07-17T06:37:50.0903790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/metadata.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor 2025-07-17T06:37:50.0904990Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor/_ops 2025-07-17T06:37:50.0905760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops/misc_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor/_ops 2025-07-17T06:37:50.0906950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor/_ops 2025-07-17T06:37:50.0908060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops/_common.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor/_ops 2025-07-17T06:37:50.0909190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor/_ops 2025-07-17T06:37:50.0910300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor/_ops 2025-07-17T06:37:50.0911380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops/init.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor/_ops 2025-07-17T06:37:50.0912590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor 2025-07-17T06:37:50.0914040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/logger.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor 2025-07-17T06:37:50.0915190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/reshard.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor 2025-07-17T06:37:50.0916420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor 2025-07-17T06:37:50.0918010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/shard.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor 2025-07-17T06:37:50.0919490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor 2025-07-17T06:37:50.0920700Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_plan 2025-07-17T06:37:50.0921540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_plan/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_plan 2025-07-17T06:37:50.0922510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_plan/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_plan 2025-07-17T06:37:50.0923670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharder.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard 2025-07-17T06:37:50.0924830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard 2025-07-17T06:37:50.0926220Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_spec 2025-07-17T06:37:50.0927120Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2025-07-17T06:37:50.0927940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2025-07-17T06:37:50.0929770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2025-07-17T06:37:50.0930870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2025-07-17T06:37:50.0932050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2025-07-17T06:37:50.0933110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_spec 2025-07-17T06:37:50.0933970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec/_internals.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_spec 2025-07-17T06:37:50.1238730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_spec 2025-07-17T06:37:50.1240070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_spec 2025-07-17T06:37:50.1241640Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_optim 2025-07-17T06:37:50.1242470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_optim/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_optim 2025-07-17T06:37:50.1245170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_optim/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_optim 2025-07-17T06:37:50.1246760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/common_op_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard 2025-07-17T06:37:50.1247880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard 2025-07-17T06:37:50.1249470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard 2025-07-17T06:37:50.1250610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/launch.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-07-17T06:37:50.1252070Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_symmetric_memory 2025-07-17T06:37:50.1253140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_symmetric_memory/_nvshmem_triton.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_symmetric_memory 2025-07-17T06:37:50.1254320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_symmetric_memory/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_symmetric_memory 2025-07-17T06:37:50.1255860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-07-17T06:37:50.1257520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/remote_device.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-07-17T06:37:50.1258360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/device_mesh.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-07-17T06:37:50.1260970Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-07-17T06:37:50.1261510Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/experimental 2025-07-17T06:37:50.1263200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental/_attention.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/experimental 2025-07-17T06:37:50.1270490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/experimental 2025-07-17T06:37:50.1282520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental/_tp_transform.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/experimental 2025-07-17T06:37:50.1296060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental/_register_sharding.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/experimental 2025-07-17T06:37:50.1296980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental/_func_map.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/experimental 2025-07-17T06:37:50.1298510Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/parallel 2025-07-17T06:37:50.1299240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel/ddp.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/parallel 2025-07-17T06:37:50.1300430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel/fsdp.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/parallel 2025-07-17T06:37:50.1301650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel/style.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/parallel 2025-07-17T06:37:50.1316320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/parallel 2025-07-17T06:37:50.1317210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/parallel 2025-07-17T06:37:50.1318400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel/loss.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/parallel 2025-07-17T06:37:50.1319820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel/input_reshard.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/parallel 2025-07-17T06:37:50.1327190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel/_data_parallel_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/parallel 2025-07-17T06:37:50.1328050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_shards_wrapper.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-07-17T06:37:50.1328820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_redistribute.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-07-17T06:37:50.1329580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_sharding_prop.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-07-17T06:37:50.1330360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_collective_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-07-17T06:37:50.1331100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-07-17T06:37:50.1331830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_dtensor_spec.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-07-17T06:37:50.1332380Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/_ops 2025-07-17T06:37:50.1332980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops/_einsum_strategy.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/_ops 2025-07-17T06:37:50.1333780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops/_embedding_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/_ops 2025-07-17T06:37:50.1334570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops/_tensor_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/_ops 2025-07-17T06:37:50.1335810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/_ops 2025-07-17T06:37:50.1336970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops/_conv_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/_ops 2025-07-17T06:37:50.1338240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops/_pointwise_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/_ops 2025-07-17T06:37:50.1339690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops/_matrix_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/_ops 2025-07-17T06:37:50.1341230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops/_math_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/_ops 2025-07-17T06:37:50.1342540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops/_common_rules.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/_ops 2025-07-17T06:37:50.1347890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/_ops 2025-07-17T06:37:50.1349120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops/_random_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/_ops 2025-07-17T06:37:50.1350330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops/_view_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/_ops 2025-07-17T06:37:50.1351730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-07-17T06:37:50.1352910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_dispatch.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-07-17T06:37:50.1354260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_random.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-07-17T06:37:50.1355700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_op_schema.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-07-17T06:37:50.1356910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/placement_types.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-07-17T06:37:50.1358230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_tp_conv.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-07-17T06:37:50.1359510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/device_mesh.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-07-17T06:37:50.1360630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-07-17T06:37:50.1362220Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/debug 2025-07-17T06:37:50.1362830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/debug/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/debug 2025-07-17T06:37:50.1364170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/debug/_op_coverage.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/debug 2025-07-17T06:37:50.1365030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/debug/_visualize_sharding.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/debug 2025-07-17T06:37:50.1366130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/debug/_comm_mode.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/debug 2025-07-17T06:37:50.1367660Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc 2025-07-17T06:37:50.1368390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/functions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc 2025-07-17T06:37:50.1369440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/options.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc 2025-07-17T06:37:50.1370600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/internal.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc 2025-07-17T06:37:50.1371810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/constants.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc 2025-07-17T06:37:50.1372840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc 2025-07-17T06:37:50.1374250Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc/_testing 2025-07-17T06:37:50.1374900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/_testing/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc/_testing 2025-07-17T06:37:50.1376110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/_testing/faulty_agent_backend_registry.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc/_testing 2025-07-17T06:37:50.1377140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc 2025-07-17T06:37:50.1378580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/rref_proxy.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc 2025-07-17T06:37:50.1379770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/server_process_global_profiler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc 2025-07-17T06:37:50.1380970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc 2025-07-17T06:37:50.1382130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/backend_registry.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc 2025-07-17T06:37:50.1383370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_functional_collectives_impl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-07-17T06:37:50.1384400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_size_docs.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:50.1385860Z creating build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-07-17T06:37:50.1386520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/anomaly_mode.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-07-17T06:37:50.1387910Z creating build/bdist.macosx-14.0-arm64/wheel/torch/autograd/_functions 2025-07-17T06:37:50.1388550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/_functions/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd/_functions 2025-07-17T06:37:50.1389710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/_functions/tensor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd/_functions 2025-07-17T06:37:50.1390770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/_functions/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd/_functions 2025-07-17T06:37:50.1391850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/graph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-07-17T06:37:50.1393280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/forward_ad.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-07-17T06:37:50.1394340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-07-17T06:37:50.1407980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/variable.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-07-17T06:37:50.1408770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/functional.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-07-17T06:37:50.1410330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/grad_mode.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-07-17T06:37:50.1411510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/profiler_util.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-07-17T06:37:50.1412930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/profiler_legacy.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-07-17T06:37:50.1414110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/gradcheck.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-07-17T06:37:50.1415790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/profiler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-07-17T06:37:50.1417170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/function.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-07-17T06:37:50.1418630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_torch_docs.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:50.1422880Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-07-17T06:37:50.1423290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/_pytree.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-07-17T06:37:50.1424450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/graph_module.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-07-17T06:37:50.1428410Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-17T06:37:50.1428940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/validator.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-17T06:37:50.1429500Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification 2025-07-17T06:37:50.1430120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/dispatch.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification 2025-07-17T06:37:50.1431010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification 2025-07-17T06:37:50.1431840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/core.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification 2025-07-17T06:37:50.1432750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/unification_tools.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification 2025-07-17T06:37:50.1434300Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification/multipledispatch 2025-07-17T06:37:50.1435090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch/dispatcher.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification/multipledispatch 2025-07-17T06:37:50.1436290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch/variadic.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification/multipledispatch 2025-07-17T06:37:50.1437420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification/multipledispatch 2025-07-17T06:37:50.1438650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch/core.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification/multipledispatch 2025-07-17T06:37:50.1439730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch/conflict.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification/multipledispatch 2025-07-17T06:37:50.1440850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification/multipledispatch 2025-07-17T06:37:50.1441940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/variable.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification 2025-07-17T06:37:50.1443320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/more.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification 2025-07-17T06:37:50.1444670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification 2025-07-17T06:37:50.1445780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/match.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification 2025-07-17T06:37:50.1446780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/meta_tracer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-17T06:37:50.1452430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/_dynamism.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-17T06:37:50.1453220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/partitioner_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-17T06:37:50.1454490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/recording.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-17T06:37:50.1455800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/rewriter.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-17T06:37:50.1456790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/const_fold.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-17T06:37:50.1458360Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2025-07-17T06:37:50.1459110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types/constraint.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2025-07-17T06:37:50.1460500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types/constraint_transformation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2025-07-17T06:37:50.1461840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types/util.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2025-07-17T06:37:50.1462930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2025-07-17T06:37:50.1463860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types/operation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2025-07-17T06:37:50.1465010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types/transform_to_z3.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2025-07-17T06:37:50.1466270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types/z3_types.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2025-07-17T06:37:50.1467390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types/constraint_generator.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2025-07-17T06:37:50.1468790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/accelerator_partitioner.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-17T06:37:50.1470160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/normalize.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-17T06:37:50.1471150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/_constant_symnode.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-17T06:37:50.1472250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/optimization.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-17T06:37:50.1485360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/refinement_types.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-17T06:37:50.1486280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/graph_gradual_typechecker.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-17T06:37:50.1488060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-17T06:37:50.1489490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/sym_node.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-17T06:37:50.1491260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unify_refinements.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-17T06:37:50.1492440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/merge_matmul.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-17T06:37:50.1493580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/debug.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-17T06:37:50.1494800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/schema_type_annotation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-17T06:37:50.1495960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/symbolic_shapes.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-17T06:37:50.1499070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/_config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-17T06:37:50.1500090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/_backward_state.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-17T06:37:50.1501360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/proxy_tensor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-17T06:37:50.1502910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/operator_schemas.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-07-17T06:37:50.1508560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-07-17T06:37:50.1509450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/proxy.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-07-17T06:37:50.1510820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/_lazy_graph_module.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-07-17T06:37:50.1511970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/traceback.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-07-17T06:37:50.1513270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/graph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-07-17T06:37:50.1515460Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-07-17T06:37:50.1515950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/net_min_base.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-07-17T06:37:50.1517310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/param_fetch.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-07-17T06:37:50.1518400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/tools_common.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-07-17T06:37:50.1519900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/infra 2025-07-17T06:37:50.1520620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/infra/partitioner.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/infra 2025-07-17T06:37:50.1521900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/infra/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/infra 2025-07-17T06:37:50.1523030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/infra/pass_base.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/infra 2025-07-17T06:37:50.1524290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/infra/pass_manager.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/infra 2025-07-17T06:37:50.1525540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/split_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-07-17T06:37:50.1526980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/shape_prop.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-07-17T06:37:50.1528400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/split_module.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-07-17T06:37:50.1529810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/runtime_assert.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-07-17T06:37:50.1531110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/reinplace.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-07-17T06:37:50.1532660Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/backends 2025-07-17T06:37:50.1533310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/backends/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/backends 2025-07-17T06:37:50.1534270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/backends/cudagraphs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/backends 2025-07-17T06:37:50.1535630Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/tests 2025-07-17T06:37:50.1536190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/tests/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/tests 2025-07-17T06:37:50.1537100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/tests/test_pass_manager.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/tests 2025-07-17T06:37:50.1538120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-07-17T06:37:50.1539830Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/utils 2025-07-17T06:37:50.1540390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils/source_matcher_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/utils 2025-07-17T06:37:50.1541620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils/matcher_with_name_node_map_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/utils 2025-07-17T06:37:50.1542680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/utils 2025-07-17T06:37:50.1543640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils/common.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/utils 2025-07-17T06:37:50.1544760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils/matcher_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/utils 2025-07-17T06:37:50.1546170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils/fuser_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/utils 2025-07-17T06:37:50.1547350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/pass_manager.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-07-17T06:37:50.1548470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/_tensorify_python_scalars.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-07-17T06:37:50.1549760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/fake_tensor_prop.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-07-17T06:37:50.1550890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/operator_support.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-07-17T06:37:50.1551990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/annotate_getitem_nodes.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-07-17T06:37:50.1553360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/graph_manipulation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-07-17T06:37:50.1554380Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/dialect 2025-07-17T06:37:50.1555020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/dialect/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/dialect 2025-07-17T06:37:50.1556210Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/dialect/common 2025-07-17T06:37:50.1556870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/dialect/common/cse_pass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/dialect/common 2025-07-17T06:37:50.1558030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/dialect/common/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/dialect/common 2025-07-17T06:37:50.1558790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/graph_drawer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-07-17T06:37:50.1560160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/splitter_base.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-07-17T06:37:50.1561510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/graph_transform_observer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-07-17T06:37:50.1562660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/tensor_type.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-07-17T06:37:50.1563820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-07-17T06:37:50.1564880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/immutable_collections.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-07-17T06:37:50.1566050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/annotate.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-07-17T06:37:50.1567010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/subgraph_rewriter.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-07-17T06:37:50.1568250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/interpreter.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-07-17T06:37:50.1569500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/_symbolic_trace.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-07-17T06:37:50.1571040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/node.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-07-17T06:37:50.1572610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/_compatibility.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-07-17T06:37:50.1573750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/_graph_pickler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-07-17T06:37:50.1575030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-07-17T06:37:50.1576130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:50.1577690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_utils_internal.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:50.1578970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quasirandom.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:50.1580350Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_prims_common 2025-07-17T06:37:50.1581040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_prims_common/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_prims_common 2025-07-17T06:37:50.1582680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_prims_common/wrappers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_prims_common 2025-07-17T06:37:50.1584560Z creating build/bdist.macosx-14.0-arm64/wheel/torch/multiprocessing 2025-07-17T06:37:50.1585090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing/queue.py -> build/bdist.macosx-14.0-arm64/wheel/torch/multiprocessing 2025-07-17T06:37:50.1586110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing/_atfork.py -> build/bdist.macosx-14.0-arm64/wheel/torch/multiprocessing 2025-07-17T06:37:50.1587050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/multiprocessing 2025-07-17T06:37:50.1588180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing/spawn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/multiprocessing 2025-07-17T06:37:50.1589400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing/reductions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/multiprocessing 2025-07-17T06:37:50.1590610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing/pool.py -> build/bdist.macosx-14.0-arm64/wheel/torch/multiprocessing 2025-07-17T06:37:50.1591930Z creating build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-07-17T06:37:50.1592570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/_pin_memory_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-07-17T06:37:50.1593630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/gds.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-07-17T06:37:50.1594800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/streams.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-07-17T06:37:50.1596150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/error.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-07-17T06:37:50.1596930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/comm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-07-17T06:37:50.1598020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/memory.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-07-17T06:37:50.1599370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/jiterator.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-07-17T06:37:50.1600510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/nccl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-07-17T06:37:50.1601620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-07-17T06:37:50.1603110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/_gpu_trace.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-07-17T06:37:50.1604100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/_sanitizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-07-17T06:37:50.1605350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/random.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-07-17T06:37:50.1606520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/_memory_viz.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-07-17T06:37:50.1607780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/tunable.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-07-17T06:37:50.1609270Z creating build/bdist.macosx-14.0-arm64/wheel/torch/cuda/amp 2025-07-17T06:37:50.1609970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/amp/autocast_mode.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda/amp 2025-07-17T06:37:50.1611310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/amp/grad_scaler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda/amp 2025-07-17T06:37:50.1612140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/amp/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda/amp 2025-07-17T06:37:50.1613280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/amp/common.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda/amp 2025-07-17T06:37:50.1614330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/sparse.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-07-17T06:37:50.1615380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/nvtx.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-07-17T06:37:50.1616440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/graphs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-07-17T06:37:50.1617810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/profiler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-07-17T06:37:50.1618890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-07-17T06:37:50.1620430Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-07-17T06:37:50.1621160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/sleef.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-07-17T06:37:50.1624090Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-07-17T06:37:50.1624610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/attr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-07-17T06:37:50.1625650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/embed.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-07-17T06:37:50.1626840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/numpy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-07-17T06:37:50.1628570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/pybind11.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-07-17T06:37:50.1630310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/operators.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-07-17T06:37:50.1631550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/iostream.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-07-17T06:37:50.1632840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/gil.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-07-17T06:37:50.1633940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/chrono.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-07-17T06:37:50.1635190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/typing.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-07-17T06:37:50.1636350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/stl_bind.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-07-17T06:37:50.1637620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/buffer_info.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-07-17T06:37:50.1638690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/options.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-07-17T06:37:50.1639940Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/eigen 2025-07-17T06:37:50.1640630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/eigen/matrix.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/eigen 2025-07-17T06:37:50.1642180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/eigen/common.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/eigen 2025-07-17T06:37:50.1643110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/eigen/tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/eigen 2025-07-17T06:37:50.1644540Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/stl 2025-07-17T06:37:50.1645300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/stl/filesystem.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/stl 2025-07-17T06:37:50.1646490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/functional.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-07-17T06:37:50.1647650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/stl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-07-17T06:37:50.1649160Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-07-17T06:37:50.1649900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail/type_caster_base.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-07-17T06:37:50.1651580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail/exception_translation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-07-17T06:37:50.1652610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail/typeid.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-07-17T06:37:50.1653750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail/descr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-07-17T06:37:50.1654900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail/internals.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-07-17T06:37:50.1656430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail/cpp_conduit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-07-17T06:37:50.1657520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail/value_and_holder.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-07-17T06:37:50.1658630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail/common.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-07-17T06:37:50.1660180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail/class.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-07-17T06:37:50.1661580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail/init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-07-17T06:37:50.1662930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/common.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-07-17T06:37:50.1664090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/eval.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-07-17T06:37:50.1665250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/cast.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-07-17T06:37:50.1666910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/type_caster_pyobject_ptr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-07-17T06:37:50.1668040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/eigen.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-07-17T06:37:50.1669120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/gil_safe_call_once.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-07-17T06:37:50.1670350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/pytypes.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-07-17T06:37:50.1672090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/complex.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-07-17T06:37:50.1673490Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-07-17T06:37:50.1674170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt/ostream.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-07-17T06:37:50.1675380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt/format-inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-07-17T06:37:50.1677010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt/ranges.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-07-17T06:37:50.1683980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt/xchar.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-07-17T06:37:50.1684620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt/core.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-07-17T06:37:50.1685260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt/chrono.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-07-17T06:37:50.1685890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt/os.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-07-17T06:37:50.1686560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt/color.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-07-17T06:37:50.1687190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt/args.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-07-17T06:37:50.1687820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt/printf.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-07-17T06:37:50.1688460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt/compile.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-07-17T06:37:50.1689110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt/format.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-07-17T06:37:50.1690580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt/std.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-07-17T06:37:50.1691780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt/base.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-07-17T06:37:50.1693700Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2 2025-07-17T06:37:50.1694550Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/core 2025-07-17T06:37:50.1695350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/core/timer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/core 2025-07-17T06:37:50.1696490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/core/common.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/core 2025-07-17T06:37:50.1697590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/core/macros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/core 2025-07-17T06:37:50.1699180Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/perfkernels 2025-07-17T06:37:50.1700090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/perfkernels/batch_box_cox_vec.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/perfkernels 2025-07-17T06:37:50.1701640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/perfkernels/embedding_lookup_idx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/perfkernels 2025-07-17T06:37:50.1703060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/perfkernels/common.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/perfkernels 2025-07-17T06:37:50.1704290Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/serialize 2025-07-17T06:37:50.1705060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize/in_memory_adapter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/serialize 2025-07-17T06:37:50.1706590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize/read_adapter_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/serialize 2025-07-17T06:37:50.1707490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize/crc_alt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/serialize 2025-07-17T06:37:50.1709300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize/versions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/serialize 2025-07-17T06:37:50.1710440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize/inline_container.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/serialize 2025-07-17T06:37:50.1711780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize/file_adapter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/serialize 2025-07-17T06:37:50.1713000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize/istream_adapter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/serialize 2025-07-17T06:37:50.1714840Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/utils 2025-07-17T06:37:50.1715470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/string_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/utils 2025-07-17T06:37:50.1716450Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/utils/threadpool 2025-07-17T06:37:50.1717180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool/ThreadPool.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/utils/threadpool 2025-07-17T06:37:50.1718410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool/ThreadPoolCommon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/utils/threadpool 2025-07-17T06:37:50.1719520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool/pthreadpool.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/utils/threadpool 2025-07-17T06:37:50.1720870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool/pthreadpool-cpp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/utils/threadpool 2025-07-17T06:37:50.1721940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool/WorkersPool.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/utils/threadpool 2025-07-17T06:37:50.1723340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool/thread_pool_guard.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/utils/threadpool 2025-07-17T06:37:50.1724460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/fixed_divisor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/utils 2025-07-17T06:37:50.1725660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/proto_wrap.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/utils 2025-07-17T06:37:50.1727380Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google 2025-07-17T06:37:50.1728110Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1728850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/source_context.pb.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1730550Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-07-17T06:37:50.1739750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/stringpiece.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-07-17T06:37:50.1740670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/stl_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-07-17T06:37:50.1741880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/port.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-07-17T06:37:50.1743290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/status.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-07-17T06:37:50.1744410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/template_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-07-17T06:37:50.1745590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/map_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-07-17T06:37:50.1746990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/casts.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-07-17T06:37:50.1748200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/logging.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-07-17T06:37:50.1749680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/bytestream.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-07-17T06:37:50.1751100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/common.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-07-17T06:37:50.1752240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/macros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-07-17T06:37:50.1753360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/platform_macros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-07-17T06:37:50.1754900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/once.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-07-17T06:37:50.1756080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/fastmem.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-07-17T06:37:50.1757210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/mutex.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-07-17T06:37:50.1758490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/callback.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-07-17T06:37:50.1759810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/strutil.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-07-17T06:37:50.1761220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/hash.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-07-17T06:37:50.1762450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/repeated_field.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1764170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/port.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1765230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/wire_format.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1766640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/inlined_string_field.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1768110Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/util 2025-07-17T06:37:50.1768900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util/time_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/util 2025-07-17T06:37:50.1770320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util/field_mask_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/util 2025-07-17T06:37:50.1771550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util/json_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/util 2025-07-17T06:37:50.1772780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util/type_resolver.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/util 2025-07-17T06:37:50.1774010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util/field_comparator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/util 2025-07-17T06:37:50.1775160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util/type_resolver_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/util 2025-07-17T06:37:50.1776270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util/message_differencer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/util 2025-07-17T06:37:50.1778400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util/delimited_message_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/util 2025-07-17T06:37:50.1779230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/map.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1780130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/arenastring.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1781390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/map_entry_lite.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1782720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/service.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1783960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/struct.pb.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1785380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/empty.pb.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1786520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/descriptor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1788290Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/io 2025-07-17T06:37:50.1789060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io/zero_copy_stream_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/io 2025-07-17T06:37:50.1790310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io/printer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/io 2025-07-17T06:37:50.1791500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io/gzip_stream.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/io 2025-07-17T06:37:50.1792720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io/zero_copy_stream_impl_lite.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/io 2025-07-17T06:37:50.1793970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io/strtod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/io 2025-07-17T06:37:50.1795080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io/tokenizer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/io 2025-07-17T06:37:50.1796400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io/zero_copy_stream.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/io 2025-07-17T06:37:50.1797660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io/io_win32.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/io 2025-07-17T06:37:50.1798840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io/coded_stream.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/io 2025-07-17T06:37:50.1800400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/message.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1801840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/wrappers.pb.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1803360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/text_format.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1804690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/has_bits.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1805810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/arena_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1807110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/api.pb.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1808570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/metadata.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1809740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/extension_set.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1811320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/reflection_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1812450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/generated_message_table_driven.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1813700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/duration.pb.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1815040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/generated_message_reflection.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1816430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/unknown_field_set.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1817570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/type.pb.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1819220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/map_field_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1820440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/timestamp.pb.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1821740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/field_mask.pb.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1823090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/descriptor.pb.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1827140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/map_entry.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1828140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/message_lite.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1829520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/generated_message_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1830890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/descriptor_database.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1832390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/map_field.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1833800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/generated_enum_reflection.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1834940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/generated_enum_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1836070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/any.pb.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1837350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/map_type_handler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1838850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/parse_context.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1840240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/extension_set_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1841530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/map_field_lite.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1842640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/metadata_lite.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1844080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/implicit_weak_message.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1845180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/arena.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1847050Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler 2025-07-17T06:37:50.1847860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/code_generator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler 2025-07-17T06:37:50.1849280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/plugin.pb.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler 2025-07-17T06:37:50.1850680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/plugin.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler 2025-07-17T06:37:50.1851970Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/python 2025-07-17T06:37:50.1852770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/python/python_generator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/python 2025-07-17T06:37:50.1853960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/parser.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler 2025-07-17T06:37:50.1855570Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/js 2025-07-17T06:37:50.1856490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/js/well_known_types_embed.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/js 2025-07-17T06:37:50.1857530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/js/js_generator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/js 2025-07-17T06:37:50.1858930Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/java 2025-07-17T06:37:50.1859710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/java/java_generator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/java 2025-07-17T06:37:50.1860910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/java/java_names.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/java 2025-07-17T06:37:50.1862250Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/php 2025-07-17T06:37:50.1863170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/php/php_generator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/php 2025-07-17T06:37:50.1864230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/command_line_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler 2025-07-17T06:37:50.1865690Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/cpp 2025-07-17T06:37:50.1866690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/cpp/cpp_generator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/cpp 2025-07-17T06:37:50.1868040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/importer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler 2025-07-17T06:37:50.1869170Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/csharp 2025-07-17T06:37:50.1869920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/csharp/csharp_names.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/csharp 2025-07-17T06:37:50.1871120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/csharp/csharp_generator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/csharp 2025-07-17T06:37:50.1872310Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/ruby 2025-07-17T06:37:50.1873110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/ruby/ruby_generator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/ruby 2025-07-17T06:37:50.1874460Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/objectivec 2025-07-17T06:37:50.1875630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/objectivec/objectivec_helpers.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/objectivec 2025-07-17T06:37:50.1876840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/objectivec/objectivec_generator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/objectivec 2025-07-17T06:37:50.1877780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/any.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1879870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/reflection.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1881850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/dynamic_message.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1883310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/wire_format_lite.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-17T06:37:50.1885080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/cpuinfo.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-07-17T06:37:50.1887150Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch 2025-07-17T06:37:50.1888080Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly 2025-07-17T06:37:50.1889020Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/macros 2025-07-17T06:37:50.1889730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/macros/cmake_macros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/macros 2025-07-17T06:37:50.1891000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/macros/Export.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/macros 2025-07-17T06:37:50.1892390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/macros/Macros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/macros 2025-07-17T06:37:50.1894020Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-17T06:37:50.1895090Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/stable 2025-07-17T06:37:50.1895720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable/library.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/stable 2025-07-17T06:37:50.1897060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable/ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/stable 2025-07-17T06:37:50.1898440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable/tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/stable 2025-07-17T06:37:50.1899400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/Size.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-17T06:37:50.1900810Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor 2025-07-17T06:37:50.1901850Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_package 2025-07-17T06:37:50.1902570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_package/pybind.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_package 2025-07-17T06:37:50.1903810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_package/model_package_loader.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_package 2025-07-17T06:37:50.1905110Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_eager 2025-07-17T06:37:50.1906160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_eager/kernel_meta_info.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_eager 2025-07-17T06:37:50.1907350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_eager/kernel_holder.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_eager 2025-07-17T06:37:50.1908700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/inductor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor 2025-07-17T06:37:50.1909570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/array_ref_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor 2025-07-17T06:37:50.1910970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/static_cuda_launcher.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor 2025-07-17T06:37:50.1912100Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runner 2025-07-17T06:37:50.1913280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_mps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runner 2025-07-17T06:37:50.1914490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runner/pybind.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runner 2025-07-17T06:37:50.1915680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runner 2025-07-17T06:37:50.1916980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_xpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runner 2025-07-17T06:37:50.1918260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runner/model_container_runner.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runner 2025-07-17T06:37:50.1919500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cuda.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runner 2025-07-17T06:37:50.1920910Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-17T06:37:50.1921850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-17T06:37:50.1923280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime/utils_cuda.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-17T06:37:50.1924450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime/scalar_to_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-17T06:37:50.1925710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime/arrayref_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-17T06:37:50.1926850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime/thread_local.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-17T06:37:50.1927960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime/interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-17T06:37:50.1929400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime/constant_type.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-17T06:37:50.1930850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime/utils_xpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-17T06:37:50.1931970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime/sycl_runtime_wrappers.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-17T06:37:50.1933000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime/mini_array_ref.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-17T06:37:50.1934260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime/model.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-17T06:37:50.1935400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime/device_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-17T06:37:50.1936710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime/model_container.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-17T06:37:50.1938180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime/model_base.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-17T06:37:50.1939770Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_include 2025-07-17T06:37:50.1940560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_include/xpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_include 2025-07-17T06:37:50.1941920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_include/common.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_include 2025-07-17T06:37:50.1943010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_include/cuda.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_include 2025-07-17T06:37:50.1944090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_include/cpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_include 2025-07-17T06:37:50.1945200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_include/mps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_include 2025-07-17T06:37:50.1946510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_include/array_ref.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_include 2025-07-17T06:37:50.1947460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_prefix.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor 2025-07-17T06:37:50.1949040Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch 2025-07-17T06:37:50.1949960Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-07-17T06:37:50.1950770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-07-17T06:37:50.1952390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_mps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-07-17T06:37:50.1953830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cuda.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-07-17T06:37:50.1955470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_xpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-07-17T06:37:50.1956750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch 2025-07-17T06:37:50.1957860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/proxy_executor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch 2025-07-17T06:37:50.1959020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/tensor_converter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch 2025-07-17T06:37:50.1960390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/mkldnn_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch 2025-07-17T06:37:50.1961410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/oss_proxy_executor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch 2025-07-17T06:37:50.1962570Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/c 2025-07-17T06:37:50.1963370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/c/shim_cpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/c 2025-07-17T06:37:50.1964740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/c/shim_mps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/c 2025-07-17T06:37:50.1965810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/c/shim_xpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/c 2025-07-17T06:37:50.1967020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/c/shim.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/c 2025-07-17T06:37:50.1968510Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/cpp_wrapper 2025-07-17T06:37:50.1969570Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal 2025-07-17T06:37:50.1970440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/xpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal 2025-07-17T06:37:50.1971680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/cuda.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal 2025-07-17T06:37:50.1972980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/cpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal 2025-07-17T06:37:50.1974140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/mps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal 2025-07-17T06:37:50.1975240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/xpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/cpp_wrapper 2025-07-17T06:37:50.1976330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/common.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/cpp_wrapper 2025-07-17T06:37:50.1977460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/cuda.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/cpp_wrapper 2025-07-17T06:37:50.1978570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/cpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/cpp_wrapper 2025-07-17T06:37:50.1979730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/mps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/cpp_wrapper 2025-07-17T06:37:50.1980900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/array_ref.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/cpp_wrapper 2025-07-17T06:37:50.1981880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-17T06:37:50.1983390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/DeviceAccelerator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-17T06:37:50.1984720Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/monitor 2025-07-17T06:37:50.1985460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/monitor/events.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/monitor 2025-07-17T06:37:50.1986580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/monitor/counters.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/monitor 2025-07-17T06:37:50.1987800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/monitor/python_init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/monitor 2025-07-17T06:37:50.1989070Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/instruction_counter 2025-07-17T06:37:50.1989800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/instruction_counter/Module.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/instruction_counter 2025-07-17T06:37:50.1991020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/Export.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-17T06:37:50.1992220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/Device.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-17T06:37:50.1993360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/THConcat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-17T06:37:50.1994670Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/mps 2025-07-17T06:37:50.1995310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/mps/Module.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/mps 2025-07-17T06:37:50.1996670Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/onnx 2025-07-17T06:37:50.1997380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/onnx/back_compat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/onnx 2025-07-17T06:37:50.1998480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/onnx/init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/onnx 2025-07-17T06:37:50.1999600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/onnx/onnx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/onnx 2025-07-17T06:37:50.2000900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/Event.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-17T06:37:50.2002100Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cpu 2025-07-17T06:37:50.2002820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cpu/Module.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cpu 2025-07-17T06:37:50.2004130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/Types.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-17T06:37:50.2005880Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed 2025-07-17T06:37:50.2006810Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd 2025-07-17T06:37:50.2007900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd 2025-07-17T06:37:50.2009060Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/context 2025-07-17T06:37:50.2009940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/context/container.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/context 2025-07-17T06:37:50.2011150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/context/context.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/context 2025-07-17T06:37:50.2012540Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-07-17T06:37:50.2013710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_req.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-07-17T06:37:50.2015000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_resp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-07-17T06:37:50.2016290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_req.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-07-17T06:37:50.2017470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_req.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-07-17T06:37:50.2018680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_resp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-07-17T06:37:50.2019970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_req.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-07-17T06:37:50.2021160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages/autograd_metadata.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-07-17T06:37:50.2022320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_autograd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-07-17T06:37:50.2023490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_resp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-07-17T06:37:50.2024670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_resp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-07-17T06:37:50.2025780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/python_autograd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd 2025-07-17T06:37:50.2026790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/autograd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd 2025-07-17T06:37:50.2027580Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/functions 2025-07-17T06:37:50.2028490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/functions/sendrpc_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/functions 2025-07-17T06:37:50.2029820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/functions/recvrpc_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/functions 2025-07-17T06:37:50.2039420Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/engine 2025-07-17T06:37:50.2040360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/engine/dist_engine.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/engine 2025-07-17T06:37:50.2041130Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:50.2041570Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc/metrics 2025-07-17T06:37:50.2042350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/metrics/RpcMetricsHandler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc/metrics 2025-07-17T06:37:50.2043380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:50.2044350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/rref_context.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:50.2045350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/request_callback_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:50.2046300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/python_resp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:50.2047300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/rref_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:50.2048250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/request_callback.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:50.2049200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/types.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:50.2050110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/rref_proto.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:50.2051020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/py_rref.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:50.2051930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/rpc_agent.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:50.2052870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/python_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:50.2053800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/message.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:50.2054820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/request_callback_no_python.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:50.2055810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/python_remote_call.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:50.2056890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/python_call.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:50.2057860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/tensorpipe_agent.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:50.2058830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/script_remote_call.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:50.2059570Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc/testing 2025-07-17T06:37:50.2060310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/testing/testing.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc/testing 2025-07-17T06:37:50.2062840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/testing/faulty_tensorpipe_agent.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc/testing 2025-07-17T06:37:50.2063940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/script_resp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:50.2065100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/rpc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:50.2066350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/rpc_command_base.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:50.2067660Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc/profiler 2025-07-17T06:37:50.2068540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/profiler/remote_profiler_manager.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc/profiler 2025-07-17T06:37:50.2069830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/profiler/server_process_global_profiler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc/profiler 2025-07-17T06:37:50.2070900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/script_call.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:50.2072430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/unpickled_python_remote_call.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:50.2073450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/torchscript_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:50.2074470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/unpickled_python_call.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:50.2075620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/tensorpipe_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:50.2076800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/agent_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:50.2078060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/python_rpc_handler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-17T06:37:50.2079580Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2080530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/ProcessGroup.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2081880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/error.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2083150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/PyProcessGroup.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2084580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/logger.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2086060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/Work.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2087030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/FlightRecorder.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2088330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/default_comm_hooks.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2090390Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/control_collectives 2025-07-17T06:37:50.2091310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/control_collectives/StoreCollectives.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/control_collectives 2025-07-17T06:37:50.2092610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/control_collectives/ControlCollectives.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/control_collectives 2025-07-17T06:37:50.2093700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/debug.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2094670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/TCPStoreBackend.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2095640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/Store.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2096590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/WinSockUtils.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2097610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/ProcessGroupUCC.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2098600Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/cuda 2025-07-17T06:37:50.2099370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/cuda/StreamBlock.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/cuda 2025-07-17T06:37:50.2100530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/cuda/utils.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/cuda 2025-07-17T06:37:50.2101710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/GlooDeviceFactory.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2102800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/RankLocal.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2104070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/UnixSockUtils.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2105050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/FileStore.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2106130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/reducer.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2107490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/ProcessGroupWrapper.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2108480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/NCCLUtils.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2109740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/logging.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2110930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/FakeProcessGroup.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2111990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/comm.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2113160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/Functional.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2114360Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/quantization 2025-07-17T06:37:50.2115180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/quantization/quantization.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/quantization 2025-07-17T06:37:50.2116320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/quantization/quantization_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/quantization 2025-07-17T06:37:50.2117500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/quantization/quantization_gpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/quantization 2025-07-17T06:37:50.2118550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/socket_fmt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2119730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/Backoff.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2120690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/TCPStore.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2121870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/python_comm_hook.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2122990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/ProcessGroupMPI.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2124290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/ProcessGroupGloo.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2125600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/NanCheck.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2126630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/GroupRegistry.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2127740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/UCCUtils.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2128890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/reducer_timer.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2130060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/HashStore.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2131170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/c10d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2132310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/sequence_num.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2133600Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/control_plane 2025-07-17T06:37:50.2134440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/control_plane/WorkerServer.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/control_plane 2025-07-17T06:37:50.2135630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/control_plane/Handlers.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/control_plane 2025-07-17T06:37:50.2136690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/UCCTracing.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2137910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/ProcessGroupGlooDetail.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2139150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/ProcessGroupNCCL.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2140620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/Backend.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2141880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/FlightRecorderDetail.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2143220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/TraceUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2144690Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-07-17T06:37:50.2145560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemory-inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-07-17T06:37:50.2146870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem/SymmetricMemory.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-07-17T06:37:50.2148270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemoryTypes.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-07-17T06:37:50.2149430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemoryUtils.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-07-17T06:37:50.2150540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem/intra_node_comm.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-07-17T06:37:50.2151630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemory.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-07-17T06:37:50.2152730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem/DMAConnectivity.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-07-17T06:37:50.2153770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/Utils.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2154930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/Types.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2156040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/exception.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2157200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/PrefixStore.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2158230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/socket.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2159350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/ParamCommsUtils.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-17T06:37:50.2161010Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-17T06:37:50.2161970Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/generated 2025-07-17T06:37:50.2163070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated/python_return_types.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/generated 2025-07-17T06:37:50.2164060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated/ViewFuncs.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/generated 2025-07-17T06:37:50.2165480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated/python_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/generated 2025-07-17T06:37:50.2166570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated/VariableType.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/generated 2025-07-17T06:37:50.2167820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated/Functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/generated 2025-07-17T06:37:50.2171660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated/variable_factories.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/generated 2025-07-17T06:37:50.2173000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_function.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-17T06:37:50.2174090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/custom_function.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-17T06:37:50.2175470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_linalg_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-17T06:37:50.2176570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/saved_variable_hooks.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-17T06:37:50.2177720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/record_function_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-17T06:37:50.2178790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/engine.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-17T06:37:50.2180160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_enum_tag.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-17T06:37:50.2181300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/graph_task.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-17T06:37:50.2182640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/edge.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-17T06:37:50.2183880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_nested_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-17T06:37:50.2184990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/variable_info.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-17T06:37:50.2186070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/saved_variable.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-17T06:37:50.2187240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_engine.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-17T06:37:50.2188440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_legacy_variable.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-17T06:37:50.2189620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/profiler_python.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-17T06:37:50.2190910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/autograd_not_implemented_fallback.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-17T06:37:50.2192070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_saved_variable_hooks.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-17T06:37:50.2193210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_cpp_function.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-17T06:37:50.2194390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_hook.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-17T06:37:50.2195530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/VariableTypeUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-17T06:37:50.2196840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_autograd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-17T06:37:50.2197960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/profiler_kineto.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-17T06:37:50.2199250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/variable.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-17T06:37:50.2201170Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/utils 2025-07-17T06:37:50.2201910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/utils/warnings.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/utils 2025-07-17T06:37:50.2202920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/utils/wrap_outputs.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/utils 2025-07-17T06:37:50.2204070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/utils/python_arg_parsing.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/utils 2025-07-17T06:37:50.2205570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/utils/grad_layout_contract.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/utils 2025-07-17T06:37:50.2206520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/utils/lambda_post_hook.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/utils 2025-07-17T06:37:50.2207570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/utils/error_messages.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/utils 2025-07-17T06:37:50.2208760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_fft_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-17T06:37:50.2209890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_variable.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-17T06:37:50.2211070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_torch_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-17T06:37:50.2212220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/function_hook.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-17T06:37:50.2213380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/input_metadata.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-17T06:37:50.2214460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/grad_mode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-17T06:37:50.2215610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/jit_decomp_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-17T06:37:50.2216800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_sparse_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-17T06:37:50.2217950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/symbolic.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-17T06:37:50.2219080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/input_buffer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-17T06:37:50.2220690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/profiler_legacy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-17T06:37:50.2221640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/autograd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-17T06:37:50.2222930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/cpp_hook.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-17T06:37:50.2224030Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/functions 2025-07-17T06:37:50.2224810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/functions 2025-07-17T06:37:50.2225990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions/pybind.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/functions 2025-07-17T06:37:50.2227140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions/comm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/functions 2025-07-17T06:37:50.2228260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions/basic_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/functions 2025-07-17T06:37:50.2229390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions/accumulate_grad.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/functions 2025-07-17T06:37:50.2230680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions/tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/functions 2025-07-17T06:37:50.2231920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_special_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-17T06:37:50.2233000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/FunctionsManual.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-17T06:37:50.2235060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/forward_grad.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-17T06:37:50.2235970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_anomaly_mode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-17T06:37:50.2237150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_nn_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-17T06:37:50.2238250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/InferenceMode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-17T06:37:50.2239440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_variable_indexing.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-17T06:37:50.2240560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/profiler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-17T06:37:50.2241630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/function.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-17T06:37:50.2242970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/anomaly_mode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-17T06:37:50.2244170Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/fx 2025-07-17T06:37:50.2244970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/fx/node.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/fx 2025-07-17T06:37:50.2246400Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/multiprocessing 2025-07-17T06:37:50.2247130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/multiprocessing/init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/multiprocessing 2025-07-17T06:37:50.2248340Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cuda 2025-07-17T06:37:50.2249140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda/CUDAPluggableAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cuda 2025-07-17T06:37:50.2250310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda/GdsFile.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cuda 2025-07-17T06:37:50.2251350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cuda 2025-07-17T06:37:50.2252480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda/THCP.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cuda 2025-07-17T06:37:50.2253630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda/nccl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cuda 2025-07-17T06:37:50.2254970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda/memory_snapshot.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cuda 2025-07-17T06:37:50.2256000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda/python_nccl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cuda 2025-07-17T06:37:50.2257190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda/device_set.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cuda 2025-07-17T06:37:50.2258440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda/Event.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cuda 2025-07-17T06:37:50.2259490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda/python_comm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cuda 2025-07-17T06:37:50.2260620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda/comm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cuda 2025-07-17T06:37:50.2261670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda/Stream.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cuda 2025-07-17T06:37:50.2262820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda/Module.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cuda 2025-07-17T06:37:50.2263920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/serialization.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-17T06:37:50.2265070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/Exceptions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-17T06:37:50.2266360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/itt_wrapper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-17T06:37:50.2267680Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/xpu 2025-07-17T06:37:50.2268370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/xpu/Event.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/xpu 2025-07-17T06:37:50.2269490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/xpu/Stream.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/xpu 2025-07-17T06:37:50.2270660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/xpu/Module.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/xpu 2025-07-17T06:37:50.2271700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/QScheme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-17T06:37:50.2273100Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-07-17T06:37:50.2273840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo/cache_entry.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-07-17T06:37:50.2274970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-07-17T06:37:50.2276110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo/cpython_defs.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-07-17T06:37:50.2277270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo/cpp_shim.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-07-17T06:37:50.2278420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo/framelocals_mapping.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-07-17T06:37:50.2279570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo/cpython_includes.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-07-17T06:37:50.2280690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo/extra_state.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-07-17T06:37:50.2281790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo/compiled_autograd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-07-17T06:37:50.2283360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo/eval_frame_cpp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-07-17T06:37:50.2284400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo/eval_frame.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-07-17T06:37:50.2285490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo/debug_macros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-07-17T06:37:50.2286640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo/python_compiled_autograd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-07-17T06:37:50.2287780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo/init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-07-17T06:37:50.2288890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo/guards.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-07-17T06:37:50.2290490Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-17T06:37:50.2291210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/object_ptr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-17T06:37:50.2292390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/tensor_numpy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-17T06:37:50.2293500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/tensor_dtypes.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-17T06:37:50.2294640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/python_tuples.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-17T06:37:50.2295770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/nested.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-17T06:37:50.2296910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/python_raii.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-17T06:37:50.2298020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/python_numbers.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-17T06:37:50.2299110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/python_scalars.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-17T06:37:50.2300250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/pybind.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-17T06:37:50.2301580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/tensor_types.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-17T06:37:50.2302760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/tensor_memoryformats.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-17T06:37:50.2303910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/python_arg_parser.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-17T06:37:50.2305440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/python_torch_function_mode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-17T06:37:50.2306560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/schema_info.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-17T06:37:50.2307740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/generated_serialization_types.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-17T06:37:50.2309610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/tensor_new.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-17T06:37:50.2310630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/tensor_qschemes.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-17T06:37:50.2311740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/verbose.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-17T06:37:50.2312950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/python_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-17T06:37:50.2314050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/tensor_list.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-17T06:37:50.2315200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/invalid_arguments.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-17T06:37:50.2316330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/pythoncapi_compat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-17T06:37:50.2317850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/cpp_stacktraces.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-17T06:37:50.2318970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/device_lazy_init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-17T06:37:50.2320090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/python_strings.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-17T06:37:50.2321300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/python_symnode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-17T06:37:50.2322590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/byte_order.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-17T06:37:50.2323760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/pycfunction_helpers.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-17T06:37:50.2325250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/cuda_enabled.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-17T06:37:50.2325970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/numpy_stub.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-17T06:37:50.2327160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/out_types.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-17T06:37:50.2328400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/tensor_layouts.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-17T06:37:50.2329500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/structseq.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-17T06:37:50.2330650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/throughput_benchmark.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-17T06:37:50.2331810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/disable_torch_function.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-17T06:37:50.2332960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/pyobject_preservation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-17T06:37:50.2334110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/throughput_benchmark-inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-17T06:37:50.2335190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/tensor_flatten.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-17T06:37:50.2336280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/torch_dispatch_mode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-17T06:37:50.2337360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/tensor_apply.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-17T06:37:50.2338570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-17T06:37:50.2339700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/python_compat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-17T06:37:50.2340780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/six.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-17T06:37:50.2341880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/python_stub.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-17T06:37:50.2343020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/variadic.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-17T06:37:50.2344140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/Stream.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-17T06:37:50.2345300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/DataLoader.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-17T06:37:50.2346290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/THP.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-17T06:37:50.2347430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/python_headers.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-17T06:37:50.2348460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/Layout.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-17T06:37:50.2349700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/DynamicTypes.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-17T06:37:50.2350770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/copy_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-17T06:37:50.2352100Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit 2025-07-17T06:37:50.2352910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/jit_opt_limit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit 2025-07-17T06:37:50.2354180Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:50.2354970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/error_report.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:50.2356100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/source_range.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:50.2357460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/edit_distance.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:50.2358720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/canonicalize_modified_loop.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:50.2359690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/schema_matching.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:50.2360840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/function_schema_parser.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:50.2361960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/tree_views.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:50.2363270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/ir_emitter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:50.2364420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/parser.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:50.2365510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/strtod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:50.2366650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/tree.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:50.2367830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/concrete_module_type.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:50.2369140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/builtin_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:50.2370320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/exit_transforms.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:50.2371410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/parse_string_literal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:50.2372680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/sugared_value.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:50.2374080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/inline_loop_condition.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:50.2375280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/name_mangler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:50.2376330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/tracer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:50.2377700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/resolver.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:50.2378810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/script_type_parser.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:50.2379940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/schema_type_parser.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:50.2381000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/lexer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:50.2382460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/versioned_symbols.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:50.2383610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/convert_to_ssa.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:50.2384720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/source_ref.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:50.2385860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/mini_environment.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:50.2386940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/parser_constants.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-17T06:37:50.2388360Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-07-17T06:37:50.2389110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/pybind.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-07-17T06:37:50.2390380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/utf8_decoding_ignore.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-07-17T06:37:50.2391460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/python_ir.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-07-17T06:37:50.2392620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/script_init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-07-17T06:37:50.2393790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/python_tree_views.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-07-17T06:37:50.2394890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/python_list.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-07-17T06:37:50.2396080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/python_ivalue.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-07-17T06:37:50.2397200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/python_dict.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-07-17T06:37:50.2398310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/python_custom_class.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-07-17T06:37:50.2399470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/update_graph_executor_opt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-07-17T06:37:50.2400550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/python_tracer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-07-17T06:37:50.2401620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/pybind_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-07-17T06:37:50.2403130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-07-17T06:37:50.2404280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/python_sugared_value.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-07-17T06:37:50.2405650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/python_arg_flatten.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-07-17T06:37:50.2406760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/module_python.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-07-17T06:37:50.2408180Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:50.2408900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/ir_mutator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:50.2410100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/cpp_intrinsics.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:50.2411200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/ir_simplifier.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:50.2412560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/ir_visitor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:50.2413610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/lowerings.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:50.2414720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/graph_opt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:50.2415830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/llvm_jit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:50.2417140Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2025-07-17T06:37:50.2418050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators/softmax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2025-07-17T06:37:50.2419200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators/matmul.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2025-07-17T06:37:50.2420260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators/operators.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2025-07-17T06:37:50.2421520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators/misc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2025-07-17T06:37:50.2423250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators/quantization.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2025-07-17T06:37:50.2423780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators/norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2025-07-17T06:37:50.2424870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators/pointwise.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2025-07-17T06:37:50.2425980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators/conv2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2025-07-17T06:37:50.2427150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators/reduction.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2025-07-17T06:37:50.2428320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/tensorexpr_init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:50.2429410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/types.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:50.2430560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/mem_dependency_checker.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:50.2431750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/ir.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:50.2433140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/exceptions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:50.2434320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/cuda_codegen.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:50.2435620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/hash_provider.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:50.2436710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/ir_printer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:50.2437880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/external_functions_core.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:50.2439030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/llvm_codegen.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:50.2440080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/expr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:50.2441300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/cuda_random.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:50.2442370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/codegen.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:50.2443480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/unique_name_manager.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:50.2444620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/cpp_codegen.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:50.2445730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/var_substitutor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:50.2446770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/eval.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:50.2448130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/bounds_inference.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:50.2449250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/intrinsic_symbols.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:50.2450390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/block_codegen.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:50.2451520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/external_functions_registry.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:50.2452640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/kernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:50.2453820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/loopnest.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:50.2455210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/bounds_overlap.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:50.2456380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/loopnest_randomization.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:50.2457470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/ir_verifier.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:50.2458570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/ir_cloner.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:50.2459700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/external_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:50.2460830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/stmt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:50.2462200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/half_support.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:50.2463260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/registerizer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:50.2464510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/reduction.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:50.2465800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:50.2467070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/fwd_decls.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:50.2468200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/analysis.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-17T06:37:50.2469640Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-07-17T06:37:50.2470370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir/named_value.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-07-17T06:37:50.2471470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir/irparser.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-07-17T06:37:50.2472540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir/ir.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-07-17T06:37:50.2474050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir/graph_node_list.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-07-17T06:37:50.2475170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir/ir_views.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-07-17T06:37:50.2476370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir/alias_analysis.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-07-17T06:37:50.2477610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir/attributes.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-07-17T06:37:50.2478690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir/type_hashing.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-07-17T06:37:50.2479710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir/constants.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-07-17T06:37:50.2480820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir/subgraph_matcher.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-07-17T06:37:50.2481940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir/scope.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-07-17T06:37:50.2483100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir/graph_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-07-17T06:37:50.2488500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir/node_hashing.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-07-17T06:37:50.2488890Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/cuda 2025-07-17T06:37:50.2489300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/cuda/cuda.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/cuda 2025-07-17T06:37:50.2489500Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-07-17T06:37:50.2489950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/import_read.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-07-17T06:37:50.2490420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/export_bytecode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-07-17T06:37:50.2490870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/import_source.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-07-17T06:37:50.2491610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/export.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-07-17T06:37:50.2493020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/import_export_helpers.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-07-17T06:37:50.2494050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/type_name_uniquer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-07-17T06:37:50.2495150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/pickler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-07-17T06:37:50.2496280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/storage_context.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-07-17T06:37:50.2497430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/python_print.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-07-17T06:37:50.2498570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/callstack_debug_info_serialization.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-07-17T06:37:50.2499680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/import_export_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-07-17T06:37:50.2500810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/flatbuffer_serializer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-07-17T06:37:50.2501880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/pickler_helper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-07-17T06:37:50.2503020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/pickle.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-07-17T06:37:50.2504150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/import_export_constants.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-07-17T06:37:50.2505310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/source_range_serialization_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-07-17T06:37:50.2506340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/import.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-07-17T06:37:50.2507580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/flatbuffer_serializer_jit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-07-17T06:37:50.2508620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/unpickler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-07-17T06:37:50.2509820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/source_range_serialization.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-07-17T06:37:50.2510930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/mobile_bytecode_generated.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-07-17T06:37:50.2512630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/onnx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-07-17T06:37:50.2513880Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends 2025-07-17T06:37:50.2514660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/backend_debug_handler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends 2025-07-17T06:37:50.2515880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/backend_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends 2025-07-17T06:37:50.2516940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/backend.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends 2025-07-17T06:37:50.2518050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/backend_exception.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends 2025-07-17T06:37:50.2519340Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/coreml 2025-07-17T06:37:50.2520260Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/coreml/cpp 2025-07-17T06:37:50.2521030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/cpp/context.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/coreml/cpp 2025-07-17T06:37:50.2522400Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/coreml/objc 2025-07-17T06:37:50.2523190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLCompiler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/coreml/objc 2025-07-17T06:37:50.2524300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLTensorSpec.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/coreml/objc 2025-07-17T06:37:50.2529570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLFeatureProvider.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/coreml/objc 2025-07-17T06:37:50.2530700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLModelWrapper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/coreml/objc 2025-07-17T06:37:50.2531810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLExecutor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/coreml/objc 2025-07-17T06:37:50.2532850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/backend_debug_info.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends 2025-07-17T06:37:50.2534260Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/xnnpack 2025-07-17T06:37:50.2535180Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/xnnpack/serialization 2025-07-17T06:37:50.2536000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack/serialization/serializer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/xnnpack/serialization 2025-07-17T06:37:50.2537160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack/xnnpack_graph_builder.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/xnnpack 2025-07-17T06:37:50.2538330Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/xnnpack/executor 2025-07-17T06:37:50.2539100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack/executor/xnn_executor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/xnnpack/executor 2025-07-17T06:37:50.2540360Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/xnnpack/compiler 2025-07-17T06:37:50.2541160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack/compiler/xnn_compiler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/xnnpack/compiler 2025-07-17T06:37:50.2542320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/backend_resolver.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends 2025-07-17T06:37:50.2543580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/backend_preprocess.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends 2025-07-17T06:37:50.2544680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/backend_detail.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends 2025-07-17T06:37:50.2545830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/backend_init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends 2025-07-17T06:37:50.2547180Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:50.2548100Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/interpreter 2025-07-17T06:37:50.2548860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/interpreter/frame.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/interpreter 2025-07-17T06:37:50.2550060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/interpreter/preprocess_graph.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/interpreter 2025-07-17T06:37:50.2551140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/interpreter/can_emit_inline.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/interpreter 2025-07-17T06:37:50.2552310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/interpreter/code_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/interpreter 2025-07-17T06:37:50.2553620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/calculate_necessary_args.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:50.2554740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/symbolic_shape_registry.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:50.2555900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/slice_indices_adjust.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:50.2556960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/operator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:50.2558660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/script_profile.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:50.2559560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/interpreter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:50.2560730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/register_ops_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:50.2562060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/jit_exception.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:50.2563330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/exception_message.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:50.2564400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/argument_spec.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:50.2565730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/shape_function_registry.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:50.2566820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/logging.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:50.2567910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/jit_trace.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:50.2569200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/profiling_graph_executor_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:50.2570410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/symbolic_shape_registry_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:50.2571480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/serialized_shape_function_registry.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:50.2572700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/custom_operator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:50.2573890Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/static 2025-07-17T06:37:50.2574690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static/te_wrapper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/static 2025-07-17T06:37:50.2576010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static/processed_node_wrapper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/static 2025-07-17T06:37:50.2577240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static/static_method.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/static 2025-07-17T06:37:50.2578300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static/memory_planner.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/static 2025-07-17T06:37:50.2579640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static/fusion.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/static 2025-07-17T06:37:50.2580790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static/passes.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/static 2025-07-17T06:37:50.2581850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static/ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/static 2025-07-17T06:37:50.2583080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static/impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/static 2025-07-17T06:37:50.2584430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static/init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/static 2025-07-17T06:37:50.2585610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static/ProcessedNodeInputs.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/static 2025-07-17T06:37:50.2587030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/vararg_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:50.2587880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/graph_iterator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:50.2588990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/symbolic_script.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:50.2590290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/variable_tensor_list.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:50.2591470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/decomposition_registry.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:50.2592700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/decomposition_registry_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:50.2593780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/autodiff.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:50.2594910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/print_handler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:50.2596040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/profiling_record.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:50.2597680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/simple_graph_executor_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:50.2598530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/graph_executor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:50.2599640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/operator_options.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:50.2600870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/instruction.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:50.2602020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/graph_executor_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-17T06:37:50.2604080Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2604590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/remove_expands.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2605760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/restore_mutation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2606990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/peephole_list_idioms.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2608150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/subgraph_rewrite.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2609350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/fuse_relu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2610530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/guard_elimination.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2611710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/peephole_alias_sensitive.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2612860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/freeze_module.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2613990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/clear_undefinedness.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2615160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/dtype_analysis.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2616330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/peephole.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2617430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/remove_dropout.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2618640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2619820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/value_refinement_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2620890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/metal_rewrite.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2622030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/liveness.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2623500Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-07-17T06:37:50.2624310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/eval_peephole.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-07-17T06:37:50.2625460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/function_substitution.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-07-17T06:37:50.2626780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/helper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-07-17T06:37:50.2627680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/unpack_quantized_weights.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-07-17T06:37:50.2628860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/preprocess_for_onnx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-07-17T06:37:50.2629950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/scalar_type_analysis.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-07-17T06:37:50.2631440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/shape_type_inference.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-07-17T06:37:50.2632190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/onnx_log.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-07-17T06:37:50.2633270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/peephole.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-07-17T06:37:50.2634410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/eliminate_unused_items.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-07-17T06:37:50.2635510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/constant_fold.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-07-17T06:37:50.2636660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/constant_map.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-07-17T06:37:50.2638080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/function_extraction.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-07-17T06:37:50.2639090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/deduplicate_initializers.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-07-17T06:37:50.2640160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/fixup_onnx_controlflow.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-07-17T06:37:50.2641500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/cast_all_constant_to_floating.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-07-17T06:37:50.2642620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/naming.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-07-17T06:37:50.2643820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/list_model_parameters.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-07-17T06:37:50.2645160Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion 2025-07-17T06:37:50.2645960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/common.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion 2025-07-17T06:37:50.2647210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_conversion.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion 2025-07-17T06:37:50.2648300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/autograd_function_process.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion 2025-07-17T06:37:50.2649500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_encapsulation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion 2025-07-17T06:37:50.2650680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/remove_inplace_ops_for_onnx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-07-17T06:37:50.2651950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/prepare_division_for_onnx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-07-17T06:37:50.2653120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/remove_mutation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2654530Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/dbr_quantization 2025-07-17T06:37:50.2655360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/dbr_quantization/remove_redundant_aliases.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/dbr_quantization 2025-07-17T06:37:50.2656500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onednn_graph_fuser.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2657810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/common_subexpression_elimination.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2658980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/batch_mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2660150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/frozen_concat_linear.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2661330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/constant_pooling.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2662430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/mobile_optimizer_type.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2663650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/peephole_dict_idioms.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2664840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2665990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/fuse_linear.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2667120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/annotate_warns.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2668270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/specialize_autogradzero.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2669530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/frozen_linear_folding.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2670710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/prepack_folding.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2671730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/frozen_conv_folding.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2672840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/constant_propagation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2674030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/replacement_of_old_operators.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2675090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/insert_guards.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2676520Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/utils 2025-07-17T06:37:50.2677330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/utils/optimization_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/utils 2025-07-17T06:37:50.2678410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/utils/memory_dag.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/utils 2025-07-17T06:37:50.2679540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/utils/subgraph_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/utils 2025-07-17T06:37:50.2680650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/utils/op_registry.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/utils 2025-07-17T06:37:50.2681830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/utils/check_alias_annotation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/utils 2025-07-17T06:37:50.2682970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/variadic_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2684090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/refine_tuple_types.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2685240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/inliner.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2686410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/lower_grad_of.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2687850Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2025-07-17T06:37:50.2688920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization/helper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2025-07-17T06:37:50.2690660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization/quantization_type.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2025-07-17T06:37:50.2691900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization/insert_observers.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2025-07-17T06:37:50.2693150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization/dedup_module_uses.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2025-07-17T06:37:50.2694370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization/quantization_patterns.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2025-07-17T06:37:50.2696160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization/finalize.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2025-07-17T06:37:50.2697240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization/insert_quant_dequant.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2025-07-17T06:37:50.2698390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization/fusion_passes.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2025-07-17T06:37:50.2699560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization/register_packed_params.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2025-07-17T06:37:50.2700630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/normalize_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2701820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/device_type_analysis.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2702980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/vulkan_rewrite.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2704160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/erase_number_types.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2705350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/integer_value_refinement.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2706550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/fold_linear_bn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2707680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/graph_rewrite_helper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2708860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/graph_fuser.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2709900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/fold_conv_bn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2711160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/remove_redundant_profiles.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2712280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/inline_forked_closures.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2713390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/tensorexpr_fuser.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2714520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/symbolic_shape_analysis.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2715740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2716790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/add_if_then_else.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2717950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/decompose_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2719080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/peephole_non_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2720290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/remove_inplace_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2721430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/inline_fork_wait.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2722670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/check_strict_fusion.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2723680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/concat_opt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2724910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/create_autodiff_subgraphs.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2726110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/eliminate_no_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2727200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/requires_grad_analysis.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2728270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/dead_code_elimination.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2729430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/clear_profiling.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2730640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/create_functional_graphs.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2731740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/bailout_graph.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2732830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/lower_tuples.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2734120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/frozen_graph_optimizations.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2735280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/frozen_ops_to_mkldnn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2736370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/canonicalize.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2737490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/symbolic_shape_cache.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2738590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/hoist_conv_packed_params.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2739770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/loop_unrolling.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2740920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/shape_analysis.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2742020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/fixup_trace_scope_blocks.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2743260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/remove_exceptions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2744430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/inline_autodiff_subgraphs.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2745550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/inplace_check.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2746710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/frozen_linear_transpose.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2748030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/mkldnn_rewrite.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2748920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/pass_manager.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2750090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2751220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/xnnpack_rewrite.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2752520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/lift_closures.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2753570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/autocast.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2754890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2755890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/lower_graph.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-17T06:37:50.2757310Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen 2025-07-17T06:37:50.2758180Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/cuda 2025-07-17T06:37:50.2758970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/cuda/interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/cuda 2025-07-17T06:37:50.2760390Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/onednn 2025-07-17T06:37:50.2761190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn/LlgaTensorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/onednn 2025-07-17T06:37:50.2762410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn/operator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/onednn 2025-07-17T06:37:50.2763540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn/defer_size_check.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/onednn 2025-07-17T06:37:50.2764660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn/layout_propagation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/onednn 2025-07-17T06:37:50.2765750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn/interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/onednn 2025-07-17T06:37:50.2766720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn/graph_fuser.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/onednn 2025-07-17T06:37:50.2767860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn/kernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/onednn 2025-07-17T06:37:50.2768950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn/guard_shape.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/onednn 2025-07-17T06:37:50.2770090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn/prepare_binary.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/onednn 2025-07-17T06:37:50.2771210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn/graph_helper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/onednn 2025-07-17T06:37:50.2772360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn/decompose_silu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/onednn 2025-07-17T06:37:50.2773670Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser 2025-07-17T06:37:50.2774500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/tensor_info.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser 2025-07-17T06:37:50.2775610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/arg_spec.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser 2025-07-17T06:37:50.2776730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/compiler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser 2025-07-17T06:37:50.2777810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/fallback.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser 2025-07-17T06:37:50.2779010Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser/cpu 2025-07-17T06:37:50.2779810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/cpu/temp_file.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser/cpu 2025-07-17T06:37:50.2780990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/cpu/fused_kernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser/cpu 2025-07-17T06:37:50.2782110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/cpu/resource_strings.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser/cpu 2025-07-17T06:37:50.2783340Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser/cuda 2025-07-17T06:37:50.2784170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/cuda/fused_kernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser/cuda 2025-07-17T06:37:50.2785350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/cuda/resource_strings.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser/cuda 2025-07-17T06:37:50.2786640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/partition_desc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser 2025-07-17T06:37:50.2787750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/fused_kernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser 2025-07-17T06:37:50.2788890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/kernel_spec.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser 2025-07-17T06:37:50.2790090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser 2025-07-17T06:37:50.2791230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/kernel_cache.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser 2025-07-17T06:37:50.2792420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/codegen.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser 2025-07-17T06:37:50.2793540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/executor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser 2025-07-17T06:37:50.2794910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/tensor_desc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser 2025-07-17T06:37:50.2795800Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/testing 2025-07-17T06:37:50.2796570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/testing/catch_utils.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/testing 2025-07-17T06:37:50.2797700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/testing/file_check.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/testing 2025-07-17T06:37:50.2798770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/testing/hooks_for_testing.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/testing 2025-07-17T06:37:50.2799840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/jit_log.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit 2025-07-17T06:37:50.2801390Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-07-17T06:37:50.2802180Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/compatibility 2025-07-17T06:37:50.2803020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/compatibility/backport.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/compatibility 2025-07-17T06:37:50.2804150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/compatibility/runtime_compatibility.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/compatibility 2025-07-17T06:37:50.2805250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/compatibility/backport_manager.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/compatibility 2025-07-17T06:37:50.2806400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/compatibility/model_compatibility.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/compatibility 2025-07-17T06:37:50.2807650Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/model_tracer 2025-07-17T06:37:50.2808630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer/CustomClassTracer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/model_tracer 2025-07-17T06:37:50.2809600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer/TensorUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/model_tracer 2025-07-17T06:37:50.2810720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer/MobileModelRunner.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/model_tracer 2025-07-17T06:37:50.2811870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer/OperatorCallTracer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/model_tracer 2025-07-17T06:37:50.2812980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer/TracerRunner.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/model_tracer 2025-07-17T06:37:50.2814060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer/BuildFeatureTracer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/model_tracer 2025-07-17T06:37:50.2815180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer/KernelDTypeTracer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/model_tracer 2025-07-17T06:37:50.2816320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/promoted_prim_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-07-17T06:37:50.2817700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/parse_operators.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-07-17T06:37:50.2818550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/observer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-07-17T06:37:50.2819610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/upgrader_mobile.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-07-17T06:37:50.2820830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/flatbuffer_loader.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-07-17T06:37:50.2822000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/quantization.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-07-17T06:37:50.2823160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/profiler_edge.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-07-17T06:37:50.2824220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/code.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-07-17T06:37:50.2825470Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/nnc 2025-07-17T06:37:50.2826250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/nnc/context.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/nnc 2025-07-17T06:37:50.2827410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/nnc/registry.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/nnc 2025-07-17T06:37:50.2828540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/nnc/aot_compiler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/nnc 2025-07-17T06:37:50.2829630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/interpreter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-07-17T06:37:50.2830770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/frame.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-07-17T06:37:50.2831830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/method.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-07-17T06:37:50.2832970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/debug_info.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-07-17T06:37:50.2834090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/register_ops_common_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-07-17T06:37:50.2835240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/prim_ops_registery.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-07-17T06:37:50.2836330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/parse_bytecode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-07-17T06:37:50.2837600Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/train 2025-07-17T06:37:50.2838360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/train/sequential.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/train 2025-07-17T06:37:50.2839490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/train/export_data.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/train 2025-07-17T06:37:50.2841030Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/train/optim 2025-07-17T06:37:50.2841540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/train/optim/sgd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/train/optim 2025-07-17T06:37:50.2842690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/train/random.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/train 2025-07-17T06:37:50.2843760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/import_data.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-07-17T06:37:50.2844900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/import_export_common.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-07-17T06:37:50.2845980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/type_parser.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-07-17T06:37:50.2847050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/import.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-07-17T06:37:50.2848240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/module.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-07-17T06:37:50.2849310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/function.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-07-17T06:37:50.2850390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/file_format.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-07-17T06:37:50.2851700Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/operator_upgraders 2025-07-17T06:37:50.2852520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/operator_upgraders/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/operator_upgraders 2025-07-17T06:37:50.2853640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/operator_upgraders/version_map.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/operator_upgraders 2025-07-17T06:37:50.2854690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/operator_upgraders/upgraders.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/operator_upgraders 2025-07-17T06:37:50.2855850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/operator_upgraders/upgraders_entry.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/operator_upgraders 2025-07-17T06:37:50.2857130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/resource_guard.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit 2025-07-17T06:37:50.2858480Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/api 2025-07-17T06:37:50.2859190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/api/function_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/api 2025-07-17T06:37:50.2860310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/api/method.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/api 2025-07-17T06:37:50.2861440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/api/compilation_unit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/api 2025-07-17T06:37:50.2862710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/api/object.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/api 2025-07-17T06:37:50.2863970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/api/module.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/api 2025-07-17T06:37:50.2865140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/Storage.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-17T06:37:50.2866370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/itt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-17T06:37:50.2867700Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy 2025-07-17T06:37:50.2868600Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/generated 2025-07-17T06:37:50.2869410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/generated/LazyNativeFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/generated 2025-07-17T06:37:50.2870770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/generated/LazyNonNativeIr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/generated 2025-07-17T06:37:50.2871840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/generated/LazyIr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/generated 2025-07-17T06:37:50.2875550Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:50.2876100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/debug_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:50.2877400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/tensor_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:50.2878570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/config.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:50.2879890Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core/internal_ops 2025-07-17T06:37:50.2880720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/internal_ops/ltc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core/internal_ops 2025-07-17T06:37:50.2881870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/multi_wait.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:50.2883080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/ir.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:50.2884390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/permutation_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:50.2885540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/lazy_graph_executor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:50.2886830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/cache.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:50.2888070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/tensor_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:50.2889160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/shape.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:50.2890320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/thread_pool.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:50.2891460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/unique.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:50.2892590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/shape_inference.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:50.2893940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:50.2895210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/ir_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:50.2896500Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core/ops 2025-07-17T06:37:50.2897200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/ops/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core/ops 2025-07-17T06:37:50.2898460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/ops/arithmetic_ir_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core/ops 2025-07-17T06:37:50.2899520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/metrics.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:50.2900880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/ir_dump_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:50.2902020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/dynamic_ir.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:50.2903340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/ir_builder.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:50.2904240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/helpers.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:50.2905360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/trie.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:50.2906530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:50.2907880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/hash.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:50.2909240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/ir_metadata.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-17T06:37:50.2910260Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/python 2025-07-17T06:37:50.2911070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/python/python_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/python 2025-07-17T06:37:50.2912290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/python/init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/python 2025-07-17T06:37:50.2913530Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2025-07-17T06:37:50.2914370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/ts_lowering_context.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2025-07-17T06:37:50.2915540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/ts_autograd_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2025-07-17T06:37:50.2916670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/config.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2025-07-17T06:37:50.2917840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/ts_backend_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2025-07-17T06:37:50.2918940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/ts_eager_fallback.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2025-07-17T06:37:50.2920060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/ts_node_lowering.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2025-07-17T06:37:50.2921370Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend/ops 2025-07-17T06:37:50.2922150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/ops/generic.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend/ops 2025-07-17T06:37:50.2923380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/ops/to_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend/ops 2025-07-17T06:37:50.2924520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/ops/device_data.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend/ops 2025-07-17T06:37:50.2925560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/dynamic_ir.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2025-07-17T06:37:50.2926800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/ts_node.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2025-07-17T06:37:50.2927960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/ir_builder.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2025-07-17T06:37:50.2929330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/tensor_aten_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2025-07-17T06:37:50.2930470Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/backend 2025-07-17T06:37:50.2931310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/backend/backend_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/backend 2025-07-17T06:37:50.2932790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/backend/backend_data.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/backend 2025-07-17T06:37:50.2933530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/backend/lowering_context.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/backend 2025-07-17T06:37:50.2934640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/backend/backend_device.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/backend 2025-07-17T06:37:50.2935830Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/mtia 2025-07-17T06:37:50.2936730Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/mtia/profiler 2025-07-17T06:37:50.2937430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/mtia/profiler/MTIAMemoryProfiler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/mtia/profiler 2025-07-17T06:37:50.2938710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/mtia/Module.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/mtia 2025-07-17T06:37:50.2939760Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api 2025-07-17T06:37:50.2940550Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include 2025-07-17T06:37:50.2941550Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:50.2942430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/fft.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:50.2943790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nested.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:50.2944940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:50.2946140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/version.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:50.2947480Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn 2025-07-17T06:37:50.2948510Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-17T06:37:50.2949390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/normalization.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-17T06:37:50.2950600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/rnn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-17T06:37:50.2952020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/distance.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-17T06:37:50.2953120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/batchnorm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-17T06:37:50.2954310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/linear.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-17T06:37:50.2955450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/instancenorm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-17T06:37:50.2956600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/vision.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-17T06:37:50.2957730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/transformercoder.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-17T06:37:50.2958890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/dropout.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-17T06:37:50.2960150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/upsampling.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-17T06:37:50.2961290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/embedding.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-17T06:37:50.2962700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/fold.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-17T06:37:50.2963840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/activation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-17T06:37:50.2965390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/transformer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-17T06:37:50.2966460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/pooling.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-17T06:37:50.2967850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/transformerlayer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-17T06:37:50.2968920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/adaptive.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-17T06:37:50.2970160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/conv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-17T06:37:50.2971520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/padding.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-17T06:37:50.2972650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/pixelshuffle.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-17T06:37:50.2973790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-17T06:37:50.2975170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn 2025-07-17T06:37:50.2976520Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/parallel 2025-07-17T06:37:50.2977340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/parallel/data_parallel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/parallel 2025-07-17T06:37:50.2978640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/pimpl-inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn 2025-07-17T06:37:50.2979820Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/utils 2025-07-17T06:37:50.2980570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/utils/rnn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/utils 2025-07-17T06:37:50.2981910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/utils/clip_grad.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/utils 2025-07-17T06:37:50.2983170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/utils/convert_parameters.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/utils 2025-07-17T06:37:50.2984250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn 2025-07-17T06:37:50.2985540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn 2025-07-17T06:37:50.2986590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn 2025-07-17T06:37:50.2987780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/pimpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn 2025-07-17T06:37:50.2988890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/module.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn 2025-07-17T06:37:50.2990440Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:50.2991280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/normalization.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:50.2992450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:50.2993630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/rnn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:50.2994990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/distance.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:50.2996220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/batchnorm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:50.2997540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/linear.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:50.2998800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/instancenorm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:50.3000090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/transformercoder.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:50.3001180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:50.3002490Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-07-17T06:37:50.3003350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container/named_any.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-07-17T06:37:50.3004560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container/any_value.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-07-17T06:37:50.3005780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container/modulelist.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-07-17T06:37:50.3007320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container/moduledict.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-07-17T06:37:50.3008640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container/sequential.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-07-17T06:37:50.3009830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container/functional.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-07-17T06:37:50.3011060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterlist.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-07-17T06:37:50.3012280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterdict.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-07-17T06:37:50.3013470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container/any.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-07-17T06:37:50.3014790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container/any_module_holder.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-07-17T06:37:50.3015950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/dropout.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:50.3017220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/common.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:50.3018400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/upsampling.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:50.3019550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/embedding.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:50.3020840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/fold.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:50.3021900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/activation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:50.3023380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/transformer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:50.3024600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/pooling.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:50.3026100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/transformerlayer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:50.3027280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/adaptive.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:50.3028410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/conv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:50.3029740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/padding.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:50.3031030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/pixelshuffle.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:50.3032180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-17T06:37:50.3033470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn 2025-07-17T06:37:50.3034610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/cloneable.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn 2025-07-17T06:37:50.3036030Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-17T06:37:50.3036880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/normalization.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-17T06:37:50.3038110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/distance.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-17T06:37:50.3039270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/batchnorm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-17T06:37:50.3040420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/linear.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-17T06:37:50.3041610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/instancenorm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-17T06:37:50.3043330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/vision.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-17T06:37:50.3044750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/dropout.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-17T06:37:50.3046020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/upsampling.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-17T06:37:50.3047520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/embedding.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-17T06:37:50.3048690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/fold.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-17T06:37:50.3049880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/activation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-17T06:37:50.3051370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/pooling.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-17T06:37:50.3052810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/conv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-17T06:37:50.3054030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/padding.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-17T06:37:50.3055170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/pixelshuffle.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-17T06:37:50.3056300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-17T06:37:50.3057910Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/python 2025-07-17T06:37:50.3058700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/python/init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/python 2025-07-17T06:37:50.3059900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/enum.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:50.3061060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/types.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:50.3062200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/all.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:50.3063330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:50.3064480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/arg.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:50.3065650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/xpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:50.3066990Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim 2025-07-17T06:37:50.3067720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/rmsprop.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim 2025-07-17T06:37:50.3068840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/lbfgs.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim 2025-07-17T06:37:50.3070140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/optimizer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim 2025-07-17T06:37:50.3071360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/adagrad.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim 2025-07-17T06:37:50.3072590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/sgd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim 2025-07-17T06:37:50.3073620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/serialize.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim 2025-07-17T06:37:50.3075000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/adamw.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim 2025-07-17T06:37:50.3076300Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim/schedulers 2025-07-17T06:37:50.3077210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/schedulers/reduce_on_plateau_scheduler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim/schedulers 2025-07-17T06:37:50.3078430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/schedulers/lr_scheduler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim/schedulers 2025-07-17T06:37:50.3079620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/schedulers/step_lr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim/schedulers 2025-07-17T06:37:50.3080710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/adam.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim 2025-07-17T06:37:50.3082060Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/serialize 2025-07-17T06:37:50.3082860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/serialize/archive.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/serialize 2025-07-17T06:37:50.3084170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/serialize/input-archive.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/serialize 2025-07-17T06:37:50.3085260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/serialize/output-archive.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/serialize 2025-07-17T06:37:50.3086470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/serialize/tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/serialize 2025-07-17T06:37:50.3087550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/torch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:50.3088740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:50.3089820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/jit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:50.3091140Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/detail 2025-07-17T06:37:50.3091980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/detail/static.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/detail 2025-07-17T06:37:50.3093200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/detail/TensorDataContainer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/detail 2025-07-17T06:37:50.3094460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:50.3099420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/imethod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:50.3099900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/ordered_dict.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:50.3100370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/cuda.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:50.3100830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/autograd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:50.3101260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/special.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:50.3101700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/sparse.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:50.3102720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/mps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:50.3103900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/python.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:50.3105340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/serialize.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:50.3106810Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data 2025-07-17T06:37:50.3107610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/example.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data 2025-07-17T06:37:50.3108750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/dataloader_options.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data 2025-07-17T06:37:50.3110080Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/datasets 2025-07-17T06:37:50.3110860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets/mnist.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/datasets 2025-07-17T06:37:50.3112010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets/shared.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/datasets 2025-07-17T06:37:50.3113120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets/map.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/datasets 2025-07-17T06:37:50.3114310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets/chunk.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/datasets 2025-07-17T06:37:50.3115680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets/stateful.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/datasets 2025-07-17T06:37:50.3116860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets/tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/datasets 2025-07-17T06:37:50.3117960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets/base.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/datasets 2025-07-17T06:37:50.3119200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/worker_exception.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data 2025-07-17T06:37:50.3120300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/dataloader.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data 2025-07-17T06:37:50.3121480Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/detail 2025-07-17T06:37:50.3122390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/detail/data_shuttle.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/detail 2025-07-17T06:37:50.3123550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/detail/sequencers.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/detail 2025-07-17T06:37:50.3124780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/detail/queue.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/detail 2025-07-17T06:37:50.3125870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data 2025-07-17T06:37:50.3127900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/transforms 2025-07-17T06:37:50.3128520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/transforms/lambda.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/transforms 2025-07-17T06:37:50.3129580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/transforms/stack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/transforms 2025-07-17T06:37:50.3130710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/transforms/collate.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/transforms 2025-07-17T06:37:50.3131850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/transforms/tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/transforms 2025-07-17T06:37:50.3132970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/transforms/base.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/transforms 2025-07-17T06:37:50.3134270Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/samplers 2025-07-17T06:37:50.3135070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers/sequential.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/samplers 2025-07-17T06:37:50.3136230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers/custom_batch_request.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/samplers 2025-07-17T06:37:50.3137420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers/stream.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/samplers 2025-07-17T06:37:50.3138500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers/distributed.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/samplers 2025-07-17T06:37:50.3139690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers/serialize.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/samplers 2025-07-17T06:37:50.3140920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers/random.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/samplers 2025-07-17T06:37:50.3142090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers/base.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/samplers 2025-07-17T06:37:50.3143290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data 2025-07-17T06:37:50.3144380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/transforms.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data 2025-07-17T06:37:50.3145540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/iterator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data 2025-07-17T06:37:50.3146900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/dataloader 2025-07-17T06:37:50.3147750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/dataloader/stateless.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/dataloader 2025-07-17T06:37:50.3148880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/dataloader/stateful.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/dataloader 2025-07-17T06:37:50.3150030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/dataloader/base.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/dataloader 2025-07-17T06:37:50.3151520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/expanding_array.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-17T06:37:50.3152760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/MemoryFormat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-17T06:37:50.3153770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/StorageSharing.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-17T06:37:50.3155230Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler 2025-07-17T06:37:50.3156050Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/stubs 2025-07-17T06:37:50.3156810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/stubs/base.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/stubs 2025-07-17T06:37:50.3158210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/combined_traceback.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler 2025-07-17T06:37:50.3159410Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/standalone 2025-07-17T06:37:50.3160020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/standalone/privateuse1_observer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/standalone 2025-07-17T06:37:50.3161200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/standalone/nvtx_observer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/standalone 2025-07-17T06:37:50.3162320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/standalone/itt_observer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/standalone 2025-07-17T06:37:50.3163640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/standalone/execution_trace_observer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/standalone 2025-07-17T06:37:50.3164930Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/python 2025-07-17T06:37:50.3165590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/python/pybind.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/python 2025-07-17T06:37:50.3166830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/python/combined_traceback.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/python 2025-07-17T06:37:50.3167940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/python/init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/python 2025-07-17T06:37:50.3169050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/events.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler 2025-07-17T06:37:50.3170350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/kineto_shim.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler 2025-07-17T06:37:50.3171490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/api.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler 2025-07-17T06:37:50.3172660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/kineto_client_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler 2025-07-17T06:37:50.3173710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler 2025-07-17T06:37:50.3175250Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/orchestration 2025-07-17T06:37:50.3175930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/orchestration/vulkan.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/orchestration 2025-07-17T06:37:50.3177020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/orchestration/observer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/orchestration 2025-07-17T06:37:50.3178260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/orchestration/python_tracer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/orchestration 2025-07-17T06:37:50.3179450Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-07-17T06:37:50.3180160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/unwinder.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-07-17T06:37:50.3181340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/dwarf_enums.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-07-17T06:37:50.3182510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/unwind.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-07-17T06:37:50.3183610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/sections.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-07-17T06:37:50.3184720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/unwind_error.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-07-17T06:37:50.3185830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/eh_frame_hdr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-07-17T06:37:50.3187080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/debug_info.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-07-17T06:37:50.3188510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/action.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-07-17T06:37:50.3189630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/mem_file.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-07-17T06:37:50.3190880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/fast_symbolizer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-07-17T06:37:50.3191930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/fde.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-07-17T06:37:50.3193250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/communicate.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-07-17T06:37:50.3194390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/lexer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-07-17T06:37:50.3195530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/line_number_program.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-07-17T06:37:50.3197010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/dwarf_symbolize_enums.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-07-17T06:37:50.3198070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/range_table.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-07-17T06:37:50.3199240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/containers.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler 2025-07-17T06:37:50.3200330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/collection.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler 2025-07-17T06:37:50.3201740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/perf.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler 2025-07-17T06:37:50.3202920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/data_flow.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler 2025-07-17T06:37:50.3204060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/perf-inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler 2025-07-17T06:37:50.3205380Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/tensor 2025-07-17T06:37:50.3206210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/tensor/python_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/tensor 2025-07-17T06:37:50.3207980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/PyInterpreter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-17T06:37:50.3209460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/Dtype.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-17T06:37:50.3210990Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/export 2025-07-17T06:37:50.3211850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/export/pt2_archive_constants.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/export 2025-07-17T06:37:50.3213040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/export/pybind.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/export 2025-07-17T06:37:50.3214290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/export/example_upgraders.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/export 2025-07-17T06:37:50.3215430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/export/upgrader.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/export 2025-07-17T06:37:50.3216560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/Module.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-17T06:37:50.3217710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/python_dimname.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-17T06:37:50.3218870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/CudaIPCTypes.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-17T06:37:50.3220230Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/functorch 2025-07-17T06:37:50.3220960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/functorch/init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/functorch 2025-07-17T06:37:50.3222230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/Generator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-17T06:37:50.3223550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/TypeInfo.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-17T06:37:50.3224530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/StorageMethods.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-17T06:37:50.3225710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/script.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch 2025-07-17T06:37:50.3226990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/library.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch 2025-07-17T06:37:50.3228600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/custom_class_detail.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch 2025-07-17T06:37:50.3229750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/custom_class.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch 2025-07-17T06:37:50.3231090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/extension.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch 2025-07-17T06:37:50.3232280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/nnpack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-07-17T06:37:50.3234200Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-07-17T06:37:50.3234820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/ClientInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-07-17T06:37:50.3236020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/GenericTraceActivity.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-07-17T06:37:50.3237090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/IActivityProfiler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-07-17T06:37:50.3238260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/Config.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-07-17T06:37:50.3239640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/TraceSpan.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-07-17T06:37:50.3240760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/LoggingAPI.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-07-17T06:37:50.3242000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/ITraceActivity.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-07-17T06:37:50.3243240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/ActivityProfilerInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-07-17T06:37:50.3244420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/ActivityTraceInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-07-17T06:37:50.3245640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/output_base.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-07-17T06:37:50.3246730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/ThreadUtil.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-07-17T06:37:50.3247850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/ActivityType.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-07-17T06:37:50.3249030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/libkineto.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-07-17T06:37:50.3250110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/time_since_epoch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-07-17T06:37:50.3251320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/ILoggerObserver.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-07-17T06:37:50.3252490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/AbstractConfig.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-07-17T06:37:50.3253540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/xnnpack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-07-17T06:37:50.3260540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/libshm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-07-17T06:37:50.3261540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fp16.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-07-17T06:37:50.3262900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/qnnpack_func.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-07-17T06:37:50.3264720Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai 2025-07-17T06:37:50.3265030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/kai_common.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai 2025-07-17T06:37:50.3266370Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels 2025-07-17T06:37:50.3267360Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul 2025-07-17T06:37:50.3268380Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-17T06:37:50.3269440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x4_qsi4cxp8x4_8x8x32_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-17T06:37:50.3270870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp8x8_8x8x32_neon_i8mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-17T06:37:50.3272150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1vlx8_qsi4cxp4vlx8_1vlx4vl_sme2_mopa.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-17T06:37:50.3273330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x8_qsi4cxp4x8_1x4x32_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-17T06:37:50.3274600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp4x8_4x4x32_neon_i8mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-17T06:37:50.3275830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi4cxp4vlx4_1x4vl_sme2_sdot.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-17T06:37:50.3277100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp_qsi4cxp_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-17T06:37:50.3278330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi4cxp4x4_1x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-17T06:37:50.3279650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp4x8_8x4x32_neon_i8mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-17T06:37:50.3280870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x8_qsi4cxp8x8_1x8x32_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-17T06:37:50.3282140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp4x4_16x4x32_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-17T06:37:50.3283360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp8x8_4x8x32_neon_i8mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-17T06:37:50.3284680Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp 2025-07-17T06:37:50.3285600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp1x4_qsi4cxp4x4_1x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp 2025-07-17T06:37:50.3286950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp1x8_qsi4cxp4x8_1x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp 2025-07-17T06:37:50.3288150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp_qsi4cxp_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp 2025-07-17T06:37:50.3289430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp4x4_qsi4cxp4x4_16x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp 2025-07-17T06:37:50.3290630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp4x8_qsi4cxp4x8_16x4_neon_i8mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp 2025-07-17T06:37:50.3291990Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p 2025-07-17T06:37:50.3292830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p 2025-07-17T06:37:50.3294070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p2vlx2b_1x16vl_sme2_dot.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p 2025-07-17T06:37:50.3295370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p16x1biasf16_6x16x8_neon_mla.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p 2025-07-17T06:37:50.3296510Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p 2025-07-17T06:37:50.3297410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p 2025-07-17T06:37:50.3298710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p8x1biasf32_6x8x4_neon_mla.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p 2025-07-17T06:37:50.3299920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p2vlx1b_1x16vl_sme2_mla.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p 2025-07-17T06:37:50.3301240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p16vlx1b_1x16vl_sme2_mla.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p 2025-07-17T06:37:50.3302520Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-07-17T06:37:50.3303500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p4x4_qsi4c32p4x4_16x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-07-17T06:37:50.3304760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qsi4c32p4x8_16x4_neon_i8mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-07-17T06:37:50.3305860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p_qsi4c32p_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-07-17T06:37:50.3307170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1vlx4_qsi4c32p4vlx4_1vlx4vl_sme2_mopa.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-07-17T06:37:50.3308440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x4_qsi4c32p4vlx4_1x4vl_sme2_sdot.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-07-17T06:37:50.3309690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x4_qsi4c32p4x4_1x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-07-17T06:37:50.3311220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x8_qsi4c32p4x8_1x4x32_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-07-17T06:37:50.3312220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qsi4c32p4x8_8x4x32_neon_i8mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-07-17T06:37:50.3313490Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p 2025-07-17T06:37:50.3314410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p4x8_qai4c32p4x8_8x4_neon_i8mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p 2025-07-17T06:37:50.3315730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p1x8_qai4c32p4x8_1x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p 2025-07-17T06:37:50.3316870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p_qai4c32p_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p 2025-07-17T06:37:50.3318300Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:50.3319110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi8cxp_qsi8cx_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:50.3320360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_x32p2vlx1b_x32_x32_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:50.3321530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p16vlx1b_f32_f32_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:50.3322860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi4c32p_qsu4c32s1s0.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:50.3324010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qai8dxp_f32.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:50.3325260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32p_qsu4c32s1s0.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:50.3326420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p8x1biasf32_f32_f32_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:50.3327660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_x8p2vlx4_x8_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:50.3328870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32p_f32.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:50.3330010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x8p2vlx4_x8p_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:50.3331110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p2vlx2b_f32_x32_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:50.3332370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x32p2vlx1_x32p_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:50.3333550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32pscalef32_f32_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:50.3334860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi8cxp_qsi8cx_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:50.3336090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32pscalef32_f16_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:50.3337410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi8cxp2vlx4sb_qs8cx_f32_i32_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:50.3338570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4cxp_qs4cxs1s0.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:50.3339800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_bf16p8x4_f32_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:50.3341000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_f32p2vlx1_f32_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:50.3342180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_x16p2vlx2b_x16_x16_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:50.3343370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p2vlx1biasf32_f32_f32_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:50.3344440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_bf16p8x4_f16_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:50.3345610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi4cxp_qs4cxs1s0.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:50.3347000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4cxps1s0_qsu4cxs1s0_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:50.3348330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qai4c32p_qau4c32s0s1_f32_f32_f32_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:50.3349410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32p_f32_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:50.3350670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p12x4biasf32_f16_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:50.3351840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_qsi8cxp2vlx4sb_qs8cx_f32_i32_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:50.3353000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_bf16p2vlx2_f32_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:50.3354150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f16p16x1biasf16_f16_f16_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:50.3355370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_quant_pack_kxn_bf16p12x4biasf32_f32_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:50.3356480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_bf16p1x4_f32_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:50.3357580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_x16p2vlx2_x16_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:50.3358890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32ps1s0scalef16_qsu4c32s16s0_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:50.3360100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x16p2vlx2_x16p_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:50.3361200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_x16p2vlx2b_x16_x16_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:50.3362510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32pscalef16_qsu4c32s16s0.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:50.3363630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qai8dxp_f16_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:50.3364770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_x16p2vlx2b_x16_x16_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:50.3365940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_f32p2vlx1biasf32_f32_f32_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:50.3367310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p12x4biasf16_f16_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-17T06:37:50.3368770Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-17T06:37:50.3369720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp_qsi4c32p_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-17T06:37:50.3371030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p8x8_4x8x32_neon_i8mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-17T06:37:50.3372170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p4x8_16x4x32_neon_i8mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-17T06:37:50.3373540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x4_qsi4c32p4x4_1x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-17T06:37:50.3374790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x4_qsi4c32p4x4_16x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-17T06:37:50.3375990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p8x8_4x8_neon_i8mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-17T06:37:50.3377220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p4x8_8x4x32_neon_i8mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-17T06:37:50.3378540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x4_qsi4c32p8x4_4x8_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-17T06:37:50.3379800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p4x8_1x4x32_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-17T06:37:50.3381170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p8x8_1x8_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-17T06:37:50.3382390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x4_qsi4c32p8x4_1x8_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-17T06:37:50.3383620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p8x8_1x8x32_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-17T06:37:50.3384820Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp 2025-07-17T06:37:50.3385760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp/kai_matmul_clamp_qai8_qai8_qsi8cxp_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp 2025-07-17T06:37:50.3387000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp/kai_matmul_clamp_qai8_qai8_qsi8cxp2vlx4sb_1x16vl_sme2_dot.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp 2025-07-17T06:37:50.3388180Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp 2025-07-17T06:37:50.3389140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp/kai_imatmul_clamp_qai8_qai8p2vlx4_qsi8cxpsb2vlx4_2vlx2vl_sme2_mopa.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp 2025-07-17T06:37:50.3390510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp/kai_imatmul_clamp_qai8_qai8p_qsi8cxp_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp 2025-07-17T06:37:50.3391850Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-07-17T06:37:50.3392690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi8cxp4x8_16x4_neon_i8mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-07-17T06:37:50.3393950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp4x4_qsi8cxp4x4_16x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-07-17T06:37:50.3395170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi8cxp4x4_1x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-07-17T06:37:50.3396390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1x8_qsi8cxp4x8_1x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-07-17T06:37:50.3397590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp_qsi8cxp_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-07-17T06:37:50.3398950Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp 2025-07-17T06:37:50.3399870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp1x8_qsi8cxp4x8_1x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp 2025-07-17T06:37:50.3401060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp1x4_qsi8cxp4x4_1x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp 2025-07-17T06:37:50.3402220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp_qsi8cxp_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp 2025-07-17T06:37:50.3403410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp4x8_qsi8cxp4x8_16x4_neon_i8mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp 2025-07-17T06:37:50.3404590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp4x4_qsi8cxp4x4_16x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp 2025-07-17T06:37:50.3405820Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p 2025-07-17T06:37:50.3406920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p8x4_bf16p12x4b_8x12_neon_mmla.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p 2025-07-17T06:37:50.3408320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p_bf16p_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p 2025-07-17T06:37:50.3409620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p1x4_bf16p12x4b_1x36_neon_dot.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p 2025-07-17T06:37:50.3411080Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p 2025-07-17T06:37:50.3412030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p1x8_qai4c32p4x8_1x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p 2025-07-17T06:37:50.3413370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p_qai4c32p_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p 2025-07-17T06:37:50.3414600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qai4c32p4x8_8x4_neon_i8mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p 2025-07-17T06:37:50.3415790Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p 2025-07-17T06:37:50.3416720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p2vlx2_bf16p2vlx2_2vlx2vl_sme2_mopa.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p 2025-07-17T06:37:50.3417870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p_bf16p_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p 2025-07-17T06:37:50.3419090Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p 2025-07-17T06:37:50.3420050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p/kai_matmul_clamp_f32_f32p_f32p_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p 2025-07-17T06:37:50.3421310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p/kai_matmul_clamp_f32_f32p2vlx1_f32p2vlx1biasf32_sme2_mopa.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p 2025-07-17T06:37:50.3422680Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p 2025-07-17T06:37:50.3423550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p/kai_matmul_clamp_f16_f16p2vlx2_f16p2vlx2_2vlx2vl_sme2_mopa.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p 2025-07-17T06:37:50.3424710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p/kai_matmul_clamp_f16_f16p_f16p_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p 2025-07-17T06:37:50.3425950Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp 2025-07-17T06:37:50.3426860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp/kai_matmul_clamp_qai8_qai8p_qsi8cxpsb_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp 2025-07-17T06:37:50.3428120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp/kai_matmul_clamp_qai8_qai8p2vlx4_qsi8cxpsb2vlx4_2vlx2vl_sme2_mopa.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp 2025-07-17T06:37:50.3429180Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p 2025-07-17T06:37:50.3430060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p/kai_imatmul_clamp_f16_f16p_f16p_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p 2025-07-17T06:37:50.3431310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p/kai_imatmul_clamp_f16_f16p2vlx2_f16p2vlx2_2vlx2vl_sme2_mopa.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p 2025-07-17T06:37:50.3432490Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p 2025-07-17T06:37:50.3433370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p/kai_matmul_clamp_f16_bf16p_bf16p_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p 2025-07-17T06:37:50.3434500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p/kai_matmul_clamp_f16_bf16p8x4_bf16p12x4b_8x12_neon_mmla.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p 2025-07-17T06:37:50.3435650Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p 2025-07-17T06:37:50.3436500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p/kai_imatmul_clamp_f32_f32p_f32p_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p 2025-07-17T06:37:50.3437800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p/kai_imatmul_clamp_f32_f32p2vlx1_f32p2vlx1b_2vlx2vl_sme2_mopa.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p 2025-07-17T06:37:50.3438740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pthreadpool.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-07-17T06:37:50.3440890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/clog.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-07-17T06:37:50.3441600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/omp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-07-17T06:37:50.3443850Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.3444260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Formatting.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.3445420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/NestedTensorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.3446740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CPUFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.3447830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/LegacyBatchedFallback.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.3448830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CollapseDims.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.3450080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.3451160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/MetaFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.3452320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.3453520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/TensorOptions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.3454640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/DeviceAccelerator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.3456740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/TensorUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.3458080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/MemoryOverlap.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.3459390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/TensorSubclassLikeUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.3460600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/LegacyVmapMode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.3461860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/InitialTensorOptions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.3463200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Version.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.3464410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/DLConvertor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.3466380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Device.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.3467540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/FuncTorchTLS.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.3469700Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3470130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/Dict_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3471550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/Formatting.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3472420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/TensorBody.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3475490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/GeneratorForPrivateuseone.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3476770Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/op_registration 2025-07-17T06:37:50.3477730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/op_registration/adaption.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/op_registration 2025-07-17T06:37:50.3478790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/op_registration/op_allowlist.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/op_registration 2025-07-17T06:37:50.3479920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/op_registration/op_registration.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/op_registration 2025-07-17T06:37:50.3481280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/op_registration/infer_schema.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/op_registration 2025-07-17T06:37:50.3482360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/jit_type_base.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3483730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/typeid.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3484980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/rref_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3486070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/Range.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3487250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/interned_strings_class.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3488460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/operator_name.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3489880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/DeprecatedTypePropertiesRegistry.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3491020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/symbol.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3492110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/Backtrace.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3493270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/TransformationHelper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3494390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/blob.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3495600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/function_schema.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3497050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/type_factory.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3498350Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/dispatch 2025-07-17T06:37:50.3499160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch/OperatorOptions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/dispatch 2025-07-17T06:37:50.3500520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch/RegistrationHandleRAII.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/dispatch 2025-07-17T06:37:50.3501700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch/ObservedOperators.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/dispatch 2025-07-17T06:37:50.3502950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch/DispatchKeyExtractor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/dispatch 2025-07-17T06:37:50.3504270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch/Dispatcher.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/dispatch 2025-07-17T06:37:50.3505860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch/CppSignature.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/dispatch 2025-07-17T06:37:50.3506880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch/OperatorEntry.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/dispatch 2025-07-17T06:37:50.3508240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/MT19937RNGEngine.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3509320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/ivalue_to.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3510520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/aten_interned_strings.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3512060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dynamic_type.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3513350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/class_type.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3515130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/LegacyTypeDispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3515740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/function_schema_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3516970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/NestedIntSymNodeImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3518050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/qualified_name.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3519300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/UndefinedTensorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3520420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/NamedTensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3521540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/Scalar.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3522750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/CachingHostAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3523990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/functional.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3525260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/DeprecatedTypeProperties.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3526330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/interned_strings.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3527620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/List.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3529030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/ATenOpList.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3529910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/Dict.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3531080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/type_ptr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3532250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/grad_mode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3533450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/DistributionsHelper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3534740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/VariableHooksInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3535880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/CheckMemoryFormat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3537010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/ScalarType.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3538060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/Array.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3539200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/ATen_fwd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3540330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/stack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3541470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/ATenGeneral.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3542630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/custom_class.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3543750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/IListRef.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3545110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/UnsafeFromTH.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3546330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/PythonOpRegistrationTrampoline.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3547390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/TensorBase.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3548840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/ATen_pch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3550000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/QuantizerBase.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3551100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/enum_type.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3552190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/alias_info.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3553280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/List_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3554640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/TorchDispatchUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3555740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/enum_tag.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3556910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/jit_type.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3558550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/IListRef_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3559750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/ivalue.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3561130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/Dimname.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3562210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/Vitals.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3563320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/PythonFallbackKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3564770Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/boxing 2025-07-17T06:37:50.3565540Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/boxing/impl 2025-07-17T06:37:50.3566390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/impl/make_boxed_from_unboxed_functor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/boxing/impl 2025-07-17T06:37:50.3567780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/impl/boxing.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/boxing/impl 2025-07-17T06:37:50.3569030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/impl/test_helpers.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/boxing/impl 2025-07-17T06:37:50.3570250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/impl/WrapFunctionIntoFunctor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/boxing/impl 2025-07-17T06:37:50.3571390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/impl/WrapFunctionIntoRuntimeFunctor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/boxing/impl 2025-07-17T06:37:50.3572560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/KernelFunction.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/boxing 2025-07-17T06:37:50.3573860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/OperatorKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/boxing 2025-07-17T06:37:50.3574920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/KernelFunction_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/boxing 2025-07-17T06:37:50.3576380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/BoxedKernel_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/boxing 2025-07-17T06:37:50.3577480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/BoxedKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/boxing 2025-07-17T06:37:50.3578660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/builtin_function.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3579750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/DimVector.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3580930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/Reduction.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3581950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/Tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3583150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/function.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3584270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/Generator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3585440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/PhiloxRNGEngine.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3586560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/TensorAccessor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3588120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/ivalue_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3589620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/Variadic.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-17T06:37:50.3590870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.3592010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/jiterator_macros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.3592990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Operators.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.3594560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CPUFunctions_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.3596090Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/mps 2025-07-17T06:37:50.3596800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps/MPSProfiler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/mps 2025-07-17T06:37:50.3598760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps/EmptyTensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/mps 2025-07-17T06:37:50.3599780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps/MPSAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/mps 2025-07-17T06:37:50.3601110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps/MPSGuardImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/mps 2025-07-17T06:37:50.3602210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps/MPSHooks.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/mps 2025-07-17T06:37:50.3603350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps/MPSEvent.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/mps 2025-07-17T06:37:50.3604400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps/MPSDevice.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/mps 2025-07-17T06:37:50.3605510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps/MPSStream.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/mps 2025-07-17T06:37:50.3606630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps/IndexKernels.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/mps 2025-07-17T06:37:50.3608000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps/MPSAllocatorInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/mps 2025-07-17T06:37:50.3609080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps/MPSGeneratorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/mps 2025-07-17T06:37:50.3611310Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3611780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/CompositeRandomAccessor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3613070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/MathBitsFallback.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3614140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/TensorTransformations.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3615220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ComplexHelper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3616250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ConvUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3617600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Normalization.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3618740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ReductionType.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3619770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Repeat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3620870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/layer_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3621980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/GridSampler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3623330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/TriangularOpsUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3624470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/UnfoldBackward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3625560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/batch_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3626570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Unfold3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3627810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Fill.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3629310Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/ao_sparse 2025-07-17T06:37:50.3629980Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/ao_sparse/quantized 2025-07-17T06:37:50.3630860Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/ao_sparse/quantized/cpu 2025-07-17T06:37:50.3631630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ao_sparse/quantized/cpu/fbgemm_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/ao_sparse/quantized/cpu 2025-07-17T06:37:50.3632820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ao_sparse/quantized/cpu/packed_params.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/ao_sparse/quantized/cpu 2025-07-17T06:37:50.3633890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ao_sparse/quantized/cpu/qnnpack_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/ao_sparse/quantized/cpu 2025-07-17T06:37:50.3634880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/LinearAlgebra.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3636020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/RangeFactories.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3637050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/RNN.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3638160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/IndexKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3639210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Pool.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3640540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/RangeUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3641600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Cross.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3642610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/im2col.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3643780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/TransposeType.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3644880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/DispatchStub.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3646180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Unfold2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3647250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Distance.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3648360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/FunctionOfAMatrixUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3649650Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps 2025-07-17T06:37:50.3650400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/MetalShaderLibrary.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps 2025-07-17T06:37:50.3651670Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps/kernels 2025-07-17T06:37:50.3652430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/kernels/UpSample.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps/kernels 2025-07-17T06:37:50.3653580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/kernels/Pooling.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps/kernels 2025-07-17T06:37:50.3654870Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps/operations 2025-07-17T06:37:50.3655590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations/FusedAdamKernelImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps/operations 2025-07-17T06:37:50.3656800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations/FusedAdamWAmsgradKernelImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps/operations 2025-07-17T06:37:50.3657970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations/BinaryKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps/operations 2025-07-17T06:37:50.3659090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations/FusedAdamWKernelImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps/operations 2025-07-17T06:37:50.3660250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations/FusedAdamAmsgradKernelImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps/operations 2025-07-17T06:37:50.3661340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations/MultiTensorApply.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps/operations 2025-07-17T06:37:50.3662650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/TensorFactory.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps 2025-07-17T06:37:50.3663760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/MPSGraphSonomaOps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps 2025-07-17T06:37:50.3664960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/MPSGraphVenturaOps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps 2025-07-17T06:37:50.3666290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/MPSGraphSequoiaOps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps 2025-07-17T06:37:50.3667480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/OperationUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps 2025-07-17T06:37:50.3668840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/Copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps 2025-07-17T06:37:50.3670030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Distributions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3671390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/MaxPooling.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3672430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Gelu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3673550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/SparseTensorUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3674790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/CPUFallback.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3676150Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal 2025-07-17T06:37:50.3676890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/MetalConvParams.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal 2025-07-17T06:37:50.3678140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/MetalTensorImplStorage.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal 2025-07-17T06:37:50.3679270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/MetalTensorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal 2025-07-17T06:37:50.3680400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/MetalContext.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal 2025-07-17T06:37:50.3681510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/MetalTensorUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal 2025-07-17T06:37:50.3682620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/MetalNeuronType.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal 2025-07-17T06:37:50.3683710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/MetalShaders.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal 2025-07-17T06:37:50.3685300Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/mpscnn 2025-07-17T06:37:50.3686120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn/MPSCNNFullyConnectedOp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/mpscnn 2025-07-17T06:37:50.3687240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn/MPSImage+Tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/mpscnn 2025-07-17T06:37:50.3688460Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/mpscnn/tests 2025-07-17T06:37:50.3689290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn/tests/MetalOpTestRunner.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/mpscnn/tests 2025-07-17T06:37:50.3690550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn/tests/MPSCNNTests.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/mpscnn/tests 2025-07-17T06:37:50.3691500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn/MPSCNNClampOp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/mpscnn 2025-07-17T06:37:50.3692680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn/MPSCNNOp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/mpscnn 2025-07-17T06:37:50.3693770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn/MPSCNNNeuronOp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/mpscnn 2025-07-17T06:37:50.3694980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn/MPSCNNConvOp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/mpscnn 2025-07-17T06:37:50.3696120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn/MPSCNNUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/mpscnn 2025-07-17T06:37:50.3697370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn/MPSImageUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/mpscnn 2025-07-17T06:37:50.3698470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn/MPSImageWrapper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/mpscnn 2025-07-17T06:37:50.3699590Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/ops 2025-07-17T06:37:50.3700350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/ops/MetalCopy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/ops 2025-07-17T06:37:50.3701570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/ops/MetalConvolution.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/ops 2025-07-17T06:37:50.3702670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/MetalPrepackOpContext.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal 2025-07-17T06:37:50.3703850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/MetalCommandBuffer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal 2025-07-17T06:37:50.3704870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/MetalDevice.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal 2025-07-17T06:37:50.3706250Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-17T06:37:50.3707120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/IsContiguous.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-17T06:37:50.3708180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/zmath.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-17T06:37:50.3709340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/ReduceUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-17T06:37:50.3710780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/mixed_data_type.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-17T06:37:50.3711950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/ReducedPrecisionFloatGemvFastPathKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-17T06:37:50.3712980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-17T06:37:50.3714240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/int_mm_kernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-17T06:37:50.3715390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/SampledAddmmKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-17T06:37:50.3716510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/Gelu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-17T06:37:50.3717680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/moments_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-17T06:37:50.3718900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/ChannelShuffleKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-17T06:37:50.3719950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/SpmmReduceKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-17T06:37:50.3721120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/GridSamplerKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-17T06:37:50.3722130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/SerialStackImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-17T06:37:50.3723280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/Intrinsics.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-17T06:37:50.3729070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/LogAddExp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-17T06:37:50.3729490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/WeightNormKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-17T06:37:50.3729970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/MaxUnpoolKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-17T06:37:50.3730360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/SoftmaxKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-17T06:37:50.3730740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/AtomicAddFloat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-17T06:37:50.3731110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/Elu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-17T06:37:50.3731470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/Reduce.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-17T06:37:50.3732410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/CatKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-17T06:37:50.3733470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/StackKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-17T06:37:50.3734650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/LogSoftmaxKernelImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-17T06:37:50.3735930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/DepthwiseConvKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-17T06:37:50.3737430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/DistributionTemplates.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-17T06:37:50.3738450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/PixelShuffleKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-17T06:37:50.3739800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/UpSampleKernelAVXAntialias.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-17T06:37:50.3741710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/IndexKernelUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-17T06:37:50.3743210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/avx_mathfun.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-17T06:37:50.3744970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/CopyKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-17T06:37:50.3746540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/Loops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-17T06:37:50.3747720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/FusedAdagrad.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3748820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/GridSamplerUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3750020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/TopKImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3751610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/TensorAdvancedIndexingUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3752700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/DilatedConvolutionUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3753930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ForeachUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3755200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/SobolEngineOpsUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3756420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ReduceAllOps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3758680Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3759170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/CompositeRandomAccessor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3760340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/Normalization.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3762090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/SortingRadixSelect.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3763330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/MiscUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3764540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/block_reduce.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3765740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/GridSampler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3766930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/TensorModeKernel.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3768300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/MemoryAccess.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3769690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/CuFFTPlanCache.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3770960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/RowwiseScaledMM.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3772100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/CUDAJitLoops.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3773380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/im2col.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3774800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/cutlass_common.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3775980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/ScanKernels.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3777180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/IndexKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3778890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/SortUtils.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3780480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/ScaledGroupMM.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3781640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/DeviceSqrt.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3782990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/Distributions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3783940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/UpSample.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3785280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/Randperm.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3786360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/vol2col.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3787610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/Pow.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3788740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/BinaryInternal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3789840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/reduction_template.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3791230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/GroupMM.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3792390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/fused_adamw_impl.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3793530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/Math.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3795750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/CuFFTUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3796560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/ReduceOps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3797620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/SortingCommon.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3798950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/TensorTopK.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3800120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/ScanUtils.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3801490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/TensorModeKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3802670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/MultiTensorApply.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3804210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/EmbeddingBackwardKernel.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3805060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/thread_constants.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3806080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/Resize.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3807220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/Sorting.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3808500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/fused_adamw_amsgrad_impl.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3809580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/fused_adam_utils.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3810710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/GroupMMCommon.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3811840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/Activation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3812970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/JitLoops.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3814100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/KernelUtils.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3815470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/ForeachFunctors.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3816730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/fused_adam_amsgrad_impl.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3817860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/Loops.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3819370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/Sort.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3820340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/UniqueCub.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3821560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/CUDALoops.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3823060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/DistributionTemplates.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3824160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/GridSampler.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3825720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/PersistentSoftmax.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3827060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/Reduce.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3828560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/IndexKernelUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3829710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/jit_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3830960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/ForeachMinMaxFunctors.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3832040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/SortStable.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3833140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/LaunchUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3834350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/fused_adam_impl.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3835360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/Copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-17T06:37:50.3837030Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized 2025-07-17T06:37:50.3837580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/ConvUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized 2025-07-17T06:37:50.3838870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/AffineQuantizer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized 2025-07-17T06:37:50.3839950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/IndexKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized 2025-07-17T06:37:50.3841030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/library.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized 2025-07-17T06:37:50.3842350Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-07-17T06:37:50.3843230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/XnnpackUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-07-17T06:37:50.3844450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/fbgemm_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-07-17T06:37:50.3845950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/init_qnnpack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-07-17T06:37:50.3847110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/ACLUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-07-17T06:37:50.3848360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/conv_serialization.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-07-17T06:37:50.3849570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/qlinear.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-07-17T06:37:50.3850890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/EmbeddingPackedParams.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-07-17T06:37:50.3852030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/qembeddingbag.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-07-17T06:37:50.3853140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/QnnpackUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-07-17T06:37:50.3854490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/qembeddingbag_prepack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-07-17T06:37:50.3855570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/OnednnUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-07-17T06:37:50.3856880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/QuantUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-07-17T06:37:50.3858220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/RuyUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-07-17T06:37:50.3859500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/qconv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-07-17T06:37:50.3860640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/BinaryOps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-07-17T06:37:50.3861790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/QuantizedOps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-07-17T06:37:50.3863150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/AffineQuantizerBase.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized 2025-07-17T06:37:50.3864280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/FakeQuantAffine.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized 2025-07-17T06:37:50.3865480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/PackedParams.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized 2025-07-17T06:37:50.3866600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/Copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized 2025-07-17T06:37:50.3868320Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cudnn 2025-07-17T06:37:50.3868750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cudnn/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cudnn 2025-07-17T06:37:50.3869990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Lerp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3871090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ReduceOps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3872380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/TensorAdvancedIndexing.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3873710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/UnaryOps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3874520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/SortingUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3875860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/MathBitFallThroughLists.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3876950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/StridedRandomAccessor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3878070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/TensorShape.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3879350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/IndexingUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3880490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/UpSample.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3881980Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/utils 2025-07-17T06:37:50.3882860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/utils/ParamUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/utils 2025-07-17T06:37:50.3884080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/utils/ParamsHash.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/utils 2025-07-17T06:37:50.3885310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/utils/Factory.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/utils 2025-07-17T06:37:50.3886340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ResizeCommon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3887530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/SharedReduceOps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3888810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Resize.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3889940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/SpectralOpsUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3890990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Sorting.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3892230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/NonSymbolicBC.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3893620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/TensorProperties.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3894670Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers 2025-07-17T06:37:50.3895430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/sdp_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers 2025-07-17T06:37:50.3896580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/attention.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers 2025-07-17T06:37:50.3898140Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda 2025-07-17T06:37:50.3898860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/sdp_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda 2025-07-17T06:37:50.3900410Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention 2025-07-17T06:37:50.3901330Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels 2025-07-17T06:37:50.3902190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels/cutlassB.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels 2025-07-17T06:37:50.3904010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels/cutlassF.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels 2025-07-17T06:37:50.3905390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm_kernel_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention 2025-07-17T06:37:50.3906950Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-07-17T06:37:50.3907830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/find_default_mma.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-07-17T06:37:50.3909150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/mma_accum_lambda_iterator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-07-17T06:37:50.3910550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_multistage.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-07-17T06:37:50.3911860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/mma_from_smem.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-07-17T06:37:50.3913480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-07-17T06:37:50.3914710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_base.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-07-17T06:37:50.3915990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_pipelined.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-07-17T06:37:50.3917450Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue 2025-07-17T06:37:50.3918330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_thread_apply_logsumexp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue 2025-07-17T06:37:50.3919620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_rescale_output.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue 2025-07-17T06:37:50.3920900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_pipelined.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue 2025-07-17T06:37:50.3922270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/debug_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention 2025-07-17T06:37:50.3923780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernel_forward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention 2025-07-17T06:37:50.3925310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/pytorch_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention 2025-07-17T06:37:50.3926550Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/transform 2025-07-17T06:37:50.3927420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/transform/tile_smem_loader.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/transform 2025-07-17T06:37:50.3928840Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-07-17T06:37:50.3929600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/make_residual_last.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-07-17T06:37:50.3931180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_iterator_residual_last.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-07-17T06:37:50.3932450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/epilogue_predicated_tile_iterator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-07-17T06:37:50.3933850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/transpose_warp_iterator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-07-17T06:37:50.3935010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/default_warp_iterator_from_smem.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-07-17T06:37:50.3936520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/warp_iterator_from_smem.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-07-17T06:37:50.3938570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_access_iterator_residual_last.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-07-17T06:37:50.3939440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernel_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention 2025-07-17T06:37:50.3941290Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/flash_attn 2025-07-17T06:37:50.3942190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/flash_attn/static_switch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/flash_attn 2025-07-17T06:37:50.3943560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/flash_attn/flash_api.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/flash_attn 2025-07-17T06:37:50.3944450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/sdp_utils_cpp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers 2025-07-17T06:37:50.3945960Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/hip 2025-07-17T06:37:50.3947120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/hip/aotriton_adapter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/hip 2025-07-17T06:37:50.3948300Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/hip/flash_attn 2025-07-17T06:37:50.3949000Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/hip/flash_attn/ck 2025-07-17T06:37:50.3949850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/hip/flash_attn/ck/me_ck_api.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/hip/flash_attn/ck 2025-07-17T06:37:50.3950930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/hip/flash_attn/flash_api.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/hip/flash_attn 2025-07-17T06:37:50.3952200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/BucketizationUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3953470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/vol2col.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3954570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/LossMulti.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3955790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/NonEmptyUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3957340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/TensorDimApply.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3958420Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/hip 2025-07-17T06:37:50.3958790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip/ck_types.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/hip 2025-07-17T06:37:50.3959980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip/ck_bgemm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/hip 2025-07-17T06:37:50.3961120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip/ck_gemm_template.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/hip 2025-07-17T06:37:50.3962600Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/hip/bgemm_kernels 2025-07-17T06:37:50.3963450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip/bgemm_kernels/bgemm_kernel_template.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/hip/bgemm_kernels 2025-07-17T06:37:50.3964820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip/bgemm_kernels/bgemm_kernel_collection.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/hip/bgemm_kernels 2025-07-17T06:37:50.3965720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip/ck_gemm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/hip 2025-07-17T06:37:50.3967380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/verbose_wrapper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3968150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/AdaptivePooling.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3969320Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mtia 2025-07-17T06:37:50.3970000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mtia/EmptyTensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mtia 2025-07-17T06:37:50.3971020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ConvolutionMM3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3972110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/group_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3973320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Histogram.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3974520Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/kleidiai 2025-07-17T06:37:50.3975310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/kleidiai/kai_pack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/kleidiai 2025-07-17T06:37:50.3976460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/kleidiai/kai_ukernel_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/kleidiai 2025-07-17T06:37:50.3978090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/kleidiai/kai_kernels.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/kleidiai 2025-07-17T06:37:50.3978730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Activation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3979780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Math.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3981770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/FusedAdam.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3983310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ScatterGatherChecks.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3984400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/CPUBlas.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3985420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/CompositeRandomAccessorCommon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3986500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/BatchLinearAlgebra.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3987760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/AmpKernels.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3988860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/DistributionTemplates.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3990170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/TensorIterator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3991290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/TensorConversions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.3992690Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/nested 2025-07-17T06:37:50.3993490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested/NestedTensorUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/nested 2025-07-17T06:37:50.3994830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested/NestedTensorTransformerUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/nested 2025-07-17T06:37:50.3995950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested/NestedTensorMath.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/nested 2025-07-17T06:37:50.3997200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested/NestedTensorBinaryOps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/nested 2025-07-17T06:37:50.4002380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested/NestedTensorTransformerFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/nested 2025-07-17T06:37:50.4003510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/FractionalMaxPooling.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.4004620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ReduceOpsUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.4005990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/TensorFactories.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.4007250Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mkldnn 2025-07-17T06:37:50.4008220Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mkldnn/xpu 2025-07-17T06:37:50.4008960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/FusionUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mkldnn/xpu 2025-07-17T06:37:50.4010270Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mkldnn/xpu/detail 2025-07-17T06:37:50.4011010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/detail/Utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mkldnn/xpu/detail 2025-07-17T06:37:50.4012170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/detail/Attr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mkldnn/xpu/detail 2025-07-17T06:37:50.4013470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/detail/LRUCache.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mkldnn/xpu/detail 2025-07-17T06:37:50.4014630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/detail/DnnlExt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mkldnn/xpu/detail 2025-07-17T06:37:50.4016000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/detail/oneDNNContext.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mkldnn/xpu/detail 2025-07-17T06:37:50.4017280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/detail/oneDNN.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mkldnn/xpu/detail 2025-07-17T06:37:50.4018400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/Conv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mkldnn/xpu 2025-07-17T06:37:50.4019570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/PointwiseOps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.4020730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/BinaryOps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.4021800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Pow.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.4023090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/EmbeddingBag.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.4024190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/im2col_shape_check.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.4025370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/SegmentReduce.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.4026430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/FusedSGD.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.4027680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Padding.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.4028850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/TensorCompare.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.4029960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/PixelShuffle.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.4031180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/LinearAlgebraUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.4032550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/TypeProperties.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.4033660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.4034810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/CanUse32BitIndexMath.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.4036070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/TensorIteratorDynamicCasting.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-17T06:37:50.4037140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ceil_div.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4038350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/EmptyTensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4039650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/NativeMetaFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4041120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/dlpack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4042490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Config.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4043690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ThreadLocalPythonObjects.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4045030Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/metal 2025-07-17T06:37:50.4045990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/metal/Context.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/metal 2025-07-17T06:37:50.4046810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Backtrace.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4048140Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu 2025-07-17T06:37:50.4048830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/Utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu 2025-07-17T06:37:50.4050130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/FlushDenormal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu 2025-07-17T06:37:50.4051230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vml.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu 2025-07-17T06:37:50.4052540Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec 2025-07-17T06:37:50.4053280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec_quant.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec 2025-07-17T06:37:50.4054460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec_half.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec 2025-07-17T06:37:50.4055810Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec128 2025-07-17T06:37:50.4056620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128/vec128_convert.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec128 2025-07-17T06:37:50.4057930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128/vec128_reduced_precision_common_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec128 2025-07-17T06:37:50.4059210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128/vec128.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec128 2025-07-17T06:37:50.4060350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128/vec128_half_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec128 2025-07-17T06:37:50.4061700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128/vec128_float_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec128 2025-07-17T06:37:50.4063060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128/vec128_bfloat16_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec128 2025-07-17T06:37:50.4064310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec_mask.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec 2025-07-17T06:37:50.4065860Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-07-17T06:37:50.4066600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vec256_bfloat16.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-07-17T06:37:50.4068010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/missing_vst1_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-07-17T06:37:50.4069170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vec256_mask.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-07-17T06:37:50.4070520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vec256_half.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-07-17T06:37:50.4071910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vec256_qint.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-07-17T06:37:50.4073350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vec256_complex_float.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-07-17T06:37:50.4074750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vec256_double.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-07-17T06:37:50.4076010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vec256_float.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-07-17T06:37:50.4077420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/missing_vld1_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-07-17T06:37:50.4078710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vec256.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-07-17T06:37:50.4079940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vec256_16bit_float.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-07-17T06:37:50.4081500Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/zarch 2025-07-17T06:37:50.4082270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/zarch/vec256_zarch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/zarch 2025-07-17T06:37:50.4084020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vec256_convert.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-07-17T06:37:50.4085480Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-17T06:37:50.4086250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint32_vsx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-17T06:37:50.4087760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx/vec256_double_vsx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-17T06:37:50.4089010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx/vec256_int16_vsx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-17T06:37:50.4090380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx/vec256_int32_vsx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-17T06:37:50.4091760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx/vec256_quint8_vsx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-17T06:37:50.4093030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx/vsx_helpers.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-17T06:37:50.4094360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx/vec256_float_vsx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-17T06:37:50.4095640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx/vec256_bfloat16_vsx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-17T06:37:50.4096790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_float_vsx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-17T06:37:50.4098130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx/vec256_common_vsx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-17T06:37:50.4099250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint8_vsx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-17T06:37:50.4100610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_double_vsx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-17T06:37:50.4102000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx/vec256_int64_vsx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-17T06:37:50.4103280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vec256_int.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-07-17T06:37:50.4105010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vec256_complex_double.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-07-17T06:37:50.4106080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec 2025-07-17T06:37:50.4107300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec_convert.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec 2025-07-17T06:37:50.4108490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/intrinsics.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec 2025-07-17T06:37:50.4109600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/functional_bfloat16.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec 2025-07-17T06:37:50.4110950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/functional.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec 2025-07-17T06:37:50.4112260Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-07-17T06:37:50.4112960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512/vec512_int.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-07-17T06:37:50.4114460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512/vec512_convert.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-07-17T06:37:50.4115790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512/vec512_bfloat16.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-07-17T06:37:50.4117310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512/vec512_complex_double.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-07-17T06:37:50.4118600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512/vec512_float8.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-07-17T06:37:50.4119870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512/vec512_mask.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-07-17T06:37:50.4121200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512/vec512_complex_float.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-07-17T06:37:50.4122550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512/vec512_double.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-07-17T06:37:50.4123800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512/vec512_qint.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-07-17T06:37:50.4125320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512/vec512_float.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-07-17T06:37:50.4126670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512/vec512.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-07-17T06:37:50.4128120Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/sve 2025-07-17T06:37:50.4128840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve/vec_bfloat16.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/sve 2025-07-17T06:37:50.4130190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve/vec_qint.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/sve 2025-07-17T06:37:50.4131510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve/vec_double.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/sve 2025-07-17T06:37:50.4132800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve/vec_float.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/sve 2025-07-17T06:37:50.4134070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve/vec_common_sve.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/sve 2025-07-17T06:37:50.4135410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve/sve_helper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/sve 2025-07-17T06:37:50.4136530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve/vec_int.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/sve 2025-07-17T06:37:50.4137830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec_n.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec 2025-07-17T06:37:50.4139170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/functional_base.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec 2025-07-17T06:37:50.4140390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec_base.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec 2025-07-17T06:37:50.4141920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/SparseCsrTensorUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4143310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/TracerMode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4144560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/BlasBackend.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4145710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Backend.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4146910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/RegistrationDeclarations.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4152710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CompositeImplicitAutogradFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4153690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/PTThreadPool.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4154750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/OpaqueTensorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4155860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/MapAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4157470Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-17T06:37:50.4158160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CUDADevice.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-17T06:37:50.4159270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CUDAUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-17T06:37:50.4160440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CUDABlas.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-17T06:37:50.4161740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CUDAGeneratorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-17T06:37:50.4162940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/AsmUtils.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-17T06:37:50.4164570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/cub-RadixSortPairs.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-17T06:37:50.4165120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/Sleep.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-17T06:37:50.4166390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/PinnedMemoryAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-17T06:37:50.4167440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/DeviceUtils.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-17T06:37:50.4172350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/jiterator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-17T06:37:50.4173560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/cub_definitions.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-17T06:37:50.4174770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CUDASparseDescriptors.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-17T06:37:50.4176070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/EmptyTensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-17T06:37:50.4177240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/ApplyGridUtils.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-17T06:37:50.4178330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/PeerToPeerAccess.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-17T06:37:50.4179450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CUDAEvent.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-17T06:37:50.4180770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/PhiloxUtils.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-17T06:37:50.4181780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CUDAContext.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-17T06:37:50.4183060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/Exceptions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-17T06:37:50.4184300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/ScanUtils.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-17T06:37:50.4185350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/NumericLimits.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-17T06:37:50.4186420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CUDATensorMethods.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-17T06:37:50.4187520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/cub.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-17T06:37:50.4188780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CUDAGraphsUtils.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-17T06:37:50.4190060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CachingHostAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-17T06:37:50.4191080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CUDADataType.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-17T06:37:50.4192280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/cub.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-17T06:37:50.4193360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CUDAContextLight.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-17T06:37:50.4194430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CUDAGraph.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-17T06:37:50.4195720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CUDAApplyUtils.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-17T06:37:50.4197290Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/detail 2025-07-17T06:37:50.4198520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail/TensorInfo.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/detail 2025-07-17T06:37:50.4199180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail/CUDAHooks.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/detail 2025-07-17T06:37:50.4200290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail/KernelUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/detail 2025-07-17T06:37:50.4201520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail/IntegerDivider.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/detail 2025-07-17T06:37:50.4202560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail/LazyNVRTC.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/detail 2025-07-17T06:37:50.4203790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail/PhiloxCudaStateRaw.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/detail 2025-07-17T06:37:50.4204900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail/DeviceThreadHandles.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/detail 2025-07-17T06:37:50.4206020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail/OffsetCalculator.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/detail 2025-07-17T06:37:50.4207180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail/IndexUtils.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/detail 2025-07-17T06:37:50.4208520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail/UnpackRaw.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/detail 2025-07-17T06:37:50.4209600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/ThrustAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-17T06:37:50.4210710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/Atomic.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-17T06:37:50.4212100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/llvm_jit_strings.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-17T06:37:50.4213230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CUDASparse.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-17T06:37:50.4214390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/PhiloxCudaState.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-17T06:37:50.4215570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/jiterator_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-17T06:37:50.4216890Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/tunable 2025-07-17T06:37:50.4217730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable/TunableOp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/tunable 2025-07-17T06:37:50.4219090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable/StreamTimer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/tunable 2025-07-17T06:37:50.4220130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable/TunableGemm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/tunable 2025-07-17T06:37:50.4221520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable/GemmCommon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/tunable 2025-07-17T06:37:50.4222830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable/GemmHipblaslt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/tunable 2025-07-17T06:37:50.4224180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable/GemmRocblas.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/tunable 2025-07-17T06:37:50.4225470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable/Tunable.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/tunable 2025-07-17T06:37:50.4226610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/ATenCUDAGeneral.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-17T06:37:50.4227840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CUDASparseBlas.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-17T06:37:50.4229240Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/quantized 2025-07-17T06:37:50.4229970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/quantized/QTensorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/quantized 2025-07-17T06:37:50.4231160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/quantized/Quantizer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/quantized 2025-07-17T06:37:50.4232530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/record_function.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4233850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/WrapDimUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4235220Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/xpu 2025-07-17T06:37:50.4235910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu/XPUEvent.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/xpu 2025-07-17T06:37:50.4237100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu/XPUDevice.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/xpu 2025-07-17T06:37:50.4238260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu/PinnedMemoryAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/xpu 2025-07-17T06:37:50.4239470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu/CachingHostAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/xpu 2025-07-17T06:37:50.4240720Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/xpu/detail 2025-07-17T06:37:50.4241580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu/detail/XPUHooks.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/xpu/detail 2025-07-17T06:37:50.4242630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu/XPUGeneratorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/xpu 2025-07-17T06:37:50.4243650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu/XPUContext.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/xpu 2025-07-17T06:37:50.4244960Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/miopen 2025-07-17T06:37:50.4245650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen/Utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/miopen 2025-07-17T06:37:50.4246700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen/Types.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/miopen 2025-07-17T06:37:50.4247840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen/Descriptors.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/miopen 2025-07-17T06:37:50.4249000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen/miopen-wrapper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/miopen 2025-07-17T06:37:50.4250140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen/Exceptions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/miopen 2025-07-17T06:37:50.4251160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen/Handle.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/miopen 2025-07-17T06:37:50.4252340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/RedispatchFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4264580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Context.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4266040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4267150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4268290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/div_rtn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4269390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ExpandUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4270600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/MPSFunctions_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4271870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/TypeDefault.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4272940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/MPSFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4274030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/VmapGeneratedPlumbing.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4283320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/MethodOperators.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4284490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CPUFixedAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4285540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/NamedTensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4286590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Scalar.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4287720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/TensorIteratorInternal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4288710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/LinalgBackend.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4289810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/LegacyBatchedTensorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4290910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ArrayRef.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4291940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/SequenceNumber.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4293040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/FunctionalStorageImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4294070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ExpandBase.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4296230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Parallel-inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4296590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/MatrixRef.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4297380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CUDAFunctions_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4298730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CompositeExplicitAutogradFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4299830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/FunctionalTensorWrapper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4301110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/SparseCsrTensorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4302140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/NumericUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4303270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ATen.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4304330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/TensorNames.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4305410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/TensorMeta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4306520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/TensorIndexing.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4307980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Layout.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4309050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/SparseTensorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4310260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/SavedTensorHooks.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4311630Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/detail 2025-07-17T06:37:50.4312380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail/PrivateUse1HooksInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/detail 2025-07-17T06:37:50.4313520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail/AcceleratorHooksInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/detail 2025-07-17T06:37:50.4314600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail/CUDAHooksInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/detail 2025-07-17T06:37:50.4315730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail/MAIAHooksInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/detail 2025-07-17T06:37:50.4316790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail/XPUHooksInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/detail 2025-07-17T06:37:50.4317890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail/FunctionTraits.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/detail 2025-07-17T06:37:50.4319070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail/HIPHooksInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/detail 2025-07-17T06:37:50.4320140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail/MPSHooksInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/detail 2025-07-17T06:37:50.4321190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail/MTIAHooksInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/detail 2025-07-17T06:37:50.4322330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail/HPUHooksInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/detail 2025-07-17T06:37:50.4323450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail/IPUHooksInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/detail 2025-07-17T06:37:50.4324580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CompositeExplicitAutogradFunctions_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4325930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/StorageUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4326980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/WrapDimUtilsMulti.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4328050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/code_template.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4329170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/TensorOperators.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4330310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CUDAFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4331530Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/hip 2025-07-17T06:37:50.4332430Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/hip/impl 2025-07-17T06:37:50.4333330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/hip/impl/HIPAllocatorMasqueradingAsCUDA.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/hip/impl 2025-07-17T06:37:50.4334490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/hip/impl 2025-07-17T06:37:50.4335930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/hip/impl/HIPCachingAllocatorMasqueradingAsCUDA.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/hip/impl 2025-07-17T06:37:50.4336940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/hip/impl/HIPStreamMasqueradingAsCUDA.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/hip/impl 2025-07-17T06:37:50.4338030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ScalarType.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4339150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpp_custom_type_hack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4340580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Dispatch_v2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4341770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Storage.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4342870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/DeviceGuard.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4343910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ParallelNative.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4345100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/OpMathType.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4346210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/PythonTorchFunctionTLS.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4347240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/PadNd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4348360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4349860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CPUGeneratorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4350910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ParallelFuture.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4352020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:50.4393780Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.4436560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_vulkan_available.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.4438010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_atan.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5190110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5190990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5192370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triplet_margin_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5193540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mode_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5194690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5195920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_ones.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5197380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pixel_shuffle.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5198470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_min_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5199920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softmax_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5201040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acosh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5202180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frexp_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5203370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erf_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5204510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/repeat_interleave_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5205710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i0e_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5206880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pixel_unshuffle_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5208090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5209220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cummin.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5210350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/choose_qparams_optimized_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5211530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nonzero_static_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5212590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/where_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5213650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_scatter_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5214780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_set_plan_cache_max_size.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5215970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isfinite_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5217140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slogdet_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5218440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5219350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_factor_ex_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5220450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfinv_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5221650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vecdot_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5222870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_functorch_fallback_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5224030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_csr_to_coo_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5225280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_and_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5230130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_strided_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5230760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5231220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_right_shift_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5231550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/result_type.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5231920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5232260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/min_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5233090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumulative_trapezoid.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5234280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d_forward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5235420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/soft_margin_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5236610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardswish_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5237840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5238960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pow_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5240100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5241210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binomial_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5242260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_padded_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5243470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosine_embedding_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5244590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_ambiguous_defaults_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5249170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5250460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5256630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5258650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5264130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/signbit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5265560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_propagate_xla_data.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5273130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_tensor_affine_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5281970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_transpose_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5282840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multilabel_margin_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5290380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5291390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumprod_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5298150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_remove_batch_dim.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5298910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/constant_pad_nd_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5308190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5314780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5315540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_lstm_mps_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5316650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_values_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5322650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_h_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5323640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nan_to_num_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5331740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_bin_edges_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5332620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_int_mm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5339780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/i0_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5347770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/inverse_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5348780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_group_norm_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5357580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_dense_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5364060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5364910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/qr_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5365910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5371990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_batch_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5373220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_rms_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5379930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sample_dirichlet_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5380730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_standard_gamma_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5388200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_divide_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5388920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5390060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5396110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k1_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5397420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5404920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/huber_loss_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5405960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5411450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5412250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polygamma_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5420450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5428140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fill_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5428820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_he_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5435770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dist.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5436980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_init_dropout_state_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5443290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5444480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_copy_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5445390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_lstm_cell_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5451160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log10_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5452410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_psi_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5459080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sub_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5460240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5467660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trace_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5468460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5476930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficientzerotensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5482500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expm1_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5483620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficient_attention_forward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5484830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_v_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5492350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinc_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5493190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5499980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y1_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5501220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cholesky_ex_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5508200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5509250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polygamma_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5510160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_xor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5517220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nextafter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5551130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_log_softmax_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5551770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5552920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y0_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5558690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Long_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5559440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_max_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5566820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pdist_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5567630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_ff_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5568870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_wrapped_linear_prepack_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5574480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softmax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5575760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arctan2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5582410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_gru_cell_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5584280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_factor_ex_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5585460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_from_padded_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5592410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5601200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/absolute_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5602170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5608790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_lstm_cell_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5610110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_forward_only_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5616900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5617590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/thnn_conv2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5618720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_rnn_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5624400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d_with_indices.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5625590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_ctc_loss_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5632190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_zeta_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5633400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool3d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5639490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atleast_2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5640630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5641890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bilinear_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5649120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/topk_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5650210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool1d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5657770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eig_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5658690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_exp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5665570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/row_indices_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5666700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_rnn_layer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5667780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_layer_norm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5674360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5675190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/concatenate_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5682110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5682930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5684460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_index_put_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5691050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_factor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5691860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5699170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_inference_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5699830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5708900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5741990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hstack_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5744710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mv_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5745500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_ctc_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5751060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_differentiable_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5752680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5758080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5759450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_nonzero_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5761410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5767760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dot_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5768600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/positive_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5775380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool3d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5777830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5783220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Float_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5784100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5785680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lu_unpack_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5791080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_atan_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5792030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_per_tensor_quantized_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5795710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_coalesced_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5800620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/narrow_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5804880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan2_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5808050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_relu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5809200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lu_unpack_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5813950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mixed_dtypes_linear.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5816050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_max_seqlen.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5821440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_slogdet_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5822690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/size.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5824810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5831400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logcumsumexp_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5833400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bernoulli_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5838620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_jvp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5839540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5842500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_exp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5848080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_rnn_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5848930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_slogdet_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5856020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_legendre_polynomial_p_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5857310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5863920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hann_window_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5864650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rrelu_with_noise.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5865830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_add_relu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5871680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5872410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/coalesce_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5879430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_log_softmax_backward_data.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5880250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5881290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/where_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5895850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5897390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/std_mean_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5904240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan2_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5905630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5906860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k1_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5909030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5915310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5918100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atleast_3d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5919030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_resize_output_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5926250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_factor_ex_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.5927050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_svd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6138600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hstack_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6144750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6154400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arctan_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6155560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficient_attention_forward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6157410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fw_primal_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6158510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_real_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6159670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_batch_norm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6160870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/neg_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6161970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmax_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6163120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_coo_tensor_unsafe_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6164280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_spherical_bessel_j0_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6165370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfinv_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6166630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d_forward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6167710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/chain_matmul.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6168900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sign_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6170050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_u_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6171240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/affine_grid_generator_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6172470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6173520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/concat_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6174600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vdot_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6175840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_resize.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6177030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_abs_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6178210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_transpose2d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6179340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_interface_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6180400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/abs_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6181660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/col_indices_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6182710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_xor_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6183840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_group_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6184920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_c2c_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6186200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6187440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosine_similarity_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6188430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cat_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6189570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conj_physical_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6190710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmin.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6191970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_sparse_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6193060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6194220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logspace_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6195320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6196420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_same_size_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6197490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igammac_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6198640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_inv_ex_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6199950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/maximum_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6201030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Double_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6202170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/prod_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6203220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ceil_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6204450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/column_stack_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6205650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_multi_head_attention_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6206930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hinge_embedding_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6208100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adamw_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6209400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i1_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6210460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/and_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6211700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6212990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atanh_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6214030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward_reduce_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6215060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6216220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6217600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_grid_sampler_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6218630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sqrt_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6219850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nan_to_num_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6220970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vstack_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6222050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfftn_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6223240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/normal_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6224360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csr_sum_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6225710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_inv_ex.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6226670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_u_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6227810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6229040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6230250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6231380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_buffer_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6232700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6233780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_factor_ex_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6234830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_sgd_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6236600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convolution_mode_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6237670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_eigh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6238850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_t_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6239980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dequantize.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6241030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_c2c_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6242230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/align_to.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6243430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_unpool3d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6244530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad3d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6245710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6246880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acosh_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6248170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/signbit_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6249160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_assert_scalar.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6250250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6251310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/min_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6252580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6253840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_same_size_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6255270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_select_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6256440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mkldnn_reshape_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6257700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_interface_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6258770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/std_mean_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6259930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6261050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_fill_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6262140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/repeat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6263380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_floor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6264550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_from_mask_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6265730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/transpose_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6272770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_sparse_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6274640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dropout_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6281100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matmul.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6281880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6283040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_get_plan_cache_max_size_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6288620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_view_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6289580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6292120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_standard_gamma_grad_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6297930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_check_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6300910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rot90_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6305490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/signbit_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6306420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reciprocal_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6310700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6314310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/selu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6318650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6319500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6323310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/squeeze_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6327320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_autograd_multiple_dispatch_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6331720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_right_shift_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6332620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_spherical_bessel_j0_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6336550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/minimum_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6340390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_flash_attention_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6344640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6345470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_logcumsumexp_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6349820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/values_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6352820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/col2im_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6358230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ge_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6359000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6362300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6367920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6370600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosh_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6375720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vector_norm_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6376520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6380290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardtanh_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6384620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6388320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfc_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6389070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fill_mem_eff_dropout_mask_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6394250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_sum_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6396120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan2_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6398760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sub_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6404620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_real_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6411920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_scale_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6412780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_jagged_to_padded_dense_forward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6419560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_jvp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6420420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_scramble.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6427580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6428360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfftfreq_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6429500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6436070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanmean_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6436980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_batch_norm_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6444000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cross_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6444670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_dropout.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6445870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d_with_indices_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6451590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addbmm_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6453430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_transformer_encoder_layer_fwd_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6459180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gt_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6460600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6461680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_coo_tensor_with_dims_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6468760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_rnn_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6469690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6476510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/detach_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6477320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_and_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6484400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/type_as_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6485380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randn_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6486500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_solve_ex_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6492480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6493960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_slow_conv2d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6500600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_depthwise3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6501540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/norm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6502750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_select_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6508160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exponential_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6509360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i0_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6515900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/or_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6517070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6519390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_autocast_to_full_precision_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6525090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfinv_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6526510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lcm_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6528230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argwhere_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6534400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6537220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cross_entropy_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6541960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_eigh_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6542930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsqueeze_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6546830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_layer_norm_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6551450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsub_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6553390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6555320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_w_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6560240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/median_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6561970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cross_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6568490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6569240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int8pack_mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6575530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_2d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6577390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_tensor_dynamic_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6583420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/permute.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6584370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_digamma_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6585460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6591700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_tensorinv_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6592740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_linear.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6599730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_group_norm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6600950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_with_sizes_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6607420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unflatten_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6608290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_assert_scalar_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6609240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mse_loss_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6611380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/le_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6621080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atleast_1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6623520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/roll.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6624680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_svdvals_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6630240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/orgqr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6632360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6638650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_transpose2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6639400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/layer_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6646380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6647580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_t_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6648760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/std_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6655790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sample_dirichlet_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6656730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_bsr_tensor_unsafe.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6663730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/take.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6664580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igammac_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6671810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isin_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6672750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/record_stream.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6673810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6679450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_and_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6680870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6687900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_group_norm_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6688740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_complex_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6689790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fill_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6694900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linear_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6696120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isinf_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6703340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expand_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6704110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_with_update_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6705270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_min_seqlen_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6710890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_relu_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6712660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Char_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6718680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_dropout_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6719870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lstm_cell_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6721550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6728950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multinomial.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6729910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/alias_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6736620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_maximum_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6737840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/allclose_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6744420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_slogdet_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6745270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nuclear_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6750070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_slow_conv2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6751490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multilabel_margin_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6752550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_3d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6761490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pairwise_distance_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6762550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/broadcast_to_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6769460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mse_loss_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6770350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_lengths_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6777310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_group_norm_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6778160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6785400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_csc_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6786280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nextafter_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6787430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6792400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_aminmax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6793810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/complex_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6801530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardswish_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6802300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/digamma.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6803500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6809210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_convolution_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6810070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6816420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triangular_solve_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6817600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pdist_forward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6818670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_ctc_loss_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6823750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/coalesce_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6830530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6831580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6836210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_or_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6840870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/geometric_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6844610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_transpose2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6845460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_legendre_polynomial_p_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6851070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumprod_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6852960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6859340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_constrain_range_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6860180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ldexp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6862040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arccosh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6868060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_rank.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6868860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_copy_from_and_resize_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6875420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_batch_norm_legit_no_training_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6876200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/all_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6882420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6883560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_set_to_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6884810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_left_shift_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6891980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randn_like_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6892730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_relu_cell.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6899620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6900560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6907810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adjoint_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6908670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pack_padded_sequence_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6909830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nonzero_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6915500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6916370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6922360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mse_loss_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6923490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i0_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6924420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eye_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.6932030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_exp2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7151190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adamw.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7152380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/permute_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7153440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7154430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_copy_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7155530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frac_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7156590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7157780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7159000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dyn_quant_matmul_4bit_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7160270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_efficient_attention_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7161270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pdist_forward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7162470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7163600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/broadcast_tensors.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7164870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv3d_forward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7166020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lt_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7167130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_chunk_cat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7168330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_softmax_backward_data_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7169550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_distributed_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7170690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7171800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_softmax_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7173140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_irfftn_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7174270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7175340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_scatter_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7176530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_tanh_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7177610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fftn_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7178840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adagrad.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7179960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/all_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7181140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_gru_cell.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7182260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eye_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7183440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hypot_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7184530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sqrt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7185720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7186820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/set_data_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7187930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vecdot_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7189160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_tensor_dynamic_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7276380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acosh_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7277290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convolution_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7278470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_add_batch_dim_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7279560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_csr_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7280790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sinh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7281860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/moveaxis_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7282960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/positive.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7284130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sum_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7285280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asin_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7286480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool3d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7287610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7288770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_empty.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7290010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_coo_tensor_with_dims_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7291150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/any_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7292300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_xlog1py_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7293550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pad_sequence_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7294750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_propagate_xla_data_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7295890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7297090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7298150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_round_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7299220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conj.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7300480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_coalesced_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7301680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flatten.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7302860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_dense_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7303980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_or_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7305050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bincount_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7306130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dot_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7307340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_resize_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7308720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7309780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linspace_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7310900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lerp_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7311990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanmedian.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7313190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diag_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7314360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7315400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sgn_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7316520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_gather_sparse_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7317650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/topk_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7318850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flip_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7320000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/any_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7321220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7322410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eigvals_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7323540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_entr_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7324670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_quantize_weight_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7325770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/where_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7326880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_mm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7328170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igamma.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7329370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7330450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_choose_qparams_per_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7331480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ihfft2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7332660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kl_div.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7333840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_legendre_polynomial_p_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7334970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mps_convolution.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7336100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7337200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/values_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7338400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_as_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7339530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bucketize_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7340720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_optional_filled_intlist_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7341800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_svd_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7342990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7344180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmin_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7345290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/any_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7346530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vsplit_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7347610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7348750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_gru_cell_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7349950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/min_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7351080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mps_convolution_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7352250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_polygamma_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7353310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/value_selecting_reduction_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7354520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7355590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log1p_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7356710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j0_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7357870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_backward_data_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7359300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7360230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/put_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7361440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cdist_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7362630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_rnn_tanh_cell_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7363700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7364860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_jvp_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7365940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7367070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acos_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7368180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log10_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7369360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_interface_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7370550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mixed_dtypes_linear_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7371700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7372800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binomial.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7373990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_max_pool1d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7375610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_qr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7376710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ctc_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7384060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_propagate_xla_data_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7384900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adagrad_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7385890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_add_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7391930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/norm_except_dim_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7393040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_normal_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7399590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7400900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d_with_indices_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7402030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7409130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/transpose_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7410060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_pow_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7417520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_per_channel_quantized_tensor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7418430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7626620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cholesky_solve_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7627630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7628910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_renorm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7629960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i0_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7631130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7632330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_rnn_tanh_cell_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7633420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_factor_ex_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7634480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/remainder_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7635640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_interface_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7636820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/deg2rad.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7637860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7639000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int4pack_mm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7640120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y1_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7641240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zero_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7642420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_complex_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7643600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_divide.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7644790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/soft_margin_loss_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7700640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addr_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7701630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arcsinh_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7702840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7703910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_use_cudnn_ctc_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7705070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7717460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y1_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7718260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/corrcoef.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7719460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_tensorsolve_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7720750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7721700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_gammaln_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7722990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7723980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7725210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ccol_indices_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7726330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7727460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_asin_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7728490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adam.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7729850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zeros_like.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7731090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7732080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reshape_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7733200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_cosh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7734270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lt_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7735450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_transpose3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7736850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_index_put_impl_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7737820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gt_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7738990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/data_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7740200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfft2_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7741340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7742510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7743730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool2d_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7806450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unbind.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7807350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_reduce_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7808520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_dim_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7809750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triangular_solve_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7811020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_backward_data_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7812210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/baddbmm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7813400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linear_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7814750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7815870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matmul_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7817070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/geometric_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7869960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multilabel_margin_loss_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7870810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lstm_cell_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7871920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_cos_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7873070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7874120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/outer_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7875280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_buffer_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7876320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vdot_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7877500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_u_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7878660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_rms_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7879700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/topk.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7880850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_trunc_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7882070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lcm_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7883350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7927410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Short_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7928230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_gather_stats_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7929580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7930740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7931810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7933000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_bsc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7934140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7935320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reshape_as_compositeimplicitautogradnestedtensor_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7936410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/var_mean_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7937490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7938560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_scale_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7939610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lgamma_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7940670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/stft_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7941800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_mask_projection.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7942860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/aminmax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7943930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_trilinear_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7944990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mse_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7946170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7947330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/affine_grid_generator_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7948410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinc_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7949750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7950980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_dim_consecutive_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7951760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7956820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_lstm_cell_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7957710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7958480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7959270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsqueeze_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7960040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/random_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7960790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/repeat_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7961560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7962340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_rank_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7963240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/norm_except_dim_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7964060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/output_nr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7964770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.7965470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/not_equal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8059980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cholesky_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8060830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/meshgrid.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8061930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8063340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_storage_offset_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8064340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isneginf_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8065520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8066630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsqueeze_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8067730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rand_like.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8068900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dsplit_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8069950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mse_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8071190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_print_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8072390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_maximum_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8073490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8074700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arccosh_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8075780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/float_power_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8077020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8078290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lstm_mps_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8079510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_dilated3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8080600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/maximum_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8081810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8082960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multi_margin_loss_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8084080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_tile_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8085460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8086660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_sym_constrain_range_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8087850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_batch_norm_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8088950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosh_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8090220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8091280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asinh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8092690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_pinv_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8093880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8095330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_softmax_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8096160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_scale.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8097280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_from_padded_and_nested_example_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8098430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_backward_data_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8099450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diff_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8100590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmax_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8101820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_2d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8102990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/item_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8104100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eye_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8105200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8106370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8107480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ceil_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8108860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8109930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_dropout_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8111050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_storage_offset.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8112280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_masked_index_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8113380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8114530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pixel_unshuffle_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8115650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad3d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8116920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8117980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_softmax_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8119220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_has_compatible_shallow_copy_type_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8120440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/affine_grid_generator_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8121470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/and.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8122630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_dilated2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8123830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csr_sum_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8125000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8126140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nuclear_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8127400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gru_cell_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8128480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp2_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8129680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cholesky_solve_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8130930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8132040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/searchsorted_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8133160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmv_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8134490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_group_norm_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8135620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_scatter_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8136750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k1_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8137890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_padded_dense_to_jagged_forward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8138990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8140330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/layer_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8141290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hann_window.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8142570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_int8_weight.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8143800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amin_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8144860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log1p_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8146070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Int.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8147290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nextafter_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8148610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8149630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erf_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8150750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8151950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_flash_attention_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8153180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_rnn_layer_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8154530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8155390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isneginf_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8156620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8157600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8158770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/concatenate_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8159850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_or_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8164100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lerp_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8166150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8171690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_min_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8172470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmin_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8174930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_index_put_impl_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8181020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_consecutive_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8181840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfc_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8188470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool1d_with_indices_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8189870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lstm_mps_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8196070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/range.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8196930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8198120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_erf_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8203720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_layer_norm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8204510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_resize_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8211270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8212720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8219330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conj_physical.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8220330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/square_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8221590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copysign_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8228910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amin_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8229940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k1_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8236990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_tanh_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8237820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/margin_ranking_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8244430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_psi_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8245350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_ndtri_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8246410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8251600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_transform_bias_rescale_qkv_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8253120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_erfc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8261370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/selu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8262170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cdist_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8268770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8269700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/range_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8277130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/aminmax_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8277920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_solve_triangular.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8284780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/xlogy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8285690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cov.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8286950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8293030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/relu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8294120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_dim_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8300960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_rowwise_prune_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8301770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/min.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8302640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/chain_matmul_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8308410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tile_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8309560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_factor_ex_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8316620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_reciprocal_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8317420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8522540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_dim_consecutive.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8523350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_nonzero_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8525020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_prelu_kernel_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8525820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_batch_norm_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8526700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kthvalue_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8527810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linspace_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8528900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/stride_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8530090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8531130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_parallel_materialize.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8532340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_new_zeros_with_same_feature_meta_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8533610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8534700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8535830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/int_repr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8536950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ne_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8538180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/inverse_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8539520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_log_softmax_backward_data_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8596210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8596950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_mul.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8598190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8620160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_set_plan_cache_max_size_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8620910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_int_mm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8621960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8623230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8624380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8625350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fill.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8626540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dyn_quant_matmul_4bit_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8627710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8653740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8654570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/alpha_dropout_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8655660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log1p_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8669920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triplet_margin_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8670810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lcm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8673520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argwhere_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8674380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8675400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_frac.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8676510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/orgqr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8683610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8684470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mps_convolution_transpose_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8712950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sub_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8713770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sgn_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8714930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanmedian_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8716240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/crow_indices_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8717410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ihfft_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8729670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/put_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8730580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_standard_gamma_grad_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8750050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/std_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8750990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cummax_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8752260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/choose_qparams_optimized_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8753330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lerp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8755240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_max.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8756610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_int_mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8757870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/var_mean_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8783450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8784210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arctan_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8785440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8786810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/div_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8787840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/round_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8789060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_3d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8790130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hypot_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8791320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8792660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_mkldnn_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8793630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8794720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_permuted_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8796020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8797220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8798270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lt_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8799500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_householder_product_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8800600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_lstm_cell.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8801790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_grid_sampler_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8802940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8804160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k0_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8805350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_scatter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8806540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_apply_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8807670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8808840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nnz.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8810000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8811260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfc_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8812380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8813510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_compressed_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8814640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_from_mask_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8815760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_grouped_mm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8816800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hamming_window_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8817910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8819090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zeros_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8820350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/refine_names_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8821420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k0_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8822550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convolution.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8824060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j1.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8825230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8826400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conv_depthwise2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8827690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8923770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8924640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k0_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8925890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/chunk_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8927370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8928460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8929630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k1_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8957420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sgn_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8958300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8959800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_affine_grid_generator_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8960990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8962100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cholesky_ex_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8963210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/topk_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8964480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_ndtr_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8965470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_numel_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8966640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8967830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8969070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_values_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8970280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_propagate_xla_data_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.8971470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diff_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9016700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_or_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9017580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_numel_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9018900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9019890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9021040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9022280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9023390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_logcumsumexp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9024440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pow_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9025840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9026910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9028220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9029310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_solve_triangular_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9030490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conj_physical_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9031510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9072750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asin.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9073930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multinomial_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9074720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_spsolve_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9075930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trace_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9077080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9078260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/squeeze_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9079330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sspaddmm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9090130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/maximum_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9091100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_impl_index.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9092230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_inv_ex_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9093340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eigh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9094490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9127020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_max_pool3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9139720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_sgd_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9140640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9141570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cummax_helper_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9163510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9164400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conj_physical_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9165850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_compressed_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9166630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_grid_sampler_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9167840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_strided_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9168970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sub_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9170030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Half.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9171200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nan_to_num_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9200070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9200890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_assert_async_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9212320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9213070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9214220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9230470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addr_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9231480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9234230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/not_equal_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9235110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/xlogy_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9236320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_exp2_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9237610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9238610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j0_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9239790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mixed_dtypes_linear_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9240920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_left_shift_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9242140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_complex_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9243220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9244350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_u.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9245450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_eigvals_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9246510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j1_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9247610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_index_put.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9248670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/row_indices_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9249780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multiply_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9251000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kthvalue_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9252110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dim_arange_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9253330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rand_like_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9254410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_csc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9255700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sort_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9256790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9258190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9259020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9260090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/equal_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9261320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9262380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/xor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9263580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_softmax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9264650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_reduce.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9265880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slogdet_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9267170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9268280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/std_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9269450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9270540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log1p_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9373310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_rnn_flatten_weight_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9374280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9375390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9376600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9377640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hspmm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9378790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vdot_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9380200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/take_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9381340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/segment_reduce_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9382560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_triton_scaled_dot_attention_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9383690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9384790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/squeeze_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9385970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9387020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/less_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9388200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_shape_as_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9389310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mv_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9390560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_empty_per_channel_affine_quantized_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9391710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_legendre_polynomial_p_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9392940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9394010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9395260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_min_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9396460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9397600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9398770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mps_convolution_transpose_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9399820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cat_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9400960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/swapdims_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9402120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rrelu_with_noise_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9403360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9404430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_csc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9405590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9406690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_tanh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9407810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardtanh_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9408960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_multigammaln_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9410120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9411160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amax_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9412560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tan_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9413650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_dense_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9414760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9415900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nan_to_num_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9417040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cummin_helper_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9418350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unique_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9419660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9420710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficientzerotensor_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9421770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log10_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9423060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_parallel_materialize_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9424280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9425320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_left_shift.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9426480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pad_circular_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9427820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mm_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9428860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dyn_quant_pack_4bit_weight.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9430390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9431450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frobenius_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9432600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/count_nonzero_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9433680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsub_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9434980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_qr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9436080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_transpose2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9437460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_det_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9442570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9442980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_lgamma_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9443400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isin_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9443740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ne_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9444080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_slogdet_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9444430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multinomial_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9445210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_max_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9446230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tan_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9447540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multinomial_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9448500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_empty_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9449660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_prelu_kernel_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9451050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/all_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9452000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rms_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9453050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_dense_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9454210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool3d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9455290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flip_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9456350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/svd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9457550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9458680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9459900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfft_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9461040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_polygamma_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9462100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rshift_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9463290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log2_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9464460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1e_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9465740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adam_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9466850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/squeeze_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9468070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_gru_cell_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9469480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/einsum_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9470250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_leaf_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9471360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/maximum_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9473350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asinh_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9477440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/broadcast_to_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9481130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_lengths_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9482000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_broadcast_to_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9486930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril_indices.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9489850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sqrt_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9494310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_transformer_encoder_layer_fwd_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9495170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randint_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9499020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slogdet.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9504120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9507170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_erf.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9511500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_assert_scalar.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9512400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_lazy_clone.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9516280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mps_convolution_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9520620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_gather_stats_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9524420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/equal_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9525260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_quantized_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9530360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_digamma.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9532740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9538900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9540030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_flash_attention_forward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9541850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/all_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9547390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cross.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9548220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convolution_double_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9555020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9556490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9562430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_csr_tensor_args_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9563410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_grid_sampler_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9564720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmin_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9571190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log1p.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9572060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/less.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9579570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tensordot.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9580590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_add_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9587590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sample_dirichlet_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9588550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_gather_sparse_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9595220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9596600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dot_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9603230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cholesky_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9603940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/div_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9605890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log10_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9611170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9611950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_forward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9618780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_not_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9620260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_indices_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9622130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9629040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9635470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_dilated2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9636310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_acos_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9643120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gradient_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9643960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_transpose1d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9645160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/or_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9650500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9651970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9658780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_sgd_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9659680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/median_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9667190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_numel_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9668060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_scatter_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9669200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atleast_3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9674750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_chunk_cat_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9676230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_sym_constrain_range_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9681980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/im2col.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9683580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9685910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9691610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_eigh_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9692550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mps_convolution_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9699300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9700080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/retains_grad_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9707260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_autocast_to_reduced_precision_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9708550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sign_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9709250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_like.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9714630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9716170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9722960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9723720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/output_nr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9725060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sqrt_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9730660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lstsq.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9732020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/count_nonzero.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9738170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/feature_alpha_dropout.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9740750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/contiguous_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9745840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9746770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trunc_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9748450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cummin_helper_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9755080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9762560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_depthwise3d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9763310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_scatter_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9770370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i0e_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9771030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/norm_except_dim_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9772280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sort_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9778460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9779210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_stack_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9786130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_hfftn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9787290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_rnn_relu_cell_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9793790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_tensor_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9794510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9795660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9801990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_solve.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9802840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/divide.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9810010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_masked_index.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9810920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_gammainc_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9817560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_neg.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9818560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9819710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_resize_output_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9825040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adamw_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9826940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_inverse_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9828940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardswish_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9835290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ihfft2_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9841940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_get_plan_cache_size.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9843070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/values_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9849770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/feature_dropout.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9850400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9851620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9858790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gt_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9859800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9866330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_xlog1py_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9867450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_inv_ex_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9874340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pin_memory_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9875110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril_indices_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9876230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9881390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_bsr_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9883280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9889910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tensor_split_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9890680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9891770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/std_mean_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9897420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_bsc_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9898760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9904970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i0e_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9906480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expand_as.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9912490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9913530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/le_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9914810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9923410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9924520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9931290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmv_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9932200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_bsc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9933740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9938760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_scramble_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9939600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slogdet_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9946580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_dropout_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9947330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardswish_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9948410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lshift_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9954200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/set_data_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9955330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_det_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9962270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/alias_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9963550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9970280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_efficient_attention.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9971230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_t_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9972390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log_ndtr_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9977730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cholesky_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9978490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinh_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9985100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sub_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9986240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9993000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9994100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:50.9995300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_batch_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0000850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lcm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0002050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0008440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0010250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unique2_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0016840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reshape_as_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0017670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csr_tensor_unsafe.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0019090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_full_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0024300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_sdp_choice_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0025070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logspace.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0030190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad3d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0032940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y0_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0034980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_mkldnn_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0041950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eigvalsh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0049230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_select_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0049880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_inv_ex_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0056600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsqueeze.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0057690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isinf_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0064290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_max.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0065290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0066430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/where_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0072540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0073690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log_softmax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0080230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_addmm_activation_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0081010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0082170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_h.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0087260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/set_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0088650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bucketize_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0095580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asinh_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0103320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logsumexp_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0104120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/chunk_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0105600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0111190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conj_physical_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0111960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_sum_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0116500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0120710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/alias.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0124430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_eigvals_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0125270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0130720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fft_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0133540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/constant_pad_nd_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0138540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1e_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0139490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad2d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0142060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/poisson.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0148190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_h_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0155910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0157320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0164130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/chain_matmul_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0164940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nan_to_num_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0166170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0171810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logspace_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0172670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mT_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0180000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conj_physical_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0180790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/heaviside.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0181820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arccosh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0187540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mkldnn_reshape.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0188870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_slogdet_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0196090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0197420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j1_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0203960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcdiv_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0205060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0205990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Double_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0211780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/histogramdd_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0212580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/aminmax_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0219270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lstm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0220700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_det_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0221900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_transpose2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0228770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_coalesce_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0229730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_triton_scaled_dot_attention_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0236810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward_elemt_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0237650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_saturate_weight_to_fp16_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0244880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid_forward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0245820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril_indices_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0247030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0254820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0256110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/equal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0263660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unique2_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0264530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool2d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0265670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acos_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0271320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/heaviside_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0272740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0279590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_pack_quantized_matrix_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0280390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/heaviside_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0281510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_jagged_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0288610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_dense_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0289400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fw_primal_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0297040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_from_mask.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0297810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_bsr_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0304970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fill_diagonal_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0305720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sum_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0306930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/searchsorted.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0312460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0313790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_solve_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0320590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_solve_ex_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0321600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_and.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0329070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/instance_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0330130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_cosh_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0337110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multilabel_margin_loss_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0337930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_slow_conv2d_forward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0339150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_dense_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0345470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/geqrf_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0346280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tile.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0352970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_coo_to_csr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0353780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_dilated3d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0355030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_clamp_min_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0356250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanmean.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0363630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cholesky_solve_helper_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0370980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/l1_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0372150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0373360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0379130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0380030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0381240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sub_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0388170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/topk_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0389040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0395660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/xlogy_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0397090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_from_bin_tensors_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0404200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_coo_tensor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0405100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0406290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_gammaln_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0411400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scalar_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0412650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_bag_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0419240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_relu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0420260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1e_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0421340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0428670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0436850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_attention_forward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0437420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ones_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0445100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lstsq_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0445990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cholesky_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0447100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0452410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/count_nonzero_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0454170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eq_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0664550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfftn_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0687400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0688220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hypot_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0689400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_gather_stats_with_counts_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0690620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/feature_dropout_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0691760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0692960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0693980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_per_channel_zero_points.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0695230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_has_same_storage_numel_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0696420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pad_enum_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0697520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isclose.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0730320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_complex.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0731110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lstm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0766680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_eigvals_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0767670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mps_convolution_transpose_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0785030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kthvalue.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0786210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_euclidean_dist_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0787390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0788730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sin_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0789660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsafe_chunk_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0790820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_minimum_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0792090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0793230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0794380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0795700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/greater_equal_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0796760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_maximum_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0798070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cholesky_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0799220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hamming_window.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0800400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flatten_dense_tensors_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0801630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_coo_tensor_args_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0802870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rot90_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0804180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0805300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0806500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0807880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0809040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/promote_types_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0810130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_factor_ex.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0811480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0812690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_consecutive_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0813990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_dim_consecutive_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0815140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0816320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_neg_view_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0817620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trapezoid_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0818740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_xor_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0819980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0821070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0822250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j0_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0823410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_not_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0824630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0825760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool1d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0826910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0828290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_nonzero_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0829360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dsplit_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0830570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_vulkan_available_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0831630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resolve_neg.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0833310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_neg_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0834170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rad2deg.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0835360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mps_convolution_transpose.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0836600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_segment_reduce_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0837720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_logit_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0838830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cummin_helper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0840230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0841490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0842550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_addcmul_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0843780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_with_sizes_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0844960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_nd_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0846220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0847450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_transpose3d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0848550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/type_as.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0849790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dot_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0851020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardswish_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0854900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fill_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0857010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0859550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_softmax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0997110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.0999550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_exp_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1001480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sign_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1002530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_tensorsolve.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1003920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argwhere_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1004750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfinv_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1007960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resolve_neg_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1010700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1013490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_triton_multi_head_attention.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1016160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/alpha_dropout.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1018490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_solve_ex_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1020840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_sym_constrain_range_for_size.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1022380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/stride_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1024610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/soft_margin_loss_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1027170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/col2im_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1029350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lift.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1030180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_c2r_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1031090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan2_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1032390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_broadcast_to_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1033590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_floor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1034680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acos_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1081350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_dropout_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1082500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_rnn_layer_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1083640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frobenius_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1084790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_view_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1096860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/stride.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1097910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmv_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1099120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logspace_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1100140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_normal_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1101250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/align_to_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1102310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/relu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1103640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1104760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1105840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sample_dirichlet.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1106880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_ndtr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1108020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_airy_ai_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1146510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_storage_offsets_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1148050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_v_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1148620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clone_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1150070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool3d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1151330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_size_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1185030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_dense_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1185920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_cpu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1187030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1188230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_jagged.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1209350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1210240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1211610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1212590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unique2_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1217520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_rnn_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1218260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1219450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trunc_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1243810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/retain_grad_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1244400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool1d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1245700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/histogramdd_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1246850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csr_sum_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1248140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1269860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanquantile_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1270740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinc_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1271770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumsum_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1272970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/instance_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1274270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1275380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mixed_dtypes_linear_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1276630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_select_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1277750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1278780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/refine_names_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1279900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_remove_batch_dim_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1281200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_copy_from_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1282270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_lgamma_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1283450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_logsumexp_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1284520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acos.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1285670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_frac_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1286840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1288020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool3d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1289230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1290360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_add_relu_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1291390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/chunk.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1292570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_assert_async.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1293680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arange_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1294880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_softmax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1296020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsqueeze_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1297210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triangular_solve.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1298440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_real_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1299820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_layer_norm_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1383300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_reciprocal_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1384390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/renorm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1385170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_local_scalar_dense.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1386260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/absolute.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1387470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_assert_async_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1388650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_affine_grid_generator_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1390090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1415510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mT_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1416340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_from_padded_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1429950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_amp_update_scale.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1430960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1432020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1433200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_copy_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1434230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_ambiguous_defaults_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1435310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mul_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1436470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_transpose3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1437530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rrelu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1438610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_or_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1439690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsqueeze_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1440850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/huber_loss_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1441950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/renorm_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1443020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/record_stream_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1444250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/promote_types_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1445530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_softmax_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1446720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_rnn_flatten_weight_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1447900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/topk_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1448970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vecdot.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1450080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sample_dirichlet_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1451350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rand_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1452460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1453670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_segment_reduce_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1454850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_hfft2_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1455880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y1_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1457010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_scatter_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1458160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_csc_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1459360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1460460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cummin_helper_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1461620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad2d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1462730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1463740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/detach_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1464890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cauchy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1466220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1467540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1468490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/row_indices_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1469630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/add_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1470820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1471900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1473120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_svd_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1474250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_sdp_choice.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1475560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_backward_overrideable_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1476580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log2_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1477750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/selu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1478960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_grid_sampler_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1480150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d_forward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1508840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_frac_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1509690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vander_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1510800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/segment_reduce_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1515750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conv_depthwise2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1516180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_diagonal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1516520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/set_data.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1516920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/alpha_dropout_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1517270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/take_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1518200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward_reduce_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1519500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1520550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adjoint_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1521610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_reduce_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1522830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_expit_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1523930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_attention_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1525050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1526210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_floating_point_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1527440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1528580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multi_margin_loss_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1529680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1530860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_add_relu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1532040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_sinc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1533180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool3d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1534370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_and_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1535460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_svd_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1679880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_maximum_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1680710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csr_prod_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1681850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_autocast_to_reduced_precision_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1682950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_gammaln_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1684050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_bag.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1685120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1690660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/greater_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1691590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1692760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rrelu_with_noise_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1693820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sort_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1694920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fill_diagonal_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1696120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_v_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1697260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_csc_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1698340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zeros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1699540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1700640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1701780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1702960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1704020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmod_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1705120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1706490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1707330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_draw_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1708600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_factor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1709590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril_indices_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1711270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_left_shift_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1712040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arctanh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1713290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1714350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reciprocal_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1715500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/aminmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1716770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nnz_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1718460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1719600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int8pack_mm_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1720760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp2_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1721810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_lstm_mps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1723040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1724270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bucketize_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1725460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_floor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1726550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_spsolve_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1727720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_set_to_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1728830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log10_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1729920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flip.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1731210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1732380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_linear_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1733500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/roll_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1734740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eq_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1735810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cdist_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1737040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/put_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1738160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_rnn_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1739210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_factor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1740400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1741650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_relu_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1742680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/round_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1743760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1745030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_gather_stats_with_counts_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1746140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_fp16_weight_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1747380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frexp_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1748490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1749760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_csr_to_coo_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1750850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_standard_gamma_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1752020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/neg_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1753580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k0_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1754430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pinverse.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1755540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1756540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_scatter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1757820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_fill_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1758800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv1d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1759980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/random_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1761090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expand_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1762230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1763290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arccosh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1764450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1765630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1780020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_clamp_max_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1780950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1781990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fftfreq.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1783210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/im2col_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1784260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_mm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1785460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/narrow_copy_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1786550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/not_equal_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1787630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/prod_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1789000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_rank_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1790000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_select.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1791190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_ndtr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1792370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool3d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1793570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1995070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcmul_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1996030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_h_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1997170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convolution_mode_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1998350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.1999580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_transpose1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2000710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mps_convolution_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2002280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2003500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_standard_gamma_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2004620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfcx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2005880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_solve_ex_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2007180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ge_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2008250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polar_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2009430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_padded_dense_to_jagged_forward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2010530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2011730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mps_convolution_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2012780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_csr_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2013820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/data_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2014950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2016110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2086120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2087040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_group_norm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2088070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unbind_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2089250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/channel_shuffle_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2090380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eq_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2091490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/set_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2092620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_multi_head_attention_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2093730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_functorch_fallback.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2094970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2096090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_rnn_layer_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2097160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_clear_plan_cache.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2098280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adagrad_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2099530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanquantile_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2100640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear_backward_input_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2101840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ihfft_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2103060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_differentiable_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2103860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ger_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2105110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_batch_norm_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2106150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_values_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2107340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2108410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/set_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2109550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sin_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2110820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_conj_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2111730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/normal_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2112750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2113900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_get_plan_cache_size_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2115130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2116220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_det_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2117280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triangular_solve_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2118360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_slogdet_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2119580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tensor_split_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2120750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lshift_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2121730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_quantized.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2122790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_grid_sampler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2123940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/repeat_interleave_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2125090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2126320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gather_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2127470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reshape_compositeimplicitautogradnestedtensor_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2128480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_and_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2129700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_t_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2130750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/roll_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2131950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/remainder_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2133080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2134130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log10_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2135390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2136490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2137730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2138740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2139780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kl_div_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2140930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/roll_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2142020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2143160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2144220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2145310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multinomial_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2146390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log_ndtr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2147580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_cpu_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2148640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2149750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmv_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2150830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_max_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2151940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_values_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2153040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clone.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2154200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2155470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2156450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_choose_qparams_per_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2157800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_mm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2158830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reciprocal_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2159930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y0_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2161130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unflatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2162250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_rnn_layer_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2163420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad3d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2164450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_or_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2165750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_gru_cell_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2166810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/values_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2168030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/corrcoef_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2169190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/digamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2170210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/swapdims.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2171510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2172640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2173740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cauchy_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2174830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2176180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear_backward_input_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2374720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2375640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/huber_loss_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2377070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/permute_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2378440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2379590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sub_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2410230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2411130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mm_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2412110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinh_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2413240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log2_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2414350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2415850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_clear_plan_cache_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2416720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_solve_ex_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2417700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logsumexp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2418830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/all.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2420010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foobar.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2421140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_grid_sampler_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2422350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nested_to_padded_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2423360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_normal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2424650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_lstm_cell_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2425770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mvlgamma_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2427020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log1p_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2428010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2429220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2430580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_rowwise_prune_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2431710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_acos_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2432840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_solve_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2434050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rrelu_with_noise_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2435080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/size_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2510410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eigvals_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2511240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erf.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2530890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2531700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_lerp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2532890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2533970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_reduce_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2535110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2536160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid_forward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2537390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multi_margin_loss_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2538500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rms_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2539520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/movedim.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2540850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mps_convolution_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2541840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arccos.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2543080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2544130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linear.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2545330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bucketize_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2546380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asinh_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2547540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dim_arange.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2548670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2549940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_like_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2605630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_nd_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2606560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tan_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2607630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cdist_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2608780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardtanh_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2609920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matmul_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2611120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Half_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2612320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_prelu_kernel_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2613450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gather.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2614620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_alias_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2615770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp2_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2617000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multi_margin_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2652630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sin_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2653380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfft_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2654700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2655940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2657280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_padded_dense_to_jagged_forward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2658430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acosh_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2659660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j1_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2660850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcdiv_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2662240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/permute_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2663380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_csr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2664570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2665760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad2d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2666950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2668080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool3d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2669410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_empty_per_channel_affine_quantized_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2670370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2671700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csc_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2722760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_constrain_range_for_size_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2737520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/data.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2746140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_power_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2746940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_transpose_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2748190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_local_scalar_dense_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2749500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2750540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gather_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2751790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Long.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2753050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_sym_constrain_range_for_size_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2789650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2790410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hstack_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2791670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_relu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2792620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k1_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2793690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_buffer_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2794730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2795870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_update_stats_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2797000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hann_window_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2798260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ger_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2799280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/div_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2800460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_has_compatible_shallow_copy_type_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2801470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/deg2rad_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2802620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_factor_ex_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2803780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_group_norm_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2804750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2805900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rename_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2807290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2808270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_dropout_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2809420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2810420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_expm1_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2811600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool3d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2812680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tan_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2813820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2815120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2816160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2817260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_rowwise_prune.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2818430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rshift_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2819570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_depthwise_convolution_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2820720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_factor_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2821760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arctan2_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2822940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dequantize_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2851040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_size.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2851970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2853200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_local_scalar_dense_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2854370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mkldnn_transpose_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2904040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2904990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/roll_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2905850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2907190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfft2_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2908240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gru.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2942770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sign_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2943630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atleast_1d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2944730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_fill_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2945860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifft2_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2946990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isneginf.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2948290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sign_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2949270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanquantile.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2950470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log10_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2951750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfftfreq_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2952780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zeros_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2953920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_select_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2955140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nested_to_padded_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2956350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardtanh_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2957630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2958710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_exp_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2959900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2961190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_irfft2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.2962190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3013720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/infinitely_differentiable_gelu_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3014690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pack_padded_sequence_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3015690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_add_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3017010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_unpool2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3018210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_indices_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3019350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3020520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_sparse_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3021800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_psi_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3023100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardswish_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3053700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tile_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3054510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/std_mean_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3056010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3056800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_expm1_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3076570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3077420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_affine_grid_generator_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3104530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_trunc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3105390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mode_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3114650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_not.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3115570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_mul_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3116680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bartlett_window_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3117720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cummin_helper_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3118870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_complex_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3119960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3153260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/minimum_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3154010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ccol_indices_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3155230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_add_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3156490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multilabel_margin_loss_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3157630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/std_mean_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3179730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reciprocal_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3180550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_new_zeros_with_same_feature_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3181660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cdist_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3182810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_sampled_addmm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3183990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_add_relu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3185190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vecdot_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3186410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pad_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3187470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randperm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3188660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_neg_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3189870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3191080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/output_nr_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3192240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_sum_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3193440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/i0.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3194550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sinh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3195700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_dropout_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3196870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_functorch_fallback_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3198090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_solve_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3199230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flipud_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3200360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_ctc_loss_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3201650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/t_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3202820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_int_mm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3204100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3205170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erf_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3206250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igammac_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3207440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_qr_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3208550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_erf_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3209660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3210870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Char_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3212090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_acos_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3213220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diag_embed_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3214320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_spdiags_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3215570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fix_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3216620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cov_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3217730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_scale_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3219030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_full_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3220220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_transform_bias_rescale_qkv_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3221400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/var.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3222300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_floor_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3223520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_not_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3224860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_put.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3225950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dequantize_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3227120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3228330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_chunk_cat_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3229450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3230630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i0e.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3231720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log1p_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3232830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3234020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_wrapped_quantized_linear_prepacked.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3235130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arange_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3236200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3237350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3238560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isnan_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3239670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_fill_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3240820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/remainder.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3241900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3243020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/repeat_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3244350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cummin_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3245500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_tensor_affine_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3246540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3247680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_lerp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3248880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_softmax_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3250070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3251170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/indices_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3252350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_from_bin_cts.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3253540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mvlgamma_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3254590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_rnn_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3255800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amax_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3256970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_assert_tensor_metadata_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3258070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3259280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_rank_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3260440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_scale_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3261550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_stack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3262660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/histc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3264090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/combinations_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3265230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3266420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3267560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_hfft.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3458380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_bag_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3459250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_padded_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3460250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fft.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3461390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3462540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/requires_grad_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3463640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gradient.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3464700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ihfft.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3465910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3467060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3468330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3469410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_real_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3470490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copysign_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3471580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/values_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3472750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_prelu_kernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3474180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool3d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3475010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3476110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_add_batch_dim_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3477480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_is_acceptable_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3541810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mH_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3542660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lift_fresh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3543730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ne_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3556510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argsort_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3557370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multinomial_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3558520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k0.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3559600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan2_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3560690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3561890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3563200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_multigammaln_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3564280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsafe_chunk_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3565370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3566450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_channel_shuffle_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3567640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3568690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmv_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3569780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rshift_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3570890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3572040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfinv_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3573190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_sdp_choice_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3574230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_copy_from_and_resize_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3575310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_log_softmax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3576420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_scatter_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3577790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3578870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/broadcast_to_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3579980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/huber_loss_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3581050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/count_nonzero_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3582200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eigh_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3583380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3584430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/true_divide_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3585660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_ctc_loss_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3586780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3587950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ccol_indices_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3589090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcmul_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3590240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adagrad_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3591590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfc_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3592820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_transpose3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3593950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resolve_conj.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3595190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_gru_cell_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3596390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_bsr_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3597500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_erfc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3598750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3599940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_bsr_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3601140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_ones_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3602280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3603640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eye_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3604910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_forward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3606160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/istft_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3607360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_spherical_bessel_j0_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3608580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcmul_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3609840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3611010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_prelu_kernel_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3612320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3613490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kron_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3615380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3616050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_add_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3751800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/inverse.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3752910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_round_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3753950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_dense_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3776300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rshift_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3777310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumsum_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3778540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/item.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3793010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/soft_margin_loss_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3802640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3812950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hypot_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3826500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_zero.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3842350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zeros_like_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3858150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mkldnn_reshape_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3859060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_select_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3880510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_bsr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3881410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_round_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3882880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cholesky_ex_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3883750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_forward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3884940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool2d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3886030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eig_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3887930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sgn_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3888590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3889800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eigh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3891010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3892120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lu_unpack_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3926140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmax_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3927050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k0_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3928630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vector_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3929560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_layer_norm_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3930820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3931980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_triton_scaled_dot_attention_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3960500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sigmoid_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3973620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_batch_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3974560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_csr_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3975710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pack_padded_sequence_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3976840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_csc_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3977910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_power.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3978940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sgn_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3984450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ne_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3984840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_cos_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3985200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_with_sizes_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3985630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/transpose_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3986010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conj_physical_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3986360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3986820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_power_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.3988090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsafe_split_with_sizes.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4029600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_2d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4030620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4032210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4032940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frac_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4034290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/less_equal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4035230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rrelu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4036540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4037730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_tanh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4038850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4040130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pinverse_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4041120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mean_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4042350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_empty_strided.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4043550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4044750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pow_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4045880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/channel_shuffle_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4092640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4093480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_consecutive_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4094630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unbind_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4095830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/alpha_dropout_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4096900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_abs_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4098080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4099150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kaiser_window.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4100460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4101420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nansum.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4102590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4103670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/soft_margin_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4104700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/det_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4105820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sin.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4147150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addr_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4156410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adagrad_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4169340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_with_sizes_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4170350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_initialize_state_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4182530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4183450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_div_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4195970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/prelu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4206380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/maximum_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4220550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4229760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cslt_compress_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4230690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_compressed_sparse_indices_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4231730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_ceil_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4232980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4234120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmod_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4256060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_xlog1py_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4257080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_get_plan_cache_size_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4258480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_index_put_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4259580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_not_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4280060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/crow_indices_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4280990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logspace_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4282560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4293040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4306260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_sgd_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4316350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_transpose_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4317150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lift_fresh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4318310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_from_mask_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4336320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/indices_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4348500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_stride_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4360430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isreal_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4361330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unbind_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4362470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_spdiags_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4363590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pad_enum.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4364730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/equal_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4365970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_autocast_to_reduced_precision.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4367080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mse_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4368400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_addmm_activation_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4369490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pin_memory_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4401460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_unpool2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4402510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4403770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool1d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4419630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_alias_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4420470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_from_bin_cts_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4421650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/einsum.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4422930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_ctc_loss_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4442730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/xlogy_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4443980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4445080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_conj.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4467810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4468750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_relu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4469940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/permute_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4471090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multiply.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4472170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_stats_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4473410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tensordot_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4474510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4475890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_batch_norm_legit_no_training_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4476980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4478060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trapezoid.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4479110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/prelu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4480410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convolution_double_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4481490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_strides_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4482700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_zero_point.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4483800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_resize_output_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4484960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isfinite_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4486110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_fill_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4487240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_resize_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4488340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4489440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int8pack_mm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4490720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rrelu_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4491710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcdiv_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4493000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4494110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_softmax_backward_data.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4495250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4496500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_affine_grid_generator_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4497580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j1_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4498820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4499920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_from_padded_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4500980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isin_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4502260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_impl_index_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4503330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4504590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4505640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matmul.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4506990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d_with_indices_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4508130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y1_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4509220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reciprocal_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4510440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril_indices_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4511560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isposinf_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4512770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_max_seqlen_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4513770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gcd_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4515070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convolution_double_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4516280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4517330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4518440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_ctc_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4519500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_neg_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4520780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4522090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nested_to_padded_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4523260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_add_relu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4524370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/round_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4525590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resolve_conj_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4653380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear_backward_input_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4654410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fftshift_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4655420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ones_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4656550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_clamp_max.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4657750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4658870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_slow_conv2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4660210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/neg_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4661330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k0_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4662600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4663700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4664890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lerp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4666110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4667280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_set_to_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4668330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logsumexp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4669620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_add_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4670820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pad_packed_sequence.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4671910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/round.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4673160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_coo_tensor_unsafe_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4674250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/roll_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4675460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/i0_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4676590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/alias_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4677780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4678940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4680060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcmul_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4681100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/std_mean_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4682250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multilabel_margin_loss_forward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4757460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/prod_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4758310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pow_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4759570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_as_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4760740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gcd_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4761980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4763170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_det_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4764440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log10.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4790190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4791230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_softmax_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4792430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4793580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mean_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4794770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4795840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scalar_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4797030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4798140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nonzero_static.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4799340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/im2col_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4800610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_spherical_bessel_j0_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4801710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cslt_sparse_mm_search_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4802880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/im2col_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4804060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rrelu_with_noise_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4805280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_dim_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4806460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vsplit_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4807540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copysign_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4808730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_from_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4810090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fw_primal_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4810900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/qscheme_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4812050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randint_like_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4813140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_print.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4814390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d_with_indices_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4815680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/set_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4816790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_ceil_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4817960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_init_dropout_state.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4819170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_fill_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4820260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_rnn_flatten_weight_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4821330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polygamma.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4822640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nextafter_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4823800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_attention_math_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4824950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4826140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gt_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4827310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/swapaxes_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4828570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4829600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_softmax_with_shape_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4830850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4832060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_compressed_tensor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4833070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantile.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4834390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmin_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4835440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_solve_ex_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4836670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/narrow_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4837810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4839020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_scatter_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4840130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nnpack_available.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4841280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mps_convolution_transpose_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4842420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_zeros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4843650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_grid_sampler_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4844800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4845950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4847090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_relu_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4848190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/uniform_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4849360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_hfftn_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4850490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_backward_data_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4851730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4852730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mT_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4978110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nonzero_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4979020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pack_padded_sequence.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4980240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_neg.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4981430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_multi_dot.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4982710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_weight_to_int4pack_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4983840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cummax_helper_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4984930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arange_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4986140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mkldnn_transpose_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4987220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ne.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4988560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4989670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rrelu_with_noise_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4990870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_gru_cell_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4992050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumprod_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4993120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lu_unpack_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4994570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfc_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4995380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_sum_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4996630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_max_pool1d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4997730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lstsq_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.4998870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ormqr_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5002250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5002580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_nonzero.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5002910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5003520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5004610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_xor_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5005810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5006960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_cos.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5008180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randn_like_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5009410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_slow_conv2d_forward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5010490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/subtract_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5011700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_compressed_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5012980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_ceil_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5014070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/div_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5015410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_choose_qparams_per_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5016540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_div_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5017900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_or_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5019100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5020240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mul_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5021450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5022510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/swapaxes.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5023670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/divide_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5141650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_zero_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5142420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sub.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5159530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsub_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5160500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_check_errors_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5161610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sinh_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5162730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rrelu_with_noise_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5163870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_r2c_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5179330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_entr_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5180170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv1d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5181340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_real_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5193590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_svd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5199690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_batch_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5206430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/negative_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5213270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/constant_pad_nd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5214410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_copy_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5215500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_or_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5216590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_lstm_cell.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5217800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_jvp_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5218930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_factor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5220200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_csr_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5221210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_leaf_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5222400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binomial_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5223690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5224960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_csc_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5226060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log2_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5227230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_h_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5228280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resolve_conj_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5229500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_fp16_weight_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5230620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/row_indices_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5231760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_exp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5232880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/layer_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5233930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sum_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5235240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_draw_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5236420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_mask_projection_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5237600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5238700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_zeta_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5239950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5241060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log_ndtr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5242340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_erf_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5243410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copy_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5244590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_solve_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5245810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5246960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eigvalsh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5248180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5249410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_optional_intlist_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5250500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmin_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5251790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_softmax_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5253090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linear_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5254190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5255270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_zeta_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5256380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_complex_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5257590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5258700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cdist_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5259780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/add_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5260940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5262070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_check_errors.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5263310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/angle_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5264500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/from_file_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5265640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_min_seqlen_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5266830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_values_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5267960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_softmax_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5269230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bincount_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5270460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5271700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sort_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5272880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_lazy_clone_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5274200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/align_tensors_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5275180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_reduce_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5276240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/thnn_conv2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5277400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/baddbmm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5278700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/feature_alpha_dropout_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5279830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_renorm_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5280970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5282140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multilabel_margin_loss_forward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5283210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reciprocal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5284300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/contiguous_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5285470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_channel_affine.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5286620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_mask_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5287980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_get_plan_cache_max_size_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5289220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5290300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_dim_consecutive_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5291490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dim_arange_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5292590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5293680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_not_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5294970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_from_bin_cts_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5296060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_csc_tensor_args_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5297300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_xor_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5298300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arcsin.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5299410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/qr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5300610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_real_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5301700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5302800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frac_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5304030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_resize_and_clear_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5305160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_rnn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5306280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_multi_head_attention_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5307450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_segment_reduce_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5308510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_eigvals_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5309760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_string_default_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5310880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_csr_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5311950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5313110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5314280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pairwise_distance.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5315570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5316700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardswish_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5317790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Long_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5318890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5320070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifftshift_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5326540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5327440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5332660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cos_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5333780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool1d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5334920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mkldnn_transpose_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5341580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_strides_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5342360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5348450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5350810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5356140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear_backward_weights_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5356940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atleast_2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5359900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/choose_qparams_optimized.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5364830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_slogdet.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5365770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_slow_conv2d_forward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5369210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/real_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5374070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y1.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5377610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5381740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_size_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5382530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csr_tensor_unsafe_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5386890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_spdiags.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5388820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matmul_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5394810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hamming_window_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5395400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_neg_view.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5403410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsafe_split.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5404260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sign_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5410770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5411750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp2_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5412840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5418700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/div_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5419570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trace_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5427940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trapezoid_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5428840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_hfft_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5434560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/chalf_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5435760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linear_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5442860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5443650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_strides_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5444880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_clamp_min_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5452270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifft_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5453230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/value_selecting_reduction_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5459350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triplet_margin_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5460500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_slow_conv2d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5466700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mH_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5467670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5468980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5474380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/col2im_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5476100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_c2r_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5481370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arcsinh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5483780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/type_as_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5484880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eigvals_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5491390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp2_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5492320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5499120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_laguerre_polynomial_l_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5499850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_safe_softmax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5507080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_copy_from_and_resize.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5508060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_solve_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5509170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logdet.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5514550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/align_as_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5515610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5522450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_dim_consecutive_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5523850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfinv_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5525050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_impl_index_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5531390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5532670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_masked_index_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5533820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trunc_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5539240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cholesky_solve_helper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5540200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_laguerre_polynomial_l.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5541580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5548200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5549100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/min_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5555150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isnan_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5556260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unique2_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5563120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mkldnn_reshape_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5564290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_v_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5565380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pack_padded_sequence_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5570220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5571910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/normal_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5578140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/col_indices_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5579540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumprod_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5585610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5588130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_transformer_encoder_layer_fwd_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5595500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/less_equal_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5596290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_ones_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5603310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nonzero_static_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5604310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinc_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5611260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5612070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rename_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5613060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expand_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5618760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/complex_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5619950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_interface_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5626510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cross_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5627200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool2d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5628260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isin_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5633810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5634620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pinverse_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5641290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_atan_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5643920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/swapaxes_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5648780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lstm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5649650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mps_convolution_transpose_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5652660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/xlogy_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5658050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expm1.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5665210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dist_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5666150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_dense_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5672760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/maximum.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5674230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/remainder_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5675680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ones.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5681050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5682400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_maximum.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5688880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv3d_forward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5697210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/aminmax_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5697900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i1.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5699210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5704150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mse_loss_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5705430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cummax_helper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5712610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pad.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5713970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cross_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5721050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_resize_output_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5721920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gru_cell_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5723110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5728550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/std_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5729970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/round_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5736370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_cpu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5737680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5738900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_irfft2_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5745520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/block_diag.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5746320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_offsets.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5753520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5761920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atanh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5762930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5764030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_bsc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5769440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exponential_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5770680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_depthwise_convolution_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5777640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gather_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5778620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_values_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5779700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/geqrf.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5786260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pdist_forward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5787090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_xor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5792780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_empty_per_channel_affine_quantized_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5793830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5794950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_aminmax_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5801250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_layer_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5802050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_constrain_range_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5809410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rad2deg_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5810170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frexp_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5817670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log1p_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5818620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_gammaincc_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5819670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vander_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5826160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5827030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_real_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5840080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_with_sizes.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5840490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/selu_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5840830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5841920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sum_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5843120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vdot_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5850210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5851590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pinverse_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5852780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_fp16_weight_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5857950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5859880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/add.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5862660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5867920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cummax_helper_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5876040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rand_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5877260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flatten_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5883760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eq_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5884420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_impl_index_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5885600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/less_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5891220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cholesky_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5892770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5896000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5901190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sort_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5902430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5908580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5910850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5916070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5917500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5918740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5924100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/true_divide_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5932230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool1d_with_indices_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5933250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erf_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5939180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5940370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5942600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sin_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5947730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sum_to_size.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5949380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5955780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gather_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5956960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_he_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5962040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gradient_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5964100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cslt_compress.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5965600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_copy_from_and_resize_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5971300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5972610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5978920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_optional_intlist_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5980000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_normal_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5986640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hypot_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5987800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hypot.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5988930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5994130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_size_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.5995720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6002160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6003650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_qr_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6010610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_scatter_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6011530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isclose_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6012760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6018350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unique2_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6019340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hypot_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6026180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/requires_grad_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6027130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_w_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6033980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cross_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6034790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j0_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6036010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsub_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6041830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sort_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6042750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_resize_and_clear_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6049600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_grouped_mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6050510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/put_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6058400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eq_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6059450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_layer_norm_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6060540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_attention_math_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6065650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_floor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6067110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6073180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/signbit_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6074270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfinv_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6080700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diag_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6081820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_sym_constrain_range_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6088670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_layer_norm_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6096730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_logcumsumexp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6097630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6098770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_or.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6104330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/prod_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6105500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6113130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pdist_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6113920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_permuted_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6121230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/topk_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6122180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zeros_like_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6123390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6129470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bincount_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6130800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/set_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6137140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/i0_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6138040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cholesky_ex_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6178920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asinh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6180270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/not_equal_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6181150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6185900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logcumsumexp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6186710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ravel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6187930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6189040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_and_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6190370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_sparse_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6191400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_index_put_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6192590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isin_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6193790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_expm1_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6194870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Short.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6196170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_broadcast_to_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6197440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_scatter_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6198510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmod_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6199910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_scatter_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6201150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6202150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardtanh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6203440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lshift_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6204510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_reduce_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6205650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_solve_ex_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6206880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_multi_head_attention_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6211950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/std_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6212730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vsplit_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6216930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_add_relu_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6222390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_tan_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6223260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_solve_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6228220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csr_sum.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6233570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6234390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ccol_indices_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6238950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6239980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6245840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/constant_pad_nd_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6251740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_mask_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6256570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6263630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/choose_qparams_optimized_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6264300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_softmax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6270480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6271250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6276560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_version_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6282710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pdist_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6283680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mse_loss_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6290040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/corrcoef_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6290880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_neg_view_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6292010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6298020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sin_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6304660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Half_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6307220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_as_sparse_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6312360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unpack_dual_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6313890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_backward_jvp_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6315330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardswish_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6320840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_jagged_to_padded_dense_forward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6321780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sinh_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6328140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sub_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6328850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_flash_attention_forward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6334450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_signed_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6335950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_3d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6341540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6342300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matmul_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6343510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_bsr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6350330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/int_repr_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6351610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pad_circular.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6357420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_dense_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6358260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6364630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_div.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6365640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_hfft_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6371960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_batch_norm_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6372770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_bsr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6378630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bmm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6380140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6381380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcdiv_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6387590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/add_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6388530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multi_margin_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6394610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_xor_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6395960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp2_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6401930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_from_padded.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6403360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_bsr_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6404740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/combinations_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6411230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmod_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6412010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/broadcast_to.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6418930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6426900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardswish_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6427800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_t_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6428970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_amp_update_scale_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6434270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_solve_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6435590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_or_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6442200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i0e_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6443040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6450250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ldexp_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6450750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vdot_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6451840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conj_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6457260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gt_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6458380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diag_embed.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6459540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sqrt_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6466630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nan_to_num_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6468390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6473950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_with_update.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6475080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6481600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6483100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6484440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/heaviside_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6491710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pdist.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6498720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_pack_quantized_matrix_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6499500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cholesky_solve_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6507250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_signed.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6508430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6509370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ne_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6514910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_reduce.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6516270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6522780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_multi_dot_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6523910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_transformer_encoder_layer_fwd_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6525100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eig_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6530280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1e_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6531050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6538000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conj_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6539400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randperm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6545800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/blackman_window_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6547010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adamw_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6548340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rand_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6554420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6555210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_cosh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6562280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/remainder_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6563250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rename_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6570230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6571240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6572380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_right_shift_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6578390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6579790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_put_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6585850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_is_zerotensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6587960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6594940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multilabel_margin_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6595760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_check_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6603010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_dense_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6603940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6611080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Float.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6611860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_neg_view_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6613040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acosh_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6619130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_3d_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6620030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_assert_tensor_metadata_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6625850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6626830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/norm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6628120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_fill_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6634170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pad_sequence_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6635080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsafe_split_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6641790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6643110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6649820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6924850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nonzero_numpy_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6926560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6927960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_coo_tensor_args_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.6929030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convolution_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.9917460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan2_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.9925260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bucketize_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.9932960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_layer_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.9941090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tan.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.9950520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.9959280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_w_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.9966690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ge_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.9974850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_logcumsumexp_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.9983220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.9991310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lu_solve_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:51.9999680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_tbc_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0005570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_backward_data_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0012340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0017940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_draw_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0023910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardtanh_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0029420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_and_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0035710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_select_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0041110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lerp_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0046980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_exp_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0052410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0058370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosh_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0064280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cross_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0069760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0075870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_multi_dot_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0081620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0087300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cslt_sparse_mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0093930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0099080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_add.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0103910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lt_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0108650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0113200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nonzero_static_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0117810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exponential_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0123070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/round_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0128160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0132710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0137590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_forward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0141370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cummin_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0143480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_channel_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0144990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cauchy_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0146140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsqrt_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0147510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linspace_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0149020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0150140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i1_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0151350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frac_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0152590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fftfreq_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0153770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0154960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0156120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_sum_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0157240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0158680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0159850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_not_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0161040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lift_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0162320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/inner_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0163880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_triton_scaled_dot_attention.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0169200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_coalesced.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0175630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_group_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0182480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_dropout_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0311920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fftfreq_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0312970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0314070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0315280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_standard_gamma_grad_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0316400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_inv_ex_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0317540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_tensor_dynamic_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0319370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_addmm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0320500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sum_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0321390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hinge_embedding_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0322380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanmedian_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0323420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dot_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0324630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_empty_strided_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0325650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/stack_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0326850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_quantize_weight.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0327960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0329220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_initialize_state_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0330430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0331560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0332790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_int8_weight_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0333870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cslt_sparse_mm_search_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0335040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_stride_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0336040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_put_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0337290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0338370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0339440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0340590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sign_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0341840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_add_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0342930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_layer_norm_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0344010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_padded_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0420750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_set_to_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0421550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_slogdet_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0422700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_mm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0423760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/concatenate.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0425030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0426110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward_reduce.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0427280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_eigvals.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0428400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/qscheme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0429520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0430830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/movedim_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0431960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/t_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0433020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lu_unpack_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0434050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/thnn_conv2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0435320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_assert_scalar_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0436590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0437680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0438780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_sampled_addmm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0439900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igammac_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0441100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/positive_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0442150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_max_pool1d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0449140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_airy_ai_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0449920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcdiv_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0450730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0451570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_max_seqlen_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0452420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0453190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcdiv_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0453890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsqrt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0454670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_spherical_bessel_j0_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0455590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_lgamma.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0456350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmax_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0457160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_sym_constrain_range_for_size_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0458000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0542700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfc_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0543570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sin_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0544680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0545990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/svd_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0547020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmm_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0548130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lift_fresh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0549220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_zero_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0550460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flatten_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0551570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_factor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0552820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_v.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0553920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/where_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0555280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_inverse_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0556430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_airy_ai_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0557630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pad_enum_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0558920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosine_embedding_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0560040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_c2r_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0561100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/from_file.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0562270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/row_stack_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0563430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0564590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k1_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0565790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/celu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0566980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_exp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0568180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_logit_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0569350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erf_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0570470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lstm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0571630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan2_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0572730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cummaxmin_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0573940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_sym_constrain_range.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0575140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_min_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0576410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0577540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_inv_ex_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0578650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zero_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0579830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_optional_floatlist_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0580850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/row_stack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0581970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_transpose3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0583140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_add_relu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0584330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0585400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/real.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0586600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0587740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pairwise_distance_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0588820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_csr_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0590080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d_forward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0591120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_dual.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0592230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_dual_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0706310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0707500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/renorm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0708550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/relu_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0709890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0710940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0711980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0713090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0714250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_scatter_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0715290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_mul_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0716410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ceil.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0717640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0718730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/align_to_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0719740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sqrt_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0720910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_pinned_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0722030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/min_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0723210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/set_data_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0724540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_normal_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0725510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nnpack_available_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0726690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_right_shift.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0727850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0728960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/take_along_dim_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0730190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0731280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_autocast_to_full_precision.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0732480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_distributed_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0733500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_min_seqlen.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0734630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/remainder_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0735720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_det_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0737000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convolution_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0738150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pad_packed_sequence_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0739310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0740420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0741510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randint_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0742900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantile_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0743930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nested_to_padded_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0745140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0746120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0747340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_svd_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0748480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isclose_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0749540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_as_sparse_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0750620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0751810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0753080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_attention_math_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0754190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu_indices_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0755260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k1.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0756300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_grouped_mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0757490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0758570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atleast_2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0759750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_lengths.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0760990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_h_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0761980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/renorm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0763150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_group_norm_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0764540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0765690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/baddbmm_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0766840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0767990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/take_along_dim_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0769130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_from_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0770260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hsplit_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0771440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gather_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0772730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0773850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0774940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/t_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0776010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu_indices_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0777280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0778350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/absolute_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0779470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isnan_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0780660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_hfft2_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0781840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0782920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atanh_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0784120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_he_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0785400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_H_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0786370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fill_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0787630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_cosh_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0788700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0789940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_csr_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0791030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_mask_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0792390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0793440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0794490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsub_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0795780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0796890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinc_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0798050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_depthwise_convolution_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0799300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mean_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0800370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_transform_bias_rescale_qkv_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0801470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_from_padded_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0802570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randint_like_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0803810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_per_channel_scales_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0807880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_dense_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0808830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0815550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/abs.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0816460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isin_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0823200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/huber_loss_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0824130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/retain_grad.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0825250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_resize_and_clear.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0831480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kron_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0832300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log1p_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0839130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0840350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_no_update_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0846870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bucketize.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0847740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/detach_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0848660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0855570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gather_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0856620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/affine_grid_generator_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0857820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0864970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lstsq_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0865790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clip_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0872110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bernoulli_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0873640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_local_scalar_dense_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0874790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cslt_sparse_mm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0882000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0882940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_ff_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0889720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0890730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0897090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_channel_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0897950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erf_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0899150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vander_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0905390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_compressed_sparse_indices_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0906490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pow_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0912870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Double.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0914130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frobenius_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0915420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0922300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0925040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_pow_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0933450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool3d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0938520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kthvalue_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0939420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_is_any_true.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0942180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reshape_as_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0947930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0949940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y0_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0955760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/crow_indices_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0956640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int8pack_mm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0958380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/uniform_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0965080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_dense_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0966170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_attention_forward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0973040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_csc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0974150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reshape_as_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0981020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0982070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0983230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool3d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0988680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_safe_softmax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0990730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_exp_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0996840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asinh_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0997750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_batch_norm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.0998880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1004560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/set_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1005280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/numpy_T.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1013220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficientzerotensor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1014090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_batch_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1020960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1021830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1022790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/float_power.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1028820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/narrow_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1030090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1037160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_consecutive_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1038160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rot90.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1039260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/t.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1045200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_stats_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1046040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/squeeze_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1054170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_min_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1054910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/greater.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1055870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/swapaxes_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1061830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1062810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1069070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_clamp_min_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1070420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_attention_forward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1071550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sign.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1078560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1079360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_svd_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1085660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/from_blob.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1093860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/repeat_interleave_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1094690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_factor_ex_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1095740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1102000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1103310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y0_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1110430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linspace_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1111430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reshape_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1112600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_ndtri_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1119010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsqueeze_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1119830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/put_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1126110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1127060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1128320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1135910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lift_fresh_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1140160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log1p_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1144020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_bsr_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1148460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril_indices_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1149420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_lstm_cell_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1153950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/det_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1157430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_compute_linear_combination_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1162090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/poisson_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1162880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/put.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1167000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_airy_ai_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1170860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/retain_grad_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1174940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1175740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eq_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1180260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_mm_reduce_impl_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1184110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/im2col_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1188260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i1_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1189220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumprod_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1193160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1197290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fill_diagonal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1200820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lgamma_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1201900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/equal_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1206350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eigvals_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1209400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_flash_attention_forward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1213990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1214820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_cudnn_attention.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1219430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1223730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_dense_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1228030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1231200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/xor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1232440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/value_selecting_reduction_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1237110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unpack_dual.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1239210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log_ndtr_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1243170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1246380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_csc_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1247230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log1p_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1252470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1262350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flatten_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1263080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_numel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1270130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_svdvals_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1270970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_index_put_impl_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1271970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_select.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1277980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1278790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_airy_ai.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1286270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/min_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1287450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmin_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1293920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1294840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_triton_multi_head_attention_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1295970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1301530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1303560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_rnn_layer_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1309980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dirichlet_grad_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1310860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficient_attention_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1312520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1317330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mps_convolution_transpose_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1318360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polar_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1322950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linspace.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1326320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_power_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1330160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_int8_weight_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1331410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1336200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arccos_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1343710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_mm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1345110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1351220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/digamma_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1352660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_is_acceptable_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1359000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1359890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multi_margin_loss_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1361070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear_backward_weights_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1421710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfcx_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1422480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cdist_forward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1423210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mean_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1424030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_tbc_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1424850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_mul_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1425640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Short_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1426420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/round_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1427090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/moveaxis.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1427810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficient_attention_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1431250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mul_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1432170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_per_tensor_quantized_tensor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1438800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1440250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1442150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acos_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1447940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nansum_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1448750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_assert_tensor_metadata_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1456260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_channel_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1457110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1462690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1463740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diag_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1465030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1471380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1472260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_from_tensor_list_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1478450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1479220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mean_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1486270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1487390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1488310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_ctc_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1493670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1495530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trunc_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1501840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_jagged_to_padded_dense_forward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1502770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/detach.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1509890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_he.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1510810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp2_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1511920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_channel_affine_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1517710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/random_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1518750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_aminmax_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1525140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1526570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_select_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1532670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/row_indices_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1533520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expand.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1534590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asinh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1540790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atanh_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1541800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expand_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1542830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sub_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1551870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/affine_grid_generator_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1558190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_tanh_cell_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1560270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ger_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1565680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_as_sparse_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1566580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/margin_ranking_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1569020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1573790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1574600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/result_type_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1578910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_prelu_kernel_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1583250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ormqr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1587810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1590880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1597320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1598640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_inverse_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1605560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_he_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1606430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1629450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1630450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1636290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1640550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1650280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_ndtri_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1655310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_addmm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1656310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_xlogy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1657460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_grouped_mm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1658560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log_ndtr_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1845520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_floating_point_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1846340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_rnn_layer_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1847420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_pow.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1872990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_irfftn_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1873910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/any_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1875120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_minimum_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1876350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sqrt_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1897490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1898330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/median_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1899560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifft.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1900750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmod_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1901830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ceil_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1932850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1946870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/full_like.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1959110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/var_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1960260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_jagged_dummy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1961050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rad2deg_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1962270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arccos_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1963410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmax_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1964550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/refine_names.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1965760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cond_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1967100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_compressed_sparse_indices_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1968220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1969440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1970580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tensordot_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1971700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k1_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1972840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_from_padded_and_nested_example.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1973990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1975180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sqrt_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1976400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1977430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_jvp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1978640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_elemt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.1980020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2033100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2034020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfcx_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2035090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nextafter_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2036290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2037580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_empty_affine_quantized_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2038670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2039810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_stats_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2041020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_tbc_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2042210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2043380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_assert_tensor_metadata.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2044470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2045650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/add_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2046940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_tanh_cell.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2048190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_laguerre_polynomial_l_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2049360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2050520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expand_as_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2051730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/infinitely_differentiable_gelu_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2052890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2054080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_scatter_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2055370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2056480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2057550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_aminmax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2058610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/istft_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2059770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_interface_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2060850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2062140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_expit_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2063180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_stack_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2064260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fliplr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2065380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acos_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2066580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log10_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2067800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmax_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2068890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu_indices.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2070020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_dim_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2071190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_and_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2072360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2073600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2074730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/prod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2075930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mul_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2077040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_pinned.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2078140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_add_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2079300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cholesky_solve_helper_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2080450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_tile_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2081490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2082800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k0_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2083910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rrelu_with_noise_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2196690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_size_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2202910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2203970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_householder_product.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2204990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int4pack_mm_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2219770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/aminmax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2220680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_real.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2221820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2223160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2224180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/huber_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2225810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_batch_norm_legit_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2226900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_batch_norm_legit_no_training_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2257050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pairwise_distance_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2282390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j0_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2283390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_backward_data_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2284570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2285570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagflat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2305710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amax_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2306790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2318800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1e.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2319650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2320760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fill_mem_eff_dropout_mask_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2323280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zero_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2324530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2351150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/all_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2352050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2352970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arange_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2354290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2355370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/chalf_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2356440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_rms_norm_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2373340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_svdvals.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2374290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2375520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_spherical_bessel_j0.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2376740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int4pack_mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2377840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expm1_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2400130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2401100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mse_loss_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2402560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2403520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/std_mean.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2404670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nnpack_spatial_convolution_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2405820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_eigh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2407010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2408090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2409130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igamma_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2439610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2451680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/remainder_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2459300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2460220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_factor_ex_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2461240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_select_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2466340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_sum_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2479280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2480450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_segment_reduce_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2481560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/baddbmm_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2482790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/poisson_nll_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2483900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/baddbmm_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2484940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ger.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2486060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conv_depthwise2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2487340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_coo_tensor_with_dims_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2488460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_irfft_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2489690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2490710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lift_fresh_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2491830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d_forward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2493060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/imag_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2494110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/full_like_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2495220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Float_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2496330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y1_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2497620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2498770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_ctc_loss_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2499850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lt_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2501050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copysign.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2502310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_indices_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2503460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2504540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_fill_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2505760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_tbc_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2507020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cat_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2508080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_xor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2509250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2510350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2511590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2512650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfftn_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2513740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ceil_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2519570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2520400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanquantile_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2521160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_dep_token_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2522070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_warn_in_autograd_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2523070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward_elemt_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2523890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_round_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2524720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_alias.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2525430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/le_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2526180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2526960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resolve_neg_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2527770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_u_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2528600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binomial_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2529360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mvlgamma_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2530150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lshift_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2530980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2532030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficient_attention_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2533220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifft_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2534360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_gammaincc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2535600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2536710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2537850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2538970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2540120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/concat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2541160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mul_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2542350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_addmm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2543610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_multigammaln.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2544820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pad_circular_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2545860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifftn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2547260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sum_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2548510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nonzero_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2549630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nonzero.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2550710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fliplr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2551870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/negative_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2552990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fftn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2554060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_batch_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2555310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_xlogy_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2556330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_empty_strided_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2557580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Int_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2558660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_add_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2559880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifftshift_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2560940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eye_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2562030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cartesian_prod_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2563190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_csr_tensor_args_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2564470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2749640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_transpose2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2751130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2752710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/geometric_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2753510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosh_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2754670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copysign_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2755840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_r2c_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2756910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/output_nr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2758130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argsort_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2759060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_hfft_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2760180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinh_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2761360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sin_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2762550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unique_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2763680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sin_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2764930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/range_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2765960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log_softmax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2767310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosh_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2768470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flip_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2769630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2770700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/detach_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2771900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pdist_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2846370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2853060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isnan.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2880520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_xlogy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2886360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2895960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/all_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2896910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_softmax_backward_data_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2898140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/subtract_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2899310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_rnn_layer_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2900590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumsum_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2901420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_scatter_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2902570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_reduce_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2903610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_indices.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2904810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_det_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2905900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sin_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2907000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/random_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2908150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pdist_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2909250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2910360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2911470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2912620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_entr_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2913750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_lgamma_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2914770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/any_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2915950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_add_batch_dim_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2917330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lu_solve_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2918540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanmedian_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2919510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_copy_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2920900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad3d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2922130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumulative_trapezoid_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2923340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/any_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.2924540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_dilated2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3000810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cholesky_ex.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3001830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3019690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3020730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/geqrf_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3021770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfftn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3022960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3024040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_entr_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3025140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv3d_forward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3026130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/qr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3027320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cholesky.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3028530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3029750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lerp_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3030970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_entr_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3032070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_scatter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3033170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flip_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3034340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/topk_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3035360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_neg_view_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3036570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3037760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_softmax_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3039030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/col_indices_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3040150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3041400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool3d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3042220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rand_like_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3043310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foobar_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3044460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/histogram_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3045620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/all_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3046800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_channel_shuffle.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3047940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vdot.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3049020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_grouped_mm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3050240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_dilated3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3051370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/any_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3052800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward_elemt_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3053880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_log_softmax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3055020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3056120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dirichlet_grad_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3057360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_coalesced_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3058490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/baddbmm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3059640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3060780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trace_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3061930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nextafter_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3063200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_forward_only_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3064340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3065600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_dropout_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3066610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_multi_head_attention.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3067810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copy_sparse_to_sparse_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3069010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3070070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Byte_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3071500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3072560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bartlett_window_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3073640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/renorm_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3074840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3199070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/t_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3199840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsafe_split_with_sizes_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3201050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pixel_unshuffle_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3201950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmin_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3223360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_sum_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3224190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_sinc_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3225380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_nd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3226510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/meshgrid_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3227690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3228880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_batch_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3229950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/angle_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3231220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/swapdims_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3232410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gather_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3233500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3234620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/relu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3235800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/poisson_nll_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3236890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_not_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3237940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/item_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3239110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_batch_norm_legit_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3240330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3241580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_eigh_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3242680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_legendre_polynomial_p.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3243780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_batch_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3245100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3246220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3247910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3249190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3250470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pixel_shuffle_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3251560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rshift.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3252750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_transform_bias_rescale_qkv_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3253850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_update_stats_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3254990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/squeeze_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3256160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i0e_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3257520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3258350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3259490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/subtract.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3260680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trunc_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3261910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adamw_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3262930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amin_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3263980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amin_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3265180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_exp_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3360210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3361170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_relu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3363360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/indices_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3364170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int4pack_mm_for_cpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3365070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_from_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3365960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/align_as_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3367250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/blackman_window_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3368290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_elemt_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3369450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3370610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3371710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_ff_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3372830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sort_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3373910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3375190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cummax_helper_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3376230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cat_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3377370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/le_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3378500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mean_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3379590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_inference.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3380750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ihfftn_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3381830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mode_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3382980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/segment_reduce_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3384020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/detach_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3385220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_triton_multi_head_attention_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3386360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unbind_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3387500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/corrcoef_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3388800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_ctc_loss_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3390170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3391170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3392320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unflatten_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3393470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3394580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ldexp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3395740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log1p.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3396950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/transpose_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3491690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arange_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3492510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/le_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3506740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3507680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3508760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/align_as.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3509890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linspace_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3511090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_ragged_idx_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3512450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3513430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_transpose2d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3514580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/narrow.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3515630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_mkldnn_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3516680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hspmm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3517810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_saturate_weight_to_fp16.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3518910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3520130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsafe_chunk_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3521100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/var_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3522170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfinv_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3523360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_rnn_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3524620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_apply_dense_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3525650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dot_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3526720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_dim_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3527930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_irfft2_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3580720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3581620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3583040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_local_scalar_dense_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3583810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3585100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_not_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3586220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_get_plan_cache_max_size.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3587360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_bsr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3588460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/digamma_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3589600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lstm_cell.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3590730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/digamma_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3591980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfinv_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3593130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/col_indices.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3594300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tile_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3595400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3596490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/movedim_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3597610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bincount_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3598700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3599770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_xor_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3600910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_jagged_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3601990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_H_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3603160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3604190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_not_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3605370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_indices_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3606500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addbmm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3607690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_storage_offset_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3608610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ctc_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3609760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_max_pool3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3610950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_sdp_choice_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3611970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_broadcast_to_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3613020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eq_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3614140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/angle_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3615200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/take_along_dim_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3616320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dimI_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3617390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3618450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3619550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_sparse_matmul_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3620750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_debug_has_internal_overlap.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3621860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i0_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3622890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_ndtri_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3628400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3730580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_as_sparse_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3731390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_mkldnn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3745620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/le.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3746540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ihfftn_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3747640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lstm_mps_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3767030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_is_all_true_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3767970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/transpose_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3779800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/meshgrid_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3780710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_per_channel_quantized_tensor_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3781730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_rnn_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3797300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3798170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adam_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3811540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copy_sparse_to_sparse_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3812350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_addmm_activation_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3813480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/allclose_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3830990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_gammainc_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3831810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_sparse_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3832940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool1d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3847210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_atan_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3848140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cummin_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3849210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_hfft2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3850400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_ctc_loss_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3851530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3852670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_permuted.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3853850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3855110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_expm1_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3856300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/prelu_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3857510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_conj_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3858720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fftshift_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3859810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convolution_mode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3860940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_scatter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3862170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_constrain_range_for_size_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3863160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unique_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3864380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cdist_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3865470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_tbc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3866710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triangular_solve_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3867920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad2d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3869070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_dim_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3870190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/searchsorted_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3871400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logspace_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3872520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/record_stream_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3873610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3874810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sign_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3875850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frac.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3877060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binomial_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3878170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ihfft_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3879270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amin_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3880350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hamming_window_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3881510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_softmax_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3882860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_forward_only_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3883820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/indices.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3885110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3886190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_and_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3887550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/searchsorted_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3888680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/histc_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3889930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3891000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_pinned_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3892290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_quantized_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3893410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cholesky_inverse_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3894590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multi_margin_loss_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3895850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_with_sizes_copy_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3897020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arctanh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3898170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/alias_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3899350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ravel_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3900430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_pinv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3901700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/instance_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3902980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3904330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3905500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_add_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3906820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3907860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kron_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3909310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mode_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.3910400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arctan2_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4046550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eye.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4047490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log1p_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4048640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_bin_edges_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4049790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sqrt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4051130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4052070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4053290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k0_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4054380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4055540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_relu_cell_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4056710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_or_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4057750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bartlett_window.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4058870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_left_shift_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4060090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4061120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_triton_scaled_dot_attention_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4062230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_lstm_cell_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4063460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_copy_from_and_resize_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4064480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4065660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_check_errors_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4125630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_batch_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4126540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_gather_sparse_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4149510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_strided_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4150330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4151470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_entr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4152600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4153650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_from_padded_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4176210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_grouped_mm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4177010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4178220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_csc_tensor_args_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4179320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4180440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frac_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4181590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4182910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4183900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_tan_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4185030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tan_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4186180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frobenius_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4187340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_exp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4188360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sgn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4225940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_inv_ex_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4226840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_trilinear.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4240320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4241460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4242340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_add_relu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4243660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifft2_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4244840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4245930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_optional_floatlist_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4247130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_log_softmax_backward_data_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4248090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sum.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4249290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/repeat_interleave_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4250420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_xlog1py.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4251580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_buffer_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4252710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/inner_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4253920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4255040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_round_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4256060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/equal_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4257220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_prelu_kernel_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4258280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4324150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unbind_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4325060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_tanh_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4326130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_norm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4327190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pin_memory_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4328350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_left_shift_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4329380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_minimum_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4330500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_det.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4331500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/chalf_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4332660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_scramble_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4333750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4335020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4336080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_polygamma_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4337140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/values.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4338430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_inference_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4339540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4340730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_dense_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4341780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/size_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4342970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4344020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool1d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4345140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumsum_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4346240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bernoulli_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4347280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_assert_async_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4348440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isposinf_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4349610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_laguerre_polynomial_l_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4350940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_householder_product_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4351770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/abs_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4352870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i0_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4354020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cond_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4355000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4356100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_svd_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4357140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/angle.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4358340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4359430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/allclose.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4360500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4361540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4362720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kaiser_window_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4363810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unpack_dual_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4364980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_affine_grid_generator_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4366290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multilabel_margin_loss_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4367200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_with_update_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4368330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_min_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4369380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expand_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4370550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy_with_logits_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4371660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4372860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4373960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_debug_has_internal_overlap_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4375160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_trilinear_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4376250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cauchy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4377400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/soft_margin_loss_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4378460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cholesky_inverse_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4379600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4380700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k1.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4381740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsqrt_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4382850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_dense.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4383960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmin.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4385050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_csc_tensor_args.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4386090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4469440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scaled_dot_product_attention.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4470440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mode_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4471670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_batch_norm_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4472810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vector_norm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4473940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_select_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4475030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_rsqrt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4476200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_ambiguous_defaults.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4477320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ones_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4478380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mul.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4479660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/relu_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4480780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficientzerotensor_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4481940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4483270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_channel_shuffle_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4484530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_from_padded_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4485700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4486990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmod_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4488120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_csc_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4489210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gcd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4490420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dimV.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4491500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4492750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4617070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pixel_shuffle_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4639350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_layer_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4649400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_ndtr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4662430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4672760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/retain_grad_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4682970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asin_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4695960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4697000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/column_stack_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4709670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int8pack_mm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4710680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isreal_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4713320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_flash_attention_forward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4714040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4715240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conj_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4723800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/repeat_interleave_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4724610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4725720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_normal_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4726880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/qr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4728070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/full_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4729220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trunc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4730450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_rnn_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4731600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4732730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sub_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4733910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_pack_quantized_matrix.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4735460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_wrapped_linear_prepack_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4736480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/huber_loss_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4737600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_min_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4738600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_leaf.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4739900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_2d_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4740940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_quantize_weight_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4742140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ldexp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4743290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_mul_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4744440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_rnn_tanh_cell_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4745500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4746680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bmm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4747950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_inv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4749050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pow_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4750310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4751520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4752660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pack_padded_sequence_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4753760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randperm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4755150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_reduce_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4756230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lu_solve_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4757340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dense_dim_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4758480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_backward_data_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4759680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp2_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4760830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanmean_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4761970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/margin_ranking_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4869580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_right_shift_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4870380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_csr_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4871670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_set_plan_cache_max_size_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4872710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sqrt_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4873880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/col_indices_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4874990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_fill_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4876260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/maximum_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4877340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asinh_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4878470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_not_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4879570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/random_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4880750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_div_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4881800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_expm1_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4882940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_spherical_bessel_j0_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4884000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_entr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4885110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4887650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erf_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4887990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Char.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4888750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/norm_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4889670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trace_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4890710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hinge_embedding_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4891860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bartlett_window_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4952500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gather_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4953280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/indices_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4954510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_jagged_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4955620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsafe_chunk.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4956870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4959690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dirichlet_grad.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4960510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rand_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4990180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_use_cudnn_ctc_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.4990970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_backward_jvp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5003550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igammac_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5004310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_buffer_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5005640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5006990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_padded_tensor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5007820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5009020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lgamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5010200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amax_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5011300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5012420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nnpack_available_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5013460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fft_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5014620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5015730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/relu_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5016800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_index_put_impl_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5017970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/range_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5019120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cholesky_solve_helper_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5020200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_shape_as_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5021270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_and.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5022480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bilinear_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5023430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diff.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5078680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/round_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5079660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sigmoid_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5080870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5081900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bincount_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5083360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_dropout_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5084720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_nd_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5085420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mkldnn_transpose.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5086690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_asin_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5087690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5088990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5089900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_digamma_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5091010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eigvalsh_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5092050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_rnn_flatten_weight_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5093190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_bsc_tensor_unsafe.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5094330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isposinf_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5095590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5096760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5097870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_divide_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5099080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/full_like_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5100300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_compressed_tensor_with_dims.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5101330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Char_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5102580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_renorm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5103630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/promote_types_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5104860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_per_tensor_quantized_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5105960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/values_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5107010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5108140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cov_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5109280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/greater_equal_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5110350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gather_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5111460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scaled_dot_product_attention_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5112530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_is_all_true_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5113660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nonzero_numpy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5114870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_scatter_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5116210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5117250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5118170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/msort.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5119480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_interface_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5120490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hstack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5121570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unique2_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5122640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/divide_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5123980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randn_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5124870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/var_mean.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5125970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_xlog1py_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5127070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5128210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5129360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randperm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5130470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_svd_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5131550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_softmax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5132640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_per_channel_axis.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5133800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cholesky_inverse_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5134920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adamw_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5136110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/complex_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5137190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fix_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5138360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5139560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5140640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cat_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5141780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_empty_affine_quantized.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5143180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5144190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5145310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pixel_shuffle_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5146400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_div_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5147900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_channel_affine_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5149040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resolve_conj_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5150150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/segment_reduce.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5151270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cos_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5152620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_tensorinv_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5153570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifft2_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5154700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cslt_sparse_mm_search_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5155870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pdist_forward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5157030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5158260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5159370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rrelu_with_noise_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5160490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_stride.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5161650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_h_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5162730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tan_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5164010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5165300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_get_plan_cache_max_size_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5166590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5167680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5168760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5169850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5170900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5172140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5173180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randn_like.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5174520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/histogram_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5175350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dstack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5177840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_csc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5179090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5183630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_int_mm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5186210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_lu_with_info_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5192140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5193120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5194960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_per_tensor_quantized_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5201240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trace.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5204340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_exp_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5205170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/indices_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5209320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5217970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5220600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gru_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5221530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_attention_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5227720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5229020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_tanh_cell_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5235720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_channel_affine_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5236820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_warn_in_autograd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5237990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arcsin_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5245510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_optional_filled_intlist_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5246370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5252470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_chunk_cat_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5260460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_from_bin_tensors_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5261130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atleast_3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5262190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kthvalue_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5268080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_spsolve.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5268770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5276460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5276990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad2d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5284610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5285390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5286580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5292020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trapz.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5293210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_trilinear_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5300090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_batch_norm_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5300900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linear_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5302010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_ctc_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5307860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dropout.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5308770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_scatter_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5315940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randperm_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5316950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5324670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/less_equal_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5325480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mse_loss_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5326620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5332520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/qscheme_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5333200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumprod_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5341080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bmm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5342020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5343100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dyn_quant_matmul_4bit_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5349200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/blackman_window.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5350150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5357230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5358320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu_indices_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5359530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_transpose3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5365480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_u_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5366720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_lerp_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5373600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5374350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5375420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_select_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5381080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dropout_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5382130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lstm_mps_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5388570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cartesian_prod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5389690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_mm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5397570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_indices_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5398320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_broadcast_to_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5399460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ormqr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5404960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5406280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5412700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool3d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5413690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5420920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5429510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_optional_floatlist_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5430380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mse_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5437710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/channel_shuffle.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5438730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_from_bin_tensors_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5439770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/indices_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5445530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5446490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ge_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5453110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool3d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5453950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/minimum_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5455060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dimI_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5459500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_as.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5462440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_standard_gamma_grad_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5466730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5467530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/or.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5474890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_same_size_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5475660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumsum.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5482790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5483990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/set_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5485130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exponential_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5497920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5498530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linear_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5500410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polar_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5501380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copysign_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5508200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asin_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5509050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5510240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5517740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_layer_norm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5518650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/t_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5525910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_softmax_with_shape.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5526960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reciprocal_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5528060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sigmoid_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5534270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/alias_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5535090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ormqr_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5536190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hsplit_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5542320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/heaviside_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5543780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kaiser_window_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5550160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fftfreq_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5551120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/greater_equal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5552760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5558440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5559210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5562560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5567620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5571070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_lstm_cell_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5574930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zero_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5575700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k0_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5580730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vsplit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5583450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_eigh_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5588940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i1_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5593070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanmedian_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5802590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_empty_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5803320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5804440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5805700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/where_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5806830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/channel_shuffle_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5807960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_jvp_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5809110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_storage_offsets.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5810220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_convolution_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5811310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_is_all_true.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5812400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/le_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5813590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool3d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5814700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polygamma_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5815830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficientzerotensor_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5816890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5818050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5819170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_he_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5820270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_values_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5821300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmv_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5822580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5823710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_softmax_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5824850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_impl_index_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5826040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/crow_indices_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5827110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5828350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5829400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_bag_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5830490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flatten_dense_tensors.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5831540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_hfftn_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5832660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mvlgamma_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5910890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_rnn_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5911740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isreal_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5912890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumprod_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5913950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_xor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5915070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_initialize_state_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5916210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_index_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5917340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cos_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5918460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fftn_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5945310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5946230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multi_margin_loss_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5947810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_resize_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5948690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_tanh_cell_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5949990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5950990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5952230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eq.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5953420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficient_attention_forward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5954600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_sum_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5955750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumprod_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5956880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmod_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5958130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isinf_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5959180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_c2c.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5960510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vstack_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5961730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_bsc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5962680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pad_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5963710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i0.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5964830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5965950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arcsinh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5967070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5968230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_prelu_kernel_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5969340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_relu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5970570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5971820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/i0_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5973000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/huber_loss_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5974060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lu_unpack_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5975220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_coalesced_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5976610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_grouped_mm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5977450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfcx_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5978570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/var_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5979800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool3d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5981030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j0_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5982120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_factor_ex_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5983250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_triton_multi_head_attention_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5984600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igammac_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5985640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/var_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5986710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5988010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5989090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mean_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5990150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lgamma_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5991200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_mm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5992420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_sdp_choice_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5993500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_mkldnn_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5994750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5995860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_from_padded_and_nested_example_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5997020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy_with_logits.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5998180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_compressed_tensor_args.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.5999320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad3d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6000490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bmm_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6001550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_dense.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6002760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6003810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6004990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igamma_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6006150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_batch_norm_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6007230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_full.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6008500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6009640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6010720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_slogdet.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6012100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfft2_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6013000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_atan_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6014040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clip.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6015240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reshape.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6016390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_transpose2d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6017680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Long_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6018900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6020090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_fill_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6021150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cslt_sparse_mm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6022260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isneginf_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6023530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_power_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6024940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_spherical_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6025990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_complex_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6027080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mvlgamma.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6028200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/permute_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6029320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sign_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6030490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6031570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6032650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_minimum.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6033650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/int_repr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6034760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/heaviside_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6035790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/column_stack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6036980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6037930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/minimum.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6039000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_bsc_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6040260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/absolute_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6041400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/from_file_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6042870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_transpose.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6044110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6045160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinc_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6046430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_trunc_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6050320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/real_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6051670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_with_sizes_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6058110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6059470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/align_tensors_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6065600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acos_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6066950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/minimum_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6068090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y0.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6075150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sspaddmm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6076110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6083870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logdet_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6084570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cauchy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6092390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_xor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6093270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_vulkan_available_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6094670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6099630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gt_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6100290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ccol_indices.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6107590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/normal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6108550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6109780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_frac_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6115220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_gru_cell_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6117000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_bsc_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6123460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eigh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6124380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6125490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6131310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_relu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6132370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad2d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6138780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6140740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nnpack_available_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6141760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_csr_tensor_args.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6148360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6149120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_constrain_range_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6156370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multilabel_margin_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6156990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6164660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_bsc_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6165660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_layer_norm_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6166650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_factor_ex.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6172050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linspace_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6173120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/heaviside_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6179710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_bsr_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6180600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/histc_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6181670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pad_packed_sequence_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6188440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_per_channel_zero_points_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6189240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_dense_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6195990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/square.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6197010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_empty_per_channel_affine_quantized.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6203710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagflat_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6204900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_relu_cell_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6206100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6211560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/prod_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6212230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cdist.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6219680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu_indices_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6221320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_expm1_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6227120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atleast_1d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6228190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_forward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6229390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6235720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1e_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6236730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_transpose1d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6239410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_assert_async_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6244740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfftfreq.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6249350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_w_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6253890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cummax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6257810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6261360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/normal_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6262200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6266370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6270050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumsum_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6274510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6275330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6279900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/histogram_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6283540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_acos.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6287270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6296680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_new_zeros_with_same_feature_meta_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6309210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amin_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6314520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6316600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6319090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_jagged_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6323520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_power.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6327630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool1d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6331180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6333130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_no_update_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6336660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6339910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6344620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/norm_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6345400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trunc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6349420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_qr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6354070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_zeta_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6358840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vector_norm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6361880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6362870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6367930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv3d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6368880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fill_mem_eff_dropout_mask.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6375280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lt_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6376470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6378300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/crow_indices.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6383530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_dense_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6385320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/minimum_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6391480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pixel_shuffle_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6393170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_batch_norm_legit_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6399440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_complex_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6400720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_clamp_min_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6402000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convolution_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6407750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6408880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_expit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6415820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zeros_like_compositeimplicitautogradnestedtensor_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6417700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_amp_update_scale_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6423290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lstm_cell_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6423950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6425160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6431200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6431970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rename.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6438700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addbmm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6440600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_wrapped_linear_prepack_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6447090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6448000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fill_mem_eff_dropout_mask_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6453360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/xor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6454210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_with_update_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6460840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6463170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log2_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6468800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sub_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6469740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_real_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6473230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_c2c_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6478350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_factor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6479060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/norm_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6482430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_transformer_encoder_layer_fwd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6486750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_csc_tensor_args_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6490460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_like_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6494970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_semi_structured_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6495890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6499960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_solve_ex_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6504210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_is_zerotensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6508550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6516400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/col_indices_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6520850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_scatter_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6521570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_select_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6525720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gt_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6530030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vander.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6533900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d_with_indices_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6537880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cdist_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6538610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_masked_index_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6542890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cslt_sparse_mm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6546700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_impl_index_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6550590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/signbit_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6551270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_add_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6556010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/add_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6559800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_addmm_activation_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6564130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/maximum_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6565240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/renorm_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6569440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6573260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_max_pool2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6577040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randn_like_compositeimplicitautogradnestedtensor_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6577770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6582200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j0_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6586020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fft_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6594000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_optional_floatlist_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6597760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_lazy_clone_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6598520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6603450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_slow_conv2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6606480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6611190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/result_type_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6612100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lcm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6615430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_erfc_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6620780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_per_channel_zero_points_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6623380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_softmax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6627830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6628880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_dep_token_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6632950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_zeta_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6637340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/poisson_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6640480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_amp_update_scale_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6641490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pad_packed_sequence_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6647010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_irfft.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6649600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6660770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sum_to_size_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6665610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/transpose_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6675970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trace_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6676840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfft.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6681760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6683020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_max_pool1d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6693810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/one_hot.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6694790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6695880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6696990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atleast_2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6698150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmin_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6699240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_from_padded_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6700390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randint.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6701990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6703180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6704290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6706670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6708100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/broadcast_tensors_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6711880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6716660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_constrain_range.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6721870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_exp_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6722740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fftshift_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6726920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6732130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asin_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6733060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diag.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6940290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mse_loss_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6941070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gather_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6942260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_is_zerotensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6943290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/median.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6944540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_relu_cell_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6945630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cummin_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6946830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dequantize_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6947870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cummax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6949110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_layer_norm_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6950590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_complex_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6951550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igammac_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6952690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cat_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6953740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_qr_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6955040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6956030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/celu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6957200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_assert_scalar_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6958260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6959310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/where.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6960530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_strided_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6961720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_batch_norm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6962950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_reciprocal_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6964030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_rnn_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6965190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_interface_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6966250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6967520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_leaf_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6968660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/remainder_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6969650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_size_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6970700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fill_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6971720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/relu6.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6972840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_coalesce.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6974010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_right_shift_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6975080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nextafter_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6976160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6977300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nonzero_static_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6978400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_initialize_state.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6979490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/range_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6980870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6981930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cross_entropy_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6983030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_channel_shuffle_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6984140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bmm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6985340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_per_channel_quantized_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6991130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_add_relu_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6991970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6992690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/negative.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6993420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lstsq_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6994170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6994910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmax_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6995620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_cpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6996370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_group_norm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6997200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6997940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arcsinh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6998670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_per_channel_scales.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.6999480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7000240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_optional_intlist_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7001090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7001950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_tensor_affine.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7003170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/stack_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7004160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pdist_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7005260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_string_default.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7006430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7007520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/narrow_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7008630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_tile.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7009670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7010850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_sdp_choice_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7011990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_signed_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7013150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7014180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_optional_intlist.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7015440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_affine_grid_generator_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7016590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool3d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7017900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_coo_to_csr_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7018920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7020010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atanh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7021200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sqrt_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7022320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/var_mean_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7023360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polar_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7024420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/square_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7025520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argsort.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7026640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7027740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erf_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7028970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7030080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cholesky_ex_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7031290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_log_softmax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7032470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_from_bin_cts_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7033460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/norm_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7038170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7039080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mean.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7045710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_assert_tensor_metadata_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7047300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_addmm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7054180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_clear_plan_cache_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7054980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_strided_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7056250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7062560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_right_shift_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7063420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/chalf.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7070400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7071310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7072360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_factor_ex_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7078630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_t_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7079820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_permuted_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7088480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_amp_update_scale_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7094320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardswish_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7095090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pow_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7101800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frexp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7103250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cholesky_solve.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7109720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dim_arange_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7110540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/median_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7111640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7117830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7119210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_efficient_attention_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7126020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7126840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bernoulli_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7127970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_values_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7134580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_select_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7135460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7142580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sigmoid.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7143390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_and_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7150460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_no_update_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7151470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_is_acceptable_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7152450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_norm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7158270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv1d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7159010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lcm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7165880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rrelu_with_noise_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7167330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/retains_grad_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7168510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i0_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7175630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_strided_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7176400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_dep_token.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7184050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/complex_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7184910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool1d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7191630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/count_nonzero_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7192460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7193650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7200030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7200930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7208030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad2d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7208900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i1_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7210130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nansum_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7216900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cholesky_inverse_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7217730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_optional_intlist_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7225680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7226600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_max_pool2d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7227540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7233210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_csc_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7234570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ne_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7241330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_reduce_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7242170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_divide_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7243380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficientzerotensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7249230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7250180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7257350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7258380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polygamma_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7264770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lgamma_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7265610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k0.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7272680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exponential_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7274020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cholesky_inverse.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7275180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7282620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsqrt_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7283500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_v_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7290930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/row_stack_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7291720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_per_channel_quantized_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7294200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/segment_reduce_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7295740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sin_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7303670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_strided.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7304620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7312030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_solve_triangular_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7313380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/abs_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7320260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/moveaxis_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7321050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7322300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7328400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ceil_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7329260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conj_physical.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7336040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_asin_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7336880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ihfft2_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7337990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_from_bin_cts_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7345450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/deg2rad_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7346250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/median_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7353220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k0_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7354620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7360630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polygamma_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7361420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_solve_ex_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7362670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7368460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_stats.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7369740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/baddbmm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7375980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7377720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_grid_sampler_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7378630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_solve_ex_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7383900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7385010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7391650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7393050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_complex_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7399910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7616310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/huber_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7617180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_ctc_loss_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7618210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pin_memory.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7634710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_safe_softmax_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7642850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp2_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7643590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/stft.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7644830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7659750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erf_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7660760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7675270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7676160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7687720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_slogdet_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7688540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7689770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_depthwise3d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7691010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7713210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_ndtri_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7714140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/celu_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7715190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7716460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_dilated3d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7717640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanmean_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7739120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7740170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7741310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardswish_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7742440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_weight_to_int4pack_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7743540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polygamma_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7744590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/normal_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7745920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7747130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7748330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7749290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/add_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7750540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7751580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_gammainc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7752790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_gather_stats.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7753920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7755000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sspaddmm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7756020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/stack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7757090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isin.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7758310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multi_margin_loss_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7759420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7760380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/svd_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7761480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_bsc_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7762580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hspmm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7763710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conj_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7764800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7765920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmm_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7767070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7768150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clone_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7769320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_pow_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7770410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7771700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log2_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7868140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7869150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7870060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eigvals.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7889840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vander_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7890750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7891820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardtanh_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7907150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_tbc_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7908020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isposinf_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7919770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_grid_sampler_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7920760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_legendre_polynomial_p_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7934520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_w.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7935630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7936800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7937910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_add.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7959100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_transform_bias_rescale_qkv_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7970010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_batch_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7970780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fill_diagonal_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7972010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_digamma_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7986700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_debug_has_internal_overlap_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.7987590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_serialization_subcmul.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8000020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/prod_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8000870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_values.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8013070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_affine_grid_generator_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8013900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/neg_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8027060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_tensorinv_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8027990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_xor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8029130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_dim.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8030510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/infinitely_differentiable_gelu_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8031790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8032890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_exp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8033990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_copy_from_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8060150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/complex_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8061050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clone_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8076460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vector_norm_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8077480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8078810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_transpose2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8093200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_u_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8094180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8095140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dequantize_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8096300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfinv_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8097540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pin_memory_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8098650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sign_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8099800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i0_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8100940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dimV_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8102330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frac_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8103350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ctc_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8104510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_lazy_clone_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8105740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_cos_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8106980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8108130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_select_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8109300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_max_pool3d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8110630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_prelu_kernel_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8111540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/set_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8112700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/relu6_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8113890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k1_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8115130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8116210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expm1_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8117350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kron.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8118490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8119580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cat_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8120820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_check_errors_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8121970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triplet_margin_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8123100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8124320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/msort_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8125420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfft_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8126760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bernoulli_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8127890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanmedian_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8128960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_remove_batch_dim_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8130080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cholesky_ex_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8131310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_rnn_relu_cell.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8132400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8133570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_renorm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8134690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pdist_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8135860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_init_dropout_state_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8137120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_semi_structured_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8138210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8139420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_dense_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8140620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_stride_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8141780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_dual_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8143000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8144100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardswish_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8150400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8151240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_batch_norm_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8152200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8153090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/abs_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8153850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_transpose1d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8154710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isneginf_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8155500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8156260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/poisson_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8157020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_renorm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8157860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_lu_with_info_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8158730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8159480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/minimum_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8160230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8160970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_ff.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8161740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_batch_norm_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8162510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/block_diag_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8163660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/permute_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8164870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8165880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csc_tensor_unsafe.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8167060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8168290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8169350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acosh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8170310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/roll_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8171510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_copy_from_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8172600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8173760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_gru_cell_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8175020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linear_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8176130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8177310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/prod_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8178340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_transform_bias_rescale_qkv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8179460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_batch_norm_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8180530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/digamma_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8181760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_backward_data_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8182910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csc_tensor_unsafe_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8183990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_dropout_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8185080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conj_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8186210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8187350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_dropout.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8188500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_index.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8189650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosh_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8190780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_jagged_dummy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8191940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/record_stream_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8198000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_transpose.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8199090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unique2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8200360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1e_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8205760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log2_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8206990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_dropout_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8214200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sum_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8215240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_solve_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8216250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_dense_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8222140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8222960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_parallel_materialize_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8229450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bernoulli.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8230770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pad_circular_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8237310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8238150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_select_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8239450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8245200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_quantized_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8246260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/size_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8252730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8254260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad3d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8255360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_psi.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8260650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8261640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcmul.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8268120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8269010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8275800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_multigammaln_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8276620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp2_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8277780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_addcmul.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8285220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmv_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8286150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8293130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/type_as_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8293930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_tensorsolve_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8300530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/range_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8301470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8302580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_backward_jvp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8308000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dirichlet_grad_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8309370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8316440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinh_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8317350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_unpool3d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8318350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bincount.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8324170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8325760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hann_window_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8331970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_resize_and_clear_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8334820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_quantize_weight_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8341160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8342000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/greater_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8348970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cummaxmin_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8350020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_elemt_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8356680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/affine_grid_generator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8357580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_and_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8358690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8364610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8365430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_channel_shuffle_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8372190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/greater_equal_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8373350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/imag.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8380760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmin_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8381520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i0e_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8382650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_unpool3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8388990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erf.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8389960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8396600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8397380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_H.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8398540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/transpose_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8404470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool3d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8405340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fill_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8411750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8413270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copysign_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8419450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amin_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8420300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rms_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8422260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asin_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8428290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8429110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fliplr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8435740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_3d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8436840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8443870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_reorder_conv3d_weight.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8650230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8664820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8665820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/moveaxis_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8667040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_sampled_addmm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8668100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log10.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8669160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/aminmax_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8670270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_max_pool2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8671500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_scatter_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8672660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/i0_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8673940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8674960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_v_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8676030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8677200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_add_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8678740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_alias_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8679560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_jagged_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8680730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lcm_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8681810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_2d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8682960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cdist_forward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8684120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8685280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bernoulli_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8686400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_padded_dense_to_jagged_forward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8687570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8688730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_backward_jvp_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8689790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conj_physical_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8691180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8692160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfinv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8693330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool1d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8694530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_gather_sparse_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8695560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addbmm_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8696710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8697860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/relu6_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8699040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv3d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8700130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matmul_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8701230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/coalesce.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8702370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log10_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8703510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_lu_with_info_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8704690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_efficient_attention_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8705760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expm1_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8706920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_batch_norm_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8708280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_linear_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8709270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_interface_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8710370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8711590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ne_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8712700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcmul_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8819730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_logsumexp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8820600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_apply_dense_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8821670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_csr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8822710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_round.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8824270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_divide_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8825220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8826230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/margin_ranking_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8827390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_acos_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8828730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_has_compatible_shallow_copy_type_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8829550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triangular_solve_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8830680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unbind_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8831730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dstack_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8832830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid_forward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8833950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_linear_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8835040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_xlog1py_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8836100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/maximum_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8837310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_lstm_mps_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8838340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nnpack_spatial_convolution_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8839430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/contiguous.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8840500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8841730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8842980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/group_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8843860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_dropout_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8844950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sgn_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8846030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8847090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multiply_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8848330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_mask_projection_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8849460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/all_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8850570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_affine_grid_generator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8851560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_signed_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8852640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_ndtri.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8853790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_differentiable_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8854910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lt_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8856070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/requires_grad_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8857120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hypot_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8858310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/movedim_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8859480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_compute_linear_combination_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8860670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_transformer_encoder_layer_fwd_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8861890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/round_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8862930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8864020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8865280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_prelu_kernel_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8866320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nonzero_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8867540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8868590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward_reduce_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8869760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmin_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8870850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_copy_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8871970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rand.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8873560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/searchsorted_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8874690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/prod_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8876010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pdist_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8877040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_per_channel_scales_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8878150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_softmax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8879260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfc_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8880340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/i0_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8881580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_get_plan_cache_size_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8882790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_gru_cell_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8883870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8884980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_values_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8886280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_he_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8887350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8888580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_storage_offset_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8889630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cslt_sparse_mm_search.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8890860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arctan_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8891890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csr_prod_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8893120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/any_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8894330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad3d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8895380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8896580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad2d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8897720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_dual_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8899150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pin_memory_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8900040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nuclear_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8901050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8902150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ceil_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8903340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_empty_affine_quantized_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8904420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zero_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8905690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_sparse_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8906850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8907960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isnan_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8909080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frac_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8910420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_zeta_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8911460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8912680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8913860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_tensorsolve_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8914990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_max_pool2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8916410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad3d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8922620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_mm_reduce_impl_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8923600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logsumexp_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8924590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erf_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8931260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eye_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8932040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argsort_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8939040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/column_stack_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8940570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_channel_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8947680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/uniform_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8948510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8949530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fw_primal_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8956040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sum_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8956830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asin_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8963800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cross_entropy_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8964600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_irfft_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8965720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_v_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8971780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8973270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/permute_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8980850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cdist_forward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8981660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_logcumsumexp_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8982820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8988920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/row_indices.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8989810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_w_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8997030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_exp_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8997840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_channel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.8999080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gcd_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9005210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_dilated2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9006010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/histogram.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9013090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conv_depthwise2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9013970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i0e_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9015100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficient_attention_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9020790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9022210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_rnn_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9028490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_xlog1py_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9029910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_assert_async_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9035960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amax_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9037470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/retains_grad_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9038520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mean_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9043780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9044410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9051050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_inv_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9053230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9059140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/detach_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9059910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fftn_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9063270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9068250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy_with_logits_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9071950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_from_bin_tensors_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9081090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/numpy_T_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9084590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9088870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfftfreq_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9093380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cauchy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9096440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9101000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_neg_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9101860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unflatten_dense_tensors_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9106390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atanh_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9110150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_add_relu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9114860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9115710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_power_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9119890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_softmax_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9123370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_divide_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9127500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_expm1.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9128480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fftshift.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9133650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_bsc_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9136330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pack_padded_sequence_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9141720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_bsr_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9142610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dist_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9146230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polygamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9150400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_remove_batch_dim_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9154290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Short_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9157920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linspace_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9158750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9164230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/remainder_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9165950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bilinear.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9173220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9174090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_softmax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9175220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_asin.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9180410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d_with_indices_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9182200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9187620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_multi_dot_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9189320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/any_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9195510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9196270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9198280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9204480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softmax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9205350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ccol_indices_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9212450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_rnn_relu_cell_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9213460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_r2c.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9220380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/outer_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9452710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9454000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hypot_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9455260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9456280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adjoint.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9457880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_norm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9458520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flip_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9459650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flipud.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9460730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmin_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9461810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_exp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9462980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_erf_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:52.9464040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addbmm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2705910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_fill_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2714470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2723960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_ctc_loss_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2758040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flipud_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2763020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid_forward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2768040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2773800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2778790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dimV_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2785770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2791920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mvlgamma_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2798870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2804930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool2d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2810690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_with_update_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2818140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_normal_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2823970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_sum_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2830520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_aminmax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2836400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_segment_reduce_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2842050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_transpose_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2847870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_rnn_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2854330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/normal_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2859450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dot.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2866240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2871050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2875810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_sinc_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2880430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/angle_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2884930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/group_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2889730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_masked_index_put_accumulate.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2894470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2899130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_dual_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2903930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_rowwise_prune_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2908660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfcx_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2913420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_per_channel_quantized_tensor_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2922760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosine_embedding_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2936650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i0_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2940970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ge_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2945630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_from_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2949490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_view.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2953640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conj_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2957540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2960080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log_ndtr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2961120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asinh_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2962420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csr_tensor_unsafe_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2963780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumulative_trapezoid_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2965090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2966470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_padded_dense_to_jagged_forward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2967870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_sgd_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2969140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adam_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2970740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2971930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/can_cast_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2973160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ge_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2974440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_consecutive.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2975770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_3d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2977020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2978460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_pack_quantized_matrix_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2979660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_euclidean_dist_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2980790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2982190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_and_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2983510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y1_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2984920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2986020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_coo_tensor_with_dims.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2987630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/add_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2988920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_constrain_range_for_size.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2989920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/soft_margin_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2991050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isinf.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2992280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arctan2_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2993660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i1_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2994930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_max_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2996180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2997230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_rsqrt_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.2998500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linear_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3000090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acosh_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3001260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d_with_indices_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3002730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmv_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3003920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csc_tensor_unsafe_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3005240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3006470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3007940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_abs_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3009090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3010560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_transpose_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3011730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zeros_like_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3013260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triangular_solve_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3014580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_backward_data_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3153530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3154880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_coo_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3156090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sinh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3157540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_mkldnn_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3158640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_semi_structured.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3159800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log2_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3161090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_rsqrt_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3162120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logspace_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3163390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3164640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_aminmax_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3165690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cholesky.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3166780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_scale_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3167910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ihfftn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3169080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/or_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3170350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_coo_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3171490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficient_attention_forward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3172590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3173640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3174920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isfinite_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3176140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3177210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_min.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3178580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3179660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/repeat_interleave.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3181800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3182660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/item_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3184230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_relu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3185080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nextafter_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3186170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diag_embed_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3187260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fft2_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3188630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3189920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log2_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3191070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_convolution.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3192510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_index_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3193600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_r2c_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3194880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3196170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_optional_filled_intlist_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3197460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cat_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3198900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_stack_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3200160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_warn_in_autograd_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3201340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_coalesced_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3202620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_relu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3203980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3205160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_gammaln.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3206400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_ctc_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3207690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fill_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3209040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_real_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3210390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multilabel_margin_loss_forward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3211620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cummaxmin_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3212810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3213890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_bsc_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3215070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gcd_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3216380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_add_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3217540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3218890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3219970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_hfftn_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3221260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_flash_attention_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3222500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3223790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3224860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_trunc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3226060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arccos_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3227320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3228480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_tbc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3229690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_frac_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3230860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_empty_strided_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3232170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_dilated3d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3233370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_mask.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3234600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardtanh_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3235740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atanh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3237010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multilabel_margin_loss_forward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3238170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exponential_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3239420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_apply.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3240600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lift_fresh_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3241820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ones_like_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3242990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sign_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3244150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adjoint_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3245420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcdiv_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3246600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_batch_norm_legit_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3247870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vander_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3249120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cov_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3250290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3251490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/full.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3252860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3253930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_real_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3255170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3256460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_gather_stats_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3257570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log2_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3258690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linear_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3259910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3261070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reshape_as.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3262330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3263410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/prod_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3264760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/abs_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3265950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lift_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3267280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/median_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3268580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3269850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfc_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3271240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3272480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3273640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_slogdet_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3279140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_solve_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3280230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pad_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3286260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/signbit_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3287520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3288820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3294960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_backward_overrideable_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3296430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3303480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_max_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3304630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sort_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3311210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3312340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_update_stats_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3313640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_autocast_to_reduced_precision_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3319130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_batch_norm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3320500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i0.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3327310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atleast_3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3328550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_select_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3329880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3335980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_airy_ai_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3337170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3338430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_compressed_sparse_indices.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3344800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_gammaincc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3345980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3352560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/min_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3354010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acosh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3360700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pad_enum_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3361770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/inverse_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3363110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_safe_softmax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3367490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mm_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3369250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/broadcast_tensors_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3375850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_slow_conv2d_forward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3377280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zero_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3378480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_tanh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3385200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3393020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3394230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3401050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcmul_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3402210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/huber_loss_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3403540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/renorm_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3408300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmm_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3409490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3411380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3418220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_depthwise3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3419590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pack_padded_sequence_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3426360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_reciprocal_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3428000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3434710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/poisson_nll_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3435950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logdet_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3437230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsub_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3442430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3443830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_sum_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3450410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isneginf_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3451810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsafe_split_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3458100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3459440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_gru_cell.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3460820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_rnn_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3465680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rand_like_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3467200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/stft_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3473620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trapezoid_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3474890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/relu_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3476370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3480880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_jagged_dummy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3482160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_max_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3489170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unpack_dual_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3490570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_dilated2d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3491980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3497110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/var_mean_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3498430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polar_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3499920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/narrow_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3504640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vstack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3506120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_overrideable_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3512700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_exp_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3514590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/transpose_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3515810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3522120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3523400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bucketize_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3530330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3531490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_per_channel_quantized_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3538210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ccol_indices_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3539390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cdist_forward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3540730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3546140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad2d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3547380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid_forward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3553690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_ctc_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3555000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/channel_shuffle_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3556290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3561710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_coo_tensor_unsafe.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3563050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/div_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3569380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eye_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3570570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3571920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randn_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3577150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expm1_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3585130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csr_prod_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3586640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/numpy_T_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3589080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_empty_affine_quantized_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3593840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsqrt_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3595400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu_indices_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3602070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_overrideable.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3610920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diag_embed_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3612530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/std_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3619080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_interface_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3627210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lift_fresh_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3634680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atanh_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3640490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reciprocal_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3641300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/im2col_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3642870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_solve_triangular_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3643870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_buffer_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3650630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sum_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3651550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifft_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3652740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/combinations.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3658550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_csr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3659590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_r2c_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3667050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardtanh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3668090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/promote_types.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3669200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cross_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3675240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nansum_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3676460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ihfftn_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3683110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log1p_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3684170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sub.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3685360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copysign_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3690900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Int_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3692270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3698950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lshift_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3700920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3702020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/negative_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3708460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Byte.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3709310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_version_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3716180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp2_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3717300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3718220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_mm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3723620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_laguerre_polynomial_l_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3724960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cross_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3731050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3733210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_complex_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3739110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cos.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3739950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bernoulli_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3741050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3748010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rrelu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3748990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_logit_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3755810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/can_cast_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3756990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3764110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_csr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3764950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/median_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3772920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_from_bin_cts_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3773830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_diagonal_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3781150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/uniform_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3782020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear_backward_weights_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3783220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_diagonal_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3785910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_reduce_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3790960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foobar_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3799560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3800480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randn_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3802420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_or_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3808210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_softmax_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3810690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/neg.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3811880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igamma_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3818400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3819330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3826010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3826950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trace_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3833310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3834490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_factor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3835620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eq_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3841590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/put_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3842480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hinge_embedding_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3850470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cartesian_prod_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3851350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3858310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_dropout_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3859120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmin_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3860170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vstack_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3865990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_ctc_loss_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3867060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcdiv_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3873760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/can_cast_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3874800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_dual_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3875910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3883860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lstm_mps_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3890050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/topk_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3890870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_tan_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3891950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expm1_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3897760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_values_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3898620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_amp_update_scale_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3906410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_softmax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3907280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_lerp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3914420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matmul_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3915250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_zeta_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3916380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/huber_loss_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3922270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_dilated2d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3923610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_transpose2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3930580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3931650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_overrideable_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3932610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/std_mean_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3938470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/signbit_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3939370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_lstm_cell_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3946620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3947530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logsumexp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3948450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_neg_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3955370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_forward_only_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3962840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3963880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/neg_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3970370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/take_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3971290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_weight_to_int4pack_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3972500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/i0_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3977930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cholesky_ex_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3978770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_gammainc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3985870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/squeeze_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3987060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_broadcast_to.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3993780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardtanh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3995040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3996260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_from_padded_and_nested_example_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.3998080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4002720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/row_stack_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4011550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4015940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_reduce_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4016770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4021190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dsplit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4024940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gather_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4029480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4030420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trace_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4033350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_spdiags_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4038160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_debug_has_internal_overlap_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4040620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_assert_scalar_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4041920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4046920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unique.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4055960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4056950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_copy_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4057930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4065860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4066690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/range_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4074140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool1d_with_indices.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4075040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4076160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/int_repr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4077290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4081670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_addcmul_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4083920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4089870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_lstm_mps_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4090600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mul_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4092260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4097130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4097990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cos_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4104710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_interface_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4106070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp2_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4112590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_serialization_subcmul_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4113760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4114910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/coalesce_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4122330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4123300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4130100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4131030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_impl_index_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4138070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/add_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4138880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_xor_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4140020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4146110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bmm_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4147230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_mkldnn_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4154090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4154980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y0_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4155890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/row_indices_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4156970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/real_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4165490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_amp_update_scale_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4172970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_coo_tensor_args_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4173910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4180650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_alias_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4181440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/col_indices_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4182580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logcumsumexp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4188530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_t_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4189980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmod_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4195870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_clamp_max_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4197230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4198330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4205350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_max_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4206340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logcumsumexp_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4213130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4220920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_with_update_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4221870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4228080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_forward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4229940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4236330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4237160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lstsq_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4238780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_abs_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4244680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_add_relu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4245710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_solve_triangular_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4249960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_unpool2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4253460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_xor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4257890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/feature_alpha_dropout_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4258700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_empty_affine_quantized_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4262540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4263410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_standard_gamma.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4271050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kaiser_window_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4271980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_has_compatible_shallow_copy_type.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4278240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_update_stats_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4280430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1e_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4285620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/baddbmm_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4287030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cummax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4289030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cdist_forward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4294420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/svd_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4295250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/norm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4297060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_autograd_multiple_dispatch_view.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4304300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/concat_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4305730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/uniform_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4312280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gcd_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4313190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4314280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_zeros_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4321080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4322040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isposinf_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4329250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Int_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4330010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_index_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4338210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lerp_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4363810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_add.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4364880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4365940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool1d_with_indices_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4367150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/alias_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4368220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_fill.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4369470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_backward_data.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4370640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_log_softmax_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4371690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_clear_plan_cache_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4373080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unflatten_dense_tensors.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4373880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_ones_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4375110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcdiv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4376290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_w_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4378690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_bsr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4379770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_string_default_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4385570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ravel_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4392250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_addcdiv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4393280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4399490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_pinv_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4404970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4405770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4410670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4411540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/msort_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4416310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_per_channel_scales_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4417210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binomial_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4419370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/random_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4427710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4431920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_add_relu_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4435050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cross_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4439500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/square_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4441430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4446370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4447240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4453760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/float_power_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4454560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lerp_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4460640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mul_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4461910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_addcdiv_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4466800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_batch_norm_legit_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4468320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softmax_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4473250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_add_relu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4474650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ihfft2_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4479820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mul_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4480990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sin_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4486510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4487780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmin_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4493890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4494870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hsplit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4501780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_forward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4502620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/signbit_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4509120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4510710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardtanh_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4511870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i0_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4518460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mps_convolution_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4519360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/repeat_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4525290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4526180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multilabel_margin_loss_forward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4532590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4533170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/less_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4534290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/one_hot_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4540740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gcd_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4541710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_c2c_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4548990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4549730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d_with_indices_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4556840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hsplit_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4557600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log1p.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4563540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cauchy_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4565050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsqrt_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4570890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_trunc_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4571760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trapz_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4578430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expand_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4579420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mps_convolution_transpose_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4585920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4586760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear_backward_weights.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4588180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4594720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mul_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4595530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_batch_norm_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4600950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/divide_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4604100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4608720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool2d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4609500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_svd_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4612320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_and_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4617410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/div_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4626610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eigvals_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4632390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fft2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4633680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/var_mean_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4634650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/normal_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4640920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4648450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4649440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4651070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifft2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4657940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmax_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4658810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_gru_cell_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4666480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4667710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4674120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amax_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4675260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_dropout_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4676300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4681780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4683040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_view_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4689610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_apply_dense.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4691210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4692310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_compute_linear_combination_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4697520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid_forward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4698370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_fill_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4705090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polygamma_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4706380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/l1_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4712720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trace_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4713770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/block_diag_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4715010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/values_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4720730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sort.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4721550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4728180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4736130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_set_to.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4737100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unflatten_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4738180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adam_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4744480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dirichlet_grad_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4745480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/einsum_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4752640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nan_to_num.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4753870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_zero_point_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4760700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4761610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/t_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4762740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_and_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4768830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4769720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gru_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4776300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_addmm_activation_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4777190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lerp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4778250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nansum_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4784230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4785540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_c2r_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4791630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_addcmul_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4794160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/infinitely_differentiable_gelu_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4794850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosine_similarity_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4805820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fix_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4806350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_alias_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4809180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flatten_dense_tensors_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4810170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4817600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dstack_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4818280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igamma_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4819540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/poisson_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4826050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/full_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4826980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_backward_overrideable_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4833320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conj_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4834260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4835350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eig_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4841120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_parallel_materialize_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4841970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_rnn_flatten_weight.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4843620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/soft_margin_loss_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4854240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4858650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expm1_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4861110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/crow_indices_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4861940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cummax_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4867880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinh_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4876010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4883640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/baddbmm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4884530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_batch_norm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4885680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/group_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4891260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumsum_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4892650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_autocast_to_full_precision_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4898480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4902280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_storage_offsets_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4907950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4908950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4916410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4917290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4924590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4925240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i1_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4926490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4932850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_max_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4933610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_choose_qparams_per_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4935400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cslt_compress_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4941490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arange.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4942600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d_with_indices_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4949220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_tensor_dynamic.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4950000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4957640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_is_any_true_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4958430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_round_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4959460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4965350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_r2c_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4966270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_fill.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4973700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ceil_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4974670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4976070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4981240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_diagonal_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4982750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nonzero_numpy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4988700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_index_put_impl_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4990220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/istft.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4991630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_erfc_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4998270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.4999230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/chain_matmul_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5006710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conj_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5007590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5014520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_addcmul_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5015450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5016600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_compute_linear_combination.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5023130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_from_mask_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5023870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nnz_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5030920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cummaxmin_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5031820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfft2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5033080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_stack_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5038720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5040170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cartesian_prod_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5046340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_attention_forward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5047130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_optional_filled_intlist.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5048210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/huber_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5053930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_select_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5054810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5056880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_real_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5065980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sign_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5073420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_add_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5080140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5081120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_unpool3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5082290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_trilinear_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5083490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_batch_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5093080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5096620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fw_primal_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5097560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isnan_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5102860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/full_like_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5106160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5106950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmax_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5112290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randint_like.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5115420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_neg_view_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5120940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lshift_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5122370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5128710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copy_sparse_to_sparse_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5129540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/istft_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5130660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unique_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5137710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmin_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5138540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/constant_pad_nd_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5144840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5147230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsqrt_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5153090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/searchsorted_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5153920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ones_like_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5155100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfc_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5160030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5161470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cdist_forward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5167580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_backward_data.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5169150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log10_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5175770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5177060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinh_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5178030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_expm1_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5185000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_compressed_tensor_unsafe.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5185940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsafe_split_with_sizes_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5192790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/geometric_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5193610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5200430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erf_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5201320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/align_as_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5202370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zero.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5207910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/xlogy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5210350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5216260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mT.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5217070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/uniform_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5218150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_dense_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5224190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/orgqr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5225670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5231670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumprod_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5234840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/range_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5241470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_per_channel_zero_points_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5242310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5249330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_softmax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5250200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_solve.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5251430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_csr_tensor_args_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5257740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5258470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5265020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/random_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5266380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_addmm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5269030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5273810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_shape_as_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5277170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_solve_triangular_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5283110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_divide_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5285650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5290540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_det_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5291430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sin_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5298330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/can_cast.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5299750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumsum_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5306060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atanh_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5306970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_gru_cell_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5308010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kl_div_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5313850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5315190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clip_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5321260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_airy_ai_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5323120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vector_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5328820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5330210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igamma_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5331470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_bsc_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5337590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i0e_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5338390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_floating_point.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5345310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fft2_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5345970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/xlogy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5352840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5353540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ceil_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5354920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5360640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_scatter_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5361910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ge_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5368400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_check_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5369990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_as_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5376580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/squeeze.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5377560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_bsc_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5378710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_pinv_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5384450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_softmax_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5385730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/permute_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5391970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_distributed_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5393430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_bin_edges.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5394590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_unpool2d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5401190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/relu6_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5402130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5409190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5410000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fft2_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5417410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_hfft2_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5418190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rad2deg_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5425310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5425980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5432820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copysign_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5434110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5435230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5442900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_solve.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5443740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_zeta_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5447840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_rnn_tanh_cell.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5451040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dropout_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5452000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5457490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sigmoid_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5458860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lshift.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5465200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/outer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5465950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bilinear_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5467250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rms_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5475210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5476060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/instance_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5483850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5484700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5487260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5491800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_zeros_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5496000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_asin_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5500830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/stft_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5503080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5504220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5510590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_dep_token_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5511490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5517930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_det.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5519270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cholesky_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5526250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5527050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asin_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5528170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/from_file_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5534070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_softmax_backward_data_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5535880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_serialization_subcmul_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5541380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_factor_ex_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5542900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_assert_async_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5544710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nansum_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5551290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_dropout_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5552230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/add_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5558190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_householder_product_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5559310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5565830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5566600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/norm_except_dim.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5567730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_irfft2_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5575080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_dual_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5575890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_consecutive_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5582360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_solve_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5584160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/concatenate_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5590100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log1p_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5591330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_complex_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5591940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/repeat_interleave_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5597560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_complex.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5598400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5605310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/var_mean_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5606530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int4pack_mm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5613420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_version.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5614520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_2d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5615690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adamw_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5619620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5622010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_alias_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5627780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_add_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5628540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril_indices_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5635570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isneginf_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5636910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clip_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5643540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matmul_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5644470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_solve_ex.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5645840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y0_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5651480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mkldnn_transpose_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5652630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_ndtri_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5659340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tensor_split_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5660270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/align_to_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5661840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool3d_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5666850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_backward_overrideable.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5669260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5674250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/geometric.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5676860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randn_like_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5678260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i1_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5683630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/i0_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5685150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5691730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/requires_grad.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5692530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5699350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5700260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_entr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5707810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/heaviside_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5708640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_coalesce_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5716410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_xor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5717240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_xlogy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5724780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acos_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5725690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumprod_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5726800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5734570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lgamma_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5740240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_amp_update_scale_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5741030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expm1_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5742260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_batch_norm_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5748410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5749490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_apply_dense_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5755960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_index_put_impl_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5757000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5757880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5765320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_fp16_weight.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5766120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addbmm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5773090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_power_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5774010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5781470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matmul_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5782410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d_with_indices_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5783560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_lstm_mps_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5788940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_backward_data_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5790290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_differentiable_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5796720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mps_convolution_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5797610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/detach_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5798600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_coalesce_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5804840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_exp2_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5805540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfcx_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5812210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/min_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5813650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5820210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5821050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scalar_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5822250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_tensor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5828120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cholesky_solve_helper_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5828960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_relu_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5836720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_functorch_fallback_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5837440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_legendre_polynomial_p_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5844590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mps_convolution_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5845380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5846530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5852810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_reciprocal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5853480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5860240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_inference_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5861130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/any_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5862300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/digamma_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5867600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/abs_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5869190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5875670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5876990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mH_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5878240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5885400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cross.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5886210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/inner.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5893540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanmedian_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5894500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5900830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kthvalue_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5901790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conj.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5902990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_group_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5910460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5912600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5918280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log_softmax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5918990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reshape_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5922490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcmul_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5927530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5932270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_serialization_subcmul_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5938360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5946680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5953270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/neg_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5954150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int4pack_mm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5955260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5961080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5962210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_attention_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5968750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softmax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5970620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5976810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copy_sparse_to_sparse_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5977550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mse_loss_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5979150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_add_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5983810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vander_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5984960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_tensor_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5989370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumprod_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5993230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5998080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.5999880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_H_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6001250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_resize_output.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6007970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6008660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_he_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6014930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cond.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6016110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_polygamma.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6022790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6023530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6024820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6032090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardswish_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6032960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_addmm_activation_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6041060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6041940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_batch_norm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6043110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_addmm_activation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6048890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ormqr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6050180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_rnn_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6056760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6057470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sin.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6058600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_spdiags_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6064400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/float_power_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6065110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/imag_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6072090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward_elemt_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6072880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_pow_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6079680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6080540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_coo_tensor_args.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6081630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log_ndtr_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6087620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/crow_indices_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6088960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifftn_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6095040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mps_convolution_transpose_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6096230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sum_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6097730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp2_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6104430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6105220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_assert_scalar_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6112290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_weight_to_int4pack_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6113640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_complex_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6115590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6121570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6125110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_gather_stats_with_counts_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6130790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/uniform_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6138930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6139920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_use_cudnn_ctc_loss_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6143250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_neg_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6148200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1e_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6150970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6151860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_int8_weight_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6157750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/prelu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6158910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/take_along_dim.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6165690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6166510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_backward_jvp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6167640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/xlogy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6174970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_index_put_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6175790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6183190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_gru_cell_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6184230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_rnn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6191580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6192310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_from_bin_tensors.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6193380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_det_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6199070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sort_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6199830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cdist_forward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6206650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6207330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6208400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6213850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_scatter_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6214860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cdist_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6221470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multi_margin_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6222490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_add_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6229340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/group_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6230260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfcx_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6231270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_minimum_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6236950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randint_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6238800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6246070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_standard_gamma_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6253750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_coalesced.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6254620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sgn_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6255640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_ragged_idx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6261350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/segment_reduce_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6262740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6268860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_logsumexp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6270180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eigvalsh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6271300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6278690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6279510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dsplit_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6285880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6286970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6293660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igammac.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6294310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficientzerotensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6295450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arange_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6301830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_laguerre_polynomial_l_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6302630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_min_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6309330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6310240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6316890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/celu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6317840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_gather_stats_with_counts.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6319050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6324620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_with_update_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6325560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_addcdiv_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6326950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6336220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_max_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6341980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_chunk_cat_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6342990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6344160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmin_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6351630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6352420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifftshift_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6359320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6360130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_sparse_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6366970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6367900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_euclidean_dist_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6369020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_fill_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6374980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_max_pool3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6375780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6382640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arange_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6383460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nnpack_spatial_convolution.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6390380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_not_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6391130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_depthwise3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6392400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logsumexp_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6398200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6399300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_triton_multi_head_attention_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6405690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_apply_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6406890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_impl_index_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6408130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rrelu_with_noise_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6415800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6423160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sub_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6424030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sub_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6431500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_semi_structured_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6432580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unbind_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6433970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/minimum_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6436020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/signbit_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6438860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6442320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_neg_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6443110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/numpy_T_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6445810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6446470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6455490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6463420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6464330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_floating_point_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6465560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6472130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6472860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_strides.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6473950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6479900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_update_stats_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6481090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/all_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6487230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6488050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool1d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6489200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_transpose3d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6495110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vector_norm_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6496450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_select_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6503360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_flash_attention_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6504100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6505330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_dense_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6511310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/chunk_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6512300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foobar_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6520080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan2_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6520930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nextafter_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6527820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amin.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6528780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6529850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_init_dropout_state_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6536310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csr_prod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6537290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cholesky_solve_helper_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6538620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frexp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6545060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/alias_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6552840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_or_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6553900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gru_cell.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6561080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isclose_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6561890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_gather_stats_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6562980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gather_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6569260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6570120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_3d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6577700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6578450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sspaddmm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6585150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6586480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_string_default_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6593930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_logcumsumexp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6595080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_backward_data_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6596210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_multi_head_attention_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6602230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unique_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6603020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_draw.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6609750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_vulkan_available_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6610870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/feature_dropout_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6611970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagflat_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6615970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_values.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6618770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_add_relu_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6623060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_add_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6626160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6630760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_wrapped_linear_prepack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6631910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_w_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6635880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/combinations_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6641050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_assert_scalar_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6649560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_check_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6650160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lt_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6650520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/swapdims_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6652510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6658820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6659840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_spherical_bessel_j0_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6661340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isreal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6668290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcmul_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6669410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/less_equal_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6676010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumulative_trapezoid_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6676940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arctan.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6683980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_set_plan_cache_max_size_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6684830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_sum.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6686200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6691920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6692800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6699820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arctanh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6700770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/col2im.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6701950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_stats_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6707820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kl_div_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6708860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_bin_edges_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6715570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_t.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6716900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6723720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_rnn_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6724590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6725810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log1p_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6730840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/histc_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6732070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_dim_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6739730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gru_cell_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6740740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_indices_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6747440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_select_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6748380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_divide_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6749630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_prelu_kernel_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6759280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/geometric_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6765490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6766620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6773260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mH.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6774150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/count_nonzero_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6775270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmax_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6781320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_buffer_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6783140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6786130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_bsc_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6790260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trace_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6791180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_interface_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6795410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addbmm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6799690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_strided_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6804040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mv_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6807280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_from_padded_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6808050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tensor_split.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6813390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool3d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6814740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/var_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6820660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6822010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/feature_alpha_dropout_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6828370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6829500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_left_shift_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6835440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lgamma.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6837530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_coo_to_csr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6845950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6846850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polar_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6853740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6854670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mean_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6861140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_coo_to_csr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6861930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6863140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pow.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6869210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_zero_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6869920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6877600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_cosh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6878460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6879600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/repeat_interleave_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6885130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6886360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool1d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6893280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_ceil_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6894110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_not.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6895220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/min_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6900820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multiply_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6901660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool1d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6909250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_max_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6910380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cross_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6917580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_lerp_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6918630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/outer_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6926130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unbind_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6927100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frac_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6934240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_autocast_to_full_precision_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6935190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arcsin_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6936330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6941560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_inverse.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6942830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6949340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ravel_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6950230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_select_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6951520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Float_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6958420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6959330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/and_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6961380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6962730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6971250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/renorm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6979440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6980370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_mm_reduce_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6987010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bernoulli_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6987910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumsum_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6988990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/from_file_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6994540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/layer_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.6996070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/all_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7002600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7003550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7005320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifftn_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7012260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/one_hot_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7013190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_batch_norm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7019270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/allclose_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7020600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j0.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7027820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tensordot_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7028610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_tanh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7029720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_factor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7036100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/thnn_conv2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7036930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_alias_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7044080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7045020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_forward_only_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7045970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_lu_with_info.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7051220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bincount_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7052510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conj_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7059480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7060360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mm_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7068220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/digamma_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7069020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/positive_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7070200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log10_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7074800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/remainder_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7076820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_not_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7082550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_euclidean_dist.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7083330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_slogdet_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7084690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_autograd_multiple_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7091200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_addmm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7099130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_xor_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7100170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_tbc_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7106900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_addcdiv_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7107690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_as_sparse.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7108880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/col2im_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7114620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_max_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7115520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/einsum_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7122140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/align_tensors.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7123100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_scramble_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7124180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mode_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7130750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_local_scalar_dense_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7131540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_tanh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7138220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_compute_linear_combination_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7139650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_set_to_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7145880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_householder_product_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7147400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/orgqr_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7148460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/imag_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7155240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_rnn_relu_cell_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7156220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i0_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7163050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7163910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7170580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Byte_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7171430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dstack_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7172630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_transpose_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7175930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sign.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7183670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7187500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_distributed.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7188250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_softmax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7193290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unflatten.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7196330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_segment_reduce_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7201100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_bsc_tensor_args.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7201910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_csr_to_coo.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7205250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_irfftn_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7210240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dense_dim_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7214250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log1p_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7218300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_clamp_max_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7219330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7223540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_offsets_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7227110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7231450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gru_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7232240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log2_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7236870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adam_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7241040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/one_hot_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7244850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_affine_grid_generator_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7245860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_scatter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7250380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_erfc_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7253380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_csr_to_coo_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7259020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_solve_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7262060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_zeros_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7268030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_gather_stats_with_counts_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7269910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/indices_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7275250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_saturate_weight_to_fp16_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7276160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tan_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7278530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lu_solve.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7284790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_batch_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7286560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sgn_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7292320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resolve_neg_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7293200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_functorch_fallback_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7294880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fw_primal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7300290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7301220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_reduce_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7307660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_irfftn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7308430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmm_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7316130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_sparse_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7317070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/blackman_window_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7324190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fill_mem_eff_dropout_mask_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7325000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_zero_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7326190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7331980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/transpose.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7333470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_sgd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7339970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amin_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7340810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acosh_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7341880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_rsqrt_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7347540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sum_to_size_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7348880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/var_mean_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7355480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/histc_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7356370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/align_tensors_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7358520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7365080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_size_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7365910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_tensor_dynamic_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7373080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7373810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantile_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7381060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7381870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ge_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7383080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triangular_solve_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7390940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7395230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_slow_conv2d_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7396070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7399880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7404160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d_with_indices_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7408250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifftn_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7409330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7412940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pow_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7417340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_bin_edges_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7419840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_scale.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7426930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matmul_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7428780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scalar_tensor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7434660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rot90_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7435530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eig.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7442190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conj_physical_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7443480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pixel_unshuffle_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7449950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k1_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7450950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/channel_shuffle_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7452200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/stride_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7457440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_is_acceptable.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7458340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_zeta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7467030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7467890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/renorm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7474880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7475730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_coalesced_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7476970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/affine_grid_generator_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7482440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_buffer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7483730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/true_divide_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7490180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_solve_ex.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7491180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/squeeze_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7492270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/histogram_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7497990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7498830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7506090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flipud_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7506940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/poisson_nll_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7513920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_dim.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7514800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rshift_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7516100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_new_zeros_with_same_feature_meta_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7521760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsafe_split_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7523320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/value_selecting_reduction_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7529620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dense_dim_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7530460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_right_shift_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7531660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_fill_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7537770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_fill_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7538750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_use_cudnn_ctc_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7546260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_empty_per_channel_affine_quantized_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7547280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Byte_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7553870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7554750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/any.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7556060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kthvalue_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7562790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7564070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_consecutive_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7572380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7573220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sort_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7580570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_alias_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7581660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7588210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_forward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7589330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_lgamma_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7590710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vector_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7595460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7596560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/contiguous_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7602110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/le_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7610920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_overrideable_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7611810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardtanh_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7615080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7615880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_mm_reduce_impl_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7617690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7622460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/angle_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7623310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cross_entropy_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7629750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_gammaincc_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7630620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/subtract_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7636730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7637640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/poisson_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7643540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7644300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/retains_grad.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7649940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sspaddmm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7651460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_autograd_multiple_dispatch_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7657520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_reduce_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7658340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cummax_helper_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7664000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_add_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7666220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_copy_from.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7671140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/narrow_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7671930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flip_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7673820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/result_type_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7680170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_not_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7681530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_grouped_mm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7687500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7688380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mse_loss_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7694730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool3d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7695740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear_backward_input.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7702270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_logsumexp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7703100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool1d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7704360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_svd_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7711700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward_reduce_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7712570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_or_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7718460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/l1_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7719880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/geqrf_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7725770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log2_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7726580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isposinf_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7727710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_scale_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7734350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_laguerre_polynomial_l_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7735270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reciprocal_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7741750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lcm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7742490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frexp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7749320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_solve_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7750250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7751390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7758130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_xlog1py_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7759010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp2_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7765570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mean_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7766460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7774300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/le_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7775210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7776320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/stack_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7781730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_svdvals_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7782920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfinv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7789150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/var_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7789930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsqrt_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7791030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convolution_double_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7797280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polar.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7798160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_backward_data_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7804560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_dual_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7806500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trunc_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7810610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/meshgrid_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7815770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_transpose2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7819410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sample_dirichlet_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7821360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7827130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log_softmax_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7828130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zeros_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7834790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_logit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7836230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/affine_grid_generator_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7842670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/full_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7843420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lgamma_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7844690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isneginf_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7851800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csr_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7852660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_inv_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7859430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_reorder_conv2d_weight.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7860250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_put_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7867560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/data_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7868390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_prelu_kernel_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7869600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_exp2_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7875600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k0_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7876380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/div_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7883150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7884000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7885090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/permute_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7890550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dense_dim.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7892250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/xor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7898680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_unpool2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7899430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_inv_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7900840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_sparse_matmul.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7907760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/huber_loss_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7908610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k1_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7915210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ge.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7916380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_clamp_min.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7923240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7923980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7924970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cos_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7931810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_3d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7932730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7938920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/div.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7940080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/msort_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7947000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/refine_names_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7947770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/t_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7948870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isneginf_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7954620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7955620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv3d_forward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7962070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_addmm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7963200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_mask_projection_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7964250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/complex.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7972230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_scatter_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7973110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copy_sparse_to_sparse.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7980080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bmm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7980860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7988650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_max_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7989510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp2_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7990630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad3d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7996560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.7997330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8004440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trapz_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8005230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8006420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_dim_consecutive_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8012500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8014080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arcsin_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8020270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_update_stats.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8021040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8027890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosine_embedding_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8028830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_sparse_matmul_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8035650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8036550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sspaddmm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8043270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/col_indices_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8044100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lgamma_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8045950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_dim_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8050820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pin_memory_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8051650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_addcdiv_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8056150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_factor_ex_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8060530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j1_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8064370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/div_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8065220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_copy_from_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8070630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_neg_view_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8072410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/concat_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8078480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_compressed_sparse_indices_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8079340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/histogramdd_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8081330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_batch_norm_legit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8087770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_rsqrt_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8088680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8095610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8096490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igamma_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8104010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_offsets_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8105030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8106010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_standard_gamma_grad.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8111440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zero_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8112630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_storage_offsets_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8119270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_affine_grid_generator_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8120240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad2d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8121340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_clamp_max_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8127840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pixel_unshuffle.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8128750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_softmax_with_shape_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8135360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8136500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logcumsumexp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8142470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8143690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isin_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8144800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_mkldnn_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8151380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8152340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8159210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_from_tensor_list_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8160050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_exp_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8166690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_is_any_true_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8167470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_tensorinv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8168620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/random.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8175370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8176350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exponential.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8182220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gt_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8183680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_det_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8190080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_select_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8190890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/xlogy_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8192240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8197710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_transpose_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8198650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8205200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expand_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8206900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sqrt_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8212960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atleast_1d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8213710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isin_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8214830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_init_dropout_state_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8220690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_csr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8221850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinc_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8228130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dist_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8230030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8235670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardtanh_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8237000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8238760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copysign_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8245000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_tensor_dynamic_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8246020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8252060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cummin_helper_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8252880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_alias_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8260240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8261050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/histogramdd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8261970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/aminmax_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8267430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_reduce_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8269590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_ragged_idx_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8275380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8276770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lshift_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8278580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_irfft_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8284800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/digamma_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8292780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_3d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8293800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_tensor_affine_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8300490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_addmm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8310730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gather_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8318040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_has_same_storage_numel_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8318790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dimI.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8323760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exponential_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8325050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8331460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lu_unpack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8332940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8339260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_ceil.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8340450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_weight_to_int4pack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8341700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bmm_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8348750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matmul_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8349730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_print_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8356830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_dense_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8357750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_solve_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8364680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanmedian_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8365610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_channel_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8366810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_neg_view_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8372580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad3d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8373370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ctc_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8380280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argwhere.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8381270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_tan.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8382300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asin_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8387870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_add_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8388980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8395510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_or.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8396690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conj_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8610940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_renorm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8611770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diff_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8612840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fix.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8613960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_standard_gamma_grad_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8615050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_expit_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8616370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsub.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8617340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cos_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8618500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsafe_split_with_sizes_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8619560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_c2c_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8620540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/std.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8621660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_is_all_true_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8622790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_jagged_to_padded_dense_forward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8623990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/broadcast_tensors_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8625080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polygamma_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8626170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8627260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficientzerotensor_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8628360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_optional_floatlist.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8629580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_mkldnn_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8630620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_forward_only.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8631660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8632700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/aminmax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8633850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_backward_data_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8635110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8636120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8637400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conj_physical_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8638590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8639590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmod_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8640760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randint_like_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8642010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8643280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmin_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8644510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8645710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dirichlet_grad_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8646920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_expm1.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8648040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfinv_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8649070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_solve_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8650160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_qr_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8651260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pad_sequence.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8652410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardswish.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8653440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/geqrf_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8654660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8655780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8656930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8658070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ones_like.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8659190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_optional_filled_intlist_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8660360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_with_sizes_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8661740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_warn_in_autograd_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8662600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/neg_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8663660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isfinite.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8664910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_coalesced_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8666020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_per_channel_axis_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8667130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_csc_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8668240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_no_update.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8673980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8674700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/deg2rad_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8675080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j1_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8675730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8676170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8676520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_coo_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8676850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_is_zerotensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8677560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/xlogy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8678740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_conj_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8679880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log10_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8681070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_standard_gamma_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8682170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8683360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dequantize_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8684500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8685610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_round_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8686750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pin_memory.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8688020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fliplr_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8689130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gcd_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8690230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convolution_mode_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8691360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8692620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosine_similarity_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8693980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_shape_as_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8694950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/inner_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8696080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isposinf_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8697260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_transpose3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8698450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_from_mask_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8699620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8700740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unflatten_dense_tensors_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8701860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_version_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8702990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pdist_forward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8704230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sum_to_size_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8705290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_like_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8706380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/uniform.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8707510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8708660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_scatter_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8709800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rshift_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8711010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumprod_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8712160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8713310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mse_loss_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8714420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8717950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_from_tensor_list.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8718700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8719890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/count_nonzero_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8725480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_coo_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8727370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_transpose3d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8733410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bmm_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8734220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/detach_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8735700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/set.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8741280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8742140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/feature_dropout_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8746570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_log_softmax_backward_data_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8751180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8755010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8760950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_sgd_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8762140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_add_relu_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8768650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acos_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8769600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad2d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8776210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randperm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8777730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8778740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/det.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8783930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagflat_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8785160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8791600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k0_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8793080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_c2r_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8799500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_add_batch_dim.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8800400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_jagged_to_padded_dense_forward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8801420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8808420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_tanh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8809450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vander.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8816880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8817830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8824890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_mm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8825720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_has_same_storage_numel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8826900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8832410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8833150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Double_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8840370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8841150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8842230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8848530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_full_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8849190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isposinf.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8856430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_empty_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8857100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8858290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu_indices_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8863980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8864900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_round.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8871630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumprod_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8872790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_has_same_storage_numel_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8879290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantile_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8880500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_slow_conv2d_forward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8881630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_select_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8888290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dyn_quant_matmul_4bit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8889330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pad_sequence_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8895640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8897060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_batch_norm_legit_no_training.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8903240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8903980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8905410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_batch_norm_legit_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8911330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8912160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fw_primal_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8918940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_size.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8927380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_attention_math.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8928040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_bsr_tensor_args.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8929080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8944810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8945600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8955300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/row_indices_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8959120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward_elemt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8959960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8961140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foobar_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8962210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j1_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8963350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/t_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8964400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/det_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8965830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_bsr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8967310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randperm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8968610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expand_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8970570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_c2r.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8972010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sqrt_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8977380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosine_similarity.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8982890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_add_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8983560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nonzero_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8988950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_from_bin_tensors_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8989660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_csc_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8996080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trunc_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.8997100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9002120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_per_channel_axis_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9003700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logdet_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9009500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/take_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9010290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_rnn_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9015760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/minimum_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9016540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_from_tensor_list_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9022820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/greater_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9023670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_apply_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9029970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_resize_and_clear_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9030780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/prod_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9036510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9037370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_depthwise_convolution.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9043540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_assert_async_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9044490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arctanh_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9050210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_is_any_true_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9051200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool3d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9057100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adam_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9057890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_unpool3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9064190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_pinv_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9065090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Half_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9071430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/neg_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9072330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_batch_norm_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9078430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_dim_consecutive_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9079550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/geometric_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9086810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/col2im_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9087760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad2d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9094640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool3d_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9095380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/crow_indices_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9101860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9102740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rshift_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9108180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9109350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_tile_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9110740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9117390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_exp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9118430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_dense_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9124620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9125580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_backward_data_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9128880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_softmax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9133460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i0_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9134210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_attention_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9140910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_coo_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9142180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_csr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9147910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_saturate_weight_to_fp16_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9149170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lu_unpack_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9151530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expand_as_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9157020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k1_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9157800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_pinned_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9164070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_rnn_layer_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9165460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isposinf_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9171250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9172490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cslt_compress_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9178440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_dilated3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9179230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_abs.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9180550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9187230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9187930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/histc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9194790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9195810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_sum_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9202620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_backward_jvp_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9203690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/relu_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9204980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gradient_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9210750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_exp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9211660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_index_put_impl_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9218560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diag_embed_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9219770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_mm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9226740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_interface_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9227460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trapz_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9228670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/block_diag_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9234140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_or_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9234950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9242010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy_with_logits_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9243060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool3d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9249590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumsum_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9250370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_entr_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9251600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifftshift.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9258280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_elemt_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9266230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_assert_async.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9267150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_zero_point_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9274410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_zeta_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9275540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_values_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9276660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_same_size.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9282230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9283340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cond_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9290140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_scatter_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9290880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9292140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_xlog1py_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9297730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isnan_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9305310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scaled_dot_product_attention_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9306610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_left_shift_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9313500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/l1_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9314510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_h_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9315630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_add_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9321170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cholesky_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9322620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nuclear_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9329510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lift_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9330530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9331620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addr_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9337120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/repeat_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9339630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linear_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9344570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/and_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9346880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9348440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fused_moving_avg_obs_fake_quant.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9353920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/true_divide.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9355440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multilabel_margin_loss_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9361580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_tan_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9362570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9369130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nonzero_numpy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9370090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_sinc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9371260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_u_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9377990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_cos_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9378880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9386130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pdist_forward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9386930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pdist_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9393320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cos_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9394430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pixel_shuffle_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9395600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tan_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9401860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ones_like_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9402980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conj_physical_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9409450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d_forward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9410300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9411330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9418530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cos_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9426900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mps_convolution_transpose_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9427570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_convolution_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9434880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_rms_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9435800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_eigh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9436880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_print_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9442490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_coo_tensor_with_dims_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9443650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_renorm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9450150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cat_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9451080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ne_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9452210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expand_as_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9458000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scaled_dot_product_attention_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9458640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/complex_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9460120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_solve_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9469160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-17T06:37:53.9476550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ParallelOpenMP.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:53.9477540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/jit_macros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:53.9482630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CPUApplyUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:53.9483920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ThreadLocalState.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:53.9485030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ScalarOps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:53.9492560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/NativeFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:53.9494090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/DynamicLibrary.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:53.9500440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/TensorGeometry.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:53.9501220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/TensorIterator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:53.9702590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/NamedTensorUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:53.9703370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Dimname.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:53.9704560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ROCmFABackend.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:53.9705740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CompositeImplicitAutogradFunctions_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:53.9707270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/autocast_mode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:53.9708830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Parallel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:53.9709980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/DimVector.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:53.9711070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/MetaFunctions_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:53.9712350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/InferSize.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:53.9713710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/LegacyVmapTransforms.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:53.9714730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/SmallVector.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:53.9716080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:53.9717570Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/functorch 2025-07-17T06:37:53.9718390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch/BatchedFallback.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/functorch 2025-07-17T06:37:53.9719560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch/FunctionalizeInterpreter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/functorch 2025-07-17T06:37:53.9720690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch/ADInterpreters.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/functorch 2025-07-17T06:37:53.9721800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch/Interpreter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/functorch 2025-07-17T06:37:53.9723020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch/TensorWrapper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/functorch 2025-07-17T06:37:53.9724100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch/BatchRulesHelper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/functorch 2025-07-17T06:37:53.9725510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch/PlumbingHelper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/functorch 2025-07-17T06:37:53.9726670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch/VmapInterpreter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/functorch 2025-07-17T06:37:53.9727770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch/Macros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/functorch 2025-07-17T06:37:53.9728950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch/BatchingMetaprogramming.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/functorch 2025-07-17T06:37:53.9730140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch/BatchedTensorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/functorch 2025-07-17T06:37:53.9731250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch/LegacyVmapTransforms.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/functorch 2025-07-17T06:37:53.9732450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch/DynamicLayer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/functorch 2025-07-17T06:37:53.9733450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Generator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:53.9734560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/AccumulateType.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:53.9735700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/TensorAccessor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:53.9736780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/SDPBackend.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:53.9738090Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cudnn 2025-07-17T06:37:53.9738800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn/Handles.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cudnn 2025-07-17T06:37:53.9739830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn/Utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cudnn 2025-07-17T06:37:53.9740960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn/Types.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cudnn 2025-07-17T06:37:53.9742030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn/Descriptors.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cudnn 2025-07-17T06:37:53.9743290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn/Handle.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cudnn 2025-07-17T06:37:53.9744410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn/cudnn-wrapper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cudnn 2025-07-17T06:37:53.9745430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CachedTensorUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-17T06:37:53.9747510Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10 2025-07-17T06:37:53.9748310Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9749060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/RefcountedDeleter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9750440Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-07-17T06:37:53.9751170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/InlineStreamGuard.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-07-17T06:37:53.9752430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/SizesAndStrides.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-07-17T06:37:53.9753680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/InlineDeviceGuard.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-07-17T06:37:53.9754940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/GPUTrace.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-07-17T06:37:53.9756050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/COWDeleter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-07-17T06:37:53.9757280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/LocalDispatchKeySet.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-07-17T06:37:53.9758330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/alloc_cpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-07-17T06:37:53.9759540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/VirtualGuardImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-07-17T06:37:53.9760720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/HermeticPyObjectTLS.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-07-17T06:37:53.9761800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/PyObjectSlot.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-07-17T06:37:53.9763010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/TorchDispatchModeTLS.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-07-17T06:37:53.9764160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/PyInterpreter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-07-17T06:37:53.9765400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/PythonDispatcherTLS.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-07-17T06:37:53.9766420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/COW.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-07-17T06:37:53.9767500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/InlineEvent.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-07-17T06:37:53.9768680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/DeviceGuardImplInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-07-17T06:37:53.9769890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/FakeGuardImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-07-17T06:37:53.9771070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/QEngine.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9772120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/TensorOptions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9773490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/SymFloat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9774670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/GradMode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9775720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/Device.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9776860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/CPUAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9777940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/DefaultDtype.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9779040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/DefaultTensorOptions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9780210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/alignment.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9781270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/Event.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9782370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/Backend.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9783560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/CompileTimeFunctionPointer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9784730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/DeviceArray.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9785830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/PyHandleCache.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9786950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/ConstantSymNodeImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9787980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/WrapDimMinimal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9789080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/QScheme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9790280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/SafePyObject.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9791330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/Stream.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9792500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/UndefinedTensorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9793670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/Scalar.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9794990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/AutogradState.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9796130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/SymIntArrayRef.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9797190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/thread_pool.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9798310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/CopyBytes.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9799320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/SymNodeImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9800490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/StreamGuard.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9801670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/DynamicCast.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9802760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/Layout.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9803820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/GeneratorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9804900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/DispatchKeySet.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9806410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/Allocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9807640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/TensorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9809830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/Contiguity.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9810570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/ScalarType.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9811940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/Storage.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9813200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/DeviceType.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9814370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/DeviceGuard.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9818650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/StorageImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9819510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/SymbolicShapeMeta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9820690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/MemoryFormat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9827320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/SymBool.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9827990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/DispatchKey.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9829470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/ScalarTypeToTypeMeta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9832350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/InferenceMode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9836500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/SymInt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9840230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/OptionalRef.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9844640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/CachingDeviceAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-17T06:37:53.9845570Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/test 2025-07-17T06:37:53.9846430Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/test/util 2025-07-17T06:37:53.9847180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/test/util/complex_test_common.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/test/util 2025-07-17T06:37:54.0058870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/test/util/complex_math_test_common.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/test/util 2025-07-17T06:37:54.0080150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/test/util/Macros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/test/util 2025-07-17T06:37:54.0082050Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0082420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Type.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0083650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/order_preserving_flat_hash_map.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0085190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Float8_e4m3fn-inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0086340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/quint4x2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0087610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/FbcodeMaps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0088840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Semaphore.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0090140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/signal_handler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0091350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/error.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0092440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/safe_numerics.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0093530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Half.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0094800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/flat_hash_map.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0096980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/env.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0097900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/llvmMathExtras.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0099190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Gauge.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0100350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/WaitCounterDynamicBackend.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0101480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Float8_e8m0fnu-inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0102570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Synchronized.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0103610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Bitset.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0104720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/typeid.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0151050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Float8_e4m3fnuz-inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0152030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/TypeSafeSignMath.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0153160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/intrusive_ptr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0154600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/string_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0155700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/IntrusiveList.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0156920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/win32-headers.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0158100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/AlignOf.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0159280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/static_tracepoint.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0160440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/ssize.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0161540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Enumerate.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0162700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/numa.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0163820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/qint32.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0164910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Float4_e2m1fn_x2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0166010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/CallOnce.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0167130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Float8_e5m2fnuz.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0168180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/MaybeOwned.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0169320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Half-inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0170440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/TypeTraits.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0171610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/DeadlockDetection.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0172740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/FunctionRef.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0173820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Backtrace.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0174970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/overflows.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0176010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/ExclusivelyOwned.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0177230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Load.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0178350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/BFloat16-inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0179530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/static_tracepoint_elfx86.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0180650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/ConstexprCrc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0181720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/ThreadLocal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0182890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/IdWrapper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0183860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Flags.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0185110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/overloaded.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0186260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Float8_e4m3fnuz.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0187410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/quint8.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0188480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Float8_e5m2-inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0189710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/StringUtil.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0190750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Logging.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0192060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/MathConstants.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0193230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Registry.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0194530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Optional.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0195810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Float8_e5m2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0196910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/tempfile.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0197980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/copysign.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0199120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/ArrayRef.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0200520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/thread_name.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0201380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/strides.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0202520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Unicode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0203610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Float8_e8m0fnu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0204670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/TypeCast.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0205880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/sparse_bitset.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0207300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/OptionalArrayRef.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0208450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/BFloat16.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0209520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/TypeList.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0211070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/TypeIndex.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0212480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/NetworkFlow.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0213630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Array.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0214790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/logging_is_google_glog.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0215860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Metaprogramming.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0217060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/WaitCounter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0218110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/quint2x4.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0219340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/floating_point_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0220430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/ParallelGuard.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0221570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/BFloat16-math.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0222640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/int128.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0223840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Lazy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0225020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Deprecated.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0226010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/irange.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0227140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/SmallBuffer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0228230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/ScopeExit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0229400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Unroll.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0230430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/LeftRight.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0231630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/bit_cast.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0232810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/qint8.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0233900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/complex_math.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0235220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/logging_is_not_google_glog.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0236400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/DynamicCounter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0237510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Exception.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0238940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/UniqueVoidPtr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0240180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/ThreadLocalDebugInfo.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0241170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Float8_e4m3fn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0242390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/AbortHandler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0243540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/DimVector.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0244680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/accumulate.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0245720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/C++17.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0246790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/strong_type.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0435220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/ApproximateClock.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0436110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/SmallVector.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0442880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Float8_e5m2fnuz-inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0443840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/hash.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0444990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/python_stub.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0446010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/complex.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0447370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/bits.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0448470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/string_view.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0449840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Float8_fnuz_cvt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0450890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/complex_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0452130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/ExclusivelyOwnedTensorTraits.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0453230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/generic_math.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-17T06:37:54.0454700Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/metal 2025-07-17T06:37:54.0455430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/metal 2025-07-17T06:37:54.0456630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal/special_math.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/metal 2025-07-17T06:37:54.0458230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal/reduction_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/metal 2025-07-17T06:37:54.0459330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal/expm1f.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/metal 2025-07-17T06:37:54.0460510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal/common.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/metal 2025-07-17T06:37:54.0461610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal/indexing.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/metal 2025-07-17T06:37:54.0462930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal/random.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/metal 2025-07-17T06:37:54.0464030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal/atomic.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/metal 2025-07-17T06:37:54.0465320Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-07-17T06:37:54.0466170Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda/impl 2025-07-17T06:37:54.0466850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/impl/CUDATest.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda/impl 2025-07-17T06:37:54.0468050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/impl/CUDAGuardImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda/impl 2025-07-17T06:37:54.0469250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/CUDADeviceAssertion.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-07-17T06:37:54.0470410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/driver_api.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-07-17T06:37:54.0471610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/CUDAMathCompat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-07-17T06:37:54.0472700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/CUDAAlgorithm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-07-17T06:37:54.0473770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/CUDAStream.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-07-17T06:37:54.0474980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/CUDAGuard.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-07-17T06:37:54.0476150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/CUDAMiscFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-07-17T06:37:54.0477380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/CUDAGraphsC10Utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-07-17T06:37:54.0478380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/CUDAMacros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-07-17T06:37:54.0479550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/CUDAAllocatorConfig.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-07-17T06:37:54.0480650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/CUDAFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-07-17T06:37:54.0481830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/CUDAException.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-07-17T06:37:54.0482980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/CUDACachingAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-07-17T06:37:54.0484360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/CUDADeviceAssertionHost.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-07-17T06:37:54.0485770Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu 2025-07-17T06:37:54.0486670Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu/impl 2025-07-17T06:37:54.0487390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/impl/XPUGuardImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu/impl 2025-07-17T06:37:54.0488690Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu/test 2025-07-17T06:37:54.0489470Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu/test/impl 2025-07-17T06:37:54.0490220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/test/impl/XPUTest.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu/test/impl 2025-07-17T06:37:54.0491330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/XPUStream.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu 2025-07-17T06:37:54.0492510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/XPUDeviceProp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu 2025-07-17T06:37:54.0497350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/XPUCachingAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu 2025-07-17T06:37:54.0497820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/XPUMacros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu 2025-07-17T06:37:54.0498160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/XPUException.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu 2025-07-17T06:37:54.0498490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/XPUFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu 2025-07-17T06:37:54.0498640Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/macros 2025-07-17T06:37:54.0498990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/macros/cmake_macros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/macros 2025-07-17T06:37:54.0499990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/macros/Export.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/macros 2025-07-17T06:37:54.0501060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/macros/Macros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/macros 2025-07-17T06:37:54.0502300Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/mobile 2025-07-17T06:37:54.0503000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/mobile/CPUCachingAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/mobile 2025-07-17T06:37:54.0504350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/mobile/CPUProfilingAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/mobile 2025-07-17T06:37:54.0505180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/psimd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-07-17T06:37:54.0603810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/experiments-config.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-07-17T06:37:54.0604620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fxdiv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-07-17T06:37:54.0606550Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/fp16 2025-07-17T06:37:54.0606930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fp16/fp16.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fp16 2025-07-17T06:37:54.0608140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fp16/psimd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fp16 2025-07-17T06:37:54.0609290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fp16/bitcasts.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fp16 2025-07-17T06:37:54.0610800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/torch_version.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:54.0612340Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends 2025-07-17T06:37:54.0613570Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/opt_einsum 2025-07-17T06:37:54.0614140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/opt_einsum/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/opt_einsum 2025-07-17T06:37:54.0615510Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/mha 2025-07-17T06:37:54.0616120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mha/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/mha 2025-07-17T06:37:54.0617360Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/nnpack 2025-07-17T06:37:54.0618080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/nnpack/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/nnpack 2025-07-17T06:37:54.0619370Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/mps 2025-07-17T06:37:54.0619950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mps/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/mps 2025-07-17T06:37:54.0621170Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/cpu 2025-07-17T06:37:54.0621840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cpu/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/cpu 2025-07-17T06:37:54.0623180Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/_coreml 2025-07-17T06:37:54.0623850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_coreml/preprocess.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/_coreml 2025-07-17T06:37:54.0625060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_coreml/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/_coreml 2025-07-17T06:37:54.0626080Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/cuda 2025-07-17T06:37:54.0626760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cuda/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/cuda 2025-07-17T06:37:54.0628250Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/quantized 2025-07-17T06:37:54.0628940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/quantized/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/quantized 2025-07-17T06:37:54.0630010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends 2025-07-17T06:37:54.0631260Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/mkl 2025-07-17T06:37:54.0631980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mkl/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/mkl 2025-07-17T06:37:54.0633300Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/xnnpack 2025-07-17T06:37:54.0633910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/xnnpack/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/xnnpack 2025-07-17T06:37:54.0635210Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/kleidiai 2025-07-17T06:37:54.0635890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/kleidiai/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/kleidiai 2025-07-17T06:37:54.0637170Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/cusparselt 2025-07-17T06:37:54.0637880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cusparselt/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/cusparselt 2025-07-17T06:37:54.0639300Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/mkldnn 2025-07-17T06:37:54.0639870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mkldnn/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/mkldnn 2025-07-17T06:37:54.0641130Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/xeon 2025-07-17T06:37:54.0641750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/xeon/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/xeon 2025-07-17T06:37:54.0642660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/xeon/run_cpu.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/xeon 2025-07-17T06:37:54.0644530Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/_nnapi 2025-07-17T06:37:54.0645030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_nnapi/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/_nnapi 2025-07-17T06:37:54.0645810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_nnapi/serializer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/_nnapi 2025-07-17T06:37:54.0648010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_nnapi/prepare.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/_nnapi 2025-07-17T06:37:54.0648820Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/openmp 2025-07-17T06:37:54.0649490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/openmp/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/openmp 2025-07-17T06:37:54.0650740Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/cudnn 2025-07-17T06:37:54.0651400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cudnn/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/cudnn 2025-07-17T06:37:54.0652560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cudnn/rnn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/cudnn 2025-07-17T06:37:54.0653910Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_decomp 2025-07-17T06:37:54.0654600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp/decompositions_for_jvp.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_decomp 2025-07-17T06:37:54.0655890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp/decompositions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_decomp 2025-07-17T06:37:54.0658310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_decomp 2025-07-17T06:37:54.0659440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp/decompositions_for_rng.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_decomp 2025-07-17T06:37:54.0660600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_VF.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:54.0662020Z creating build/bdist.macosx-14.0-arm64/wheel/torch/xpu 2025-07-17T06:37:54.0662730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/xpu/streams.py -> build/bdist.macosx-14.0-arm64/wheel/torch/xpu 2025-07-17T06:37:54.0663910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/xpu/memory.py -> build/bdist.macosx-14.0-arm64/wheel/torch/xpu 2025-07-17T06:37:54.0664960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/xpu/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/xpu 2025-07-17T06:37:54.0666240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/xpu/_gpu_trace.py -> build/bdist.macosx-14.0-arm64/wheel/torch/xpu 2025-07-17T06:37:54.0667310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/xpu/random.py -> build/bdist.macosx-14.0-arm64/wheel/torch/xpu 2025-07-17T06:37:54.0668460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/xpu/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/xpu 2025-07-17T06:37:54.0669510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_streambase.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:54.0670880Z creating build/bdist.macosx-14.0-arm64/wheel/torch/masked 2025-07-17T06:37:54.0671470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/masked/_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/masked 2025-07-17T06:37:54.0673080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/masked/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/masked 2025-07-17T06:37:54.0674060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/masked/_docs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/masked 2025-07-17T06:37:54.0676130Z creating build/bdist.macosx-14.0-arm64/wheel/torch/masked/maskedtensor 2025-07-17T06:37:54.0676530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor/binary.py -> build/bdist.macosx-14.0-arm64/wheel/torch/masked/maskedtensor 2025-07-17T06:37:54.0677670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor/creation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/masked/maskedtensor 2025-07-17T06:37:54.0678740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor/_ops_refs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/masked/maskedtensor 2025-07-17T06:37:54.0680060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/masked/maskedtensor 2025-07-17T06:37:54.0681180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor/core.py -> build/bdist.macosx-14.0-arm64/wheel/torch/masked/maskedtensor 2025-07-17T06:37:54.0682520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor/unary.py -> build/bdist.macosx-14.0-arm64/wheel/torch/masked/maskedtensor 2025-07-17T06:37:54.0683660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor/reductions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/masked/maskedtensor 2025-07-17T06:37:54.0684880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor/passthrough.py -> build/bdist.macosx-14.0-arm64/wheel/torch/masked/maskedtensor 2025-07-17T06:37:54.0685880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_tensor_docs.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:54.0688560Z creating build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-07-17T06:37:54.0688870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/lr_scheduler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-07-17T06:37:54.0690590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/rmsprop.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-07-17T06:37:54.0691840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/_adafactor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-07-17T06:37:54.0693090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/sparse_adam.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-07-17T06:37:54.0694200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/rprop.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-07-17T06:37:54.0695470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/sgd.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-07-17T06:37:54.0696960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-07-17T06:37:54.0698030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/adamax.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-07-17T06:37:54.0755930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/adagrad.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-07-17T06:37:54.0757310Z creating build/bdist.macosx-14.0-arm64/wheel/torch/optim/_multi_tensor 2025-07-17T06:37:54.0757980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/_multi_tensor/__init__.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/optim/_multi_tensor 2025-07-17T06:37:54.0759040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/_multi_tensor/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim/_multi_tensor 2025-07-17T06:37:54.0760080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/adamw.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-07-17T06:37:54.0761310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/swa_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-07-17T06:37:54.0762610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/lbfgs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-07-17T06:37:54.0763840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/radam.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-07-17T06:37:54.0765150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/adam.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-07-17T06:37:54.0766640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/optimizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-07-17T06:37:54.0768490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/nadam.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-07-17T06:37:54.0769400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/asgd.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-07-17T06:37:54.0770660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/_functional.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-07-17T06:37:54.0771790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/adadelta.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-07-17T06:37:54.0773160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_weights_only_unpickler.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:54.0774580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:54.0777290Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.0777710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/dtype_propagation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.0778710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/cudagraph_trees.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.0780920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/select_algorithm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.0829700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/ops_handler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.0830700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/metrics.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.0831970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codecache.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.0834280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/mock_cache.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.0835080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/optimize_indexing.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.0836210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/freezing_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.0837270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/hooks.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.0838350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/cpp_builder.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.0839960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/cpu_vec_isa.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.0841140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.0843180Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/analysis 2025-07-17T06:37:54.0843600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/analysis/device_info.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/analysis 2025-07-17T06:37:54.0844760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/analysis/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/analysis 2025-07-17T06:37:54.0845770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/analysis/profile_analysis.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/analysis 2025-07-17T06:37:54.0846960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_fx_ext.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.0848260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/comms.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.0849780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/memory.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.0851090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/mkldnn_lowerings.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.0852540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/async_compile.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.0853980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/pattern_matcher.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.0855500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/quantized_lowerings.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.0856620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/triton_bundler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.0857990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/aoti_eager.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.0859190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/graph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.0861340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/lowering.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.0863730Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime 2025-07-17T06:37:54.0864250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/cache_dir_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime 2025-07-17T06:37:54.0865620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/triton_heuristics.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime 2025-07-17T06:37:54.0867160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/runtime_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime 2025-07-17T06:37:54.0868250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/halide_helpers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime 2025-07-17T06:37:54.0869430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/coordinate_descent_tuner.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime 2025-07-17T06:37:54.0870890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/triton_compat.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime 2025-07-17T06:37:54.0871840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime 2025-07-17T06:37:54.0872710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/compile_tasks.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime 2025-07-17T06:37:54.0873840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/triton_helpers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime 2025-07-17T06:37:54.0875250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/autotune_cache.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime 2025-07-17T06:37:54.0876580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/hints.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime 2025-07-17T06:37:54.0877720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/static_cuda_launcher.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime 2025-07-17T06:37:54.0878980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/benchmarking.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime 2025-07-17T06:37:54.0880130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/jagged_lowerings.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.0881330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/test_operators.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.0882430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.0883780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_fx.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.0885540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/cudagraph_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.0886790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/sizevars.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.0888370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/ir.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.0891540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/analyze_preserves_zero_mask.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.0892490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_fx_async.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.0893750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/index_propagation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.0895030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/constant_folding.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.0897110Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-17T06:37:54.0897550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cpp_grouped_gemm_template.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-17T06:37:54.0898850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cpp_wrapper_gpu.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-17T06:37:54.0900100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/wrapper.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-17T06:37:54.0902350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/mps_device_op_overrides.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-17T06:37:54.0903120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/triton_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-17T06:37:54.0904300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/triton.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-17T06:37:54.0906660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cpp_bmm_template.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-17T06:37:54.0907400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/mps.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-17T06:37:54.0908820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/aoti_hipify_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-17T06:37:54.0909890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/simd.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-17T06:37:54.0912130Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda 2025-07-17T06:37:54.0912550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda 2025-07-17T06:37:54.0913970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cuda_cpp_scheduling.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda 2025-07-17T06:37:54.0915090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cuda_template.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda 2025-07-17T06:37:54.0916280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/gemm_template.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda 2025-07-17T06:37:54.0917970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda 2025-07-17T06:37:54.0918900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_presets.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda 2025-07-17T06:37:54.0920120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_python_evt.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda 2025-07-17T06:37:54.0921540Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions 2025-07-17T06:37:54.0922420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions 2025-07-17T06:37:54.0923730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions 2025-07-17T06:37:54.0924590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/evt_extensions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions 2025-07-17T06:37:54.0925670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/device_op_overrides.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda 2025-07-17T06:37:54.0926910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cuda_env.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda 2025-07-17T06:37:54.0927990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/serialization.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda 2025-07-17T06:37:54.0929360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_cache.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda 2025-07-17T06:37:54.0930470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cuda_kernel.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda 2025-07-17T06:37:54.0931910Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/xpu 2025-07-17T06:37:54.0932550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/xpu/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/xpu 2025-07-17T06:37:54.0933470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/xpu/device_op_overrides.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/xpu 2025-07-17T06:37:54.0934640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/triton_combo_kernel.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-17T06:37:54.0936400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/memory_planning.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-17T06:37:54.0938740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-17T06:37:54.0939170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cpp_flex_attention_template.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-17T06:37:54.0940730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/wrapper_fxir.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-17T06:37:54.0942170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cpp_micro_gemm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-17T06:37:54.0943730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cpp.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-17T06:37:54.0946290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cpp_wrapper_cpu.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-17T06:37:54.0947810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/block_analysis.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-17T06:37:54.0949250Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/aoti_runtime 2025-07-17T06:37:54.0950010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/aoti_runtime/interface.cpp -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/aoti_runtime 2025-07-17T06:37:54.0951370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/common.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-17T06:37:54.0953470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cpp_wrapper_mps.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-17T06:37:54.0954300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cpp_template_kernel.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-17T06:37:54.0955700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cpp_gemm_template.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-17T06:37:54.0957300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cpu_device_op_overrides.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-17T06:37:54.0958470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-17T06:37:54.0960400Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/rocm 2025-07-17T06:37:54.0960960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm/ck_tile_template.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/rocm 2025-07-17T06:37:54.0962000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm/rocm_cpp_scheduling.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/rocm 2025-07-17T06:37:54.0963080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm/rocm_kernel.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/rocm 2025-07-17T06:37:54.0964330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm/rocm_template.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/rocm 2025-07-17T06:37:54.0965450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/rocm 2025-07-17T06:37:54.0966350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm/compile_command.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/rocm 2025-07-17T06:37:54.0967500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm/rocm_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/rocm 2025-07-17T06:37:54.0968600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm/ck_conv_template.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/rocm 2025-07-17T06:37:54.0970140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm/rocm_template_buffer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/rocm 2025-07-17T06:37:54.0971250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm/ck_universal_gemm_template.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/rocm 2025-07-17T06:37:54.0972630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm/ck_template.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/rocm 2025-07-17T06:37:54.0973840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm/rocm_benchmark_request.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/rocm 2025-07-17T06:37:54.0975070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm/ck_tile_universal_gemm_template.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/rocm 2025-07-17T06:37:54.0976400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/triton_split_scan.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-17T06:37:54.0977550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/halide.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-17T06:37:54.0979170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cpp_template.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-17T06:37:54.0980300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda_combined_scheduling.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-17T06:37:54.0981490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/multi_kernel.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-17T06:37:54.0982850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/subgraph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-17T06:37:54.0983980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cpp_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-17T06:37:54.0985330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/debug_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-17T06:37:54.0986480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/simd_kernel_features.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-17T06:37:54.0987840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/inductor_prims.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.0988950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/virtualized.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.0990340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/test_case.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.0991500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/script.ld -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.0992630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autotune_process.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.0993940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/standalone_compile.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.0995420Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/compile_worker 2025-07-17T06:37:54.0996180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker/tracked_process_pool.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/compile_worker 2025-07-17T06:37:54.0997290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/compile_worker 2025-07-17T06:37:54.0998180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/compile_worker 2025-07-17T06:37:54.0999300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker/subproc_pool.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/compile_worker 2025-07-17T06:37:54.1000560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker/__main__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/compile_worker 2025-07-17T06:37:54.1001670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/exc.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.1002850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.1004560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/debug.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.1009120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/__autotune_main__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.1011450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fuzzer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.1012830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/comm_lowering.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.1014130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/decomposition.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.1016440Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/autoheuristic 2025-07-17T06:37:54.1017060Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/autoheuristic/artifacts 2025-07-17T06:37:54.1017800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts/_MixedMMH100.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/autoheuristic/artifacts 2025-07-17T06:37:54.1019160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts/_PadMMA100.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/autoheuristic/artifacts 2025-07-17T06:37:54.1022120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts/_MMRankingH100.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/autoheuristic/artifacts 2025-07-17T06:37:54.1023460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/autoheuristic/artifacts 2025-07-17T06:37:54.1024390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts/_MMRankingA100.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/autoheuristic/artifacts 2025-07-17T06:37:54.1025930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts/_MixedMMA100.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/autoheuristic/artifacts 2025-07-17T06:37:54.1026990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/autoheuristic.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/autoheuristic 2025-07-17T06:37:54.1028480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/autoheuristic_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/autoheuristic 2025-07-17T06:37:54.1033090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/learned_heuristic_controller.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/autoheuristic 2025-07-17T06:37:54.1037270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/autoheuristic 2025-07-17T06:37:54.1037920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/learnedheuristic_interface.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/autoheuristic 2025-07-17T06:37:54.1041500Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-17T06:37:54.1042110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/post_grad.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-17T06:37:54.1043650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/fsdp.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-17T06:37:54.1047410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/replace_random.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-17T06:37:54.1050150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/ddp_fusion.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-17T06:37:54.1051600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/numeric_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-17T06:37:54.1057620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/decompose_mem_bound_mm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-17T06:37:54.1060190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/reinplace.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-17T06:37:54.1065530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/quantization.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-17T06:37:54.1067520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/split_cat.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-17T06:37:54.1069140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/dedupe_symint_uses.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-17T06:37:54.1075430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/efficient_conv_bn_eval.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-17T06:37:54.1076530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-17T06:37:54.1077510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/group_batch_fusion.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-17T06:37:54.1084410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/pre_grad.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-17T06:37:54.1092330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/binary_folding.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-17T06:37:54.1093310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/fuse_attention.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-17T06:37:54.1094790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/micro_pipeline_tp.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-17T06:37:54.1100710Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:54.1101220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:54.1102670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_5.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:54.1109250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:54.1110320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:54.1111820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_1.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:54.1117940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:54.1118970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:54.1127260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_13.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:54.1128280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_4.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:54.1129720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/addmm_pattern.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:54.1130870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:54.1132170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:54.1133070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_19.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:54.1134430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:54.1135800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:54.1137160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/mm_pattern.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:54.1138270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:54.1142350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:54.1144160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_3.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:54.1145590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:54.1146940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_24.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:54.1148270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:54.1149740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:54.1151090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_6.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:54.1152510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/bmm_pattern.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:54.1153620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:54.1155020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:54.1156250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_2.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-17T06:37:54.1157400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/joint_graph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-17T06:37:54.1158900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/bucketing.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-17T06:37:54.1160300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/b2b_gemm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-17T06:37:54.1161660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/mkldnn_fusion.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-17T06:37:54.1163170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/pad_mm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-17T06:37:54.1164600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/freezing_patterns.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-17T06:37:54.1165780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/misc_patterns.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-17T06:37:54.1172050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.1173050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_fx_subproc.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.1174220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/scheduler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.1176660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/mkldnn_ir.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.1180150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/wrapper_benchmark.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.1181140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/choices.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.1182430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/remote_cache.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.1188290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/comm_analysis.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.1189440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compiler_bisector.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.1196850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/extern_node_serializer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.1197790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/bounds.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.1199060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/output_code.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.1202850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/custom_graph_pass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.1206170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/freezing.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.1210500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/dependencies.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.1211500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/tiling_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.1216060Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel 2025-07-17T06:37:54.1216450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/mm_common.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel 2025-07-17T06:37:54.1220460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex_decoding.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel 2025-07-17T06:37:54.1224790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/mm_grouped.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel 2025-07-17T06:37:54.1225670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel 2025-07-17T06:37:54.1226770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/mm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel 2025-07-17T06:37:54.1228100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/bmm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel 2025-07-17T06:37:54.1229300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/conv.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel 2025-07-17T06:37:54.1230540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/mm_plus_mm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel 2025-07-17T06:37:54.1231890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex_attention.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel 2025-07-17T06:37:54.1234220Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/package 2025-07-17T06:37:54.1234600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/package/package.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/package 2025-07-17T06:37:54.1235840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/package/build_package.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/package 2025-07-17T06:37:54.1238640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/package/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/package 2025-07-17T06:37:54.1239280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/loop_body.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.1240640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/subgraph_lowering.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.1241780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/template_heuristics.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-17T06:37:54.1244590Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1245020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_pytree.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1247190Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark 2025-07-17T06:37:54.1247850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark 2025-07-17T06:37:54.1249320Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/op_fuzzers 2025-07-17T06:37:54.1250270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers/binary.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/op_fuzzers 2025-07-17T06:37:54.1251300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers/sparse_binary.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/op_fuzzers 2025-07-17T06:37:54.1252510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers/sparse_unary.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/op_fuzzers 2025-07-17T06:37:54.1258180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/op_fuzzers 2025-07-17T06:37:54.1258790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers/spectral.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/op_fuzzers 2025-07-17T06:37:54.1259890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers/unary.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/op_fuzzers 2025-07-17T06:37:54.1262440Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils 2025-07-17T06:37:54.1262900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/timer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils 2025-07-17T06:37:54.1267040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils 2025-07-17T06:37:54.1267600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/sparse_fuzzer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils 2025-07-17T06:37:54.1268920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/common.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils 2025-07-17T06:37:54.1270270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/compile.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils 2025-07-17T06:37:54.1271850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/fuzzer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils 2025-07-17T06:37:54.1276170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/timeit_template.cpp -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils 2025-07-17T06:37:54.1277250Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils/valgrind_wrapper 2025-07-17T06:37:54.1278000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper/timer_interface.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils/valgrind_wrapper 2025-07-17T06:37:54.1282730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper/valgrind.h -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils/valgrind_wrapper 2025-07-17T06:37:54.1286240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper/timer_callgrind_template.cpp -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils/valgrind_wrapper 2025-07-17T06:37:54.1293690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils/valgrind_wrapper 2025-07-17T06:37:54.1294220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper/compat_bindings.cpp -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils/valgrind_wrapper 2025-07-17T06:37:54.1295340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper/callgrind.h -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils/valgrind_wrapper 2025-07-17T06:37:54.1303100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/cpp_jit.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils 2025-07-17T06:37:54.1304010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/compare.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils 2025-07-17T06:37:54.1305280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/_stubs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils 2025-07-17T06:37:54.1312490Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/examples 2025-07-17T06:37:54.1313090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples/op_benchmark.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/examples 2025-07-17T06:37:54.1314370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/examples 2025-07-17T06:37:54.1315270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples/simple_timeit.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/examples 2025-07-17T06:37:54.1316390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples/fuzzer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/examples 2025-07-17T06:37:54.1317590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples/spectral_ops_fuzz_test.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/examples 2025-07-17T06:37:54.1318700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples/compare.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/examples 2025-07-17T06:37:54.1319870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_appending_byte_serializer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1321030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_foreach_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1322190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hooks.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1323350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_traceback.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1329660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_cpp_extension_versioner.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1330410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_mode_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1336940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/checkpoint.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1338450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/show_pickle.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1345370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/deterministic.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1346170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/file_baton.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1350540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/backend_registration.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1354480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/module_tracker.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1358810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_zoo.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1359540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_zip.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1363160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/collect_env.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1367670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/throughput_benchmark.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1368480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/dlpack.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1373790Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/_sympy 2025-07-17T06:37:54.1374170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy/functions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/_sympy 2025-07-17T06:37:54.1377400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/_sympy 2025-07-17T06:37:54.1378000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy/symbol.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/_sympy 2025-07-17T06:37:54.1381060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy/numbers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/_sympy 2025-07-17T06:37:54.1381990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy/reference.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/_sympy 2025-07-17T06:37:54.1386630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy/singleton_int.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/_sympy 2025-07-17T06:37:54.1390450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy/value_ranges.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/_sympy 2025-07-17T06:37:54.1395420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy/printers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/_sympy 2025-07-17T06:37:54.1396490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy/solve.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/_sympy 2025-07-17T06:37:54.1397640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy/interp.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/_sympy 2025-07-17T06:37:54.1400140Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/serialization 2025-07-17T06:37:54.1400600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/serialization/config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/serialization 2025-07-17T06:37:54.1401620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/serialization/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/serialization 2025-07-17T06:37:54.1403310Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/backcompat 2025-07-17T06:37:54.1404000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/backcompat/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/backcompat 2025-07-17T06:37:54.1405140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_cxx_pytree.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1408040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1408790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_functools.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1413700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_import_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1417860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_cpp_embed_headers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1421680Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/hipify 2025-07-17T06:37:54.1422080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify/version.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/hipify 2025-07-17T06:37:54.1423170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify/cuda_to_hip_mappings.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/hipify 2025-07-17T06:37:54.1429240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify/constants.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/hipify 2025-07-17T06:37:54.1429950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/hipify 2025-07-17T06:37:54.1435960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify/hipify_python.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/hipify 2025-07-17T06:37:54.1437030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_dtype_abbrs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1441370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_config_typing.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1443690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/bundled_inputs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1445300Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/bottleneck 2025-07-17T06:37:54.1445940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/bottleneck/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/bottleneck 2025-07-17T06:37:54.1446820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/bottleneck/__main__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/bottleneck 2025-07-17T06:37:54.1447970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_helion.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1449080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/mkldnn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1450450Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/viz 2025-07-17T06:37:54.1451160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/viz/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/viz 2025-07-17T06:37:54.1452100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/viz/_cycles.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/viz 2025-07-17T06:37:54.1453390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/cpp_backtrace.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1454530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_contextlib.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1455820Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/jit 2025-07-17T06:37:54.1456470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/jit/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/jit 2025-07-17T06:37:54.1457410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/jit/log_extract.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/jit 2025-07-17T06:37:54.1458610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_python_dispatch.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1460540Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/tensorboard 2025-07-17T06:37:54.1460960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard/_pytorch_graph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/tensorboard 2025-07-17T06:37:54.1462270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard/_proto_graph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/tensorboard 2025-07-17T06:37:54.1469110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/tensorboard 2025-07-17T06:37:54.1472050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard/_embedding.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/tensorboard 2025-07-17T06:37:54.1476060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard/_onnx_graph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/tensorboard 2025-07-17T06:37:54.1476740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard/summary.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/tensorboard 2025-07-17T06:37:54.1480050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard/_convert_np.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/tensorboard 2025-07-17T06:37:54.1480750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard/writer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/tensorboard 2025-07-17T06:37:54.1482190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/tensorboard 2025-07-17T06:37:54.1483840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_exposed_in.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1484980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_filelock.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1489830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_thunk.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1493860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_config_module.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1496010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_device.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1502320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/flop_counter.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1505300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_typing_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1511540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_stats.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1513820Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/model_dump 2025-07-17T06:37:54.1514290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump/code.js -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/model_dump 2025-07-17T06:37:54.1519930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump/preact.mjs -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/model_dump 2025-07-17T06:37:54.1520880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump/skeleton.html -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/model_dump 2025-07-17T06:37:54.1521930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump/htm.mjs -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/model_dump 2025-07-17T06:37:54.1527160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/model_dump 2025-07-17T06:37:54.1528350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump/__main__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/model_dump 2025-07-17T06:37:54.1531840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/cpp_extension.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1537290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_backport_slots.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1541600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_get_clean_triton.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1545180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_triton.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1545990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_content_store.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1551170Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/data 2025-07-17T06:37:54.1551760Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/_utils 2025-07-17T06:37:54.1552520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils/fetch.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/_utils 2025-07-17T06:37:54.1553760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils/worker.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/_utils 2025-07-17T06:37:54.1559160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils/collate.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/_utils 2025-07-17T06:37:54.1560260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils/pin_memory.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/_utils 2025-07-17T06:37:54.1561340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/_utils 2025-07-17T06:37:54.1567840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils/signal_handling.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/_utils 2025-07-17T06:37:54.1568750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/graph_settings.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data 2025-07-17T06:37:54.1575300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/graph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data 2025-07-17T06:37:54.1576670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data 2025-07-17T06:37:54.1583440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/dataset.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data 2025-07-17T06:37:54.1585420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/distributed.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data 2025-07-17T06:37:54.1592280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/backward_compatibility.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data 2025-07-17T06:37:54.1593110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/dataloader.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data 2025-07-17T06:37:54.1600890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/sampler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data 2025-07-17T06:37:54.1601940Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes 2025-07-17T06:37:54.1602690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/_decorator.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes 2025-07-17T06:37:54.1604020Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/dataframe 2025-07-17T06:37:54.1604770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/dataframe 2025-07-17T06:37:54.1609280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe/datapipes.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/dataframe 2025-07-17T06:37:54.1611160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe/dataframe_wrapper.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/dataframe 2025-07-17T06:37:54.1617720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe/structures.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/dataframe 2025-07-17T06:37:54.1618430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe/dataframes.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/dataframe 2025-07-17T06:37:54.1753220Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/iter 2025-07-17T06:37:54.1753850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter/fileopener.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/iter 2025-07-17T06:37:54.1754980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter/callable.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/iter 2025-07-17T06:37:54.1756260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter/sharding.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/iter 2025-07-17T06:37:54.1757370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter/grouping.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/iter 2025-07-17T06:37:54.1758750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/iter 2025-07-17T06:37:54.1759860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter/selecting.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/iter 2025-07-17T06:37:54.1761000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter/combining.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/iter 2025-07-17T06:37:54.1762480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter/filelister.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/iter 2025-07-17T06:37:54.1763500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/iter 2025-07-17T06:37:54.1764600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter/combinatorics.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/iter 2025-07-17T06:37:54.1765720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter/streamreader.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/iter 2025-07-17T06:37:54.1766870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter/routeddecoder.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/iter 2025-07-17T06:37:54.1767900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/_typing.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes 2025-07-17T06:37:54.1769250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/_hook_iterator.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes 2025-07-17T06:37:54.1770460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/datapipe.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes 2025-07-17T06:37:54.1771990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes 2025-07-17T06:37:54.1773210Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/utils 2025-07-17T06:37:54.1773920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/utils/decoder.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/utils 2025-07-17T06:37:54.1775210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/utils/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/utils 2025-07-17T06:37:54.1776040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/utils/common.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/utils 2025-07-17T06:37:54.1777380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/utils/snapshot.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/utils 2025-07-17T06:37:54.1778450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/datapipe.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes 2025-07-17T06:37:54.1780010Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/map 2025-07-17T06:37:54.1780710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map/callable.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/map 2025-07-17T06:37:54.1781830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map/grouping.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/map 2025-07-17T06:37:54.1782970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/map 2025-07-17T06:37:54.1783990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map/combining.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/map 2025-07-17T06:37:54.1785080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/map 2025-07-17T06:37:54.1786250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map/combinatorics.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/map 2025-07-17T06:37:54.1787280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/gen_pyi.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes 2025-07-17T06:37:54.1788610Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/_strobelight 2025-07-17T06:37:54.1789320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_strobelight/cli_function_profiler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/_strobelight 2025-07-17T06:37:54.1790520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_strobelight/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/_strobelight 2025-07-17T06:37:54.1791320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_ordered_set.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1792490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/weak.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1793620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/mobile_optimizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-17T06:37:54.1795010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/overrides.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:54.1796690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_namedtensor_internals.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:54.1797870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/return_types.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:54.1799270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/types.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:54.1800320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_linalg_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:54.1801430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/__config__.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:54.1802620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_tensor.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:54.1804450Z creating build/bdist.macosx-14.0-arm64/wheel/torch/contrib 2025-07-17T06:37:54.1805130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/contrib/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/contrib 2025-07-17T06:37:54.1806040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/contrib/_tensorboard_vis.py -> build/bdist.macosx-14.0-arm64/wheel/torch/contrib 2025-07-17T06:37:54.1807140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/random.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:54.1808270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/hub.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:54.1810300Z creating build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-07-17T06:37:54.1810800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/observer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-07-17T06:37:54.1811800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fuse_modules.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-07-17T06:37:54.1812960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/quantization_mappings.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-07-17T06:37:54.1813980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/quantize.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-07-17T06:37:54.1815670Z creating build/bdist.macosx-14.0-arm64/wheel/torch/quantization/fx 2025-07-17T06:37:54.1816200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx/graph_module.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization/fx 2025-07-17T06:37:54.1817260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx/fusion_patterns.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization/fx 2025-07-17T06:37:54.1818210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx/_equalize.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization/fx 2025-07-17T06:37:54.1819400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx/quantization_types.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization/fx 2025-07-17T06:37:54.1820420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx/convert.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization/fx 2025-07-17T06:37:54.1821530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization/fx 2025-07-17T06:37:54.1822570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization/fx 2025-07-17T06:37:54.1823650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx/pattern_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization/fx 2025-07-17T06:37:54.1824900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx/fuse.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization/fx 2025-07-17T06:37:54.1826020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx/match_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization/fx 2025-07-17T06:37:54.1827190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx/prepare.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization/fx 2025-07-17T06:37:54.1828580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx/quantization_patterns.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization/fx 2025-07-17T06:37:54.1829340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/_numeric_suite.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-07-17T06:37:54.1830440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fake_quantize.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-07-17T06:37:54.1831530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/qconfig.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-07-17T06:37:54.1832690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-07-17T06:37:54.1833800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/_quantized_conversions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-07-17T06:37:54.1834980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/stubs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-07-17T06:37:54.1836020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-07-17T06:37:54.1837130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fuser_method_mappings.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-07-17T06:37:54.1838210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/quantize_jit.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-07-17T06:37:54.1839420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/quant_type.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-07-17T06:37:54.1840520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/quantize_fx.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-07-17T06:37:54.1841670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/_numeric_suite_fx.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-07-17T06:37:54.1842780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_tensor_str.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:54.1844090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_sources.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:54.1845450Z creating build/bdist.macosx-14.0-arm64/wheel/torch/special 2025-07-17T06:37:54.1846120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/special/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/special 2025-07-17T06:37:54.1847770Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-17T06:37:54.1848390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_profiler.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-17T06:37:54.1849570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_onnx.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-17T06:37:54.1850650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_distributed_c10d.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-17T06:37:54.1852080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_autograd.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-17T06:37:54.1853180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_monitor.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-17T06:37:54.1854340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_itt.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-17T06:37:54.1855870Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_C/_export 2025-07-17T06:37:54.1856400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_export/__init__.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C/_export 2025-07-17T06:37:54.1857730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_export/pt2_archive_constants.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C/_export 2025-07-17T06:37:54.1858810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_lazy.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-17T06:37:54.1859930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/__init__.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-17T06:37:54.1863440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_nvtx.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-17T06:37:54.1864070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_cpu.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-17T06:37:54.1866950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_nn.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-17T06:37:54.1871460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_cusparselt.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-17T06:37:54.1872540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_instruction_counter.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-17T06:37:54.1876760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_jit_tree_views.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-17T06:37:54.1880500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_lazy_ts_backend.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-17T06:37:54.1884950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_functorch.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-17T06:37:54.1885850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_VariableFunctions.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-17T06:37:54.1903730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_distributed_rpc.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-17T06:37:54.1907450Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_C/_dynamo 2025-07-17T06:37:54.1907930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_dynamo/__init__.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C/_dynamo 2025-07-17T06:37:54.1912200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_dynamo/compiled_autograd.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C/_dynamo 2025-07-17T06:37:54.1913000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_dynamo/guards.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C/_dynamo 2025-07-17T06:37:54.1915820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_dynamo/eval_frame.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C/_dynamo 2025-07-17T06:37:54.1919680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_verbose.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-17T06:37:54.1923820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_aoti.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-17T06:37:54.1924690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_functions.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-17T06:37:54.1929370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_distributed_rpc_testing.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-17T06:37:54.1933770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_cudnn.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-17T06:37:54.1937520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_distributed_autograd.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-17T06:37:54.1938770Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing 2025-07-17T06:37:54.1939920Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-17T06:37:54.1940860Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/generated 2025-07-17T06:37:54.1941560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/generated/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/generated 2025-07-17T06:37:54.1942510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/generated/annotated_fn_args.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/generated 2025-07-17T06:37:54.1951530Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo 2025-07-17T06:37:54.1952100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo 2025-07-17T06:37:54.1953030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/core.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo 2025-07-17T06:37:54.1955170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo 2025-07-17T06:37:54.1960510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/refs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo 2025-07-17T06:37:54.1968490Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo/definitions 2025-07-17T06:37:54.1969180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions/signal.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo/definitions 2025-07-17T06:37:54.1970440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo/definitions 2025-07-17T06:37:54.1973580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions/_masked.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo/definitions 2025-07-17T06:37:54.1977580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions/linalg.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo/definitions 2025-07-17T06:37:54.1982130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions/sparse.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo/definitions 2025-07-17T06:37:54.1983240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions/fft.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo/definitions 2025-07-17T06:37:54.1986290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions/special.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo/definitions 2025-07-17T06:37:54.1990870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions/nested.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo/definitions 2025-07-17T06:37:54.1993270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_dtype.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-17T06:37:54.1994480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_pruning.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-17T06:37:54.2000770Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/test_module 2025-07-17T06:37:54.2001410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/test_module/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/test_module 2025-07-17T06:37:54.2002240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/test_module/future_div.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/test_module 2025-07-17T06:37:54.2003340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/test_module/no_future_div.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/test_module 2025-07-17T06:37:54.2008270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/fake_config_module3.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-17T06:37:54.2009260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/hop_db.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-17T06:37:54.2011350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/triton_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-17T06:37:54.2017890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/static_module.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-17T06:37:54.2018650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/subclasses.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-17T06:37:54.2027360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_nn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-17T06:37:54.2028920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/custom_op_db.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-17T06:37:54.2034490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/fake_config_module2.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-17T06:37:54.2035970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/autocast_test_lists.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-17T06:37:54.2037630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_fsdp.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-17T06:37:54.2038840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/two_tensor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-17T06:37:54.2043910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/torchbind_impls.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-17T06:37:54.2045050Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed 2025-07-17T06:37:54.2045920Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/_tensor 2025-07-17T06:37:54.2046660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_tensor/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/_tensor 2025-07-17T06:37:54.2047600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_tensor/common_dtensor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/_tensor 2025-07-17T06:37:54.2049000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/ddp_under_dist_autograd_test.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed 2025-07-17T06:37:54.2050880Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/nn 2025-07-17T06:37:54.2051580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/nn/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/nn 2025-07-17T06:37:54.2052270Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/nn/api 2025-07-17T06:37:54.2053100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/nn/api/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/nn/api 2025-07-17T06:37:54.2054080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/nn/api/remote_module_test.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/nn/api 2025-07-17T06:37:54.2055510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/fake_pg.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed 2025-07-17T06:37:54.2056640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed 2025-07-17T06:37:54.2057620Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/_shard 2025-07-17T06:37:54.2058480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard/test_common.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/_shard 2025-07-17T06:37:54.2059940Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/_shard/sharded_tensor 2025-07-17T06:37:54.2060720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard/sharded_tensor/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/_shard/sharded_tensor 2025-07-17T06:37:54.2061860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard/sharded_tensor/_test_ops_common.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/_shard/sharded_tensor 2025-07-17T06:37:54.2063060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard/sharded_tensor/_test_st_common.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/_shard/sharded_tensor 2025-07-17T06:37:54.2064130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/_shard 2025-07-17T06:37:54.2068970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/checkpoint_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed 2025-07-17T06:37:54.2069890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/distributed_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed 2025-07-17T06:37:54.2077030Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc 2025-07-17T06:37:54.2077740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/faulty_rpc_agent_test_fixture.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc 2025-07-17T06:37:54.2078700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/faulty_agent_rpc_test.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc 2025-07-17T06:37:54.2084260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc 2025-07-17T06:37:54.2085180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/dist_autograd_test.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc 2025-07-17T06:37:54.2086980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/rpc_agent_test_fixture.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc 2025-07-17T06:37:54.2092560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/tensorpipe_rpc_agent_test_fixture.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc 2025-07-17T06:37:54.2093430Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc/jit 2025-07-17T06:37:54.2094190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/jit/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc/jit 2025-07-17T06:37:54.2095170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/jit/dist_autograd_test.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc/jit 2025-07-17T06:37:54.2100460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/jit/rpc_test.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc/jit 2025-07-17T06:37:54.2101840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/jit/rpc_test_faulty.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc/jit 2025-07-17T06:37:54.2103090Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc/examples 2025-07-17T06:37:54.2103830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/examples/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc/examples 2025-07-17T06:37:54.2104880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/examples/reinforcement_learning_rpc_test.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc/examples 2025-07-17T06:37:54.2108860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/examples/parameter_server_test.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc/examples 2025-07-17T06:37:54.2109840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/rpc_test.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc 2025-07-17T06:37:54.2116120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/dist_optimizer_test.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc 2025-07-17T06:37:54.2117430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/distributed_test.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed 2025-07-17T06:37:54.2121940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/multi_threaded_pg.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed 2025-07-17T06:37:54.2126260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/common_state_dict.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed 2025-07-17T06:37:54.2132120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed 2025-07-17T06:37:54.2133080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_optimizers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-17T06:37:54.2135010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_device_type.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-17T06:37:54.2141580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/autograd_function_db.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-17T06:37:54.2142680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_mkldnn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-17T06:37:54.2149080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/inductor_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-17T06:37:54.2149850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_distributed.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-17T06:37:54.2162390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-17T06:37:54.2163290Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/optests 2025-07-17T06:37:54.2164040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/optests 2025-07-17T06:37:54.2178510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests/fake_tensor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/optests 2025-07-17T06:37:54.2179380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests/aot_autograd.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/optests 2025-07-17T06:37:54.2187050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests/make_fx.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/optests 2025-07-17T06:37:54.2188060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests/generate_tests.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/optests 2025-07-17T06:37:54.2189370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests/autograd_registration.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/optests 2025-07-17T06:37:54.2194070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_methods_invocations.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-17T06:37:54.2201180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/custom_tensor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-17T06:37:54.2202370Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/codegen 2025-07-17T06:37:54.2203030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/codegen/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/codegen 2025-07-17T06:37:54.2204310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/logging_tensor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-17T06:37:54.2205440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/hypothesis_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-17T06:37:54.2206820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_cuda.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-17T06:37:54.2208200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_quantization.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-17T06:37:54.2209940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_modules.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-17T06:37:54.2212450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_jit.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-17T06:37:54.2213480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_mps.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-17T06:37:54.2214910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/jit_metaprogramming_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-17T06:37:54.2216390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/dynamo_test_failures.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-17T06:37:54.2217490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/check_kernel_launches.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-17T06:37:54.2218660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-17T06:37:54.2221360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/quantization_torch_package_models.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-17T06:37:54.2222370Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/data 2025-07-17T06:37:54.2223040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/data/network1.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/data 2025-07-17T06:37:54.2224230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/data/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/data 2025-07-17T06:37:54.2225370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/data/network2.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/data 2025-07-17T06:37:54.2226590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_quantized.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-17T06:37:54.2227910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_dist_composable.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-17T06:37:54.2228980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_subclass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-17T06:37:54.2234270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/composite_compliance.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-17T06:37:54.2235330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/logging_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-17T06:37:54.2241490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/dist_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-17T06:37:54.2242340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/fake_config_module.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-17T06:37:54.2245790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/jit_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-17T06:37:54.2249360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_creation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing 2025-07-17T06:37:54.2252450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing 2025-07-17T06:37:54.2257440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_comparison.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing 2025-07-17T06:37:54.2264480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing 2025-07-17T06:37:54.2266580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_vmap_internals.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:54.2272340Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-07-17T06:37:54.2272940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/triton.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-07-17T06:37:54.2273860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/fake_profile.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-07-17T06:37:54.2275100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/infer_schema.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-07-17T06:37:54.2281030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/simple_registry.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-07-17T06:37:54.2281880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/custom_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-07-17T06:37:54.2288640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-07-17T06:37:54.2289910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/fake_impl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-07-17T06:37:54.2297790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/autograd.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-07-17T06:37:54.2298510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-07-17T06:37:54.2299810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/fake_class_registry.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-07-17T06:37:54.2302850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/functional.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:54.2306070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lowrank.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:54.2307050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_appdirs.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:54.2309020Z creating build/bdist.macosx-14.0-arm64/wheel/torch/accelerator 2025-07-17T06:37:54.2309510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/accelerator/memory.py -> build/bdist.macosx-14.0-arm64/wheel/torch/accelerator 2025-07-17T06:37:54.2310910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/accelerator/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/accelerator 2025-07-17T06:37:54.2312280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/accelerator/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/accelerator 2025-07-17T06:37:54.2321010Z creating build/bdist.macosx-14.0-arm64/wheel/torch/amp 2025-07-17T06:37:54.2321550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/amp/autocast_mode.py -> build/bdist.macosx-14.0-arm64/wheel/torch/amp 2025-07-17T06:37:54.2322870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/amp/grad_scaler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/amp 2025-07-17T06:37:54.2332690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/amp/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/amp 2025-07-17T06:37:54.2334240Z creating build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-17T06:37:54.2334980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_ir_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-17T06:37:54.2336140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_monkeytype_config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-17T06:37:54.2337430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_decompositions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-17T06:37:54.2339380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_recursive.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-17T06:37:54.2340680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_logging.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-17T06:37:54.2342440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_serialization.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-17T06:37:54.2347790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/quantized.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-17T06:37:54.2348360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_script.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-17T06:37:54.2348920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_script.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-17T06:37:54.2349550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_shape_functions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-17T06:37:54.2350180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_decomposition_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-17T06:37:54.2351410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_freeze.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-17T06:37:54.2352610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_pickle.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-17T06:37:54.2355370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_check.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-17T06:37:54.2356690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/unsupported_tensor_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-17T06:37:54.2361280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/frontend.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-17T06:37:54.2362450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/supported_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-17T06:37:54.2367330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-17T06:37:54.2369160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_fuser.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-17T06:37:54.2375650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_builtins.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-17T06:37:54.2376450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_dataclass_impls.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-17T06:37:54.2377620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_trace.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-17T06:37:54.2384200Z creating build/bdist.macosx-14.0-arm64/wheel/torch/jit/_passes 2025-07-17T06:37:54.2384720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_passes/_property_propagation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit/_passes 2025-07-17T06:37:54.2385880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_passes/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit/_passes 2025-07-17T06:37:54.2386590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/generate_bytecode.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-17T06:37:54.2536450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_state.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-17T06:37:54.2537540Z creating build/bdist.macosx-14.0-arm64/wheel/torch/jit/mobile 2025-07-17T06:37:54.2538280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/mobile/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit/mobile 2025-07-17T06:37:54.2539320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_async.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-17T06:37:54.2540460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/annotations.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-17T06:37:54.2541800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_await.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-17T06:37:54.2543380Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2544030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/package.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2545330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/cache_size.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2546460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/callback.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2547700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/comptime.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2549110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/logging.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2550430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/_trace_wrapped_higher_order_op.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2551400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/hooks.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2552540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/precompile_context.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2553690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/graph_break_hints.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2554720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2555940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/guards.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2558130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/test_minifier_common.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2559010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/create_parameter_op.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2560070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/graph_region_tracker.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2561340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/device_interface.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2562880Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/backends 2025-07-17T06:37:54.2563580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends/registry.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/backends 2025-07-17T06:37:54.2564690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/backends 2025-07-17T06:37:54.2565580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends/debugging.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/backends 2025-07-17T06:37:54.2566920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends/distributed.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/backends 2025-07-17T06:37:54.2568160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends/common.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/backends 2025-07-17T06:37:54.2569310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends/inductor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/backends 2025-07-17T06:37:54.2570440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends/onnxrt.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/backends 2025-07-17T06:37:54.2571510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends/tvm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/backends 2025-07-17T06:37:54.2572640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends/cudagraphs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/backends 2025-07-17T06:37:54.2573730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends/tensorrt.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/backends 2025-07-17T06:37:54.2574870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends/torchxla.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/backends 2025-07-17T06:37:54.2575920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/graph_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2577050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2578200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/mutation_guard.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2579360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/types.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2580440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/metrics_context.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2581610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/bytecode_analysis.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2582770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/tensor_version_op.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2583870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/external_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2585050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/test_case.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2586160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/distributed.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2587300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/resume_execution.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2588620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/output_graph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2590640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/compiled_autograd.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2592060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/exc.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2593360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2595900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-07-17T06:37:54.2596430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/functions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-07-17T06:37:54.2598000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/iter.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-07-17T06:37:54.2599270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/misc.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-07-17T06:37:54.2600930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/lists.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-07-17T06:37:54.2602270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/script_object.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-07-17T06:37:54.2603300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/torch_function.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-07-17T06:37:54.2604600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-07-17T06:37:54.2605710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/user_defined.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-07-17T06:37:54.2607260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/nn_module.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-07-17T06:37:54.2608770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/builder.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-07-17T06:37:54.2610770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/tensor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-07-17T06:37:54.2612300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/higher_order_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-07-17T06:37:54.2614070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/sdpa.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-07-17T06:37:54.2615210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/distributed.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-07-17T06:37:54.2616650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/optimizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-07-17T06:37:54.2617940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/builtin.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-07-17T06:37:54.2619630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/constant.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-07-17T06:37:54.2620770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/lazy.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-07-17T06:37:54.2621850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/torch.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-07-17T06:37:54.2623520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/ctx_manager.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-07-17T06:37:54.2624950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/dicts.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-07-17T06:37:54.2626370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/base.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-07-17T06:37:54.2627630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/graph_break_registry.json -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2629580Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/repro 2025-07-17T06:37:54.2630260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/repro/after_dynamo.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/repro 2025-07-17T06:37:54.2631490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/repro/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/repro 2025-07-17T06:37:54.2632390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/repro/after_aot.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/repro 2025-07-17T06:37:54.2633850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/repro/aoti.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/repro 2025-07-17T06:37:54.2635180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/test_dont_skip_tracing_functions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2636250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/replay_record.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2637390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/side_effects.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2639090Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/polyfills 2025-07-17T06:37:54.2639750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills/functools.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/polyfills 2025-07-17T06:37:54.2640870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills/builtins.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/polyfills 2025-07-17T06:37:54.2642050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills/operator.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/polyfills 2025-07-17T06:37:54.2643140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills/os.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/polyfills 2025-07-17T06:37:54.2644270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/polyfills 2025-07-17T06:37:54.2645400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills/tensor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/polyfills 2025-07-17T06:37:54.2646510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills/loader.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/polyfills 2025-07-17T06:37:54.2647680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills/fx.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/polyfills 2025-07-17T06:37:54.2648720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills/sys.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/polyfills 2025-07-17T06:37:54.2649870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills/pytree.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/polyfills 2025-07-17T06:37:54.2651210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills/itertools.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/polyfills 2025-07-17T06:37:54.2652330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/trace_rules.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2654750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/bytecode_transformation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2655850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/convert_frame.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2657620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/funcname_cache.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2660480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/testing.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2667040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/pgo.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2668030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/profiler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2669280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/symbolic_convert.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2675170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/codegen.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2676410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/source.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2678710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/eval_frame.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2680250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/code_context.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2686500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/graph_deduplication.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2694360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/current_scope_id.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2695260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/debug_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2696460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/decorators.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-17T06:37:54.2701640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_environment.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:54.2705080Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-07-17T06:37:54.2705520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/metrics.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-07-17T06:37:54.2706590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-07-17T06:37:54.2712820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-07-17T06:37:54.2715670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/tensor_factory_functions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-07-17T06:37:54.2721970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/debug.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-07-17T06:37:54.2722890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/extract_compiled_graph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-07-17T06:37:54.2724090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/ir_cache.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-07-17T06:37:54.2732640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/ts_backend.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-07-17T06:37:54.2735760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/computation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-07-17T06:37:54.2736570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/closure.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-07-17T06:37:54.2740010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/device_context.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-07-17T06:37:54.2740800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/storage.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:54.2742370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C.cpython-312-darwin.so -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:54.2744020Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao 2025-07-17T06:37:54.2744940Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn 2025-07-17T06:37:54.2745830Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat 2025-07-17T06:37:54.2746680Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat/dynamic 2025-07-17T06:37:54.2747350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/dynamic/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat/dynamic 2025-07-17T06:37:54.2748740Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat/dynamic/modules 2025-07-17T06:37:54.2749480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/dynamic/modules/linear.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat/dynamic/modules 2025-07-17T06:37:54.2750740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/dynamic/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat/dynamic/modules 2025-07-17T06:37:54.2751760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat 2025-07-17T06:37:54.2753260Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat/modules 2025-07-17T06:37:54.2753930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/modules/linear.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat/modules 2025-07-17T06:37:54.2755210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat/modules 2025-07-17T06:37:54.2756350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/modules/conv.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat/modules 2025-07-17T06:37:54.2757580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/modules/embedding_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat/modules 2025-07-17T06:37:54.2759000Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized 2025-07-17T06:37:54.2759830Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/dynamic 2025-07-17T06:37:54.2760520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/dynamic 2025-07-17T06:37:54.2761850Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/dynamic/modules 2025-07-17T06:37:54.2762640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic/modules/linear.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/dynamic/modules 2025-07-17T06:37:54.2763730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/dynamic/modules 2025-07-17T06:37:54.2764850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic/modules/conv.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/dynamic/modules 2025-07-17T06:37:54.2766250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic/modules/rnn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/dynamic/modules 2025-07-17T06:37:54.2767740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized 2025-07-17T06:37:54.2768880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/functional.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized 2025-07-17T06:37:54.2770580Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/modules 2025-07-17T06:37:54.2771280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules/batchnorm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/modules 2025-07-17T06:37:54.2772540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules/functional_modules.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/modules 2025-07-17T06:37:54.2773660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules/linear.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/modules 2025-07-17T06:37:54.2775010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/modules 2025-07-17T06:37:54.2776200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules/activation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/modules 2025-07-17T06:37:54.2777340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/modules 2025-07-17T06:37:54.2778620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules/dropout.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/modules 2025-07-17T06:37:54.2779690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules/conv.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/modules 2025-07-17T06:37:54.2781260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules/normalization.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/modules 2025-07-17T06:37:54.2784910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules/rnn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/modules 2025-07-17T06:37:54.2785760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules/embedding_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/modules 2025-07-17T06:37:54.2792290Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/reference 2025-07-17T06:37:54.2792910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/reference 2025-07-17T06:37:54.2794230Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/reference/modules 2025-07-17T06:37:54.2794940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules/linear.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/reference/modules 2025-07-17T06:37:54.2800410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/reference/modules 2025-07-17T06:37:54.2801310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/reference/modules 2025-07-17T06:37:54.2802620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules/sparse.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/reference/modules 2025-07-17T06:37:54.2807810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules/conv.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/reference/modules 2025-07-17T06:37:54.2808820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules/rnn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/reference/modules 2025-07-17T06:37:54.2815610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn 2025-07-17T06:37:54.2816740Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantizable 2025-07-17T06:37:54.2817430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantizable 2025-07-17T06:37:54.2823260Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantizable/modules 2025-07-17T06:37:54.2823860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantizable/modules 2025-07-17T06:37:54.2825130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable/modules/activation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantizable/modules 2025-07-17T06:37:54.2826510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable/modules/rnn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantizable/modules 2025-07-17T06:37:54.2831170Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic 2025-07-17T06:37:54.2831710Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/qat 2025-07-17T06:37:54.2832380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/qat 2025-07-17T06:37:54.2833730Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/qat/modules 2025-07-17T06:37:54.2834470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat/modules/conv_fused.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/qat/modules 2025-07-17T06:37:54.2838820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/qat/modules 2025-07-17T06:37:54.2840390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat/modules/linear_relu.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/qat/modules 2025-07-17T06:37:54.2841640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat/modules/linear_fused.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/qat/modules 2025-07-17T06:37:54.2849770Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized 2025-07-17T06:37:54.2850260Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized/dynamic 2025-07-17T06:37:54.2850950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/dynamic/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized/dynamic 2025-07-17T06:37:54.2852350Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized/dynamic/modules 2025-07-17T06:37:54.2853080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/dynamic/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized/dynamic/modules 2025-07-17T06:37:54.2854330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/dynamic/modules/linear_relu.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized/dynamic/modules 2025-07-17T06:37:54.2855550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized 2025-07-17T06:37:54.2856690Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized/modules 2025-07-17T06:37:54.2857460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/modules/bn_relu.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized/modules 2025-07-17T06:37:54.2858670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized/modules 2025-07-17T06:37:54.2859820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/modules/conv_relu.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized/modules 2025-07-17T06:37:54.2861710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/modules/linear_relu.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized/modules 2025-07-17T06:37:54.2868720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/modules/conv_add.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized/modules 2025-07-17T06:37:54.2869520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic 2025-07-17T06:37:54.2870760Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/modules 2025-07-17T06:37:54.2871400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/modules/fused.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/modules 2025-07-17T06:37:54.2872570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/modules 2025-07-17T06:37:54.2873800Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/sparse 2025-07-17T06:37:54.2874690Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/sparse/quantized 2025-07-17T06:37:54.2875630Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/sparse/quantized/dynamic 2025-07-17T06:37:54.2876360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized/dynamic/linear.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/sparse/quantized/dynamic 2025-07-17T06:37:54.2877510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized/dynamic/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/sparse/quantized/dynamic 2025-07-17T06:37:54.2878660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized/linear.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/sparse/quantized 2025-07-17T06:37:54.2879880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/sparse/quantized 2025-07-17T06:37:54.2880990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/sparse/quantized 2025-07-17T06:37:54.2881980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/sparse 2025-07-17T06:37:54.2883410Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns 2025-07-17T06:37:54.2884270Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns/fx 2025-07-17T06:37:54.2884930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx/graph_passes.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns/fx 2025-07-17T06:37:54.2886480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx/weight_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns/fx 2025-07-17T06:37:54.2887600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx/graph_matcher.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns/fx 2025-07-17T06:37:54.2888970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns/fx 2025-07-17T06:37:54.2889780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns/fx 2025-07-17T06:37:54.2891110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx/pattern_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns/fx 2025-07-17T06:37:54.2892240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx/ns_types.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns/fx 2025-07-17T06:37:54.2893370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx/n_shadows_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns/fx 2025-07-17T06:37:54.2894900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx/mappings.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns/fx 2025-07-17T06:37:54.2896270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx/qconfig_multi_mapping.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns/fx 2025-07-17T06:37:54.2899710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/_numeric_suite.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns 2025-07-17T06:37:54.2904750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns 2025-07-17T06:37:54.2905430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/_numeric_suite_fx.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns 2025-07-17T06:37:54.2906780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao 2025-07-17T06:37:54.2909120Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-07-17T06:37:54.2909520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/observer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-07-17T06:37:54.2914620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fuse_modules.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-07-17T06:37:54.2915640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/_learnable_fake_quantize.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-07-17T06:37:54.2922200Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/backend_config 2025-07-17T06:37:54.2922700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config/_common_operator_config_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/backend_config 2025-07-17T06:37:54.2924060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config/qnnpack.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/backend_config 2025-07-17T06:37:54.2929430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config/fbgemm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/backend_config 2025-07-17T06:37:54.2930310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/backend_config 2025-07-17T06:37:54.2933090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config/native.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/backend_config 2025-07-17T06:37:54.2937570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config/observation_type.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/backend_config 2025-07-17T06:37:54.2938040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config/onednn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/backend_config 2025-07-17T06:37:54.2940010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/backend_config 2025-07-17T06:37:54.2942990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config/_qnnpack_pt2e.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/backend_config 2025-07-17T06:37:54.2946670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config/executorch.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/backend_config 2025-07-17T06:37:54.2950480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config/backend_config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/backend_config 2025-07-17T06:37:54.2951640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config/x86.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/backend_config 2025-07-17T06:37:54.2955880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config/tensorrt.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/backend_config 2025-07-17T06:37:54.2959630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantization_mappings.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-07-17T06:37:54.2963870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/_correct_bias.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-07-17T06:37:54.2964920Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e 2025-07-17T06:37:54.2965650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/port_metadata_pass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e 2025-07-17T06:37:54.2969150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/export_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e 2025-07-17T06:37:54.2973560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/qat_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e 2025-07-17T06:37:54.2977970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/duplicate_dq_pass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e 2025-07-17T06:37:54.2981100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/lowering.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e 2025-07-17T06:37:54.2981950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/graph_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e 2025-07-17T06:37:54.2987320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e 2025-07-17T06:37:54.2988050Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e/representation 2025-07-17T06:37:54.2988860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/representation/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e/representation 2025-07-17T06:37:54.2989970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/representation/rewrite.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e/representation 2025-07-17T06:37:54.2995870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e 2025-07-17T06:37:54.2996950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/_affine_quantization.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e 2025-07-17T06:37:54.2999540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/prepare.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e 2025-07-17T06:37:54.3003470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/_numeric_debugger.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e 2025-07-17T06:37:54.3005870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantize.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-07-17T06:37:54.3007150Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-07-17T06:37:54.3007880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/graph_module.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-07-17T06:37:54.3009080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/lower_to_fbgemm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-07-17T06:37:54.3010300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_equalize.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-07-17T06:37:54.3011730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/lower_to_qnnpack.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-07-17T06:37:54.3015830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/convert.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-07-17T06:37:54.3016940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-07-17T06:37:54.3021760Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx/_model_report 2025-07-17T06:37:54.3022200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_model_report/detector.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx/_model_report 2025-07-17T06:37:54.3025390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_model_report/model_report_visualizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx/_model_report 2025-07-17T06:37:54.3026530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_model_report/model_report_observer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx/_model_report 2025-07-17T06:37:54.3027630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_model_report/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx/_model_report 2025-07-17T06:37:54.3028570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_model_report/model_report.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx/_model_report 2025-07-17T06:37:54.3029850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/quantize_handler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-07-17T06:37:54.3031000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-07-17T06:37:54.3032380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/pattern_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-07-17T06:37:54.3033490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_lower_to_native_backend.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-07-17T06:37:54.3035080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/custom_config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-07-17T06:37:54.3036290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/fuse.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-07-17T06:37:54.3039690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/qconfig_mapping_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-07-17T06:37:54.3043330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/match_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-07-17T06:37:54.3047680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/prepare.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-07-17T06:37:54.3049070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/tracer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-07-17T06:37:54.3053040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_decomposed.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-07-17T06:37:54.3057390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/fuse_handler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-07-17T06:37:54.3061840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/lstm_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-07-17T06:37:54.3062860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/_equalize.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-07-17T06:37:54.3067500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fake_quantize.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-07-17T06:37:54.3070470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/qconfig.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-07-17T06:37:54.3075570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-07-17T06:37:54.3076390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/qconfig_mapping.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-07-17T06:37:54.3079390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/stubs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-07-17T06:37:54.3084430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-07-17T06:37:54.3085570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fuser_method_mappings.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-07-17T06:37:54.3093460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantize_jit.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-07-17T06:37:54.3097940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantize_pt2e.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-07-17T06:37:54.3101280Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/quantizer 2025-07-17T06:37:54.3101820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer/embedding_quantizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/quantizer 2025-07-17T06:37:54.3102970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer/x86_inductor_quantizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/quantizer 2025-07-17T06:37:54.3107510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer/xnnpack_quantizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/quantizer 2025-07-17T06:37:54.3108900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer/composable_quantizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/quantizer 2025-07-17T06:37:54.3115900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer/xpu_inductor_quantizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/quantizer 2025-07-17T06:37:54.3116690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/quantizer 2025-07-17T06:37:54.3117800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer/quantizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/quantizer 2025-07-17T06:37:54.3124580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/quantizer 2025-07-17T06:37:54.3125970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/quantizer 2025-07-17T06:37:54.3127390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quant_type.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-07-17T06:37:54.3136920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantize_fx.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-07-17T06:37:54.3137090Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning 2025-07-17T06:37:54.3137240Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/sparsifier 2025-07-17T06:37:54.3137650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier/weight_norm_sparsifier.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/sparsifier 2025-07-17T06:37:54.3138000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/sparsifier 2025-07-17T06:37:54.3138730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/sparsifier 2025-07-17T06:37:54.3140020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier/nearly_diagonal_sparsifier.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/sparsifier 2025-07-17T06:37:54.3141240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier/base_sparsifier.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/sparsifier 2025-07-17T06:37:54.3143320Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental 2025-07-17T06:37:54.3143940Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier 2025-07-17T06:37:54.3144950Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier/lightning 2025-07-17T06:37:54.3145910Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks 2025-07-17T06:37:54.3146890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/data_sparsity.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks 2025-07-17T06:37:54.3148190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks 2025-07-17T06:37:54.3149250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/_data_sparstity_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks 2025-07-17T06:37:54.3150490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/lightning/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier/lightning 2025-07-17T06:37:54.3151400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/base_data_sparsifier.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier 2025-07-17T06:37:54.3152710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier 2025-07-17T06:37:54.3153880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier 2025-07-17T06:37:54.3154980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/quantization_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier 2025-07-17T06:37:54.3156290Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/pruner 2025-07-17T06:37:54.3157030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner/FPGM_pruner.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/pruner 2025-07-17T06:37:54.3158170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner/saliency_pruner.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/pruner 2025-07-17T06:37:54.3159250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/pruner 2025-07-17T06:37:54.3160380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/pruner 2025-07-17T06:37:54.3161580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner/prune_functions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/pruner 2025-07-17T06:37:54.3163260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner/lstm_saliency_pruner.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/pruner 2025-07-17T06:37:54.3164480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner/parametrization.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/pruner 2025-07-17T06:37:54.3165670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner/match_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/pruner 2025-07-17T06:37:54.3166740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental 2025-07-17T06:37:54.3168010Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/activation_sparsifier 2025-07-17T06:37:54.3168930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/activation_sparsifier 2025-07-17T06:37:54.3170250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/activation_sparsifier/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/activation_sparsifier 2025-07-17T06:37:54.3171200Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_scheduler 2025-07-17T06:37:54.3171990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_scheduler/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_scheduler 2025-07-17T06:37:54.3173180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_scheduler/base_data_scheduler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_scheduler 2025-07-17T06:37:54.3174430Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/scheduler 2025-07-17T06:37:54.3175140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/scheduler/base_scheduler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/scheduler 2025-07-17T06:37:54.3176270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/scheduler/cubic_scheduler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/scheduler 2025-07-17T06:37:54.3335340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/scheduler/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/scheduler 2025-07-17T06:37:54.3337650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/scheduler/lambda_scheduler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/scheduler 2025-07-17T06:37:54.3339490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning 2025-07-17T06:37:54.3340750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_mappings.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning 2025-07-17T06:37:54.3342180Z creating build/bdist.macosx-14.0-arm64/wheel/torch/mtia 2025-07-17T06:37:54.3342960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/mtia/memory.py -> build/bdist.macosx-14.0-arm64/wheel/torch/mtia 2025-07-17T06:37:54.3343900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/mtia/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/mtia 2025-07-17T06:37:54.3345170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/mtia/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/mtia 2025-07-17T06:37:54.3346560Z creating build/bdist.macosx-14.0-arm64/wheel/torch/lib 2025-07-17T06:37:54.3347280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libtorch_python.dylib -> build/bdist.macosx-14.0-arm64/wheel/torch/lib 2025-07-17T06:37:54.3730570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libtorch.dylib -> build/bdist.macosx-14.0-arm64/wheel/torch/lib 2025-07-17T06:37:54.3731580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libtorch_global_deps.dylib -> build/bdist.macosx-14.0-arm64/wheel/torch/lib 2025-07-17T06:37:54.3733060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libomp.dylib -> build/bdist.macosx-14.0-arm64/wheel/torch/lib 2025-07-17T06:37:54.3738610Z creating build/bdist.macosx-14.0-arm64/wheel/torch/lib/libshm_windows 2025-07-17T06:37:54.3739070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm_windows/libshm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/lib/libshm_windows 2025-07-17T06:37:54.3740470Z creating build/bdist.macosx-14.0-arm64/wheel/torch/lib/libshm 2025-07-17T06:37:54.3741140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm/err.h -> build/bdist.macosx-14.0-arm64/wheel/torch/lib/libshm 2025-07-17T06:37:54.3742280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm/libshm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/lib/libshm 2025-07-17T06:37:54.3743300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm/socket.h -> build/bdist.macosx-14.0-arm64/wheel/torch/lib/libshm 2025-07-17T06:37:54.3744530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm/alloc_info.h -> build/bdist.macosx-14.0-arm64/wheel/torch/lib/libshm 2025-07-17T06:37:54.3745720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libtorch_cpu.dylib -> build/bdist.macosx-14.0-arm64/wheel/torch/lib 2025-07-17T06:37:55.5321400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libc10.dylib -> build/bdist.macosx-14.0-arm64/wheel/torch/lib 2025-07-17T06:37:55.5328570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm.dylib -> build/bdist.macosx-14.0-arm64/wheel/torch/lib 2025-07-17T06:37:55.5329940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_VF.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:55.5337190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_compile.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:55.5338080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/py.typed -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:55.5339000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lobpcg.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:55.5341200Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_refs 2025-07-17T06:37:55.5341920Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_refs/linalg 2025-07-17T06:37:55.5342590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/linalg/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_refs/linalg 2025-07-17T06:37:55.5344060Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_refs/nn 2025-07-17T06:37:55.5344820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/nn/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_refs/nn 2025-07-17T06:37:55.5346040Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_refs/nn/functional 2025-07-17T06:37:55.5346730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/nn/functional/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_refs/nn/functional 2025-07-17T06:37:55.5348170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/_conversions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_refs 2025-07-17T06:37:55.5349310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_refs 2025-07-17T06:37:55.5352010Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_refs/special 2025-07-17T06:37:55.5352510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/special/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_refs/special 2025-07-17T06:37:55.5353570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/fft.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_refs 2025-07-17T06:37:55.5355100Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fft 2025-07-17T06:37:55.5355780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fft/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fft 2025-07-17T06:37:55.5357320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/__future__.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:55.5358640Z creating build/bdist.macosx-14.0-arm64/wheel/torch/profiler 2025-07-17T06:37:55.5359300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/profiler/_memory_profiler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/profiler 2025-07-17T06:37:55.5360740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/profiler/itt.py -> build/bdist.macosx-14.0-arm64/wheel/torch/profiler 2025-07-17T06:37:55.5361850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/profiler/_pattern_matcher.py -> build/bdist.macosx-14.0-arm64/wheel/torch/profiler 2025-07-17T06:37:55.5363120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/profiler/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/profiler 2025-07-17T06:37:55.5364270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/profiler/profiler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/profiler 2025-07-17T06:37:55.5365570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/profiler/python_tracer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/profiler 2025-07-17T06:37:55.5366740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/profiler/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/profiler 2025-07-17T06:37:55.5368310Z creating build/bdist.macosx-14.0-arm64/wheel/torch/sparse 2025-07-17T06:37:55.5368950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/sparse/_semi_structured_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/sparse 2025-07-17T06:37:55.5370140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/sparse/_semi_structured_conversions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/sparse 2025-07-17T06:37:55.5371340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/sparse/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/sparse 2025-07-17T06:37:55.5372730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/sparse/semi_structured.py -> build/bdist.macosx-14.0-arm64/wheel/torch/sparse 2025-07-17T06:37:55.5373930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/sparse/_triton_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/sparse 2025-07-17T06:37:55.5375530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/sparse/_triton_ops_meta.py -> build/bdist.macosx-14.0-arm64/wheel/torch/sparse 2025-07-17T06:37:55.5379390Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_awaits 2025-07-17T06:37:55.5379840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_awaits/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_awaits 2025-07-17T06:37:55.5380860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_guards.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:55.5382220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_python_dispatcher.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:55.5383660Z creating build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-07-17T06:37:55.5384270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_safeguard.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-07-17T06:37:55.5385600Z creating build/bdist.macosx-14.0-arm64/wheel/torch/export/experimental 2025-07-17T06:37:55.5386290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/experimental/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export/experimental 2025-07-17T06:37:55.5387670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/experimental/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export/experimental 2025-07-17T06:37:55.5388750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/exported_program.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-07-17T06:37:55.5390200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/unflatten.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-07-17T06:37:55.5391700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/custom_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-07-17T06:37:55.5392810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/custom_obj.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-07-17T06:37:55.5394080Z creating build/bdist.macosx-14.0-arm64/wheel/torch/export/passes 2025-07-17T06:37:55.5394740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/passes/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export/passes 2025-07-17T06:37:55.5395900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_remove_effect_tokens_pass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-07-17T06:37:55.5397100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_remove_auto_functionalized_pass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-07-17T06:37:55.5398210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-07-17T06:37:55.5399440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_unlift.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-07-17T06:37:55.5400680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_trace.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-07-17T06:37:55.5402280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/graph_signature.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-07-17T06:37:55.5403570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_wrapper_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-07-17T06:37:55.5404690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/decomp_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-07-17T06:37:55.5406110Z creating build/bdist.macosx-14.0-arm64/wheel/torch/export/pt2_archive 2025-07-17T06:37:55.5406750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/pt2_archive/_package.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export/pt2_archive 2025-07-17T06:37:55.5408110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/pt2_archive/_package_weights.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export/pt2_archive 2025-07-17T06:37:55.5409240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/pt2_archive/constants.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export/pt2_archive 2025-07-17T06:37:55.5616640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/pt2_archive/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export/pt2_archive 2025-07-17T06:37:55.5617310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_swap.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-07-17T06:37:55.5618600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_draft_export.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-07-17T06:37:55.5619880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/dynamic_shapes.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-07-17T06:37:55.5621360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_tree_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-07-17T06:37:55.5622640Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nested 2025-07-17T06:37:55.5623530Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nested/_internal 2025-07-17T06:37:55.5624180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal/nested_tensor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nested/_internal 2025-07-17T06:37:55.5625440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nested/_internal 2025-07-17T06:37:55.5626280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal/ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nested/_internal 2025-07-17T06:37:55.5627930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal/sdpa.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nested/_internal 2025-07-17T06:37:55.5629290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal/nested_int.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nested/_internal 2025-07-17T06:37:55.5630380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nested/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nested 2025-07-17T06:37:55.5631870Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_C_flatbuffer 2025-07-17T06:37:55.5632540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C_flatbuffer/__init__.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C_flatbuffer 2025-07-17T06:37:55.5633740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_classes.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:55.5634940Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_strobelight 2025-07-17T06:37:55.5635690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_strobelight/cli_function_profiler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_strobelight 2025-07-17T06:37:55.5636770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_strobelight/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_strobelight 2025-07-17T06:37:55.5637660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_strobelight/compile_time_profiler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_strobelight 2025-07-17T06:37:55.5638900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/compiler 2025-07-17T06:37:55.5639570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/compiler/_cache.py -> build/bdist.macosx-14.0-arm64/wheel/torch/compiler 2025-07-17T06:37:55.5640770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/compiler/config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/compiler 2025-07-17T06:37:55.5641810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/compiler/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/compiler 2025-07-17T06:37:55.5643260Z creating build/bdist.macosx-14.0-arm64/wheel/torch/signal 2025-07-17T06:37:55.5643850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/signal/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/signal 2025-07-17T06:37:55.5645220Z creating build/bdist.macosx-14.0-arm64/wheel/torch/signal/windows 2025-07-17T06:37:55.5645910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/signal/windows/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/signal/windows 2025-07-17T06:37:55.5647080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/signal/windows/windows.py -> build/bdist.macosx-14.0-arm64/wheel/torch/signal/windows 2025-07-17T06:37:55.5648260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/serialization.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:55.5650600Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5651180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/inverse_gamma.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5652120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/laplace.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5653220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/relaxed_bernoulli.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5654380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/categorical.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5655690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/transforms.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5656770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/dirichlet.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5657930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/log_normal.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5658990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/transformed_distribution.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5660110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/geometric.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5661210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/generalized_pareto.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5662320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/weibull.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5663380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/studentT.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5664510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/multivariate_normal.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5665690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/normal.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5666700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/poisson.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5667830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/beta.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5668850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/kumaraswamy.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5669930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/half_normal.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5671290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/relaxed_categorical.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5672210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/lowrank_multivariate_normal.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5673360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/half_cauchy.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5674420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5675510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/lkj_cholesky.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5676660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/independent.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5677780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/multinomial.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5678880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/exponential.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5679920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/pareto.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5681090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/negative_binomial.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5682290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/cauchy.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5683360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/von_mises.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5684470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/distribution.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5685820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/gumbel.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5687090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/constraint_registry.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5688620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5690080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/kl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5691580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/mixture_same_family.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5692920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/continuous_bernoulli.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5694310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/fishersnedecor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5695410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/constraints.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5696740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/uniform.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5697880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/bernoulli.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5699020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/exp_family.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5700190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/logistic_normal.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5701390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/one_hot_categorical.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5702430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/wishart.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5703720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/gamma.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5704930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/chi2.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5706050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/binomial.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-17T06:37:55.5707410Z creating build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-07-17T06:37:55.5708110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/package_exporter.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-07-17T06:37:55.5709810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/file_structure_representation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-07-17T06:37:55.5710730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_mock.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-07-17T06:37:55.5711940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/importer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-07-17T06:37:55.5713250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_stdlib.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-07-17T06:37:55.5714360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_mangling.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-07-17T06:37:55.5715430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-07-17T06:37:55.5716610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/package_importer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-07-17T06:37:55.5718110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_package_unpickler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-07-17T06:37:55.5719110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/glob_group.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-07-17T06:37:55.5720240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/find_file_dependencies.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-07-17T06:37:55.5721390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_package_pickler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-07-17T06:37:55.5722960Z creating build/bdist.macosx-14.0-arm64/wheel/torch/package/analyze 2025-07-17T06:37:55.5723610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/analyze/trace_dependencies.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package/analyze 2025-07-17T06:37:55.5724830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/analyze/find_first_use_of_broken_modules.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package/analyze 2025-07-17T06:37:55.5725910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/analyze/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package/analyze 2025-07-17T06:37:55.5727050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/analyze/is_from_package.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package/analyze 2025-07-17T06:37:55.5728100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_importlib.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-07-17T06:37:55.5729350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_directory_reader.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-07-17T06:37:55.5730430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_digraph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-07-17T06:37:55.5731540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-17T06:37:55.5733180Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share 2025-07-17T06:37:55.5734010Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake 2025-07-17T06:37:55.5735040Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2 2025-07-17T06:37:55.5735830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Caffe2Config.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2 2025-07-17T06:37:55.5736970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/FindSYCLToolkit.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2 2025-07-17T06:37:55.5738360Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix 2025-07-17T06:37:55.5739070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDNN.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix 2025-07-17T06:37:55.5740200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDA.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix 2025-07-17T06:37:55.5741500Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2025-07-17T06:37:55.5742380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindPackageHandleStandardArgs.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2025-07-17T06:37:55.5743990Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2025-07-17T06:37:55.5744850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/parse_cubin.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2025-07-17T06:37:55.5746010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/run_nvcc.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2025-07-17T06:37:55.5747460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/select_compute_arch.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2025-07-17T06:37:55.5748970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/make2cmake.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2025-07-17T06:37:55.5750180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/CMakeInitializeConfigs.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2025-07-17T06:37:55.5751250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2025-07-17T06:37:55.5752840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindPackageMessage.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2025-07-17T06:37:55.5753970Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/public 2025-07-17T06:37:55.5754770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public/LoadHIP.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/public 2025-07-17T06:37:55.5756060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public/mkldnn.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/public 2025-07-17T06:37:55.5757140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public/glog.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/public 2025-07-17T06:37:55.5758300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public/utils.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/public 2025-07-17T06:37:55.5759620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public/protobuf.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/public 2025-07-17T06:37:55.5760750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public/mkl.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/public 2025-07-17T06:37:55.5761820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public/gflags.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/public 2025-07-17T06:37:55.5763000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public/cuda.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/public 2025-07-17T06:37:55.5764210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public/xpu.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/public 2025-07-17T06:37:55.5765370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/FindCUSPARSELT.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2 2025-07-17T06:37:55.5766610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/FindCUDAToolkit.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2 2025-07-17T06:37:55.5768280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Caffe2Targets.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2 2025-07-17T06:37:55.5769630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Caffe2Targets-release.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2 2025-07-17T06:37:55.5770960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/FindCUDSS.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2 2025-07-17T06:37:55.5772490Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Torch 2025-07-17T06:37:55.5773270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Torch/TorchConfig.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Torch 2025-07-17T06:37:55.5774520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Torch/TorchConfigVersion.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Torch 2025-07-17T06:37:55.5775900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/ATen 2025-07-17T06:37:55.5776680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/ATen/ATenConfig.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/ATen 2025-07-17T06:37:55.5778000Z creating build/bdist.macosx-14.0-arm64/wheel/torch/func 2025-07-17T06:37:55.5778710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/func/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/func 2025-07-17T06:37:55.5781350Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-07-17T06:37:55.5786400Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/native_function_generation.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-07-17T06:37:55.5786900Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/selective_build 2025-07-17T06:37:55.5787450Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/selective_build/selector.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/selective_build 2025-07-17T06:37:55.5788190Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/selective_build/operator.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/selective_build 2025-07-17T06:37:55.5788910Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/selective_build/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/selective_build 2025-07-17T06:37:55.5789610Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/gen_vmap_plumbing.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-07-17T06:37:55.5790180Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/gen.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-07-17T06:37:55.5790790Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged 2025-07-17T06:37:55.5791750Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-07-17T06:37:55.5792520Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/load_derivatives.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-07-17T06:37:55.5794210Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/build.bzl -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-07-17T06:37:55.5795710Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/gen_autograd.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-07-17T06:37:55.5797140Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/gen_python_functions.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-07-17T06:37:55.5798610Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/gen_autograd_functions.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-07-17T06:37:55.5800200Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/gen_variable_factories.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-07-17T06:37:55.5801340Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-07-17T06:37:55.5802280Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/gen_variable_type.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-07-17T06:37:55.5804010Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/README.md -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-07-17T06:37:55.5805110Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/context.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-07-17T06:37:55.5806290Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/gen_inplace_or_view_type.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-07-17T06:37:55.5807640Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/deprecated.yaml -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-07-17T06:37:55.5808820Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/BUILD.bazel -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-07-17T06:37:55.5810700Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-17T06:37:55.5811380Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/python_return_types.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-17T06:37:55.5812400Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/python_enum_tag.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-17T06:37:55.5813600Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/python_nn_functions.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-17T06:37:55.5814820Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/python_functions.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-17T06:37:55.5816050Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/python_fft_functions.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-17T06:37:55.5817140Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/python_sparse_functions.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-17T06:37:55.5818270Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/python_linalg_functions.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-17T06:37:55.5819510Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/ViewFuncs.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-17T06:37:55.5820580Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/python_return_types.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-17T06:37:55.5821720Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/ADInplaceOrViewType.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-17T06:37:55.5822750Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/TraceType.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-17T06:37:55.5823880Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/python_variable_methods.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-17T06:37:55.5825440Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/ViewFuncs.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-17T06:37:55.5826550Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/python_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-17T06:37:55.5827750Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/python_nested_functions.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-17T06:37:55.5828940Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/VariableType.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-17T06:37:55.5830080Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/annotated_fn_args.py.in -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-17T06:37:55.5831140Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/VariableType.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-17T06:37:55.5832310Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/Functions.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-17T06:37:55.5833460Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/python_special_functions.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-17T06:37:55.5834650Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/variable_factories.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-17T06:37:55.5835780Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/python_torch_functions.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-17T06:37:55.5836930Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/Functions.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-17T06:37:55.5838080Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/gen_trace_type.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-07-17T06:37:55.5839470Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/gen_annotated_fn_args.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-07-17T06:37:55.5840590Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/derivatives.yaml -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-07-17T06:37:55.5843090Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/gen_view_funcs.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-07-17T06:37:55.5844170Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen 2025-07-17T06:37:55.5845120Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/native 2025-07-17T06:37:55.5845900Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/native/native_functions.yaml -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/native 2025-07-17T06:37:55.5850380Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/native/tags.yaml -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/native 2025-07-17T06:37:55.5851540Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-17T06:37:55.5852300Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/CompositeViewCopyKernels.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-17T06:37:55.5853470Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/TensorBody.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-17T06:37:55.5854930Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/UnboxingFunctions.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-17T06:37:55.5856040Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/DispatchKeyFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-17T06:37:55.5857140Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/RedispatchFunctions.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-17T06:37:55.5858290Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/Operators.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-17T06:37:55.5859550Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/NativeMetaFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-17T06:37:55.5860660Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/NativeFunction.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-17T06:37:55.5861740Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/Operator.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-17T06:37:55.5862820Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/RegistrationDeclarations.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-17T06:37:55.5863860Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/UfuncCPU.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-17T06:37:55.5865080Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/UfuncCUDA.cu -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-17T06:37:55.5866200Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/RegisterFunctionalization.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-17T06:37:55.5867350Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/RegisterDispatchDefinitions.ini -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-17T06:37:55.5868380Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/RedispatchFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-17T06:37:55.5869570Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/aten_interned_strings.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-17T06:37:55.5870750Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/MethodOperators.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-17T06:37:55.5871970Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/RegisterCodegenUnboxedKernels.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-17T06:37:55.5873000Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/Operators.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-17T06:37:55.5874240Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/ATenOpList.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-17T06:37:55.5875520Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/RegisterBackendSelect.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-17T06:37:55.5876600Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/RegisterDispatchKey.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-17T06:37:55.5877670Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/TensorMethods.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-17T06:37:55.5878820Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-17T06:37:55.5879990Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/DispatchKeyFunction.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-17T06:37:55.5881150Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/UnboxingFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-17T06:37:55.5882270Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-17T06:37:55.5883260Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/Functions.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-17T06:37:55.5884600Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/NativeFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-17T06:37:55.5885780Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/DispatchKeyFunctions_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-17T06:37:55.5886920Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/UfuncCPUKernel.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-17T06:37:55.5887950Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/enum_tag.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-17T06:37:55.5889300Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/Functions.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-17T06:37:55.5890240Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/RegisterSchema.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-17T06:37:55.5891380Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/LazyNonNativeIr.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-17T06:37:55.5892490Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/Function.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-17T06:37:55.5893600Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/FunctionalInverses.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-17T06:37:55.5894760Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/NativeMetaFunction.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-17T06:37:55.5895930Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/LazyIr.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-17T06:37:55.5897220Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/static_runtime 2025-07-17T06:37:55.5897890Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/static_runtime/config.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/static_runtime 2025-07-17T06:37:55.5899270Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/static_runtime/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/static_runtime 2025-07-17T06:37:55.5900150Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/static_runtime/generator.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/static_runtime 2025-07-17T06:37:55.5901490Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/static_runtime/gen_static_runtime_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/static_runtime 2025-07-17T06:37:55.5902620Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/local.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-07-17T06:37:55.5909080Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/gen_functionalization_type.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-07-17T06:37:55.5910510Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/code_template.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-07-17T06:37:55.5912020Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/operator_versions 2025-07-17T06:37:55.5912690Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/operator_versions/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/operator_versions 2025-07-17T06:37:55.5913690Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/operator_versions/gen_mobile_upgraders_constant.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/operator_versions 2025-07-17T06:37:55.5914930Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/operator_versions/gen_mobile_upgraders.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/operator_versions 2025-07-17T06:37:55.5916130Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-07-17T06:37:55.5917350Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/yaml_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-07-17T06:37:55.5918470Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/gen_aoti_c_shim.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-07-17T06:37:55.5920030Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/model.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-07-17T06:37:55.5921940Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/gen_schema_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-07-17T06:37:55.5922950Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/context.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-07-17T06:37:55.5924130Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-07-17T06:37:55.5925850Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/dest 2025-07-17T06:37:55.5926470Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest/lazy_ts_lowering.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/dest 2025-07-17T06:37:55.5927610Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest/ufunc.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/dest 2025-07-17T06:37:55.5928900Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/dest 2025-07-17T06:37:55.5930070Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest/native_functions.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/dest 2025-07-17T06:37:55.5931220Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest/lazy_ir.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/dest 2025-07-17T06:37:55.5932620Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest/register_dispatch_key.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/dest 2025-07-17T06:37:55.5934320Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-07-17T06:37:55.5935010Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/dispatcher.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-07-17T06:37:55.5936330Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/translate.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-07-17T06:37:55.5937880Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/api/types 2025-07-17T06:37:55.5938500Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/types/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api/types 2025-07-17T06:37:55.5939780Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/types/types.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api/types 2025-07-17T06:37:55.5940930Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/types/signatures.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api/types 2025-07-17T06:37:55.5942240Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/types/types_base.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api/types 2025-07-17T06:37:55.5943410Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/ufunc.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-07-17T06:37:55.5944540Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-07-17T06:37:55.5945500Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/native.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-07-17T06:37:55.5946640Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/cpp.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-07-17T06:37:55.5948250Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/unboxing.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-07-17T06:37:55.5949560Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/functionalization.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-07-17T06:37:55.5950640Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/autograd.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-07-17T06:37:55.5952110Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/structured.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-07-17T06:37:55.5953030Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/python.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-07-17T06:37:55.5954550Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/lazy.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-07-17T06:37:55.5955810Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/meta.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-07-17T06:37:55.5956960Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/gen_backend_stubs.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-07-17T06:37:55.5958510Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/aoti 2025-07-17T06:37:55.5959240Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/aoti/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/aoti 2025-07-17T06:37:55.5960150Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/aoti/fallback_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/aoti 2025-07-17T06:37:55.5961360Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/gen_lazy_tensor.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-07-17T06:37:55.5963020Z creating build/bdist.macosx-14.0-arm64/wheel/functorch 2025-07-17T06:37:55.5963930Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/experimental 2025-07-17T06:37:55.5964610Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/experimental/control_flow.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/experimental 2025-07-17T06:37:55.5965910Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/experimental/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/experimental 2025-07-17T06:37:55.5967000Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/experimental/ops.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/experimental 2025-07-17T06:37:55.5968580Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/_src 2025-07-17T06:37:55.5969540Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/_src/make_functional 2025-07-17T06:37:55.5970270Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/make_functional/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/_src/make_functional 2025-07-17T06:37:55.5971310Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/_src 2025-07-17T06:37:55.5972410Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/_src/eager_transforms 2025-07-17T06:37:55.5973110Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/eager_transforms/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/_src/eager_transforms 2025-07-17T06:37:55.5974470Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/_src/aot_autograd 2025-07-17T06:37:55.5975110Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/aot_autograd/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/_src/aot_autograd 2025-07-17T06:37:55.5976550Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/_src/vmap 2025-07-17T06:37:55.5977220Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/vmap/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/_src/vmap 2025-07-17T06:37:55.5978550Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/dim 2025-07-17T06:37:55.5979250Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/dim/magic_trace.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/dim 2025-07-17T06:37:55.5980400Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/dim/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/dim 2025-07-17T06:37:55.5981610Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/dim/delayed_mul_tensor.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/dim 2025-07-17T06:37:55.5982760Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/dim/op_properties.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/dim 2025-07-17T06:37:55.5983880Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/dim/batch_tensor.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/dim 2025-07-17T06:37:55.5984980Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/dim/wrap_type.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/dim 2025-07-17T06:37:55.5986090Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/dim/reference.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/dim 2025-07-17T06:37:55.5987490Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/dim/dim.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/dim 2025-07-17T06:37:55.5988610Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/dim/tree_map.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/dim 2025-07-17T06:37:55.5989780Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/functorch 2025-07-17T06:37:55.5991190Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/compile 2025-07-17T06:37:55.5991800Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/compile/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/compile 2025-07-17T06:37:55.5993040Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/_C.cpython-312-darwin.so -> build/bdist.macosx-14.0-arm64/wheel/functorch 2025-07-17T06:37:55.5995480Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/einops 2025-07-17T06:37:55.5996030Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/einops/_parsing.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/einops 2025-07-17T06:37:55.5997380Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/einops/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/einops 2025-07-17T06:37:55.5998420Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/einops/rearrange.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/einops 2025-07-17T06:37:55.6000840Z running install_egg_info 2025-07-17T06:37:55.6030750Z running egg_info 2025-07-17T06:37:55.6030980Z creating torch.egg-info 2025-07-17T06:37:55.6057440Z writing torch.egg-info/PKG-INFO 2025-07-17T06:37:55.6064950Z writing dependency_links to torch.egg-info/dependency_links.txt 2025-07-17T06:37:55.6066030Z writing entry points to torch.egg-info/entry_points.txt 2025-07-17T06:37:55.6069140Z writing requirements to torch.egg-info/requires.txt 2025-07-17T06:37:55.6070140Z writing top-level names to torch.egg-info/top_level.txt 2025-07-17T06:37:55.6071070Z writing manifest file 'torch.egg-info/SOURCES.txt' 2025-07-17T06:37:55.9644770Z reading manifest file 'torch.egg-info/SOURCES.txt' 2025-07-17T06:37:55.9645220Z reading manifest template 'MANIFEST.in' 2025-07-17T06:37:55.9690530Z warning: no files found matching 'BUILD' 2025-07-17T06:37:55.9691280Z warning: no files found matching '*.BUILD' 2025-07-17T06:37:55.9696650Z warning: no files found matching 'BUCK' 2025-07-17T06:37:55.9705620Z warning: no files found matching '[Mm]akefile.*' 2025-07-17T06:37:55.9707710Z warning: no files found matching '*.[Dd]ockerfile' 2025-07-17T06:37:55.9708670Z warning: no files found matching '[Dd]ockerfile.*' 2025-07-17T06:37:57.8020560Z warning: no previously-included files matching '*.o' found anywhere in distribution 2025-07-17T06:37:57.8578850Z warning: no previously-included files matching '*.obj' found anywhere in distribution 2025-07-17T06:37:58.2578340Z no previously-included directories found matching '*/.git' 2025-07-17T06:37:58.3534210Z warning: no previously-included files matching '*~' found anywhere in distribution 2025-07-17T06:37:58.4085320Z warning: no previously-included files matching '*.swp' found anywhere in distribution 2025-07-17T06:37:58.4085650Z adding license file 'LICENSE' 2025-07-17T06:37:58.4085830Z adding license file 'NOTICE' 2025-07-17T06:37:59.0888820Z writing manifest file 'torch.egg-info/SOURCES.txt' 2025-07-17T06:37:59.1214820Z Copying torch.egg-info to build/bdist.macosx-14.0-arm64/wheel/torch-2.9.0a0+gita38f433-py3.12.egg-info 2025-07-17T06:37:59.1376230Z running install_scripts 2025-07-17T06:37:59.1457360Z creating build/bdist.macosx-14.0-arm64/wheel/torch-2.9.0a0+gita38f433.dist-info/WHEEL 2025-07-17T06:37:59.1460610Z creating 'dist/torch-2.9.0a0+gita38f433-cp312-cp312-macosx_11_0_arm64.whl' and adding 'build/bdist.macosx-14.0-arm64/wheel' to it 2025-07-17T06:37:59.1511700Z adding 'functorch/_C.cpython-312-darwin.so' 2025-07-17T06:37:59.1514220Z adding 'functorch/__init__.py' 2025-07-17T06:37:59.1515440Z adding 'functorch/_src/__init__.py' 2025-07-17T06:37:59.1516860Z adding 'functorch/_src/aot_autograd/__init__.py' 2025-07-17T06:37:59.1518020Z adding 'functorch/_src/eager_transforms/__init__.py' 2025-07-17T06:37:59.1519110Z adding 'functorch/_src/make_functional/__init__.py' 2025-07-17T06:37:59.1520150Z adding 'functorch/_src/vmap/__init__.py' 2025-07-17T06:37:59.1521240Z adding 'functorch/compile/__init__.py' 2025-07-17T06:37:59.1523460Z adding 'functorch/dim/__init__.py' 2025-07-17T06:37:59.1524110Z adding 'functorch/dim/batch_tensor.py' 2025-07-17T06:37:59.1525330Z adding 'functorch/dim/delayed_mul_tensor.py' 2025-07-17T06:37:59.1526760Z adding 'functorch/dim/dim.py' 2025-07-17T06:37:59.1527830Z adding 'functorch/dim/magic_trace.py' 2025-07-17T06:37:59.1529820Z adding 'functorch/dim/op_properties.py' 2025-07-17T06:37:59.1534820Z adding 'functorch/dim/reference.py' 2025-07-17T06:37:59.1535570Z adding 'functorch/dim/tree_map.py' 2025-07-17T06:37:59.1536630Z adding 'functorch/dim/wrap_type.py' 2025-07-17T06:37:59.1537640Z adding 'functorch/einops/__init__.py' 2025-07-17T06:37:59.1540710Z adding 'functorch/einops/_parsing.py' 2025-07-17T06:37:59.1542920Z adding 'functorch/einops/rearrange.py' 2025-07-17T06:37:59.1543720Z adding 'functorch/experimental/__init__.py' 2025-07-17T06:37:59.1544580Z adding 'functorch/experimental/control_flow.py' 2025-07-17T06:37:59.1545230Z adding 'functorch/experimental/ops.py' 2025-07-17T06:37:59.1549760Z adding 'torch/_C.cpython-312-darwin.so' 2025-07-17T06:37:59.1550600Z adding 'torch/_VF.py' 2025-07-17T06:37:59.1696210Z adding 'torch/_VF.pyi' 2025-07-17T06:37:59.1702570Z adding 'torch/__config__.py' 2025-07-17T06:37:59.1705100Z adding 'torch/__future__.py' 2025-07-17T06:37:59.1728690Z adding 'torch/__init__.py' 2025-07-17T06:37:59.1733750Z adding 'torch/_appdirs.py' 2025-07-17T06:37:59.1734920Z adding 'torch/_classes.py' 2025-07-17T06:37:59.1736130Z adding 'torch/_compile.py' 2025-07-17T06:37:59.1739320Z adding 'torch/_custom_ops.py' 2025-07-17T06:37:59.1740060Z adding 'torch/_environment.py' 2025-07-17T06:37:59.1748970Z adding 'torch/_guards.py' 2025-07-17T06:37:59.1762470Z adding 'torch/_jit_internal.py' 2025-07-17T06:37:59.1764580Z adding 'torch/_linalg_utils.py' 2025-07-17T06:37:59.1774330Z adding 'torch/_lobpcg.py' 2025-07-17T06:37:59.1777020Z adding 'torch/_lowrank.py' 2025-07-17T06:37:59.1826540Z adding 'torch/_meta_registrations.py' 2025-07-17T06:37:59.1829630Z adding 'torch/_namedtensor_internals.py' 2025-07-17T06:37:59.1842850Z adding 'torch/_ops.py' 2025-07-17T06:37:59.1845150Z adding 'torch/_python_dispatcher.py' 2025-07-17T06:37:59.1845910Z adding 'torch/_size_docs.py' 2025-07-17T06:37:59.1847920Z adding 'torch/_sources.py' 2025-07-17T06:37:59.1848760Z adding 'torch/_storage_docs.py' 2025-07-17T06:37:59.1849670Z adding 'torch/_streambase.py' 2025-07-17T06:37:59.1864700Z adding 'torch/_tensor.py' 2025-07-17T06:37:59.1891480Z adding 'torch/_tensor_docs.py' 2025-07-17T06:37:59.1897780Z adding 'torch/_tensor_str.py' 2025-07-17T06:37:59.1898530Z adding 'torch/_thread_safe_fork.py' 2025-07-17T06:37:59.1985730Z adding 'torch/_torch_docs.py' 2025-07-17T06:37:59.1996890Z adding 'torch/_utils.py' 2025-07-17T06:37:59.2000090Z adding 'torch/_utils_internal.py' 2025-07-17T06:37:59.2002650Z adding 'torch/_vmap_internals.py' 2025-07-17T06:37:59.2006950Z adding 'torch/_weights_only_unpickler.py' 2025-07-17T06:37:59.2026490Z adding 'torch/functional.py' 2025-07-17T06:37:59.2034650Z adding 'torch/hub.py' 2025-07-17T06:37:59.2047520Z adding 'torch/library.py' 2025-07-17T06:37:59.2064440Z adding 'torch/overrides.py' 2025-07-17T06:37:59.2065360Z adding 'torch/py.typed' 2025-07-17T06:37:59.2067830Z adding 'torch/quasirandom.py' 2025-07-17T06:37:59.2069910Z adding 'torch/random.py' 2025-07-17T06:37:59.2070740Z adding 'torch/return_types.py' 2025-07-17T06:37:59.2072840Z adding 'torch/return_types.pyi' 2025-07-17T06:37:59.2090720Z adding 'torch/serialization.py' 2025-07-17T06:37:59.2100160Z adding 'torch/storage.py' 2025-07-17T06:37:59.2101440Z adding 'torch/torch_version.py' 2025-07-17T06:37:59.2103300Z adding 'torch/types.py' 2025-07-17T06:37:59.2103780Z adding 'torch/version.py' 2025-07-17T06:37:59.2250740Z adding 'torch/_C/_VariableFunctions.pyi' 2025-07-17T06:37:59.2313450Z adding 'torch/_C/__init__.pyi' 2025-07-17T06:37:59.2316830Z adding 'torch/_C/_aoti.pyi' 2025-07-17T06:37:59.2318210Z adding 'torch/_C/_autograd.pyi' 2025-07-17T06:37:59.2319170Z adding 'torch/_C/_cpu.pyi' 2025-07-17T06:37:59.2320070Z adding 'torch/_C/_cudnn.pyi' 2025-07-17T06:37:59.2320890Z adding 'torch/_C/_cusparselt.pyi' 2025-07-17T06:37:59.2321820Z adding 'torch/_C/_distributed_autograd.pyi' 2025-07-17T06:37:59.2326460Z adding 'torch/_C/_distributed_c10d.pyi' 2025-07-17T06:37:59.2327970Z adding 'torch/_C/_distributed_rpc.pyi' 2025-07-17T06:37:59.2328920Z adding 'torch/_C/_distributed_rpc_testing.pyi' 2025-07-17T06:37:59.2329770Z adding 'torch/_C/_functions.pyi' 2025-07-17T06:37:59.2330980Z adding 'torch/_C/_functorch.pyi' 2025-07-17T06:37:59.2331890Z adding 'torch/_C/_instruction_counter.pyi' 2025-07-17T06:37:59.2332630Z adding 'torch/_C/_itt.pyi' 2025-07-17T06:37:59.2334080Z adding 'torch/_C/_jit_tree_views.pyi' 2025-07-17T06:37:59.2334990Z adding 'torch/_C/_lazy.pyi' 2025-07-17T06:37:59.2335890Z adding 'torch/_C/_lazy_ts_backend.pyi' 2025-07-17T06:37:59.2336890Z adding 'torch/_C/_monitor.pyi' 2025-07-17T06:37:59.2338890Z adding 'torch/_C/_nn.pyi' 2025-07-17T06:37:59.2339250Z adding 'torch/_C/_nvtx.pyi' 2025-07-17T06:37:59.2340180Z adding 'torch/_C/_onnx.pyi' 2025-07-17T06:37:59.2342150Z adding 'torch/_C/_profiler.pyi' 2025-07-17T06:37:59.2342660Z adding 'torch/_C/_verbose.pyi' 2025-07-17T06:37:59.2343830Z adding 'torch/_C/_dynamo/__init__.pyi' 2025-07-17T06:37:59.2344830Z adding 'torch/_C/_dynamo/compiled_autograd.pyi' 2025-07-17T06:37:59.2345930Z adding 'torch/_C/_dynamo/eval_frame.pyi' 2025-07-17T06:37:59.2347360Z adding 'torch/_C/_dynamo/guards.pyi' 2025-07-17T06:37:59.2348380Z adding 'torch/_C/_export/__init__.pyi' 2025-07-17T06:37:59.2349330Z adding 'torch/_C/_export/pt2_archive_constants.pyi' 2025-07-17T06:37:59.2350390Z adding 'torch/_C_flatbuffer/__init__.pyi' 2025-07-17T06:37:59.2351640Z adding 'torch/_awaits/__init__.py' 2025-07-17T06:37:59.2352580Z adding 'torch/_custom_op/__init__.py' 2025-07-17T06:37:59.2355720Z adding 'torch/_custom_op/autograd.py' 2025-07-17T06:37:59.2361030Z adding 'torch/_custom_op/impl.py' 2025-07-17T06:37:59.2364970Z adding 'torch/_decomp/__init__.py' 2025-07-17T06:37:59.2401630Z adding 'torch/_decomp/decompositions.py' 2025-07-17T06:37:59.2405360Z adding 'torch/_decomp/decompositions_for_jvp.py' 2025-07-17T06:37:59.2407770Z adding 'torch/_decomp/decompositions_for_rng.py' 2025-07-17T06:37:59.2408570Z adding 'torch/_dispatch/__init__.py' 2025-07-17T06:37:59.2410940Z adding 'torch/_dispatch/python.py' 2025-07-17T06:37:59.2413380Z adding 'torch/_dynamo/__init__.py' 2025-07-17T06:37:59.2416540Z adding 'torch/_dynamo/_trace_wrapped_higher_order_op.py' 2025-07-17T06:37:59.2419260Z adding 'torch/_dynamo/bytecode_analysis.py' 2025-07-17T06:37:59.2432950Z adding 'torch/_dynamo/bytecode_transformation.py' 2025-07-17T06:37:59.2435660Z adding 'torch/_dynamo/cache_size.py' 2025-07-17T06:37:59.2437420Z adding 'torch/_dynamo/callback.py' 2025-07-17T06:37:59.2438510Z adding 'torch/_dynamo/code_context.py' 2025-07-17T06:37:59.2444470Z adding 'torch/_dynamo/codegen.py' 2025-07-17T06:37:59.2457090Z adding 'torch/_dynamo/compiled_autograd.py' 2025-07-17T06:37:59.2460680Z adding 'torch/_dynamo/comptime.py' 2025-07-17T06:37:59.2467690Z adding 'torch/_dynamo/config.py' 2025-07-17T06:37:59.2480950Z adding 'torch/_dynamo/convert_frame.py' 2025-07-17T06:37:59.2482250Z adding 'torch/_dynamo/create_parameter_op.py' 2025-07-17T06:37:59.2483370Z adding 'torch/_dynamo/current_scope_id.py' 2025-07-17T06:37:59.2490550Z adding 'torch/_dynamo/debug_utils.py' 2025-07-17T06:37:59.2498040Z adding 'torch/_dynamo/decorators.py' 2025-07-17T06:37:59.2501290Z adding 'torch/_dynamo/device_interface.py' 2025-07-17T06:37:59.2502130Z adding 'torch/_dynamo/distributed.py' 2025-07-17T06:37:59.2522150Z adding 'torch/_dynamo/eval_frame.py' 2025-07-17T06:37:59.2527780Z adding 'torch/_dynamo/exc.py' 2025-07-17T06:37:59.2530160Z adding 'torch/_dynamo/external_utils.py' 2025-07-17T06:37:59.2531210Z adding 'torch/_dynamo/funcname_cache.py' 2025-07-17T06:37:59.2532270Z adding 'torch/_dynamo/graph_break_hints.py' 2025-07-17T06:37:59.2546940Z adding 'torch/_dynamo/graph_break_registry.json' 2025-07-17T06:37:59.2551580Z adding 'torch/_dynamo/graph_deduplication.py' 2025-07-17T06:37:59.2555740Z adding 'torch/_dynamo/graph_region_tracker.py' 2025-07-17T06:37:59.2556970Z adding 'torch/_dynamo/graph_utils.py' 2025-07-17T06:37:59.2588410Z adding 'torch/_dynamo/guards.py' 2025-07-17T06:37:59.2589850Z adding 'torch/_dynamo/hooks.py' 2025-07-17T06:37:59.2591130Z adding 'torch/_dynamo/logging.py' 2025-07-17T06:37:59.2593370Z adding 'torch/_dynamo/metrics_context.py' 2025-07-17T06:37:59.2594770Z adding 'torch/_dynamo/mutation_guard.py' 2025-07-17T06:37:59.2626240Z adding 'torch/_dynamo/output_graph.py' 2025-07-17T06:37:59.2632200Z adding 'torch/_dynamo/package.py' 2025-07-17T06:37:59.2639250Z adding 'torch/_dynamo/pgo.py' 2025-07-17T06:37:59.2641570Z adding 'torch/_dynamo/precompile_context.py' 2025-07-17T06:37:59.2643060Z adding 'torch/_dynamo/profiler.py' 2025-07-17T06:37:59.2644490Z adding 'torch/_dynamo/replay_record.py' 2025-07-17T06:37:59.2649470Z adding 'torch/_dynamo/resume_execution.py' 2025-07-17T06:37:59.2659080Z adding 'torch/_dynamo/side_effects.py' 2025-07-17T06:37:59.2664350Z adding 'torch/_dynamo/source.py' 2025-07-17T06:37:59.2699970Z adding 'torch/_dynamo/symbolic_convert.py' 2025-07-17T06:37:59.2702070Z adding 'torch/_dynamo/tensor_version_op.py' 2025-07-17T06:37:59.2703860Z adding 'torch/_dynamo/test_case.py' 2025-07-17T06:37:59.2704710Z adding 'torch/_dynamo/test_dont_skip_tracing_functions.py' 2025-07-17T06:37:59.2707740Z adding 'torch/_dynamo/test_minifier_common.py' 2025-07-17T06:37:59.2711420Z adding 'torch/_dynamo/testing.py' 2025-07-17T06:37:59.2735370Z adding 'torch/_dynamo/trace_rules.py' 2025-07-17T06:37:59.2737580Z adding 'torch/_dynamo/types.py' 2025-07-17T06:37:59.2775060Z adding 'torch/_dynamo/utils.py' 2025-07-17T06:37:59.2777200Z adding 'torch/_dynamo/backends/__init__.py' 2025-07-17T06:37:59.2778640Z adding 'torch/_dynamo/backends/common.py' 2025-07-17T06:37:59.2781290Z adding 'torch/_dynamo/backends/cudagraphs.py' 2025-07-17T06:37:59.2784730Z adding 'torch/_dynamo/backends/debugging.py' 2025-07-17T06:37:59.2790940Z adding 'torch/_dynamo/backends/distributed.py' 2025-07-17T06:37:59.2791730Z adding 'torch/_dynamo/backends/inductor.py' 2025-07-17T06:37:59.2792820Z adding 'torch/_dynamo/backends/onnxrt.py' 2025-07-17T06:37:59.2794850Z adding 'torch/_dynamo/backends/registry.py' 2025-07-17T06:37:59.2795430Z adding 'torch/_dynamo/backends/tensorrt.py' 2025-07-17T06:37:59.2796390Z adding 'torch/_dynamo/backends/torchxla.py' 2025-07-17T06:37:59.2798770Z adding 'torch/_dynamo/backends/tvm.py' 2025-07-17T06:37:59.2801880Z adding 'torch/_dynamo/polyfills/__init__.py' 2025-07-17T06:37:59.2802630Z adding 'torch/_dynamo/polyfills/builtins.py' 2025-07-17T06:37:59.2803620Z adding 'torch/_dynamo/polyfills/functools.py' 2025-07-17T06:37:59.2804540Z adding 'torch/_dynamo/polyfills/fx.py' 2025-07-17T06:37:59.2806560Z adding 'torch/_dynamo/polyfills/itertools.py' 2025-07-17T06:37:59.2807250Z adding 'torch/_dynamo/polyfills/loader.py' 2025-07-17T06:37:59.2808420Z adding 'torch/_dynamo/polyfills/operator.py' 2025-07-17T06:37:59.2809350Z adding 'torch/_dynamo/polyfills/os.py' 2025-07-17T06:37:59.2812770Z adding 'torch/_dynamo/polyfills/pytree.py' 2025-07-17T06:37:59.2813430Z adding 'torch/_dynamo/polyfills/sys.py' 2025-07-17T06:37:59.2814420Z adding 'torch/_dynamo/polyfills/tensor.py' 2025-07-17T06:37:59.2815420Z adding 'torch/_dynamo/repro/__init__.py' 2025-07-17T06:37:59.2823800Z adding 'torch/_dynamo/repro/after_aot.py' 2025-07-17T06:37:59.2828170Z adding 'torch/_dynamo/repro/after_dynamo.py' 2025-07-17T06:37:59.2832870Z adding 'torch/_dynamo/repro/aoti.py' 2025-07-17T06:37:59.2835070Z adding 'torch/_dynamo/variables/__init__.py' 2025-07-17T06:37:59.2840060Z adding 'torch/_dynamo/variables/base.py' 2025-07-17T06:37:59.2873550Z adding 'torch/_dynamo/variables/builder.py' 2025-07-17T06:37:59.2893050Z adding 'torch/_dynamo/variables/builtin.py' 2025-07-17T06:37:59.2896090Z adding 'torch/_dynamo/variables/constant.py' 2025-07-17T06:37:59.2904440Z adding 'torch/_dynamo/variables/ctx_manager.py' 2025-07-17T06:37:59.2912560Z adding 'torch/_dynamo/variables/dicts.py' 2025-07-17T06:37:59.2915960Z adding 'torch/_dynamo/variables/distributed.py' 2025-07-17T06:37:59.2934250Z adding 'torch/_dynamo/variables/functions.py' 2025-07-17T06:37:59.2958990Z adding 'torch/_dynamo/variables/higher_order_ops.py' 2025-07-17T06:37:59.2963550Z adding 'torch/_dynamo/variables/iter.py' 2025-07-17T06:37:59.2965750Z adding 'torch/_dynamo/variables/lazy.py' 2025-07-17T06:37:59.2973750Z adding 'torch/_dynamo/variables/lists.py' 2025-07-17T06:37:59.2988190Z adding 'torch/_dynamo/variables/misc.py' 2025-07-17T06:37:59.2998400Z adding 'torch/_dynamo/variables/nn_module.py' 2025-07-17T06:37:59.3002350Z adding 'torch/_dynamo/variables/optimizer.py' 2025-07-17T06:37:59.3003640Z adding 'torch/_dynamo/variables/script_object.py' 2025-07-17T06:37:59.3004830Z adding 'torch/_dynamo/variables/sdpa.py' 2025-07-17T06:37:59.3018490Z adding 'torch/_dynamo/variables/tensor.py' 2025-07-17T06:37:59.3033380Z adding 'torch/_dynamo/variables/torch.py' 2025-07-17T06:37:59.3039680Z adding 'torch/_dynamo/variables/torch_function.py' 2025-07-17T06:37:59.3054580Z adding 'torch/_dynamo/variables/user_defined.py' 2025-07-17T06:37:59.3057280Z adding 'torch/_export/__init__.py' 2025-07-17T06:37:59.3070590Z adding 'torch/_export/converter.py' 2025-07-17T06:37:59.3071800Z adding 'torch/_export/error.py' 2025-07-17T06:37:59.3081090Z adding 'torch/_export/non_strict_utils.py' 2025-07-17T06:37:59.3084690Z adding 'torch/_export/pass_base.py' 2025-07-17T06:37:59.3086060Z adding 'torch/_export/tools.py' 2025-07-17T06:37:59.3099190Z adding 'torch/_export/utils.py' 2025-07-17T06:37:59.3103060Z adding 'torch/_export/verifier.py' 2025-07-17T06:37:59.3105630Z adding 'torch/_export/wrappers.py' 2025-07-17T06:37:59.3106660Z adding 'torch/_export/db/__init__.py' 2025-07-17T06:37:59.3108620Z adding 'torch/_export/db/case.py' 2025-07-17T06:37:59.3109290Z adding 'torch/_export/db/gen_example.py' 2025-07-17T06:37:59.3110340Z adding 'torch/_export/db/logging.py' 2025-07-17T06:37:59.3112330Z adding 'torch/_export/db/examples/__init__.py' 2025-07-17T06:37:59.3112990Z adding 'torch/_export/db/examples/assume_constant_result.py' 2025-07-17T06:37:59.3113820Z adding 'torch/_export/db/examples/autograd_function.py' 2025-07-17T06:37:59.3114680Z adding 'torch/_export/db/examples/class_method.py' 2025-07-17T06:37:59.3115690Z adding 'torch/_export/db/examples/cond_branch_class_method.py' 2025-07-17T06:37:59.3116670Z adding 'torch/_export/db/examples/cond_branch_nested_function.py' 2025-07-17T06:37:59.3117760Z adding 'torch/_export/db/examples/cond_branch_nonlocal_variables.py' 2025-07-17T06:37:59.3118610Z adding 'torch/_export/db/examples/cond_closed_over_variable.py' 2025-07-17T06:37:59.3119530Z adding 'torch/_export/db/examples/cond_operands.py' 2025-07-17T06:37:59.3120470Z adding 'torch/_export/db/examples/cond_predicate.py' 2025-07-17T06:37:59.3121390Z adding 'torch/_export/db/examples/constrain_as_size_example.py' 2025-07-17T06:37:59.3122260Z adding 'torch/_export/db/examples/constrain_as_value_example.py' 2025-07-17T06:37:59.3123080Z adding 'torch/_export/db/examples/decorator.py' 2025-07-17T06:37:59.3123920Z adding 'torch/_export/db/examples/dictionary.py' 2025-07-17T06:37:59.3124740Z adding 'torch/_export/db/examples/dynamic_shape_assert.py' 2025-07-17T06:37:59.3125570Z adding 'torch/_export/db/examples/dynamic_shape_constructor.py' 2025-07-17T06:37:59.3126420Z adding 'torch/_export/db/examples/dynamic_shape_if_guard.py' 2025-07-17T06:37:59.3127230Z adding 'torch/_export/db/examples/dynamic_shape_map.py' 2025-07-17T06:37:59.3128100Z adding 'torch/_export/db/examples/dynamic_shape_round.py' 2025-07-17T06:37:59.3128910Z adding 'torch/_export/db/examples/dynamic_shape_slicing.py' 2025-07-17T06:37:59.3129790Z adding 'torch/_export/db/examples/dynamic_shape_view.py' 2025-07-17T06:37:59.3130680Z adding 'torch/_export/db/examples/fn_with_kwargs.py' 2025-07-17T06:37:59.3131500Z adding 'torch/_export/db/examples/list_contains.py' 2025-07-17T06:37:59.3132340Z adding 'torch/_export/db/examples/list_unpack.py' 2025-07-17T06:37:59.3133230Z adding 'torch/_export/db/examples/model_attr_mutation.py' 2025-07-17T06:37:59.3134120Z adding 'torch/_export/db/examples/nested_function.py' 2025-07-17T06:37:59.3135000Z adding 'torch/_export/db/examples/null_context_manager.py' 2025-07-17T06:37:59.3135790Z adding 'torch/_export/db/examples/optional_input.py' 2025-07-17T06:37:59.3136680Z adding 'torch/_export/db/examples/pytree_flatten.py' 2025-07-17T06:37:59.3137500Z adding 'torch/_export/db/examples/scalar_output.py' 2025-07-17T06:37:59.3138370Z adding 'torch/_export/db/examples/specialized_attribute.py' 2025-07-17T06:37:59.3139210Z adding 'torch/_export/db/examples/static_for_loop.py' 2025-07-17T06:37:59.3140000Z adding 'torch/_export/db/examples/static_if.py' 2025-07-17T06:37:59.3140830Z adding 'torch/_export/db/examples/tensor_setattr.py' 2025-07-17T06:37:59.3141650Z adding 'torch/_export/db/examples/type_reflection_method.py' 2025-07-17T06:37:59.3142640Z adding 'torch/_export/db/examples/unsupported_operator.py' 2025-07-17T06:37:59.3143390Z adding 'torch/_export/db/examples/user_input_mutation.py' 2025-07-17T06:37:59.3144340Z adding 'torch/_export/pass_infra/__init__.py' 2025-07-17T06:37:59.3145300Z adding 'torch/_export/pass_infra/node_metadata.py' 2025-07-17T06:37:59.3146260Z adding 'torch/_export/pass_infra/proxy_value.py' 2025-07-17T06:37:59.3147350Z adding 'torch/_export/passes/__init__.py' 2025-07-17T06:37:59.3148570Z adding 'torch/_export/passes/_node_metadata_hook.py' 2025-07-17T06:37:59.3151340Z adding 'torch/_export/passes/add_runtime_assertions_for_constraints_pass.py' 2025-07-17T06:37:59.3152780Z adding 'torch/_export/passes/collect_tracepoints_pass.py' 2025-07-17T06:37:59.3155760Z adding 'torch/_export/passes/constant_folding.py' 2025-07-17T06:37:59.3156870Z adding 'torch/_export/passes/functionalize_side_effectful_ops_pass.py' 2025-07-17T06:37:59.3158010Z adding 'torch/_export/passes/insert_custom_op_guards.py' 2025-07-17T06:37:59.3161890Z adding 'torch/_export/passes/lift_constants_pass.py' 2025-07-17T06:37:59.3162750Z adding 'torch/_export/passes/remove_runtime_assertions.py' 2025-07-17T06:37:59.3165020Z adding 'torch/_export/passes/replace_autocast_with_hop_pass.py' 2025-07-17T06:37:59.3170020Z adding 'torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py' 2025-07-17T06:37:59.3171290Z adding 'torch/_export/passes/replace_set_grad_with_hop_pass.py' 2025-07-17T06:37:59.3172530Z adding 'torch/_export/passes/replace_view_ops_with_view_copy_ops_pass.py' 2025-07-17T06:37:59.3174760Z adding 'torch/_export/passes/replace_with_hop_pass_util.py' 2025-07-17T06:37:59.3175470Z adding 'torch/_export/serde/__init__.py' 2025-07-17T06:37:59.3178420Z adding 'torch/_export/serde/dynamic_shapes.py' 2025-07-17T06:37:59.3180500Z adding 'torch/_export/serde/export_schema.thrift' 2025-07-17T06:37:59.3183530Z adding 'torch/_export/serde/schema.py' 2025-07-17T06:37:59.3185720Z adding 'torch/_export/serde/schema.yaml' 2025-07-17T06:37:59.3190270Z adding 'torch/_export/serde/schema_check.py' 2025-07-17T06:37:59.3218490Z adding 'torch/_export/serde/serialize.py' 2025-07-17T06:37:59.3220630Z adding 'torch/_export/serde/union.py' 2025-07-17T06:37:59.3221880Z adding 'torch/_functorch/__init__.py' 2025-07-17T06:37:59.3235970Z adding 'torch/_functorch/aot_autograd.py' 2025-07-17T06:37:59.3240220Z adding 'torch/_functorch/apis.py' 2025-07-17T06:37:59.3246290Z adding 'torch/_functorch/autograd_function.py' 2025-07-17T06:37:59.3247170Z adding 'torch/_functorch/batch_norm_replacement.py' 2025-07-17T06:37:59.3249310Z adding 'torch/_functorch/benchmark_utils.py' 2025-07-17T06:37:59.3251540Z adding 'torch/_functorch/compile_utils.py' 2025-07-17T06:37:59.3254740Z adding 'torch/_functorch/compilers.py' 2025-07-17T06:37:59.3258730Z adding 'torch/_functorch/config.py' 2025-07-17T06:37:59.3260050Z adding 'torch/_functorch/deprecated.py' 2025-07-17T06:37:59.3275050Z adding 'torch/_functorch/eager_transforms.py' 2025-07-17T06:37:59.3278020Z adding 'torch/_functorch/functional_call.py' 2025-07-17T06:37:59.3281800Z adding 'torch/_functorch/fx_minifier.py' 2025-07-17T06:37:59.3286270Z adding 'torch/_functorch/make_functional.py' 2025-07-17T06:37:59.3310500Z adding 'torch/_functorch/partitioners.py' 2025-07-17T06:37:59.3313450Z adding 'torch/_functorch/pyfunctorch.py' 2025-07-17T06:37:59.3314120Z adding 'torch/_functorch/python_key.py' 2025-07-17T06:37:59.3315050Z adding 'torch/_functorch/pytree_hacks.py' 2025-07-17T06:37:59.3319910Z adding 'torch/_functorch/top_operators_github_usage.py' 2025-07-17T06:37:59.3320630Z adding 'torch/_functorch/utils.py' 2025-07-17T06:37:59.3325200Z adding 'torch/_functorch/vmap.py' 2025-07-17T06:37:59.3326210Z adding 'torch/_functorch/_activation_checkpointing/__init__.py' 2025-07-17T06:37:59.3327770Z adding 'torch/_functorch/_activation_checkpointing/ac_logging_utils.py' 2025-07-17T06:37:59.3330700Z adding 'torch/_functorch/_activation_checkpointing/graph_info_provider.py' 2025-07-17T06:37:59.3331890Z adding 'torch/_functorch/_activation_checkpointing/knapsack.py' 2025-07-17T06:37:59.3334730Z adding 'torch/_functorch/_activation_checkpointing/knapsack_evaluator.py' 2025-07-17T06:37:59.3335580Z adding 'torch/_functorch/_aot_autograd/__init__.py' 2025-07-17T06:37:59.3348500Z adding 'torch/_functorch/_aot_autograd/autograd_cache.py' 2025-07-17T06:37:59.3358240Z adding 'torch/_functorch/_aot_autograd/collect_metadata_analysis.py' 2025-07-17T06:37:59.3361240Z adding 'torch/_functorch/_aot_autograd/dispatch_and_compile_graph.py' 2025-07-17T06:37:59.3363980Z adding 'torch/_functorch/_aot_autograd/frontend_utils.py' 2025-07-17T06:37:59.3368640Z adding 'torch/_functorch/_aot_autograd/functional_utils.py' 2025-07-17T06:37:59.3372620Z adding 'torch/_functorch/_aot_autograd/input_output_analysis.py' 2025-07-17T06:37:59.3390460Z adding 'torch/_functorch/_aot_autograd/jit_compile_runtime_wrappers.py' 2025-07-17T06:37:59.3392560Z adding 'torch/_functorch/_aot_autograd/logging_utils.py' 2025-07-17T06:37:59.3415910Z adding 'torch/_functorch/_aot_autograd/runtime_wrappers.py' 2025-07-17T06:37:59.3428370Z adding 'torch/_functorch/_aot_autograd/schemas.py' 2025-07-17T06:37:59.3429980Z adding 'torch/_functorch/_aot_autograd/subclass_parametrization.py' 2025-07-17T06:37:59.3434310Z adding 'torch/_functorch/_aot_autograd/subclass_utils.py' 2025-07-17T06:37:59.3445640Z adding 'torch/_functorch/_aot_autograd/traced_function_transforms.py' 2025-07-17T06:37:59.3450190Z adding 'torch/_functorch/_aot_autograd/utils.py' 2025-07-17T06:37:59.3452780Z adding 'torch/_higher_order_ops/__init__.py' 2025-07-17T06:37:59.3453690Z adding 'torch/_higher_order_ops/_invoke_quant.py' 2025-07-17T06:37:59.3455720Z adding 'torch/_higher_order_ops/aoti_call_delegate.py' 2025-07-17T06:37:59.3459730Z adding 'torch/_higher_order_ops/associative_scan.py' 2025-07-17T06:37:59.3466900Z adding 'torch/_higher_order_ops/auto_functionalize.py' 2025-07-17T06:37:59.3469830Z adding 'torch/_higher_order_ops/base_hop.py' 2025-07-17T06:37:59.3476210Z adding 'torch/_higher_order_ops/cond.py' 2025-07-17T06:37:59.3479010Z adding 'torch/_higher_order_ops/effects.py' 2025-07-17T06:37:59.3480840Z adding 'torch/_higher_order_ops/executorch_call_delegate.py' 2025-07-17T06:37:59.3482260Z adding 'torch/_higher_order_ops/flat_apply.py' 2025-07-17T06:37:59.3489630Z adding 'torch/_higher_order_ops/flex_attention.py' 2025-07-17T06:37:59.3490430Z adding 'torch/_higher_order_ops/foreach_map.py' 2025-07-17T06:37:59.3492420Z adding 'torch/_higher_order_ops/hints_wrap.py' 2025-07-17T06:37:59.3497630Z adding 'torch/_higher_order_ops/invoke_subgraph.py' 2025-07-17T06:37:59.3500100Z adding 'torch/_higher_order_ops/map.py' 2025-07-17T06:37:59.3501660Z adding 'torch/_higher_order_ops/out_dtype.py' 2025-07-17T06:37:59.3502810Z adding 'torch/_higher_order_ops/run_const_graph.py' 2025-07-17T06:37:59.3511670Z adding 'torch/_higher_order_ops/scan.py' 2025-07-17T06:37:59.3514590Z adding 'torch/_higher_order_ops/schema.py' 2025-07-17T06:37:59.3515830Z adding 'torch/_higher_order_ops/strict_mode.py' 2025-07-17T06:37:59.3517940Z adding 'torch/_higher_order_ops/torchbind.py' 2025-07-17T06:37:59.3534520Z adding 'torch/_higher_order_ops/triton_kernel_wrap.py' 2025-07-17T06:37:59.3544730Z adding 'torch/_higher_order_ops/utils.py' 2025-07-17T06:37:59.3548870Z adding 'torch/_higher_order_ops/while_loop.py' 2025-07-17T06:37:59.3553500Z adding 'torch/_higher_order_ops/wrap.py' 2025-07-17T06:37:59.3553760Z adding 'torch/_inductor/__autotune_main__.py' 2025-07-17T06:37:59.3556700Z adding 'torch/_inductor/__init__.py' 2025-07-17T06:37:59.3558180Z adding 'torch/_inductor/analyze_preserves_zero_mask.py' 2025-07-17T06:37:59.3560790Z adding 'torch/_inductor/aoti_eager.py' 2025-07-17T06:37:59.3565760Z adding 'torch/_inductor/async_compile.py' 2025-07-17T06:37:59.3571450Z adding 'torch/_inductor/autotune_process.py' 2025-07-17T06:37:59.3574070Z adding 'torch/_inductor/bounds.py' 2025-07-17T06:37:59.3577470Z adding 'torch/_inductor/choices.py' 2025-07-17T06:37:59.3611610Z adding 'torch/_inductor/codecache.py' 2025-07-17T06:37:59.3614680Z adding 'torch/_inductor/comm_analysis.py' 2025-07-17T06:37:59.3617510Z adding 'torch/_inductor/comm_lowering.py' 2025-07-17T06:37:59.3628560Z adding 'torch/_inductor/comms.py' 2025-07-17T06:37:59.3651560Z adding 'torch/_inductor/compile_fx.py' 2025-07-17T06:37:59.3655120Z adding 'torch/_inductor/compile_fx_async.py' 2025-07-17T06:37:59.3660030Z adding 'torch/_inductor/compile_fx_ext.py' 2025-07-17T06:37:59.3661230Z adding 'torch/_inductor/compile_fx_subproc.py' 2025-07-17T06:37:59.3665760Z adding 'torch/_inductor/compiler_bisector.py' 2025-07-17T06:37:59.3684740Z adding 'torch/_inductor/config.py' 2025-07-17T06:37:59.3688470Z adding 'torch/_inductor/constant_folding.py' 2025-07-17T06:37:59.3702140Z adding 'torch/_inductor/cpp_builder.py' 2025-07-17T06:37:59.3705550Z adding 'torch/_inductor/cpu_vec_isa.py' 2025-07-17T06:37:59.3729730Z adding 'torch/_inductor/cudagraph_trees.py' 2025-07-17T06:37:59.3733400Z adding 'torch/_inductor/cudagraph_utils.py' 2025-07-17T06:37:59.3734620Z adding 'torch/_inductor/custom_graph_pass.py' 2025-07-17T06:37:59.3742360Z adding 'torch/_inductor/debug.py' 2025-07-17T06:37:59.3749980Z adding 'torch/_inductor/decomposition.py' 2025-07-17T06:37:59.3756680Z adding 'torch/_inductor/dependencies.py' 2025-07-17T06:37:59.3759310Z adding 'torch/_inductor/dtype_propagation.py' 2025-07-17T06:37:59.3760540Z adding 'torch/_inductor/exc.py' 2025-07-17T06:37:59.3761490Z adding 'torch/_inductor/extern_node_serializer.py' 2025-07-17T06:37:59.3764330Z adding 'torch/_inductor/freezing.py' 2025-07-17T06:37:59.3765030Z adding 'torch/_inductor/freezing_utils.py' 2025-07-17T06:37:59.3772840Z adding 'torch/_inductor/fuzzer.py' 2025-07-17T06:37:59.3776020Z adding 'torch/_inductor/fx_utils.py' 2025-07-17T06:37:59.3798730Z adding 'torch/_inductor/graph.py' 2025-07-17T06:37:59.3799910Z adding 'torch/_inductor/hooks.py' 2025-07-17T06:37:59.3803200Z adding 'torch/_inductor/index_propagation.py' 2025-07-17T06:37:59.3805290Z adding 'torch/_inductor/inductor_prims.py' 2025-07-17T06:37:59.3870650Z adding 'torch/_inductor/ir.py' 2025-07-17T06:37:59.3874300Z adding 'torch/_inductor/jagged_lowerings.py' 2025-07-17T06:37:59.3879620Z adding 'torch/_inductor/loop_body.py' 2025-07-17T06:37:59.3929170Z adding 'torch/_inductor/lowering.py' 2025-07-17T06:37:59.3935750Z adding 'torch/_inductor/memory.py' 2025-07-17T06:37:59.3938960Z adding 'torch/_inductor/metrics.py' 2025-07-17T06:37:59.3945290Z adding 'torch/_inductor/mkldnn_ir.py' 2025-07-17T06:37:59.3952620Z adding 'torch/_inductor/mkldnn_lowerings.py' 2025-07-17T06:37:59.3954900Z adding 'torch/_inductor/mock_cache.py' 2025-07-17T06:37:59.3961140Z adding 'torch/_inductor/ops_handler.py' 2025-07-17T06:37:59.3962620Z adding 'torch/_inductor/optimize_indexing.py' 2025-07-17T06:37:59.3968800Z adding 'torch/_inductor/output_code.py' 2025-07-17T06:37:59.3986720Z adding 'torch/_inductor/pattern_matcher.py' 2025-07-17T06:37:59.3988820Z adding 'torch/_inductor/quantized_lowerings.py' 2025-07-17T06:37:59.3992030Z adding 'torch/_inductor/remote_cache.py' 2025-07-17T06:37:59.4035620Z adding 'torch/_inductor/scheduler.py' 2025-07-17T06:37:59.4037850Z adding 'torch/_inductor/script.ld' 2025-07-17T06:37:59.4063650Z adding 'torch/_inductor/select_algorithm.py' 2025-07-17T06:37:59.4072380Z adding 'torch/_inductor/sizevars.py' 2025-07-17T06:37:59.4075300Z adding 'torch/_inductor/standalone_compile.py' 2025-07-17T06:37:59.4077450Z adding 'torch/_inductor/subgraph_lowering.py' 2025-07-17T06:37:59.4083840Z adding 'torch/_inductor/template_heuristics.py' 2025-07-17T06:37:59.4084960Z adding 'torch/_inductor/test_case.py' 2025-07-17T06:37:59.4085890Z adding 'torch/_inductor/test_operators.py' 2025-07-17T06:37:59.4091980Z adding 'torch/_inductor/tiling_utils.py' 2025-07-17T06:37:59.4095420Z adding 'torch/_inductor/triton_bundler.py' 2025-07-17T06:37:59.4121410Z adding 'torch/_inductor/utils.py' 2025-07-17T06:37:59.4125130Z adding 'torch/_inductor/virtualized.py' 2025-07-17T06:37:59.4128930Z adding 'torch/_inductor/wrapper_benchmark.py' 2025-07-17T06:37:59.4130130Z adding 'torch/_inductor/analysis/__init__.py' 2025-07-17T06:37:59.4132250Z adding 'torch/_inductor/analysis/device_info.py' 2025-07-17T06:37:59.4137290Z adding 'torch/_inductor/analysis/profile_analysis.py' 2025-07-17T06:37:59.4138230Z adding 'torch/_inductor/autoheuristic/__init__.py' 2025-07-17T06:37:59.4141240Z adding 'torch/_inductor/autoheuristic/autoheuristic.py' 2025-07-17T06:37:59.4143790Z adding 'torch/_inductor/autoheuristic/autoheuristic_utils.py' 2025-07-17T06:37:59.4145070Z adding 'torch/_inductor/autoheuristic/learned_heuristic_controller.py' 2025-07-17T06:37:59.4146480Z adding 'torch/_inductor/autoheuristic/learnedheuristic_interface.py' 2025-07-17T06:37:59.4150840Z adding 'torch/_inductor/autoheuristic/artifacts/_MMRankingA100.py' 2025-07-17T06:37:59.4155160Z adding 'torch/_inductor/autoheuristic/artifacts/_MMRankingH100.py' 2025-07-17T06:37:59.4156660Z adding 'torch/_inductor/autoheuristic/artifacts/_MixedMMA100.py' 2025-07-17T06:37:59.4158810Z adding 'torch/_inductor/autoheuristic/artifacts/_MixedMMH100.py' 2025-07-17T06:37:59.4159770Z adding 'torch/_inductor/autoheuristic/artifacts/_PadMMA100.py' 2025-07-17T06:37:59.4160550Z adding 'torch/_inductor/autoheuristic/artifacts/__init__.py' 2025-07-17T06:37:59.4161740Z adding 'torch/_inductor/codegen/__init__.py' 2025-07-17T06:37:59.4162930Z adding 'torch/_inductor/codegen/aoti_hipify_utils.py' 2025-07-17T06:37:59.4165260Z adding 'torch/_inductor/codegen/block_analysis.py' 2025-07-17T06:37:59.4184210Z adding 'torch/_inductor/codegen/common.py' 2025-07-17T06:37:59.4228650Z adding 'torch/_inductor/codegen/cpp.py' 2025-07-17T06:37:59.4232220Z adding 'torch/_inductor/codegen/cpp_bmm_template.py' 2025-07-17T06:37:59.4240450Z adding 'torch/_inductor/codegen/cpp_flex_attention_template.py' 2025-07-17T06:37:59.4255010Z adding 'torch/_inductor/codegen/cpp_gemm_template.py' 2025-07-17T06:37:59.4259430Z adding 'torch/_inductor/codegen/cpp_grouped_gemm_template.py' 2025-07-17T06:37:59.4271950Z adding 'torch/_inductor/codegen/cpp_micro_gemm.py' 2025-07-17T06:37:59.4274040Z adding 'torch/_inductor/codegen/cpp_template.py' 2025-07-17T06:37:59.4278860Z adding 'torch/_inductor/codegen/cpp_template_kernel.py' 2025-07-17T06:37:59.4284660Z adding 'torch/_inductor/codegen/cpp_utils.py' 2025-07-17T06:37:59.4308140Z adding 'torch/_inductor/codegen/cpp_wrapper_cpu.py' 2025-07-17T06:37:59.4316010Z adding 'torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py' 2025-07-17T06:37:59.4321930Z adding 'torch/_inductor/codegen/cpp_wrapper_gpu.py' 2025-07-17T06:37:59.4323370Z adding 'torch/_inductor/codegen/cpp_wrapper_mps.py' 2025-07-17T06:37:59.4324380Z adding 'torch/_inductor/codegen/cpu_device_op_overrides.py' 2025-07-17T06:37:59.4325960Z adding 'torch/_inductor/codegen/cuda_combined_scheduling.py' 2025-07-17T06:37:59.4328640Z adding 'torch/_inductor/codegen/debug_utils.py' 2025-07-17T06:37:59.4341050Z adding 'torch/_inductor/codegen/halide.py' 2025-07-17T06:37:59.4346530Z adding 'torch/_inductor/codegen/memory_planning.py' 2025-07-17T06:37:59.4353730Z adding 'torch/_inductor/codegen/mps.py' 2025-07-17T06:37:59.4354780Z adding 'torch/_inductor/codegen/mps_device_op_overrides.py' 2025-07-17T06:37:59.4359190Z adding 'torch/_inductor/codegen/multi_kernel.py' 2025-07-17T06:37:59.4380930Z adding 'torch/_inductor/codegen/simd.py' 2025-07-17T06:37:59.4386400Z adding 'torch/_inductor/codegen/simd_kernel_features.py' 2025-07-17T06:37:59.4388510Z adding 'torch/_inductor/codegen/subgraph.py' 2025-07-17T06:37:59.4427500Z adding 'torch/_inductor/codegen/triton.py' 2025-07-17T06:37:59.4436370Z adding 'torch/_inductor/codegen/triton_combo_kernel.py' 2025-07-17T06:37:59.4438560Z adding 'torch/_inductor/codegen/triton_split_scan.py' 2025-07-17T06:37:59.4440990Z adding 'torch/_inductor/codegen/triton_utils.py' 2025-07-17T06:37:59.4469610Z adding 'torch/_inductor/codegen/wrapper.py' 2025-07-17T06:37:59.4475620Z adding 'torch/_inductor/codegen/wrapper_fxir.py' 2025-07-17T06:37:59.4478990Z adding 'torch/_inductor/codegen/aoti_runtime/interface.cpp' 2025-07-17T06:37:59.4479920Z adding 'torch/_inductor/codegen/cuda/__init__.py' 2025-07-17T06:37:59.4483030Z adding 'torch/_inductor/codegen/cuda/cuda_cpp_scheduling.py' 2025-07-17T06:37:59.4483940Z adding 'torch/_inductor/codegen/cuda/cuda_env.py' 2025-07-17T06:37:59.4489160Z adding 'torch/_inductor/codegen/cuda/cuda_kernel.py' 2025-07-17T06:37:59.4491930Z adding 'torch/_inductor/codegen/cuda/cuda_template.py' 2025-07-17T06:37:59.4493200Z adding 'torch/_inductor/codegen/cuda/cutlass_cache.py' 2025-07-17T06:37:59.4494620Z adding 'torch/_inductor/codegen/cuda/cutlass_presets.py' 2025-07-17T06:37:59.4497770Z adding 'torch/_inductor/codegen/cuda/cutlass_python_evt.py' 2025-07-17T06:37:59.4501430Z adding 'torch/_inductor/codegen/cuda/cutlass_utils.py' 2025-07-17T06:37:59.4504050Z adding 'torch/_inductor/codegen/cuda/device_op_overrides.py' 2025-07-17T06:37:59.4518060Z adding 'torch/_inductor/codegen/cuda/gemm_template.py' 2025-07-17T06:37:59.4521710Z adding 'torch/_inductor/codegen/cuda/serialization.py' 2025-07-17T06:37:59.4522790Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/__init__.py' 2025-07-17T06:37:59.4525460Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/evt_extensions.py' 2025-07-17T06:37:59.4528820Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py' 2025-07-17T06:37:59.4529660Z adding 'torch/_inductor/codegen/rocm/__init__.py' 2025-07-17T06:37:59.4534160Z adding 'torch/_inductor/codegen/rocm/ck_conv_template.py' 2025-07-17T06:37:59.4535270Z adding 'torch/_inductor/codegen/rocm/ck_template.py' 2025-07-17T06:37:59.4536430Z adding 'torch/_inductor/codegen/rocm/ck_tile_template.py' 2025-07-17T06:37:59.4542750Z adding 'torch/_inductor/codegen/rocm/ck_tile_universal_gemm_template.py' 2025-07-17T06:37:59.4550030Z adding 'torch/_inductor/codegen/rocm/ck_universal_gemm_template.py' 2025-07-17T06:37:59.4551460Z adding 'torch/_inductor/codegen/rocm/compile_command.py' 2025-07-17T06:37:59.4553070Z adding 'torch/_inductor/codegen/rocm/rocm_benchmark_request.py' 2025-07-17T06:37:59.4554430Z adding 'torch/_inductor/codegen/rocm/rocm_cpp_scheduling.py' 2025-07-17T06:37:59.4557290Z adding 'torch/_inductor/codegen/rocm/rocm_kernel.py' 2025-07-17T06:37:59.4558870Z adding 'torch/_inductor/codegen/rocm/rocm_template.py' 2025-07-17T06:37:59.4559810Z adding 'torch/_inductor/codegen/rocm/rocm_template_buffer.py' 2025-07-17T06:37:59.4560670Z adding 'torch/_inductor/codegen/rocm/rocm_utils.py' 2025-07-17T06:37:59.4561620Z adding 'torch/_inductor/codegen/xpu/__init__.py' 2025-07-17T06:37:59.4562740Z adding 'torch/_inductor/codegen/xpu/device_op_overrides.py' 2025-07-17T06:37:59.4563670Z adding 'torch/_inductor/compile_worker/__init__.py' 2025-07-17T06:37:59.4564830Z adding 'torch/_inductor/compile_worker/__main__.py' 2025-07-17T06:37:59.4568450Z adding 'torch/_inductor/compile_worker/subproc_pool.py' 2025-07-17T06:37:59.4569660Z adding 'torch/_inductor/compile_worker/tracked_process_pool.py' 2025-07-17T06:37:59.4570670Z adding 'torch/_inductor/compile_worker/utils.py' 2025-07-17T06:37:59.4571870Z adding 'torch/_inductor/fx_passes/__init__.py' 2025-07-17T06:37:59.4577310Z adding 'torch/_inductor/fx_passes/b2b_gemm.py' 2025-07-17T06:37:59.4580900Z adding 'torch/_inductor/fx_passes/binary_folding.py' 2025-07-17T06:37:59.4586500Z adding 'torch/_inductor/fx_passes/bucketing.py' 2025-07-17T06:37:59.4591320Z adding 'torch/_inductor/fx_passes/ddp_fusion.py' 2025-07-17T06:37:59.4592750Z adding 'torch/_inductor/fx_passes/decompose_mem_bound_mm.py' 2025-07-17T06:37:59.4593980Z adding 'torch/_inductor/fx_passes/dedupe_symint_uses.py' 2025-07-17T06:37:59.4596830Z adding 'torch/_inductor/fx_passes/efficient_conv_bn_eval.py' 2025-07-17T06:37:59.4598940Z adding 'torch/_inductor/fx_passes/freezing_patterns.py' 2025-07-17T06:37:59.4599880Z adding 'torch/_inductor/fx_passes/fsdp.py' 2025-07-17T06:37:59.4605600Z adding 'torch/_inductor/fx_passes/fuse_attention.py' 2025-07-17T06:37:59.4614820Z adding 'torch/_inductor/fx_passes/group_batch_fusion.py' 2025-07-17T06:37:59.4621950Z adding 'torch/_inductor/fx_passes/joint_graph.py' 2025-07-17T06:37:59.4629820Z adding 'torch/_inductor/fx_passes/micro_pipeline_tp.py' 2025-07-17T06:37:59.4631380Z adding 'torch/_inductor/fx_passes/misc_patterns.py' 2025-07-17T06:37:59.4641240Z adding 'torch/_inductor/fx_passes/mkldnn_fusion.py' 2025-07-17T06:37:59.4643390Z adding 'torch/_inductor/fx_passes/numeric_utils.py' 2025-07-17T06:37:59.4649040Z adding 'torch/_inductor/fx_passes/pad_mm.py' 2025-07-17T06:37:59.4663200Z adding 'torch/_inductor/fx_passes/post_grad.py' 2025-07-17T06:37:59.4669220Z adding 'torch/_inductor/fx_passes/pre_grad.py' 2025-07-17T06:37:59.4691650Z adding 'torch/_inductor/fx_passes/quantization.py' 2025-07-17T06:37:59.4699090Z adding 'torch/_inductor/fx_passes/reinplace.py' 2025-07-17T06:37:59.4700580Z adding 'torch/_inductor/fx_passes/replace_random.py' 2025-07-17T06:37:59.4722890Z adding 'torch/_inductor/fx_passes/split_cat.py' 2025-07-17T06:37:59.4724800Z adding 'torch/_inductor/fx_passes/serialized_patterns/__init__.py' 2025-07-17T06:37:59.4726390Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_1.py' 2025-07-17T06:37:59.4728290Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py' 2025-07-17T06:37:59.4730090Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py' 2025-07-17T06:37:59.4732300Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py' 2025-07-17T06:37:59.4733390Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_13.py' 2025-07-17T06:37:59.4735350Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py' 2025-07-17T06:37:59.4737540Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py' 2025-07-17T06:37:59.4740460Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py' 2025-07-17T06:37:59.4742590Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py' 2025-07-17T06:37:59.4745080Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py' 2025-07-17T06:37:59.4746760Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_19.py' 2025-07-17T06:37:59.4748290Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_2.py' 2025-07-17T06:37:59.4750510Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py' 2025-07-17T06:37:59.4752130Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py' 2025-07-17T06:37:59.4753960Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py' 2025-07-17T06:37:59.4755560Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py' 2025-07-17T06:37:59.4757100Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_24.py' 2025-07-17T06:37:59.4758760Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_3.py' 2025-07-17T06:37:59.4760350Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_4.py' 2025-07-17T06:37:59.4761860Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_5.py' 2025-07-17T06:37:59.4763970Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_6.py' 2025-07-17T06:37:59.4765260Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py' 2025-07-17T06:37:59.4766950Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py' 2025-07-17T06:37:59.4769070Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py' 2025-07-17T06:37:59.4769800Z adding 'torch/_inductor/fx_passes/serialized_patterns/addmm_pattern.py' 2025-07-17T06:37:59.4770750Z adding 'torch/_inductor/fx_passes/serialized_patterns/bmm_pattern.py' 2025-07-17T06:37:59.4771650Z adding 'torch/_inductor/fx_passes/serialized_patterns/mm_pattern.py' 2025-07-17T06:37:59.4772650Z adding 'torch/_inductor/kernel/__init__.py' 2025-07-17T06:37:59.4775490Z adding 'torch/_inductor/kernel/bmm.py' 2025-07-17T06:37:59.4779780Z adding 'torch/_inductor/kernel/conv.py' 2025-07-17T06:37:59.4800050Z adding 'torch/_inductor/kernel/flex_attention.py' 2025-07-17T06:37:59.4805660Z adding 'torch/_inductor/kernel/flex_decoding.py' 2025-07-17T06:37:59.4813930Z adding 'torch/_inductor/kernel/mm.py' 2025-07-17T06:37:59.4816700Z adding 'torch/_inductor/kernel/mm_common.py' 2025-07-17T06:37:59.4821140Z adding 'torch/_inductor/kernel/mm_grouped.py' 2025-07-17T06:37:59.4822950Z adding 'torch/_inductor/kernel/mm_plus_mm.py' 2025-07-17T06:37:59.4823800Z adding 'torch/_inductor/package/__init__.py' 2025-07-17T06:37:59.4824730Z adding 'torch/_inductor/package/build_package.py' 2025-07-17T06:37:59.4826710Z adding 'torch/_inductor/package/package.py' 2025-07-17T06:37:59.4827380Z adding 'torch/_inductor/runtime/__init__.py' 2025-07-17T06:37:59.4832530Z adding 'torch/_inductor/runtime/autotune_cache.py' 2025-07-17T06:37:59.4835270Z adding 'torch/_inductor/runtime/benchmarking.py' 2025-07-17T06:37:59.4836070Z adding 'torch/_inductor/runtime/cache_dir_utils.py' 2025-07-17T06:37:59.4837180Z adding 'torch/_inductor/runtime/compile_tasks.py' 2025-07-17T06:37:59.4839920Z adding 'torch/_inductor/runtime/coordinate_descent_tuner.py' 2025-07-17T06:37:59.4841080Z adding 'torch/_inductor/runtime/halide_helpers.py' 2025-07-17T06:37:59.4843270Z adding 'torch/_inductor/runtime/hints.py' 2025-07-17T06:37:59.4844710Z adding 'torch/_inductor/runtime/runtime_utils.py' 2025-07-17T06:37:59.4847380Z adding 'torch/_inductor/runtime/static_cuda_launcher.py' 2025-07-17T06:37:59.4848700Z adding 'torch/_inductor/runtime/triton_compat.py' 2025-07-17T06:37:59.4854070Z adding 'torch/_inductor/runtime/triton_helpers.py' 2025-07-17T06:37:59.4879550Z adding 'torch/_inductor/runtime/triton_heuristics.py' 2025-07-17T06:37:59.4881610Z adding 'torch/_lazy/__init__.py' 2025-07-17T06:37:59.4883040Z adding 'torch/_lazy/closure.py' 2025-07-17T06:37:59.4883970Z adding 'torch/_lazy/computation.py' 2025-07-17T06:37:59.4884810Z adding 'torch/_lazy/config.py' 2025-07-17T06:37:59.4885730Z adding 'torch/_lazy/debug.py' 2025-07-17T06:37:59.4886720Z adding 'torch/_lazy/device_context.py' 2025-07-17T06:37:59.4889440Z adding 'torch/_lazy/extract_compiled_graph.py' 2025-07-17T06:37:59.4890000Z adding 'torch/_lazy/ir_cache.py' 2025-07-17T06:37:59.4890820Z adding 'torch/_lazy/metrics.py' 2025-07-17T06:37:59.4891900Z adding 'torch/_lazy/tensor_factory_functions.py' 2025-07-17T06:37:59.4892690Z adding 'torch/_lazy/ts_backend.py' 2025-07-17T06:37:59.4893810Z adding 'torch/_library/__init__.py' 2025-07-17T06:37:59.4896360Z adding 'torch/_library/autograd.py' 2025-07-17T06:37:59.4903820Z adding 'torch/_library/custom_ops.py' 2025-07-17T06:37:59.4907060Z adding 'torch/_library/fake_class_registry.py' 2025-07-17T06:37:59.4909440Z adding 'torch/_library/fake_impl.py' 2025-07-17T06:37:59.4912370Z adding 'torch/_library/fake_profile.py' 2025-07-17T06:37:59.4915370Z adding 'torch/_library/infer_schema.py' 2025-07-17T06:37:59.4916360Z adding 'torch/_library/simple_registry.py' 2025-07-17T06:37:59.4919450Z adding 'torch/_library/triton.py' 2025-07-17T06:37:59.4923690Z adding 'torch/_library/utils.py' 2025-07-17T06:37:59.4924740Z adding 'torch/_logging/__init__.py' 2025-07-17T06:37:59.4935940Z adding 'torch/_logging/_internal.py' 2025-07-17T06:37:59.4938210Z adding 'torch/_logging/_registrations.py' 2025-07-17T06:37:59.4939170Z adding 'torch/_logging/scribe.py' 2025-07-17T06:37:59.4940650Z adding 'torch/_logging/structured.py' 2025-07-17T06:37:59.4942030Z adding 'torch/_numpy/__init__.py' 2025-07-17T06:37:59.4943150Z adding 'torch/_numpy/_binary_ufuncs_impl.py' 2025-07-17T06:37:59.4946490Z adding 'torch/_numpy/_casting_dicts.py' 2025-07-17T06:37:59.4949470Z adding 'torch/_numpy/_dtypes.py' 2025-07-17T06:37:59.4951570Z adding 'torch/_numpy/_dtypes_impl.py' 2025-07-17T06:37:59.4952320Z adding 'torch/_numpy/_funcs.py' 2025-07-17T06:37:59.4965410Z adding 'torch/_numpy/_funcs_impl.py' 2025-07-17T06:37:59.4966340Z adding 'torch/_numpy/_getlimits.py' 2025-07-17T06:37:59.4971280Z adding 'torch/_numpy/_ndarray.py' 2025-07-17T06:37:59.4973600Z adding 'torch/_numpy/_normalizations.py' 2025-07-17T06:37:59.4976160Z adding 'torch/_numpy/_reductions_impl.py' 2025-07-17T06:37:59.4978270Z adding 'torch/_numpy/_ufuncs.py' 2025-07-17T06:37:59.4979020Z adding 'torch/_numpy/_unary_ufuncs_impl.py' 2025-07-17T06:37:59.4981620Z adding 'torch/_numpy/_util.py' 2025-07-17T06:37:59.4982470Z adding 'torch/_numpy/fft.py' 2025-07-17T06:37:59.4984230Z adding 'torch/_numpy/linalg.py' 2025-07-17T06:37:59.4985520Z adding 'torch/_numpy/random.py' 2025-07-17T06:37:59.4986820Z adding 'torch/_numpy/testing/__init__.py' 2025-07-17T06:37:59.5003330Z adding 'torch/_numpy/testing/utils.py' 2025-07-17T06:37:59.5019550Z adding 'torch/_prims/__init__.py' 2025-07-17T06:37:59.5022120Z adding 'torch/_prims/context.py' 2025-07-17T06:37:59.5023120Z adding 'torch/_prims/debug_prims.py' 2025-07-17T06:37:59.5024340Z adding 'torch/_prims/executor.py' 2025-07-17T06:37:59.5027340Z adding 'torch/_prims/rng_prims.py' 2025-07-17T06:37:59.5043870Z adding 'torch/_prims_common/__init__.py' 2025-07-17T06:37:59.5048460Z adding 'torch/_prims_common/wrappers.py' 2025-07-17T06:37:59.5094500Z adding 'torch/_refs/__init__.py' 2025-07-17T06:37:59.5097080Z adding 'torch/_refs/_conversions.py' 2025-07-17T06:37:59.5100350Z adding 'torch/_refs/fft.py' 2025-07-17T06:37:59.5103480Z adding 'torch/_refs/linalg/__init__.py' 2025-07-17T06:37:59.5104350Z adding 'torch/_refs/nn/__init__.py' 2025-07-17T06:37:59.5112520Z adding 'torch/_refs/nn/functional/__init__.py' 2025-07-17T06:37:59.5114600Z adding 'torch/_refs/special/__init__.py' 2025-07-17T06:37:59.5115460Z adding 'torch/_strobelight/__init__.py' 2025-07-17T06:37:59.5118260Z adding 'torch/_strobelight/cli_function_profiler.py' 2025-07-17T06:37:59.5120410Z adding 'torch/_strobelight/compile_time_profiler.py' 2025-07-17T06:37:59.5121370Z adding 'torch/_subclasses/__init__.py' 2025-07-17T06:37:59.5126020Z adding 'torch/_subclasses/_fake_tensor_utils.py' 2025-07-17T06:37:59.5131840Z adding 'torch/_subclasses/fake_impls.py' 2025-07-17T06:37:59.5162230Z adding 'torch/_subclasses/fake_tensor.py' 2025-07-17T06:37:59.5165560Z adding 'torch/_subclasses/fake_utils.py' 2025-07-17T06:37:59.5172480Z adding 'torch/_subclasses/functional_tensor.py' 2025-07-17T06:37:59.5190430Z adding 'torch/_subclasses/meta_utils.py' 2025-07-17T06:37:59.5192990Z adding 'torch/_subclasses/schema_check_mode.py' 2025-07-17T06:37:59.5193870Z adding 'torch/_vendor/__init__.py' 2025-07-17T06:37:59.5195080Z adding 'torch/_vendor/packaging/__init__.py' 2025-07-17T06:37:59.5196090Z adding 'torch/_vendor/packaging/_structures.py' 2025-07-17T06:37:59.5199850Z adding 'torch/_vendor/packaging/version.py' 2025-07-17T06:37:59.5202480Z adding 'torch/accelerator/__init__.py' 2025-07-17T06:37:59.5203200Z adding 'torch/accelerator/_utils.py' 2025-07-17T06:37:59.5205270Z adding 'torch/accelerator/memory.py' 2025-07-17T06:37:59.5206080Z adding 'torch/amp/__init__.py' 2025-07-17T06:37:59.5211050Z adding 'torch/amp/autocast_mode.py' 2025-07-17T06:37:59.5217630Z adding 'torch/amp/grad_scaler.py' 2025-07-17T06:37:59.5218740Z adding 'torch/ao/__init__.py' 2025-07-17T06:37:59.5220100Z adding 'torch/ao/nn/__init__.py' 2025-07-17T06:37:59.5221550Z adding 'torch/ao/nn/intrinsic/__init__.py' 2025-07-17T06:37:59.5222790Z adding 'torch/ao/nn/intrinsic/modules/__init__.py' 2025-07-17T06:37:59.5224800Z adding 'torch/ao/nn/intrinsic/modules/fused.py' 2025-07-17T06:37:59.5225510Z adding 'torch/ao/nn/intrinsic/qat/__init__.py' 2025-07-17T06:37:59.5226700Z adding 'torch/ao/nn/intrinsic/qat/modules/__init__.py' 2025-07-17T06:37:59.5231860Z adding 'torch/ao/nn/intrinsic/qat/modules/conv_fused.py' 2025-07-17T06:37:59.5233950Z adding 'torch/ao/nn/intrinsic/qat/modules/linear_fused.py' 2025-07-17T06:37:59.5234810Z adding 'torch/ao/nn/intrinsic/qat/modules/linear_relu.py' 2025-07-17T06:37:59.5235860Z adding 'torch/ao/nn/intrinsic/quantized/__init__.py' 2025-07-17T06:37:59.5238060Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/__init__.py' 2025-07-17T06:37:59.5238860Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/modules/__init__.py' 2025-07-17T06:37:59.5240080Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/modules/linear_relu.py' 2025-07-17T06:37:59.5241150Z adding 'torch/ao/nn/intrinsic/quantized/modules/__init__.py' 2025-07-17T06:37:59.5242300Z adding 'torch/ao/nn/intrinsic/quantized/modules/bn_relu.py' 2025-07-17T06:37:59.5243650Z adding 'torch/ao/nn/intrinsic/quantized/modules/conv_add.py' 2025-07-17T06:37:59.5245230Z adding 'torch/ao/nn/intrinsic/quantized/modules/conv_relu.py' 2025-07-17T06:37:59.5246800Z adding 'torch/ao/nn/intrinsic/quantized/modules/linear_relu.py' 2025-07-17T06:37:59.5247720Z adding 'torch/ao/nn/qat/__init__.py' 2025-07-17T06:37:59.5248710Z adding 'torch/ao/nn/qat/dynamic/__init__.py' 2025-07-17T06:37:59.5249800Z adding 'torch/ao/nn/qat/dynamic/modules/__init__.py' 2025-07-17T06:37:59.5250920Z adding 'torch/ao/nn/qat/dynamic/modules/linear.py' 2025-07-17T06:37:59.5251950Z adding 'torch/ao/nn/qat/modules/__init__.py' 2025-07-17T06:37:59.5254190Z adding 'torch/ao/nn/qat/modules/conv.py' 2025-07-17T06:37:59.5255990Z adding 'torch/ao/nn/qat/modules/embedding_ops.py' 2025-07-17T06:37:59.5257060Z adding 'torch/ao/nn/qat/modules/linear.py' 2025-07-17T06:37:59.5258050Z adding 'torch/ao/nn/quantizable/__init__.py' 2025-07-17T06:37:59.5259130Z adding 'torch/ao/nn/quantizable/modules/__init__.py' 2025-07-17T06:37:59.5263820Z adding 'torch/ao/nn/quantizable/modules/activation.py' 2025-07-17T06:37:59.5268110Z adding 'torch/ao/nn/quantizable/modules/rnn.py' 2025-07-17T06:37:59.5269070Z adding 'torch/ao/nn/quantized/__init__.py' 2025-07-17T06:37:59.5273720Z adding 'torch/ao/nn/quantized/functional.py' 2025-07-17T06:37:59.5274710Z adding 'torch/ao/nn/quantized/dynamic/__init__.py' 2025-07-17T06:37:59.5275800Z adding 'torch/ao/nn/quantized/dynamic/modules/__init__.py' 2025-07-17T06:37:59.5278290Z adding 'torch/ao/nn/quantized/dynamic/modules/conv.py' 2025-07-17T06:37:59.5280080Z adding 'torch/ao/nn/quantized/dynamic/modules/linear.py' 2025-07-17T06:37:59.5288310Z adding 'torch/ao/nn/quantized/dynamic/modules/rnn.py' 2025-07-17T06:37:59.5290460Z adding 'torch/ao/nn/quantized/modules/__init__.py' 2025-07-17T06:37:59.5292780Z adding 'torch/ao/nn/quantized/modules/activation.py' 2025-07-17T06:37:59.5293920Z adding 'torch/ao/nn/quantized/modules/batchnorm.py' 2025-07-17T06:37:59.5299490Z adding 'torch/ao/nn/quantized/modules/conv.py' 2025-07-17T06:37:59.5300360Z adding 'torch/ao/nn/quantized/modules/dropout.py' 2025-07-17T06:37:59.5303310Z adding 'torch/ao/nn/quantized/modules/embedding_ops.py' 2025-07-17T06:37:59.5304910Z adding 'torch/ao/nn/quantized/modules/functional_modules.py' 2025-07-17T06:37:59.5308040Z adding 'torch/ao/nn/quantized/modules/linear.py' 2025-07-17T06:37:59.5309320Z adding 'torch/ao/nn/quantized/modules/normalization.py' 2025-07-17T06:37:59.5310550Z adding 'torch/ao/nn/quantized/modules/rnn.py' 2025-07-17T06:37:59.5312540Z adding 'torch/ao/nn/quantized/modules/utils.py' 2025-07-17T06:37:59.5313190Z adding 'torch/ao/nn/quantized/reference/__init__.py' 2025-07-17T06:37:59.5314370Z adding 'torch/ao/nn/quantized/reference/modules/__init__.py' 2025-07-17T06:37:59.5316650Z adding 'torch/ao/nn/quantized/reference/modules/conv.py' 2025-07-17T06:37:59.5317590Z adding 'torch/ao/nn/quantized/reference/modules/linear.py' 2025-07-17T06:37:59.5322060Z adding 'torch/ao/nn/quantized/reference/modules/rnn.py' 2025-07-17T06:37:59.5323160Z adding 'torch/ao/nn/quantized/reference/modules/sparse.py' 2025-07-17T06:37:59.5326090Z adding 'torch/ao/nn/quantized/reference/modules/utils.py' 2025-07-17T06:37:59.5326720Z adding 'torch/ao/nn/sparse/__init__.py' 2025-07-17T06:37:59.5327810Z adding 'torch/ao/nn/sparse/quantized/__init__.py' 2025-07-17T06:37:59.5330130Z adding 'torch/ao/nn/sparse/quantized/linear.py' 2025-07-17T06:37:59.5331270Z adding 'torch/ao/nn/sparse/quantized/utils.py' 2025-07-17T06:37:59.5332520Z adding 'torch/ao/nn/sparse/quantized/dynamic/__init__.py' 2025-07-17T06:37:59.5334760Z adding 'torch/ao/nn/sparse/quantized/dynamic/linear.py' 2025-07-17T06:37:59.5335530Z adding 'torch/ao/ns/__init__.py' 2025-07-17T06:37:59.5339500Z adding 'torch/ao/ns/_numeric_suite.py' 2025-07-17T06:37:59.5347340Z adding 'torch/ao/ns/_numeric_suite_fx.py' 2025-07-17T06:37:59.5348390Z adding 'torch/ao/ns/fx/__init__.py' 2025-07-17T06:37:59.5352960Z adding 'torch/ao/ns/fx/graph_matcher.py' 2025-07-17T06:37:59.5361530Z adding 'torch/ao/ns/fx/graph_passes.py' 2025-07-17T06:37:59.5364820Z adding 'torch/ao/ns/fx/mappings.py' 2025-07-17T06:37:59.5375240Z adding 'torch/ao/ns/fx/n_shadows_utils.py' 2025-07-17T06:37:59.5376440Z adding 'torch/ao/ns/fx/ns_types.py' 2025-07-17T06:37:59.5378770Z adding 'torch/ao/ns/fx/pattern_utils.py' 2025-07-17T06:37:59.5381170Z adding 'torch/ao/ns/fx/qconfig_multi_mapping.py' 2025-07-17T06:37:59.5385210Z adding 'torch/ao/ns/fx/utils.py' 2025-07-17T06:37:59.5387530Z adding 'torch/ao/ns/fx/weight_utils.py' 2025-07-17T06:37:59.5388500Z adding 'torch/ao/pruning/__init__.py' 2025-07-17T06:37:59.5389350Z adding 'torch/ao/pruning/_mappings.py' 2025-07-17T06:37:59.5390440Z adding 'torch/ao/pruning/_experimental/__init__.py' 2025-07-17T06:37:59.5391560Z adding 'torch/ao/pruning/_experimental/activation_sparsifier/__init__.py' 2025-07-17T06:37:59.5396100Z adding 'torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py' 2025-07-17T06:37:59.5396850Z adding 'torch/ao/pruning/_experimental/data_scheduler/__init__.py' 2025-07-17T06:37:59.5399210Z adding 'torch/ao/pruning/_experimental/data_scheduler/base_data_scheduler.py' 2025-07-17T06:37:59.5399970Z adding 'torch/ao/pruning/_experimental/data_sparsifier/__init__.py' 2025-07-17T06:37:59.5403580Z adding 'torch/ao/pruning/_experimental/data_sparsifier/base_data_sparsifier.py' 2025-07-17T06:37:59.5405730Z adding 'torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py' 2025-07-17T06:37:59.5407090Z adding 'torch/ao/pruning/_experimental/data_sparsifier/quantization_utils.py' 2025-07-17T06:37:59.5408080Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/__init__.py' 2025-07-17T06:37:59.5409080Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/__init__.py' 2025-07-17T06:37:59.5410200Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/_data_sparstity_utils.py' 2025-07-17T06:37:59.5411850Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/data_sparsity.py' 2025-07-17T06:37:59.5413450Z adding 'torch/ao/pruning/_experimental/pruner/FPGM_pruner.py' 2025-07-17T06:37:59.5414270Z adding 'torch/ao/pruning/_experimental/pruner/__init__.py' 2025-07-17T06:37:59.5417050Z adding 'torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py' 2025-07-17T06:37:59.5417910Z adding 'torch/ao/pruning/_experimental/pruner/lstm_saliency_pruner.py' 2025-07-17T06:37:59.5418970Z adding 'torch/ao/pruning/_experimental/pruner/match_utils.py' 2025-07-17T06:37:59.5420110Z adding 'torch/ao/pruning/_experimental/pruner/parametrization.py' 2025-07-17T06:37:59.5424020Z adding 'torch/ao/pruning/_experimental/pruner/prune_functions.py' 2025-07-17T06:37:59.5424830Z adding 'torch/ao/pruning/_experimental/pruner/saliency_pruner.py' 2025-07-17T06:37:59.5425780Z adding 'torch/ao/pruning/scheduler/__init__.py' 2025-07-17T06:37:59.5427930Z adding 'torch/ao/pruning/scheduler/base_scheduler.py' 2025-07-17T06:37:59.5429050Z adding 'torch/ao/pruning/scheduler/cubic_scheduler.py' 2025-07-17T06:37:59.5430260Z adding 'torch/ao/pruning/scheduler/lambda_scheduler.py' 2025-07-17T06:37:59.5431300Z adding 'torch/ao/pruning/sparsifier/__init__.py' 2025-07-17T06:37:59.5434760Z adding 'torch/ao/pruning/sparsifier/base_sparsifier.py' 2025-07-17T06:37:59.5436050Z adding 'torch/ao/pruning/sparsifier/nearly_diagonal_sparsifier.py' 2025-07-17T06:37:59.5438140Z adding 'torch/ao/pruning/sparsifier/utils.py' 2025-07-17T06:37:59.5440480Z adding 'torch/ao/pruning/sparsifier/weight_norm_sparsifier.py' 2025-07-17T06:37:59.5442740Z adding 'torch/ao/quantization/__init__.py' 2025-07-17T06:37:59.5444510Z adding 'torch/ao/quantization/_correct_bias.py' 2025-07-17T06:37:59.5447170Z adding 'torch/ao/quantization/_equalize.py' 2025-07-17T06:37:59.5449290Z adding 'torch/ao/quantization/_learnable_fake_quantize.py' 2025-07-17T06:37:59.5453280Z adding 'torch/ao/quantization/fake_quantize.py' 2025-07-17T06:37:59.5455460Z adding 'torch/ao/quantization/fuse_modules.py' 2025-07-17T06:37:59.5457660Z adding 'torch/ao/quantization/fuser_method_mappings.py' 2025-07-17T06:37:59.5473200Z adding 'torch/ao/quantization/observer.py' 2025-07-17T06:37:59.5478060Z adding 'torch/ao/quantization/qconfig.py' 2025-07-17T06:37:59.5481230Z adding 'torch/ao/quantization/qconfig_mapping.py' 2025-07-17T06:37:59.5482230Z adding 'torch/ao/quantization/quant_type.py' 2025-07-17T06:37:59.5485060Z adding 'torch/ao/quantization/quantization_mappings.py' 2025-07-17T06:37:59.5491250Z adding 'torch/ao/quantization/quantize.py' 2025-07-17T06:37:59.5496880Z adding 'torch/ao/quantization/quantize_fx.py' 2025-07-17T06:37:59.5500140Z adding 'torch/ao/quantization/quantize_jit.py' 2025-07-17T06:37:59.5502490Z adding 'torch/ao/quantization/quantize_pt2e.py' 2025-07-17T06:37:59.5503390Z adding 'torch/ao/quantization/stubs.py' 2025-07-17T06:37:59.5510090Z adding 'torch/ao/quantization/utils.py' 2025-07-17T06:37:59.5511470Z adding 'torch/ao/quantization/backend_config/__init__.py' 2025-07-17T06:37:59.5516070Z adding 'torch/ao/quantization/backend_config/_common_operator_config_utils.py' 2025-07-17T06:37:59.5517600Z adding 'torch/ao/quantization/backend_config/_qnnpack_pt2e.py' 2025-07-17T06:37:59.5523590Z adding 'torch/ao/quantization/backend_config/backend_config.py' 2025-07-17T06:37:59.5526430Z adding 'torch/ao/quantization/backend_config/executorch.py' 2025-07-17T06:37:59.5527400Z adding 'torch/ao/quantization/backend_config/fbgemm.py' 2025-07-17T06:37:59.5528960Z adding 'torch/ao/quantization/backend_config/native.py' 2025-07-17T06:37:59.5529800Z adding 'torch/ao/quantization/backend_config/observation_type.py' 2025-07-17T06:37:59.5532940Z adding 'torch/ao/quantization/backend_config/onednn.py' 2025-07-17T06:37:59.5534110Z adding 'torch/ao/quantization/backend_config/qnnpack.py' 2025-07-17T06:37:59.5535520Z adding 'torch/ao/quantization/backend_config/tensorrt.py' 2025-07-17T06:37:59.5538700Z adding 'torch/ao/quantization/backend_config/utils.py' 2025-07-17T06:37:59.5539810Z adding 'torch/ao/quantization/backend_config/x86.py' 2025-07-17T06:37:59.5541140Z adding 'torch/ao/quantization/fx/__init__.py' 2025-07-17T06:37:59.5547250Z adding 'torch/ao/quantization/fx/_decomposed.py' 2025-07-17T06:37:59.5555280Z adding 'torch/ao/quantization/fx/_equalize.py' 2025-07-17T06:37:59.5565250Z adding 'torch/ao/quantization/fx/_lower_to_native_backend.py' 2025-07-17T06:37:59.5577100Z adding 'torch/ao/quantization/fx/convert.py' 2025-07-17T06:37:59.5580500Z adding 'torch/ao/quantization/fx/custom_config.py' 2025-07-17T06:37:59.5582740Z adding 'torch/ao/quantization/fx/fuse.py' 2025-07-17T06:37:59.5584070Z adding 'torch/ao/quantization/fx/fuse_handler.py' 2025-07-17T06:37:59.5586090Z adding 'torch/ao/quantization/fx/graph_module.py' 2025-07-17T06:37:59.5586670Z adding 'torch/ao/quantization/fx/lower_to_fbgemm.py' 2025-07-17T06:37:59.5587620Z adding 'torch/ao/quantization/fx/lower_to_qnnpack.py' 2025-07-17T06:37:59.5590170Z adding 'torch/ao/quantization/fx/lstm_utils.py' 2025-07-17T06:37:59.5592500Z adding 'torch/ao/quantization/fx/match_utils.py' 2025-07-17T06:37:59.5593620Z adding 'torch/ao/quantization/fx/pattern_utils.py' 2025-07-17T06:37:59.5612810Z adding 'torch/ao/quantization/fx/prepare.py' 2025-07-17T06:37:59.5616700Z adding 'torch/ao/quantization/fx/qconfig_mapping_utils.py' 2025-07-17T06:37:59.5618780Z adding 'torch/ao/quantization/fx/quantize_handler.py' 2025-07-17T06:37:59.5619400Z adding 'torch/ao/quantization/fx/tracer.py' 2025-07-17T06:37:59.5627620Z adding 'torch/ao/quantization/fx/utils.py' 2025-07-17T06:37:59.5628710Z adding 'torch/ao/quantization/fx/_model_report/__init__.py' 2025-07-17T06:37:59.5643020Z adding 'torch/ao/quantization/fx/_model_report/detector.py' 2025-07-17T06:37:59.5649740Z adding 'torch/ao/quantization/fx/_model_report/model_report.py' 2025-07-17T06:37:59.5652700Z adding 'torch/ao/quantization/fx/_model_report/model_report_observer.py' 2025-07-17T06:37:59.5659300Z adding 'torch/ao/quantization/fx/_model_report/model_report_visualizer.py' 2025-07-17T06:37:59.5660290Z adding 'torch/ao/quantization/pt2e/__init__.py' 2025-07-17T06:37:59.5666570Z adding 'torch/ao/quantization/pt2e/_affine_quantization.py' 2025-07-17T06:37:59.5669760Z adding 'torch/ao/quantization/pt2e/_numeric_debugger.py' 2025-07-17T06:37:59.5670830Z adding 'torch/ao/quantization/pt2e/duplicate_dq_pass.py' 2025-07-17T06:37:59.5673150Z adding 'torch/ao/quantization/pt2e/export_utils.py' 2025-07-17T06:37:59.5674740Z adding 'torch/ao/quantization/pt2e/graph_utils.py' 2025-07-17T06:37:59.5675860Z adding 'torch/ao/quantization/pt2e/lowering.py' 2025-07-17T06:37:59.5678500Z adding 'torch/ao/quantization/pt2e/port_metadata_pass.py' 2025-07-17T06:37:59.5683570Z adding 'torch/ao/quantization/pt2e/prepare.py' 2025-07-17T06:37:59.5690760Z adding 'torch/ao/quantization/pt2e/qat_utils.py' 2025-07-17T06:37:59.5695820Z adding 'torch/ao/quantization/pt2e/utils.py' 2025-07-17T06:37:59.5696790Z adding 'torch/ao/quantization/pt2e/representation/__init__.py' 2025-07-17T06:37:59.5701340Z adding 'torch/ao/quantization/pt2e/representation/rewrite.py' 2025-07-17T06:37:59.5702340Z adding 'torch/ao/quantization/quantizer/__init__.py' 2025-07-17T06:37:59.5703700Z adding 'torch/ao/quantization/quantizer/composable_quantizer.py' 2025-07-17T06:37:59.5705110Z adding 'torch/ao/quantization/quantizer/embedding_quantizer.py' 2025-07-17T06:37:59.5707410Z adding 'torch/ao/quantization/quantizer/quantizer.py' 2025-07-17T06:37:59.5708470Z adding 'torch/ao/quantization/quantizer/utils.py' 2025-07-17T06:37:59.5718670Z adding 'torch/ao/quantization/quantizer/x86_inductor_quantizer.py' 2025-07-17T06:37:59.5722200Z adding 'torch/ao/quantization/quantizer/xnnpack_quantizer.py' 2025-07-17T06:37:59.5728500Z adding 'torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py' 2025-07-17T06:37:59.5730030Z adding 'torch/ao/quantization/quantizer/xpu_inductor_quantizer.py' 2025-07-17T06:37:59.5736080Z adding 'torch/autograd/__init__.py' 2025-07-17T06:37:59.5737500Z adding 'torch/autograd/anomaly_mode.py' 2025-07-17T06:37:59.5739930Z adding 'torch/autograd/forward_ad.py' 2025-07-17T06:37:59.5746770Z adding 'torch/autograd/function.py' 2025-07-17T06:37:59.5756260Z adding 'torch/autograd/functional.py' 2025-07-17T06:37:59.5759340Z adding 'torch/autograd/grad_mode.py' 2025-07-17T06:37:59.5779330Z adding 'torch/autograd/gradcheck.py' 2025-07-17T06:37:59.5786210Z adding 'torch/autograd/graph.py' 2025-07-17T06:37:59.5796280Z adding 'torch/autograd/profiler.py' 2025-07-17T06:37:59.5799190Z adding 'torch/autograd/profiler_legacy.py' 2025-07-17T06:37:59.5807970Z adding 'torch/autograd/profiler_util.py' 2025-07-17T06:37:59.5808760Z adding 'torch/autograd/variable.py' 2025-07-17T06:37:59.5809940Z adding 'torch/autograd/_functions/__init__.py' 2025-07-17T06:37:59.5811100Z adding 'torch/autograd/_functions/tensor.py' 2025-07-17T06:37:59.5812270Z adding 'torch/autograd/_functions/utils.py' 2025-07-17T06:37:59.5814230Z adding 'torch/backends/__init__.py' 2025-07-17T06:37:59.5815440Z adding 'torch/backends/_coreml/__init__.py' 2025-07-17T06:37:59.5817260Z adding 'torch/backends/_coreml/preprocess.py' 2025-07-17T06:37:59.5817950Z adding 'torch/backends/_nnapi/__init__.py' 2025-07-17T06:37:59.5820080Z adding 'torch/backends/_nnapi/prepare.py' 2025-07-17T06:37:59.5834620Z adding 'torch/backends/_nnapi/serializer.py' 2025-07-17T06:37:59.5836020Z adding 'torch/backends/cpu/__init__.py' 2025-07-17T06:37:59.5839810Z adding 'torch/backends/cuda/__init__.py' 2025-07-17T06:37:59.5842030Z adding 'torch/backends/cudnn/__init__.py' 2025-07-17T06:37:59.5843090Z adding 'torch/backends/cudnn/rnn.py' 2025-07-17T06:37:59.5844310Z adding 'torch/backends/cusparselt/__init__.py' 2025-07-17T06:37:59.5845300Z adding 'torch/backends/kleidiai/__init__.py' 2025-07-17T06:37:59.5846400Z adding 'torch/backends/mha/__init__.py' 2025-07-17T06:37:59.5847750Z adding 'torch/backends/mkl/__init__.py' 2025-07-17T06:37:59.5849620Z adding 'torch/backends/mkldnn/__init__.py' 2025-07-17T06:37:59.5850570Z adding 'torch/backends/mps/__init__.py' 2025-07-17T06:37:59.5851650Z adding 'torch/backends/nnpack/__init__.py' 2025-07-17T06:37:59.5852730Z adding 'torch/backends/openmp/__init__.py' 2025-07-17T06:37:59.5854750Z adding 'torch/backends/opt_einsum/__init__.py' 2025-07-17T06:37:59.5855620Z adding 'torch/backends/quantized/__init__.py' 2025-07-17T06:37:59.5856480Z adding 'torch/backends/xeon/__init__.py' 2025-07-17T06:37:59.5863610Z adding 'torch/backends/xeon/run_cpu.py' 2025-07-17T06:37:59.5864880Z adding 'torch/backends/xnnpack/__init__.py' 2025-07-17T06:37:59.6961390Z adding 'torch/bin/protoc' 2025-07-17T06:37:59.8076140Z adding 'torch/bin/protoc-3.13.0.0' 2025-07-17T06:37:59.8104030Z adding 'torch/bin/torch_shm_manager' 2025-07-17T06:37:59.8110450Z adding 'torch/compiler/__init__.py' 2025-07-17T06:37:59.8113730Z adding 'torch/compiler/_cache.py' 2025-07-17T06:37:59.8115110Z adding 'torch/compiler/config.py' 2025-07-17T06:37:59.8116240Z adding 'torch/contrib/__init__.py' 2025-07-17T06:37:59.8118430Z adding 'torch/contrib/_tensorboard_vis.py' 2025-07-17T06:37:59.8120510Z adding 'torch/cpu/__init__.py' 2025-07-17T06:37:59.8121310Z adding 'torch/cpu/amp/__init__.py' 2025-07-17T06:37:59.8122430Z adding 'torch/cpu/amp/autocast_mode.py' 2025-07-17T06:37:59.8123410Z adding 'torch/cpu/amp/grad_scaler.py' 2025-07-17T06:37:59.8125730Z adding 'torch/csrc/inductor/aoti_runtime/model.h' 2025-07-17T06:37:59.8139090Z adding 'torch/cuda/__init__.py' 2025-07-17T06:37:59.8140210Z adding 'torch/cuda/_gpu_trace.py' 2025-07-17T06:37:59.8146530Z adding 'torch/cuda/_memory_viz.py' 2025-07-17T06:37:59.8147380Z adding 'torch/cuda/_pin_memory_utils.py' 2025-07-17T06:37:59.8152170Z adding 'torch/cuda/_sanitizer.py' 2025-07-17T06:37:59.8155300Z adding 'torch/cuda/_utils.py' 2025-07-17T06:37:59.8156140Z adding 'torch/cuda/comm.py' 2025-07-17T06:37:59.8156940Z adding 'torch/cuda/error.py' 2025-07-17T06:37:59.8158880Z adding 'torch/cuda/gds.py' 2025-07-17T06:37:59.8164430Z adding 'torch/cuda/graphs.py' 2025-07-17T06:37:59.8166610Z adding 'torch/cuda/jiterator.py' 2025-07-17T06:37:59.8176170Z adding 'torch/cuda/memory.py' 2025-07-17T06:37:59.8177920Z adding 'torch/cuda/nccl.py' 2025-07-17T06:37:59.8179670Z adding 'torch/cuda/nvtx.py' 2025-07-17T06:37:59.8180670Z adding 'torch/cuda/profiler.py' 2025-07-17T06:37:59.8182160Z adding 'torch/cuda/random.py' 2025-07-17T06:37:59.8182990Z adding 'torch/cuda/sparse.py' 2025-07-17T06:37:59.8185760Z adding 'torch/cuda/streams.py' 2025-07-17T06:37:59.8192340Z adding 'torch/cuda/tunable.py' 2025-07-17T06:37:59.8193280Z adding 'torch/cuda/amp/__init__.py' 2025-07-17T06:37:59.8194460Z adding 'torch/cuda/amp/autocast_mode.py' 2025-07-17T06:37:59.8195510Z adding 'torch/cuda/amp/common.py' 2025-07-17T06:37:59.8196480Z adding 'torch/cuda/amp/grad_scaler.py' 2025-07-17T06:37:59.8198940Z adding 'torch/distributed/__init__.py' 2025-07-17T06:37:59.8199680Z adding 'torch/distributed/_checkpointable.py' 2025-07-17T06:37:59.8201030Z adding 'torch/distributed/_composable_state.py' 2025-07-17T06:37:59.8202820Z adding 'torch/distributed/_dist2.py' 2025-07-17T06:37:59.8211450Z adding 'torch/distributed/_functional_collectives.py' 2025-07-17T06:37:59.8216390Z adding 'torch/distributed/_functional_collectives_impl.py' 2025-07-17T06:37:59.8216660Z adding 'torch/distributed/_serialization.py' 2025-07-17T06:37:59.8220760Z adding 'torch/distributed/_state_dict_utils.py' 2025-07-17T06:37:59.8221970Z adding 'torch/distributed/argparse_util.py' 2025-07-17T06:37:59.8223260Z adding 'torch/distributed/c10d_logger.py' 2025-07-17T06:37:59.8225650Z adding 'torch/distributed/collective_utils.py' 2025-07-17T06:37:59.8226620Z adding 'torch/distributed/constants.py' 2025-07-17T06:37:59.8237140Z adding 'torch/distributed/device_mesh.py' 2025-07-17T06:37:59.8283310Z adding 'torch/distributed/distributed_c10d.py' 2025-07-17T06:37:59.8286800Z adding 'torch/distributed/launch.py' 2025-07-17T06:37:59.8287630Z adding 'torch/distributed/logging_handlers.py' 2025-07-17T06:37:59.8289640Z adding 'torch/distributed/remote_device.py' 2025-07-17T06:37:59.8292260Z adding 'torch/distributed/rendezvous.py' 2025-07-17T06:37:59.8299390Z adding 'torch/distributed/run.py' 2025-07-17T06:37:59.8302600Z adding 'torch/distributed/utils.py' 2025-07-17T06:37:59.8304150Z adding 'torch/distributed/_composable/__init__.py' 2025-07-17T06:37:59.8306450Z adding 'torch/distributed/_composable/checkpoint_activation.py' 2025-07-17T06:37:59.8308730Z adding 'torch/distributed/_composable/contract.py' 2025-07-17T06:37:59.8311240Z adding 'torch/distributed/_composable/replicate.py' 2025-07-17T06:37:59.8312140Z adding 'torch/distributed/_composable/fsdp/__init__.py' 2025-07-17T06:37:59.8313360Z adding 'torch/distributed/_composable/fsdp/fully_shard.py' 2025-07-17T06:37:59.8314500Z adding 'torch/distributed/_shard/__init__.py' 2025-07-17T06:37:59.8315530Z adding 'torch/distributed/_shard/_utils.py' 2025-07-17T06:37:59.8318750Z adding 'torch/distributed/_shard/api.py' 2025-07-17T06:37:59.8319940Z adding 'torch/distributed/_shard/common_op_utils.py' 2025-07-17T06:37:59.8321120Z adding 'torch/distributed/_shard/metadata.py' 2025-07-17T06:37:59.8322140Z adding 'torch/distributed/_shard/op_registry_utils.py' 2025-07-17T06:37:59.8323100Z adding 'torch/distributed/_shard/sharder.py' 2025-07-17T06:37:59.8324610Z adding 'torch/distributed/_shard/checkpoint/__init__.py' 2025-07-17T06:37:59.8325980Z adding 'torch/distributed/_shard/sharded_optim/__init__.py' 2025-07-17T06:37:59.8327480Z adding 'torch/distributed/_shard/sharded_optim/api.py' 2025-07-17T06:37:59.8330980Z adding 'torch/distributed/_shard/sharded_tensor/__init__.py' 2025-07-17T06:37:59.8341770Z adding 'torch/distributed/_shard/sharded_tensor/api.py' 2025-07-17T06:37:59.8342970Z adding 'torch/distributed/_shard/sharded_tensor/logger.py' 2025-07-17T06:37:59.8343900Z adding 'torch/distributed/_shard/sharded_tensor/logging_handlers.py' 2025-07-17T06:37:59.8345380Z adding 'torch/distributed/_shard/sharded_tensor/metadata.py' 2025-07-17T06:37:59.8347920Z adding 'torch/distributed/_shard/sharded_tensor/reshard.py' 2025-07-17T06:37:59.8348860Z adding 'torch/distributed/_shard/sharded_tensor/shard.py' 2025-07-17T06:37:59.8351690Z adding 'torch/distributed/_shard/sharded_tensor/utils.py' 2025-07-17T06:37:59.8352880Z adding 'torch/distributed/_shard/sharded_tensor/_ops/__init__.py' 2025-07-17T06:37:59.8354390Z adding 'torch/distributed/_shard/sharded_tensor/_ops/_common.py' 2025-07-17T06:37:59.8355570Z adding 'torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py' 2025-07-17T06:37:59.8357200Z adding 'torch/distributed/_shard/sharded_tensor/_ops/init.py' 2025-07-17T06:37:59.8358220Z adding 'torch/distributed/_shard/sharded_tensor/_ops/misc_ops.py' 2025-07-17T06:37:59.8360430Z adding 'torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py' 2025-07-17T06:37:59.8361150Z adding 'torch/distributed/_shard/sharding_plan/__init__.py' 2025-07-17T06:37:59.8362560Z adding 'torch/distributed/_shard/sharding_plan/api.py' 2025-07-17T06:37:59.8363830Z adding 'torch/distributed/_shard/sharding_spec/__init__.py' 2025-07-17T06:37:59.8366480Z adding 'torch/distributed/_shard/sharding_spec/_internals.py' 2025-07-17T06:37:59.8368930Z adding 'torch/distributed/_shard/sharding_spec/api.py' 2025-07-17T06:37:59.8371330Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py' 2025-07-17T06:37:59.8372330Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/__init__.py' 2025-07-17T06:37:59.8375700Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py' 2025-07-17T06:37:59.8378380Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding.py' 2025-07-17T06:37:59.8382320Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py' 2025-07-17T06:37:59.8383390Z adding 'torch/distributed/_sharded_tensor/__init__.py' 2025-07-17T06:37:59.8384490Z adding 'torch/distributed/_sharding_spec/__init__.py' 2025-07-17T06:37:59.8397200Z adding 'torch/distributed/_symmetric_memory/__init__.py' 2025-07-17T06:37:59.8398790Z adding 'torch/distributed/_symmetric_memory/_nvshmem_triton.py' 2025-07-17T06:37:59.8399960Z adding 'torch/distributed/_tensor/__init__.py' 2025-07-17T06:37:59.8401020Z adding 'torch/distributed/_tensor/api.py' 2025-07-17T06:37:59.8401900Z adding 'torch/distributed/_tensor/placement_types.py' 2025-07-17T06:37:59.8403000Z adding 'torch/distributed/_tools/__init__.py' 2025-07-17T06:37:59.8403960Z adding 'torch/distributed/_tools/common_utils.py' 2025-07-17T06:37:59.8406530Z adding 'torch/distributed/_tools/fake_collectives.py' 2025-07-17T06:37:59.8410990Z adding 'torch/distributed/_tools/fsdp2_mem_tracker.py' 2025-07-17T06:37:59.8413600Z adding 'torch/distributed/_tools/ilp_utils.py' 2025-07-17T06:37:59.8422310Z adding 'torch/distributed/_tools/mem_tracker.py' 2025-07-17T06:37:59.8425270Z adding 'torch/distributed/_tools/memory_tracker.py' 2025-07-17T06:37:59.8427700Z adding 'torch/distributed/_tools/mod_tracker.py' 2025-07-17T06:37:59.8432020Z adding 'torch/distributed/_tools/runtime_estimator.py' 2025-07-17T06:37:59.8440490Z adding 'torch/distributed/_tools/sac_estimator.py' 2025-07-17T06:37:59.8443520Z adding 'torch/distributed/_tools/sac_ilp.py' 2025-07-17T06:37:59.8444360Z adding 'torch/distributed/algorithms/__init__.py' 2025-07-17T06:37:59.8448060Z adding 'torch/distributed/algorithms/join.py' 2025-07-17T06:37:59.8449040Z adding 'torch/distributed/algorithms/_checkpoint/__init__.py' 2025-07-17T06:37:59.8452240Z adding 'torch/distributed/algorithms/_checkpoint/checkpoint_wrapper.py' 2025-07-17T06:37:59.8453010Z adding 'torch/distributed/algorithms/_comm_hooks/__init__.py' 2025-07-17T06:37:59.8455390Z adding 'torch/distributed/algorithms/_comm_hooks/default_hooks.py' 2025-07-17T06:37:59.8456190Z adding 'torch/distributed/algorithms/_optimizer_overlap/__init__.py' 2025-07-17T06:37:59.8457550Z adding 'torch/distributed/algorithms/_optimizer_overlap/optimizer_overlap.py' 2025-07-17T06:37:59.8458480Z adding 'torch/distributed/algorithms/_quantization/__init__.py' 2025-07-17T06:37:59.8460570Z adding 'torch/distributed/algorithms/_quantization/quantization.py' 2025-07-17T06:37:59.8461930Z adding 'torch/distributed/algorithms/ddp_comm_hooks/__init__.py' 2025-07-17T06:37:59.8466030Z adding 'torch/distributed/algorithms/ddp_comm_hooks/ddp_zero_hook.py' 2025-07-17T06:37:59.8466830Z adding 'torch/distributed/algorithms/ddp_comm_hooks/debugging_hooks.py' 2025-07-17T06:37:59.8469200Z adding 'torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py' 2025-07-17T06:37:59.8470400Z adding 'torch/distributed/algorithms/ddp_comm_hooks/mixed_precision_hooks.py' 2025-07-17T06:37:59.8472620Z adding 'torch/distributed/algorithms/ddp_comm_hooks/optimizer_overlap_hooks.py' 2025-07-17T06:37:59.8473880Z adding 'torch/distributed/algorithms/ddp_comm_hooks/post_localSGD_hook.py' 2025-07-17T06:37:59.8482140Z adding 'torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py' 2025-07-17T06:37:59.8484440Z adding 'torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py' 2025-07-17T06:37:59.8486100Z adding 'torch/distributed/algorithms/model_averaging/__init__.py' 2025-07-17T06:37:59.8488270Z adding 'torch/distributed/algorithms/model_averaging/averagers.py' 2025-07-17T06:37:59.8490680Z adding 'torch/distributed/algorithms/model_averaging/hierarchical_model_averager.py' 2025-07-17T06:37:59.8491740Z adding 'torch/distributed/algorithms/model_averaging/utils.py' 2025-07-17T06:37:59.8493040Z adding 'torch/distributed/autograd/__init__.py' 2025-07-17T06:37:59.8494600Z adding 'torch/distributed/checkpoint/__init__.py' 2025-07-17T06:37:59.8495580Z adding 'torch/distributed/checkpoint/_async_executor.py' 2025-07-17T06:37:59.8498490Z adding 'torch/distributed/checkpoint/_async_process_executor.py' 2025-07-17T06:37:59.8499490Z adding 'torch/distributed/checkpoint/_async_thread_executor.py' 2025-07-17T06:37:59.8500980Z adding 'torch/distributed/checkpoint/_checkpointer.py' 2025-07-17T06:37:59.8508230Z adding 'torch/distributed/checkpoint/_consolidate_hf_safetensors.py' 2025-07-17T06:37:59.8509320Z adding 'torch/distributed/checkpoint/_dedup_save_plans.py' 2025-07-17T06:37:59.8510720Z adding 'torch/distributed/checkpoint/_dedup_tensors.py' 2025-07-17T06:37:59.8512990Z adding 'torch/distributed/checkpoint/_extension.py' 2025-07-17T06:37:59.8514400Z adding 'torch/distributed/checkpoint/_fsspec_filesystem.py' 2025-07-17T06:37:59.8515630Z adding 'torch/distributed/checkpoint/_hf_utils.py' 2025-07-17T06:37:59.8517070Z adding 'torch/distributed/checkpoint/_nested_dict.py' 2025-07-17T06:37:59.8519970Z adding 'torch/distributed/checkpoint/_pg_transport.py' 2025-07-17T06:37:59.8521150Z adding 'torch/distributed/checkpoint/_sharded_tensor_utils.py' 2025-07-17T06:37:59.8524530Z adding 'torch/distributed/checkpoint/_state_dict_stager.py' 2025-07-17T06:37:59.8525520Z adding 'torch/distributed/checkpoint/_storage_utils.py' 2025-07-17T06:37:59.8527590Z adding 'torch/distributed/checkpoint/_traverse.py' 2025-07-17T06:37:59.8528100Z adding 'torch/distributed/checkpoint/_version.py' 2025-07-17T06:37:59.8529130Z adding 'torch/distributed/checkpoint/api.py' 2025-07-17T06:37:59.8534870Z adding 'torch/distributed/checkpoint/default_planner.py' 2025-07-17T06:37:59.8541760Z adding 'torch/distributed/checkpoint/filesystem.py' 2025-07-17T06:37:59.8544390Z adding 'torch/distributed/checkpoint/format_utils.py' 2025-07-17T06:37:59.8547770Z adding 'torch/distributed/checkpoint/hf_storage.py' 2025-07-17T06:37:59.8548930Z adding 'torch/distributed/checkpoint/logger.py' 2025-07-17T06:37:59.8549810Z adding 'torch/distributed/checkpoint/logging_handlers.py' 2025-07-17T06:37:59.8551840Z adding 'torch/distributed/checkpoint/metadata.py' 2025-07-17T06:37:59.8555000Z adding 'torch/distributed/checkpoint/optimizer.py' 2025-07-17T06:37:59.8558640Z adding 'torch/distributed/checkpoint/planner.py' 2025-07-17T06:37:59.8562190Z adding 'torch/distributed/checkpoint/planner_helpers.py' 2025-07-17T06:37:59.8563070Z adding 'torch/distributed/checkpoint/resharding.py' 2025-07-17T06:37:59.8566780Z adding 'torch/distributed/checkpoint/staging.py' 2025-07-17T06:37:59.8577750Z adding 'torch/distributed/checkpoint/state_dict.py' 2025-07-17T06:37:59.8580910Z adding 'torch/distributed/checkpoint/state_dict_loader.py' 2025-07-17T06:37:59.8584620Z adding 'torch/distributed/checkpoint/state_dict_saver.py' 2025-07-17T06:37:59.8585410Z adding 'torch/distributed/checkpoint/stateful.py' 2025-07-17T06:37:59.8587760Z adding 'torch/distributed/checkpoint/storage.py' 2025-07-17T06:37:59.8591170Z adding 'torch/distributed/checkpoint/utils.py' 2025-07-17T06:37:59.8592740Z adding 'torch/distributed/checkpoint/_experimental/__init__.py' 2025-07-17T06:37:59.8595280Z adding 'torch/distributed/checkpoint/_experimental/barriers.py' 2025-07-17T06:37:59.8596650Z adding 'torch/distributed/checkpoint/_experimental/builder.py' 2025-07-17T06:37:59.8599730Z adding 'torch/distributed/checkpoint/_experimental/checkpoint_process.py' 2025-07-17T06:37:59.8602120Z adding 'torch/distributed/checkpoint/_experimental/checkpoint_reader.py' 2025-07-17T06:37:59.8603770Z adding 'torch/distributed/checkpoint/_experimental/checkpoint_writer.py' 2025-07-17T06:37:59.8606480Z adding 'torch/distributed/checkpoint/_experimental/checkpointer.py' 2025-07-17T06:37:59.8607330Z adding 'torch/distributed/checkpoint/_experimental/config.py' 2025-07-17T06:37:59.8609800Z adding 'torch/distributed/checkpoint/_experimental/staging.py' 2025-07-17T06:37:59.8610490Z adding 'torch/distributed/checkpoint/_experimental/types.py' 2025-07-17T06:37:59.8611520Z adding 'torch/distributed/checkpoint/_experimental/utils.py' 2025-07-17T06:37:59.8613560Z adding 'torch/distributed/elastic/__init__.py' 2025-07-17T06:37:59.8614240Z adding 'torch/distributed/elastic/control_plane.py' 2025-07-17T06:37:59.8615420Z adding 'torch/distributed/elastic/agent/__init__.py' 2025-07-17T06:37:59.8616800Z adding 'torch/distributed/elastic/agent/server/__init__.py' 2025-07-17T06:37:59.8625530Z adding 'torch/distributed/elastic/agent/server/api.py' 2025-07-17T06:37:59.8626520Z adding 'torch/distributed/elastic/agent/server/health_check_server.py' 2025-07-17T06:37:59.8630210Z adding 'torch/distributed/elastic/agent/server/local_elastic_agent.py' 2025-07-17T06:37:59.8632060Z adding 'torch/distributed/elastic/events/__init__.py' 2025-07-17T06:37:59.8633210Z adding 'torch/distributed/elastic/events/api.py' 2025-07-17T06:37:59.8634120Z adding 'torch/distributed/elastic/events/handlers.py' 2025-07-17T06:37:59.8636350Z adding 'torch/distributed/elastic/metrics/__init__.py' 2025-07-17T06:37:59.8637740Z adding 'torch/distributed/elastic/metrics/api.py' 2025-07-17T06:37:59.8640450Z adding 'torch/distributed/elastic/multiprocessing/__init__.py' 2025-07-17T06:37:59.8647550Z adding 'torch/distributed/elastic/multiprocessing/api.py' 2025-07-17T06:37:59.8648840Z adding 'torch/distributed/elastic/multiprocessing/redirects.py' 2025-07-17T06:37:59.8650930Z adding 'torch/distributed/elastic/multiprocessing/tail_log.py' 2025-07-17T06:37:59.8654680Z adding 'torch/distributed/elastic/multiprocessing/errors/__init__.py' 2025-07-17T06:37:59.8656390Z adding 'torch/distributed/elastic/multiprocessing/errors/error_handler.py' 2025-07-17T06:37:59.8657270Z adding 'torch/distributed/elastic/multiprocessing/errors/handlers.py' 2025-07-17T06:37:59.8658380Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/__init__.py' 2025-07-17T06:37:59.8659270Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/handlers.py' 2025-07-17T06:37:59.8660510Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/subprocess_handler.py' 2025-07-17T06:37:59.8662820Z adding 'torch/distributed/elastic/rendezvous/__init__.py' 2025-07-17T06:37:59.8663620Z adding 'torch/distributed/elastic/rendezvous/_etcd_stub.py' 2025-07-17T06:37:59.8666850Z adding 'torch/distributed/elastic/rendezvous/api.py' 2025-07-17T06:37:59.8669540Z adding 'torch/distributed/elastic/rendezvous/c10d_rendezvous_backend.py' 2025-07-17T06:37:59.8678750Z adding 'torch/distributed/elastic/rendezvous/dynamic_rendezvous.py' 2025-07-17T06:37:59.8687630Z adding 'torch/distributed/elastic/rendezvous/etcd_rendezvous.py' 2025-07-17T06:37:59.8689810Z adding 'torch/distributed/elastic/rendezvous/etcd_rendezvous_backend.py' 2025-07-17T06:37:59.8692180Z adding 'torch/distributed/elastic/rendezvous/etcd_server.py' 2025-07-17T06:37:59.8694440Z adding 'torch/distributed/elastic/rendezvous/etcd_store.py' 2025-07-17T06:37:59.8695390Z adding 'torch/distributed/elastic/rendezvous/registry.py' 2025-07-17T06:37:59.8696830Z adding 'torch/distributed/elastic/rendezvous/static_tcp_rendezvous.py' 2025-07-17T06:37:59.8699390Z adding 'torch/distributed/elastic/rendezvous/utils.py' 2025-07-17T06:37:59.8700540Z adding 'torch/distributed/elastic/timer/__init__.py' 2025-07-17T06:37:59.8703290Z adding 'torch/distributed/elastic/timer/api.py' 2025-07-17T06:37:59.8704040Z adding 'torch/distributed/elastic/timer/debug_info_logging.py' 2025-07-17T06:37:59.8707900Z adding 'torch/distributed/elastic/timer/file_based_local_timer.py' 2025-07-17T06:37:59.8709170Z adding 'torch/distributed/elastic/timer/local_timer.py' 2025-07-17T06:37:59.8710330Z adding 'torch/distributed/elastic/utils/__init__.py' 2025-07-17T06:37:59.8711400Z adding 'torch/distributed/elastic/utils/api.py' 2025-07-17T06:37:59.8713610Z adding 'torch/distributed/elastic/utils/distributed.py' 2025-07-17T06:37:59.8714260Z adding 'torch/distributed/elastic/utils/log_level.py' 2025-07-17T06:37:59.8715460Z adding 'torch/distributed/elastic/utils/logging.py' 2025-07-17T06:37:59.8717840Z adding 'torch/distributed/elastic/utils/store.py' 2025-07-17T06:37:59.8718770Z adding 'torch/distributed/elastic/utils/data/__init__.py' 2025-07-17T06:37:59.8719890Z adding 'torch/distributed/elastic/utils/data/cycling_iterator.py' 2025-07-17T06:37:59.8721240Z adding 'torch/distributed/elastic/utils/data/elastic_distributed_sampler.py' 2025-07-17T06:37:59.8722530Z adding 'torch/distributed/fsdp/__init__.py' 2025-07-17T06:37:59.8728110Z adding 'torch/distributed/fsdp/_common_utils.py' 2025-07-17T06:37:59.8729620Z adding 'torch/distributed/fsdp/_debug_utils.py' 2025-07-17T06:37:59.8730870Z adding 'torch/distributed/fsdp/_dynamo_utils.py' 2025-07-17T06:37:59.8734350Z adding 'torch/distributed/fsdp/_exec_order_utils.py' 2025-07-17T06:37:59.8760560Z adding 'torch/distributed/fsdp/_flat_param.py' 2025-07-17T06:37:59.8762720Z adding 'torch/distributed/fsdp/_fsdp_extensions.py' 2025-07-17T06:37:59.8772840Z adding 'torch/distributed/fsdp/_init_utils.py' 2025-07-17T06:37:59.8773800Z adding 'torch/distributed/fsdp/_limiter_utils.py' 2025-07-17T06:37:59.8793700Z adding 'torch/distributed/fsdp/_optim_utils.py' 2025-07-17T06:37:59.8808500Z adding 'torch/distributed/fsdp/_runtime_utils.py' 2025-07-17T06:37:59.8810320Z adding 'torch/distributed/fsdp/_shard_utils.py' 2025-07-17T06:37:59.8816990Z adding 'torch/distributed/fsdp/_state_dict_utils.py' 2025-07-17T06:37:59.8819640Z adding 'torch/distributed/fsdp/_trace_utils.py' 2025-07-17T06:37:59.8821130Z adding 'torch/distributed/fsdp/_traversal_utils.py' 2025-07-17T06:37:59.8824130Z adding 'torch/distributed/fsdp/_unshard_param_utils.py' 2025-07-17T06:37:59.8826810Z adding 'torch/distributed/fsdp/_wrap_utils.py' 2025-07-17T06:37:59.8831100Z adding 'torch/distributed/fsdp/api.py' 2025-07-17T06:37:59.8851280Z adding 'torch/distributed/fsdp/fully_sharded_data_parallel.py' 2025-07-17T06:37:59.8855240Z adding 'torch/distributed/fsdp/sharded_grad_scaler.py' 2025-07-17T06:37:59.8860350Z adding 'torch/distributed/fsdp/wrap.py' 2025-07-17T06:37:59.8861470Z adding 'torch/distributed/fsdp/_fully_shard/__init__.py' 2025-07-17T06:37:59.8863620Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_api.py' 2025-07-17T06:37:59.8869330Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py' 2025-07-17T06:37:59.8870940Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_common.py' 2025-07-17T06:37:59.8873650Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_init.py' 2025-07-17T06:37:59.8882200Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_param.py' 2025-07-17T06:37:59.8889580Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py' 2025-07-17T06:37:59.8893350Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_state.py' 2025-07-17T06:37:59.8900250Z adding 'torch/distributed/fsdp/_fully_shard/_fully_shard.py' 2025-07-17T06:37:59.8901330Z adding 'torch/distributed/launcher/__init__.py' 2025-07-17T06:37:59.8904550Z adding 'torch/distributed/launcher/api.py' 2025-07-17T06:37:59.8905480Z adding 'torch/distributed/nn/__init__.py' 2025-07-17T06:37:59.8908850Z adding 'torch/distributed/nn/functional.py' 2025-07-17T06:37:59.8909710Z adding 'torch/distributed/nn/api/__init__.py' 2025-07-17T06:37:59.8915550Z adding 'torch/distributed/nn/api/remote_module.py' 2025-07-17T06:37:59.8916610Z adding 'torch/distributed/nn/jit/__init__.py' 2025-07-17T06:37:59.8918600Z adding 'torch/distributed/nn/jit/instantiator.py' 2025-07-17T06:37:59.8919460Z adding 'torch/distributed/nn/jit/templates/__init__.py' 2025-07-17T06:37:59.8920850Z adding 'torch/distributed/nn/jit/templates/remote_module_template.py' 2025-07-17T06:37:59.8922280Z adding 'torch/distributed/optim/__init__.py' 2025-07-17T06:37:59.8923220Z adding 'torch/distributed/optim/_deprecation_warning.py' 2025-07-17T06:37:59.8925290Z adding 'torch/distributed/optim/apply_optimizer_in_backward.py' 2025-07-17T06:37:59.8926480Z adding 'torch/distributed/optim/functional_adadelta.py' 2025-07-17T06:37:59.8928000Z adding 'torch/distributed/optim/functional_adagrad.py' 2025-07-17T06:37:59.8930080Z adding 'torch/distributed/optim/functional_adam.py' 2025-07-17T06:37:59.8931330Z adding 'torch/distributed/optim/functional_adamax.py' 2025-07-17T06:37:59.8933380Z adding 'torch/distributed/optim/functional_adamw.py' 2025-07-17T06:37:59.8934550Z adding 'torch/distributed/optim/functional_rmsprop.py' 2025-07-17T06:37:59.8936030Z adding 'torch/distributed/optim/functional_rprop.py' 2025-07-17T06:37:59.8938140Z adding 'torch/distributed/optim/functional_sgd.py' 2025-07-17T06:37:59.8941130Z adding 'torch/distributed/optim/named_optimizer.py' 2025-07-17T06:37:59.8943790Z adding 'torch/distributed/optim/optimizer.py' 2025-07-17T06:37:59.8945090Z adding 'torch/distributed/optim/post_localSGD_optimizer.py' 2025-07-17T06:37:59.8946170Z adding 'torch/distributed/optim/utils.py' 2025-07-17T06:37:59.8961500Z adding 'torch/distributed/optim/zero_redundancy_optimizer.py' 2025-07-17T06:37:59.8962910Z adding 'torch/distributed/optim/zero_redundancy_optimizer.pyi' 2025-07-17T06:37:59.8974900Z adding 'torch/distributed/pipelining/_IR.py' 2025-07-17T06:37:59.8975780Z adding 'torch/distributed/pipelining/__init__.py' 2025-07-17T06:37:59.8979830Z adding 'torch/distributed/pipelining/_backward.py' 2025-07-17T06:37:59.8980530Z adding 'torch/distributed/pipelining/_debug.py' 2025-07-17T06:37:59.8982860Z adding 'torch/distributed/pipelining/_schedule_visualizer.py' 2025-07-17T06:37:59.8983580Z adding 'torch/distributed/pipelining/_unflatten.py' 2025-07-17T06:37:59.8985130Z adding 'torch/distributed/pipelining/_utils.py' 2025-07-17T06:37:59.8989220Z adding 'torch/distributed/pipelining/microbatch.py' 2025-07-17T06:37:59.9009760Z adding 'torch/distributed/pipelining/schedules.py' 2025-07-17T06:37:59.9023860Z adding 'torch/distributed/pipelining/stage.py' 2025-07-17T06:37:59.9026990Z adding 'torch/distributed/rpc/__init__.py' 2025-07-17T06:37:59.9027900Z adding 'torch/distributed/rpc/_utils.py' 2025-07-17T06:37:59.9035180Z adding 'torch/distributed/rpc/api.py' 2025-07-17T06:37:59.9039030Z adding 'torch/distributed/rpc/backend_registry.py' 2025-07-17T06:37:59.9039860Z adding 'torch/distributed/rpc/constants.py' 2025-07-17T06:37:59.9041930Z adding 'torch/distributed/rpc/functions.py' 2025-07-17T06:37:59.9044490Z adding 'torch/distributed/rpc/internal.py' 2025-07-17T06:37:59.9046610Z adding 'torch/distributed/rpc/options.py' 2025-07-17T06:37:59.9047550Z adding 'torch/distributed/rpc/rref_proxy.py' 2025-07-17T06:37:59.9049930Z adding 'torch/distributed/rpc/server_process_global_profiler.py' 2025-07-17T06:37:59.9050790Z adding 'torch/distributed/rpc/_testing/__init__.py' 2025-07-17T06:37:59.9051940Z adding 'torch/distributed/rpc/_testing/faulty_agent_backend_registry.py' 2025-07-17T06:37:59.9053390Z adding 'torch/distributed/tensor/__init__.py' 2025-07-17T06:37:59.9064430Z adding 'torch/distributed/tensor/_api.py' 2025-07-17T06:37:59.9067920Z adding 'torch/distributed/tensor/_collective_utils.py' 2025-07-17T06:37:59.9072260Z adding 'torch/distributed/tensor/_dispatch.py' 2025-07-17T06:37:59.9074870Z adding 'torch/distributed/tensor/_dtensor_spec.py' 2025-07-17T06:37:59.9079690Z adding 'torch/distributed/tensor/_op_schema.py' 2025-07-17T06:37:59.9083470Z adding 'torch/distributed/tensor/_random.py' 2025-07-17T06:37:59.9087000Z adding 'torch/distributed/tensor/_redistribute.py' 2025-07-17T06:37:59.9092300Z adding 'torch/distributed/tensor/_sharding_prop.py' 2025-07-17T06:37:59.9095080Z adding 'torch/distributed/tensor/_shards_wrapper.py' 2025-07-17T06:37:59.9097180Z adding 'torch/distributed/tensor/_tp_conv.py' 2025-07-17T06:37:59.9101080Z adding 'torch/distributed/tensor/_utils.py' 2025-07-17T06:37:59.9101710Z adding 'torch/distributed/tensor/device_mesh.py' 2025-07-17T06:37:59.9107840Z adding 'torch/distributed/tensor/placement_types.py' 2025-07-17T06:37:59.9109010Z adding 'torch/distributed/tensor/_ops/__init__.py' 2025-07-17T06:37:59.9112400Z adding 'torch/distributed/tensor/_ops/_common_rules.py' 2025-07-17T06:37:59.9113460Z adding 'torch/distributed/tensor/_ops/_conv_ops.py' 2025-07-17T06:37:59.9115760Z adding 'torch/distributed/tensor/_ops/_einsum_strategy.py' 2025-07-17T06:37:59.9118190Z adding 'torch/distributed/tensor/_ops/_embedding_ops.py' 2025-07-17T06:37:59.9125390Z adding 'torch/distributed/tensor/_ops/_math_ops.py' 2025-07-17T06:37:59.9131100Z adding 'torch/distributed/tensor/_ops/_matrix_ops.py' 2025-07-17T06:37:59.9135990Z adding 'torch/distributed/tensor/_ops/_pointwise_ops.py' 2025-07-17T06:37:59.9136950Z adding 'torch/distributed/tensor/_ops/_random_ops.py' 2025-07-17T06:37:59.9146010Z adding 'torch/distributed/tensor/_ops/_tensor_ops.py' 2025-07-17T06:37:59.9152280Z adding 'torch/distributed/tensor/_ops/_view_ops.py' 2025-07-17T06:37:59.9155570Z adding 'torch/distributed/tensor/_ops/utils.py' 2025-07-17T06:37:59.9156560Z adding 'torch/distributed/tensor/debug/__init__.py' 2025-07-17T06:37:59.9161770Z adding 'torch/distributed/tensor/debug/_comm_mode.py' 2025-07-17T06:37:59.9162960Z adding 'torch/distributed/tensor/debug/_op_coverage.py' 2025-07-17T06:37:59.9165350Z adding 'torch/distributed/tensor/debug/_visualize_sharding.py' 2025-07-17T06:37:59.9166440Z adding 'torch/distributed/tensor/experimental/__init__.py' 2025-07-17T06:37:59.9176230Z adding 'torch/distributed/tensor/experimental/_attention.py' 2025-07-17T06:37:59.9179170Z adding 'torch/distributed/tensor/experimental/_func_map.py' 2025-07-17T06:37:59.9180750Z adding 'torch/distributed/tensor/experimental/_register_sharding.py' 2025-07-17T06:37:59.9185180Z adding 'torch/distributed/tensor/experimental/_tp_transform.py' 2025-07-17T06:37:59.9186380Z adding 'torch/distributed/tensor/parallel/__init__.py' 2025-07-17T06:37:59.9187440Z adding 'torch/distributed/tensor/parallel/_data_parallel_utils.py' 2025-07-17T06:37:59.9189580Z adding 'torch/distributed/tensor/parallel/api.py' 2025-07-17T06:37:59.9190790Z adding 'torch/distributed/tensor/parallel/ddp.py' 2025-07-17T06:37:59.9194170Z adding 'torch/distributed/tensor/parallel/fsdp.py' 2025-07-17T06:37:59.9196950Z adding 'torch/distributed/tensor/parallel/input_reshard.py' 2025-07-17T06:37:59.9200810Z adding 'torch/distributed/tensor/parallel/loss.py' 2025-07-17T06:37:59.9206490Z adding 'torch/distributed/tensor/parallel/style.py' 2025-07-17T06:37:59.9209240Z adding 'torch/distributions/__init__.py' 2025-07-17T06:37:59.9210630Z adding 'torch/distributions/bernoulli.py' 2025-07-17T06:37:59.9212080Z adding 'torch/distributions/beta.py' 2025-07-17T06:37:59.9214110Z adding 'torch/distributions/binomial.py' 2025-07-17T06:37:59.9215670Z adding 'torch/distributions/categorical.py' 2025-07-17T06:37:59.9216950Z adding 'torch/distributions/cauchy.py' 2025-07-17T06:37:59.9217980Z adding 'torch/distributions/chi2.py' 2025-07-17T06:37:59.9220570Z adding 'torch/distributions/constraint_registry.py' 2025-07-17T06:37:59.9224320Z adding 'torch/distributions/constraints.py' 2025-07-17T06:37:59.9226850Z adding 'torch/distributions/continuous_bernoulli.py' 2025-07-17T06:37:59.9228060Z adding 'torch/distributions/dirichlet.py' 2025-07-17T06:37:59.9231100Z adding 'torch/distributions/distribution.py' 2025-07-17T06:37:59.9232020Z adding 'torch/distributions/exp_family.py' 2025-07-17T06:37:59.9233200Z adding 'torch/distributions/exponential.py' 2025-07-17T06:37:59.9234580Z adding 'torch/distributions/fishersnedecor.py' 2025-07-17T06:37:59.9235970Z adding 'torch/distributions/gamma.py' 2025-07-17T06:37:59.9238010Z adding 'torch/distributions/generalized_pareto.py' 2025-07-17T06:37:59.9239130Z adding 'torch/distributions/geometric.py' 2025-07-17T06:37:59.9240380Z adding 'torch/distributions/gumbel.py' 2025-07-17T06:37:59.9241540Z adding 'torch/distributions/half_cauchy.py' 2025-07-17T06:37:59.9242630Z adding 'torch/distributions/half_normal.py' 2025-07-17T06:37:59.9244060Z adding 'torch/distributions/independent.py' 2025-07-17T06:37:59.9245280Z adding 'torch/distributions/inverse_gamma.py' 2025-07-17T06:37:59.9251200Z adding 'torch/distributions/kl.py' 2025-07-17T06:37:59.9252370Z adding 'torch/distributions/kumaraswamy.py' 2025-07-17T06:37:59.9253660Z adding 'torch/distributions/laplace.py' 2025-07-17T06:37:59.9255870Z adding 'torch/distributions/lkj_cholesky.py' 2025-07-17T06:37:59.9256770Z adding 'torch/distributions/log_normal.py' 2025-07-17T06:37:59.9257910Z adding 'torch/distributions/logistic_normal.py' 2025-07-17T06:37:59.9260560Z adding 'torch/distributions/lowrank_multivariate_normal.py' 2025-07-17T06:37:59.9262660Z adding 'torch/distributions/mixture_same_family.py' 2025-07-17T06:37:59.9264070Z adding 'torch/distributions/multinomial.py' 2025-07-17T06:37:59.9266800Z adding 'torch/distributions/multivariate_normal.py' 2025-07-17T06:37:59.9268080Z adding 'torch/distributions/negative_binomial.py' 2025-07-17T06:37:59.9269410Z adding 'torch/distributions/normal.py' 2025-07-17T06:37:59.9270920Z adding 'torch/distributions/one_hot_categorical.py' 2025-07-17T06:37:59.9272060Z adding 'torch/distributions/pareto.py' 2025-07-17T06:37:59.9273200Z adding 'torch/distributions/poisson.py' 2025-07-17T06:37:59.9275230Z adding 'torch/distributions/relaxed_bernoulli.py' 2025-07-17T06:37:59.9276520Z adding 'torch/distributions/relaxed_categorical.py' 2025-07-17T06:37:59.9277970Z adding 'torch/distributions/studentT.py' 2025-07-17T06:37:59.9280470Z adding 'torch/distributions/transformed_distribution.py' 2025-07-17T06:37:59.9287800Z adding 'torch/distributions/transforms.py' 2025-07-17T06:37:59.9289020Z adding 'torch/distributions/uniform.py' 2025-07-17T06:37:59.9291490Z adding 'torch/distributions/utils.py' 2025-07-17T06:37:59.9293380Z adding 'torch/distributions/von_mises.py' 2025-07-17T06:37:59.9294400Z adding 'torch/distributions/weibull.py' 2025-07-17T06:37:59.9297570Z adding 'torch/distributions/wishart.py' 2025-07-17T06:37:59.9302730Z adding 'torch/export/__init__.py' 2025-07-17T06:37:59.9306790Z adding 'torch/export/_draft_export.py' 2025-07-17T06:37:59.9307730Z adding 'torch/export/_remove_auto_functionalized_pass.py' 2025-07-17T06:37:59.9309850Z adding 'torch/export/_remove_effect_tokens_pass.py' 2025-07-17T06:37:59.9310700Z adding 'torch/export/_safeguard.py' 2025-07-17T06:37:59.9314720Z adding 'torch/export/_swap.py' 2025-07-17T06:37:59.9334260Z adding 'torch/export/_trace.py' 2025-07-17T06:37:59.9335590Z adding 'torch/export/_tree_utils.py' 2025-07-17T06:37:59.9339800Z adding 'torch/export/_unlift.py' 2025-07-17T06:37:59.9340430Z adding 'torch/export/_wrapper_utils.py' 2025-07-17T06:37:59.9341240Z adding 'torch/export/custom_obj.py' 2025-07-17T06:37:59.9342200Z adding 'torch/export/custom_ops.py' 2025-07-17T06:37:59.9344150Z adding 'torch/export/decomp_utils.py' 2025-07-17T06:37:59.9355820Z adding 'torch/export/dynamic_shapes.py' 2025-07-17T06:37:59.9370140Z adding 'torch/export/exported_program.py' 2025-07-17T06:37:59.9374810Z adding 'torch/export/graph_signature.py' 2025-07-17T06:37:59.9390250Z adding 'torch/export/unflatten.py' 2025-07-17T06:37:59.9394650Z adding 'torch/export/experimental/__init__.py' 2025-07-17T06:37:59.9396760Z adding 'torch/export/experimental/_utils.py' 2025-07-17T06:37:59.9397790Z adding 'torch/export/passes/__init__.py' 2025-07-17T06:37:59.9398830Z adding 'torch/export/pt2_archive/__init__.py' 2025-07-17T06:37:59.9403990Z adding 'torch/export/pt2_archive/_package.py' 2025-07-17T06:37:59.9405180Z adding 'torch/export/pt2_archive/_package_weights.py' 2025-07-17T06:37:59.9406070Z adding 'torch/export/pt2_archive/constants.py' 2025-07-17T06:37:59.9413600Z adding 'torch/fft/__init__.py' 2025-07-17T06:37:59.9414740Z adding 'torch/func/__init__.py' 2025-07-17T06:37:59.9418350Z adding 'torch/futures/__init__.py' 2025-07-17T06:37:59.9420180Z adding 'torch/fx/__init__.py' 2025-07-17T06:37:59.9420990Z adding 'torch/fx/_compatibility.py' 2025-07-17T06:37:59.9425700Z adding 'torch/fx/_graph_pickler.py' 2025-07-17T06:37:59.9427650Z adding 'torch/fx/_lazy_graph_module.py' 2025-07-17T06:37:59.9428700Z adding 'torch/fx/_pytree.py' 2025-07-17T06:37:59.9440250Z adding 'torch/fx/_symbolic_trace.py' 2025-07-17T06:37:59.9441290Z adding 'torch/fx/_utils.py' 2025-07-17T06:37:59.9442300Z adding 'torch/fx/annotate.py' 2025-07-17T06:37:59.9443100Z adding 'torch/fx/config.py' 2025-07-17T06:37:59.9460330Z adding 'torch/fx/graph.py' 2025-07-17T06:37:59.9469970Z adding 'torch/fx/graph_module.py' 2025-07-17T06:37:59.9471140Z adding 'torch/fx/immutable_collections.py' 2025-07-17T06:37:59.9475710Z adding 'torch/fx/interpreter.py' 2025-07-17T06:37:59.9483900Z adding 'torch/fx/node.py' 2025-07-17T06:37:59.9488870Z adding 'torch/fx/operator_schemas.py' 2025-07-17T06:37:59.9495480Z adding 'torch/fx/proxy.py' 2025-07-17T06:37:59.9499560Z adding 'torch/fx/subgraph_rewriter.py' 2025-07-17T06:37:59.9500550Z adding 'torch/fx/tensor_type.py' 2025-07-17T06:37:59.9503090Z adding 'torch/fx/traceback.py' 2025-07-17T06:37:59.9504080Z adding 'torch/fx/experimental/__init__.py' 2025-07-17T06:37:59.9505050Z adding 'torch/fx/experimental/_backward_state.py' 2025-07-17T06:37:59.9507050Z adding 'torch/fx/experimental/_config.py' 2025-07-17T06:37:59.9507660Z adding 'torch/fx/experimental/_constant_symnode.py' 2025-07-17T06:37:59.9509210Z adding 'torch/fx/experimental/_dynamism.py' 2025-07-17T06:37:59.9519050Z adding 'torch/fx/experimental/accelerator_partitioner.py' 2025-07-17T06:37:59.9522320Z adding 'torch/fx/experimental/const_fold.py' 2025-07-17T06:37:59.9523050Z adding 'torch/fx/experimental/debug.py' 2025-07-17T06:37:59.9529950Z adding 'torch/fx/experimental/graph_gradual_typechecker.py' 2025-07-17T06:37:59.9532110Z adding 'torch/fx/experimental/merge_matmul.py' 2025-07-17T06:37:59.9534790Z adding 'torch/fx/experimental/meta_tracer.py' 2025-07-17T06:37:59.9536190Z adding 'torch/fx/experimental/normalize.py' 2025-07-17T06:37:59.9540590Z adding 'torch/fx/experimental/optimization.py' 2025-07-17T06:37:59.9543540Z adding 'torch/fx/experimental/partitioner_utils.py' 2025-07-17T06:37:59.9565190Z adding 'torch/fx/experimental/proxy_tensor.py' 2025-07-17T06:37:59.9570350Z adding 'torch/fx/experimental/recording.py' 2025-07-17T06:37:59.9571080Z adding 'torch/fx/experimental/refinement_types.py' 2025-07-17T06:37:59.9573100Z adding 'torch/fx/experimental/rewriter.py' 2025-07-17T06:37:59.9574460Z adding 'torch/fx/experimental/schema_type_annotation.py' 2025-07-17T06:37:59.9587240Z adding 'torch/fx/experimental/sym_node.py' 2025-07-17T06:37:59.9668110Z adding 'torch/fx/experimental/symbolic_shapes.py' 2025-07-17T06:37:59.9670910Z adding 'torch/fx/experimental/unify_refinements.py' 2025-07-17T06:37:59.9678490Z adding 'torch/fx/experimental/validator.py' 2025-07-17T06:37:59.9679390Z adding 'torch/fx/experimental/migrate_gradual_types/__init__.py' 2025-07-17T06:37:59.9682730Z adding 'torch/fx/experimental/migrate_gradual_types/constraint.py' 2025-07-17T06:37:59.9691530Z adding 'torch/fx/experimental/migrate_gradual_types/constraint_generator.py' 2025-07-17T06:37:59.9699740Z adding 'torch/fx/experimental/migrate_gradual_types/constraint_transformation.py' 2025-07-17T06:37:59.9700450Z adding 'torch/fx/experimental/migrate_gradual_types/operation.py' 2025-07-17T06:37:59.9704560Z adding 'torch/fx/experimental/migrate_gradual_types/transform_to_z3.py' 2025-07-17T06:37:59.9705320Z adding 'torch/fx/experimental/migrate_gradual_types/util.py' 2025-07-17T06:37:59.9706250Z adding 'torch/fx/experimental/migrate_gradual_types/z3_types.py' 2025-07-17T06:37:59.9707350Z adding 'torch/fx/experimental/unification/__init__.py' 2025-07-17T06:37:59.9708560Z adding 'torch/fx/experimental/unification/core.py' 2025-07-17T06:37:59.9709370Z adding 'torch/fx/experimental/unification/dispatch.py' 2025-07-17T06:37:59.9710800Z adding 'torch/fx/experimental/unification/match.py' 2025-07-17T06:37:59.9712210Z adding 'torch/fx/experimental/unification/more.py' 2025-07-17T06:37:59.9715190Z adding 'torch/fx/experimental/unification/unification_tools.py' 2025-07-17T06:37:59.9716230Z adding 'torch/fx/experimental/unification/utils.py' 2025-07-17T06:37:59.9717370Z adding 'torch/fx/experimental/unification/variable.py' 2025-07-17T06:37:59.9718520Z adding 'torch/fx/experimental/unification/multipledispatch/__init__.py' 2025-07-17T06:37:59.9719960Z adding 'torch/fx/experimental/unification/multipledispatch/conflict.py' 2025-07-17T06:37:59.9721160Z adding 'torch/fx/experimental/unification/multipledispatch/core.py' 2025-07-17T06:37:59.9724800Z adding 'torch/fx/experimental/unification/multipledispatch/dispatcher.py' 2025-07-17T06:37:59.9726070Z adding 'torch/fx/experimental/unification/multipledispatch/utils.py' 2025-07-17T06:37:59.9727440Z adding 'torch/fx/experimental/unification/multipledispatch/variadic.py' 2025-07-17T06:37:59.9728550Z adding 'torch/fx/passes/__init__.py' 2025-07-17T06:37:59.9732390Z adding 'torch/fx/passes/_tensorify_python_scalars.py' 2025-07-17T06:37:59.9733320Z adding 'torch/fx/passes/annotate_getitem_nodes.py' 2025-07-17T06:37:59.9734780Z adding 'torch/fx/passes/fake_tensor_prop.py' 2025-07-17T06:37:59.9738690Z adding 'torch/fx/passes/graph_drawer.py' 2025-07-17T06:37:59.9739930Z adding 'torch/fx/passes/graph_manipulation.py' 2025-07-17T06:37:59.9742100Z adding 'torch/fx/passes/graph_transform_observer.py' 2025-07-17T06:37:59.9748980Z adding 'torch/fx/passes/net_min_base.py' 2025-07-17T06:37:59.9751090Z adding 'torch/fx/passes/operator_support.py' 2025-07-17T06:37:59.9752170Z adding 'torch/fx/passes/param_fetch.py' 2025-07-17T06:37:59.9754410Z adding 'torch/fx/passes/pass_manager.py' 2025-07-17T06:37:59.9762300Z adding 'torch/fx/passes/reinplace.py' 2025-07-17T06:37:59.9768170Z adding 'torch/fx/passes/runtime_assert.py' 2025-07-17T06:37:59.9770540Z adding 'torch/fx/passes/shape_prop.py' 2025-07-17T06:37:59.9776110Z adding 'torch/fx/passes/split_module.py' 2025-07-17T06:37:59.9779100Z adding 'torch/fx/passes/split_utils.py' 2025-07-17T06:37:59.9786120Z adding 'torch/fx/passes/splitter_base.py' 2025-07-17T06:37:59.9788990Z adding 'torch/fx/passes/tools_common.py' 2025-07-17T06:37:59.9789910Z adding 'torch/fx/passes/backends/__init__.py' 2025-07-17T06:37:59.9791080Z adding 'torch/fx/passes/backends/cudagraphs.py' 2025-07-17T06:37:59.9792010Z adding 'torch/fx/passes/dialect/__init__.py' 2025-07-17T06:37:59.9792960Z adding 'torch/fx/passes/dialect/common/__init__.py' 2025-07-17T06:37:59.9794950Z adding 'torch/fx/passes/dialect/common/cse_pass.py' 2025-07-17T06:37:59.9795560Z adding 'torch/fx/passes/infra/__init__.py' 2025-07-17T06:37:59.9799370Z adding 'torch/fx/passes/infra/partitioner.py' 2025-07-17T06:37:59.9800300Z adding 'torch/fx/passes/infra/pass_base.py' 2025-07-17T06:37:59.9803260Z adding 'torch/fx/passes/infra/pass_manager.py' 2025-07-17T06:37:59.9803930Z adding 'torch/fx/passes/tests/__init__.py' 2025-07-17T06:37:59.9804980Z adding 'torch/fx/passes/tests/test_pass_manager.py' 2025-07-17T06:37:59.9805970Z adding 'torch/fx/passes/utils/__init__.py' 2025-07-17T06:37:59.9807300Z adding 'torch/fx/passes/utils/common.py' 2025-07-17T06:37:59.9810130Z adding 'torch/fx/passes/utils/fuser_utils.py' 2025-07-17T06:37:59.9814090Z adding 'torch/fx/passes/utils/matcher_utils.py' 2025-07-17T06:37:59.9815410Z adding 'torch/fx/passes/utils/matcher_with_name_node_map_utils.py' 2025-07-17T06:37:59.9817450Z adding 'torch/fx/passes/utils/source_matcher_utils.py' 2025-07-17T06:37:59.9818710Z adding 'torch/include/clog.h' 2025-07-17T06:37:59.9826260Z adding 'torch/include/cpuinfo.h' 2025-07-17T06:37:59.9827040Z adding 'torch/include/experiments-config.h' 2025-07-17T06:37:59.9827800Z adding 'torch/include/fp16.h' 2025-07-17T06:37:59.9830600Z adding 'torch/include/fxdiv.h' 2025-07-17T06:37:59.9831200Z adding 'torch/include/libshm.h' 2025-07-17T06:37:59.9835430Z adding 'torch/include/nnpack.h' 2025-07-17T06:37:59.9839610Z adding 'torch/include/omp.h' 2025-07-17T06:37:59.9845320Z adding 'torch/include/psimd.h' 2025-07-17T06:37:59.9853610Z adding 'torch/include/pthreadpool.h' 2025-07-17T06:37:59.9855050Z adding 'torch/include/qnnpack_func.h' 2025-07-17T06:37:59.9870450Z adding 'torch/include/sleef.h' 2025-07-17T06:37:59.9893200Z adding 'torch/include/xnnpack.h' 2025-07-17T06:37:59.9896530Z adding 'torch/include/ATen/ATen.h' 2025-07-17T06:37:59.9897920Z adding 'torch/include/ATen/AccumulateType.h' 2025-07-17T06:37:59.9898740Z adding 'torch/include/ATen/ArrayRef.h' 2025-07-17T06:37:59.9899470Z adding 'torch/include/ATen/Backend.h' 2025-07-17T06:37:59.9900190Z adding 'torch/include/ATen/Backtrace.h' 2025-07-17T06:37:59.9901100Z adding 'torch/include/ATen/BlasBackend.h' 2025-07-17T06:37:59.9903810Z adding 'torch/include/ATen/CPUApplyUtils.h' 2025-07-17T06:37:59.9904520Z adding 'torch/include/ATen/CPUFixedAllocator.h' 2025-07-17T06:37:59.9905570Z adding 'torch/include/ATen/CPUFunctions.h' 2025-07-17T06:37:59.9908810Z adding 'torch/include/ATen/CPUFunctions_inl.h' 2025-07-17T06:37:59.9909630Z adding 'torch/include/ATen/CPUGeneratorImpl.h' 2025-07-17T06:37:59.9910680Z adding 'torch/include/ATen/CUDAFunctions.h' 2025-07-17T06:37:59.9914230Z adding 'torch/include/ATen/CUDAFunctions_inl.h' 2025-07-17T06:37:59.9915020Z adding 'torch/include/ATen/CachedTensorUtils.h' 2025-07-17T06:37:59.9916160Z adding 'torch/include/ATen/CollapseDims.h' 2025-07-17T06:37:59.9917340Z adding 'torch/include/ATen/CompositeExplicitAutogradFunctions.h' 2025-07-17T06:37:59.9921190Z adding 'torch/include/ATen/CompositeExplicitAutogradFunctions_inl.h' 2025-07-17T06:37:59.9922160Z adding 'torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions.h' 2025-07-17T06:37:59.9924780Z adding 'torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions_inl.h' 2025-07-17T06:37:59.9925620Z adding 'torch/include/ATen/CompositeImplicitAutogradFunctions.h' 2025-07-17T06:37:59.9928980Z adding 'torch/include/ATen/CompositeImplicitAutogradFunctions_inl.h' 2025-07-17T06:37:59.9929960Z adding 'torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions.h' 2025-07-17T06:37:59.9930890Z adding 'torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions_inl.h' 2025-07-17T06:37:59.9931630Z adding 'torch/include/ATen/Config.h' 2025-07-17T06:37:59.9936270Z adding 'torch/include/ATen/Context.h' 2025-07-17T06:37:59.9937200Z adding 'torch/include/ATen/DLConvertor.h' 2025-07-17T06:37:59.9937940Z adding 'torch/include/ATen/Device.h' 2025-07-17T06:37:59.9939280Z adding 'torch/include/ATen/DeviceAccelerator.h' 2025-07-17T06:37:59.9940210Z adding 'torch/include/ATen/DeviceGuard.h' 2025-07-17T06:37:59.9940930Z adding 'torch/include/ATen/DimVector.h' 2025-07-17T06:37:59.9941640Z adding 'torch/include/ATen/Dimname.h' 2025-07-17T06:37:59.9946850Z adding 'torch/include/ATen/Dispatch.h' 2025-07-17T06:37:59.9951530Z adding 'torch/include/ATen/Dispatch_v2.h' 2025-07-17T06:37:59.9952520Z adding 'torch/include/ATen/DynamicLibrary.h' 2025-07-17T06:37:59.9953670Z adding 'torch/include/ATen/EmptyTensor.h' 2025-07-17T06:37:59.9954600Z adding 'torch/include/ATen/ExpandBase.h' 2025-07-17T06:37:59.9957680Z adding 'torch/include/ATen/ExpandUtils.h' 2025-07-17T06:37:59.9958200Z adding 'torch/include/ATen/Formatting.h' 2025-07-17T06:37:59.9959230Z adding 'torch/include/ATen/FuncTorchTLS.h' 2025-07-17T06:37:59.9961710Z adding 'torch/include/ATen/FunctionalStorageImpl.h' 2025-07-17T06:37:59.9965550Z adding 'torch/include/ATen/FunctionalTensorWrapper.h' 2025-07-17T06:37:59.9971870Z adding 'torch/include/ATen/Functions.h' 2025-07-17T06:37:59.9972580Z adding 'torch/include/ATen/Generator.h' 2025-07-17T06:37:59.9973830Z adding 'torch/include/ATen/InferSize.h' 2025-07-17T06:37:59.9974690Z adding 'torch/include/ATen/InitialTensorOptions.h' 2025-07-17T06:37:59.9975420Z adding 'torch/include/ATen/Layout.h' 2025-07-17T06:37:59.9976370Z adding 'torch/include/ATen/LegacyBatchedFallback.h' 2025-07-17T06:37:59.9978520Z adding 'torch/include/ATen/LegacyBatchedTensorImpl.h' 2025-07-17T06:37:59.9979130Z adding 'torch/include/ATen/LegacyVmapMode.h' 2025-07-17T06:37:59.9981610Z adding 'torch/include/ATen/LegacyVmapTransforms.h' 2025-07-17T06:37:59.9982170Z adding 'torch/include/ATen/LinalgBackend.h' 2025-07-17T06:37:59.9983270Z adding 'torch/include/ATen/MPSFunctions.h' 2025-07-17T06:37:59.9985710Z adding 'torch/include/ATen/MPSFunctions_inl.h' 2025-07-17T06:37:59.9986770Z adding 'torch/include/ATen/MapAllocator.h' 2025-07-17T06:37:59.9988010Z adding 'torch/include/ATen/MatrixRef.h' 2025-07-17T06:37:59.9988930Z adding 'torch/include/ATen/MemoryOverlap.h' 2025-07-17T06:37:59.9989960Z adding 'torch/include/ATen/MetaFunctions.h' 2025-07-17T06:37:59.9992220Z adding 'torch/include/ATen/MetaFunctions_inl.h' 2025-07-17T06:37:59.9994320Z adding 'torch/include/ATen/MethodOperators.h' 2025-07-17T06:37:59.9994840Z adding 'torch/include/ATen/NamedTensor.h' 2025-07-17T06:37:59.9996850Z adding 'torch/include/ATen/NamedTensorUtils.h' 2025-07-17T06:38:00.0002940Z adding 'torch/include/ATen/NativeFunctions.h' 2025-07-17T06:38:00.0009230Z adding 'torch/include/ATen/NativeMetaFunctions.h' 2025-07-17T06:38:00.0012020Z adding 'torch/include/ATen/NestedTensorImpl.h' 2025-07-17T06:38:00.0012980Z adding 'torch/include/ATen/NumericUtils.h' 2025-07-17T06:38:00.0014040Z adding 'torch/include/ATen/OpMathType.h' 2025-07-17T06:38:00.0016010Z adding 'torch/include/ATen/OpaqueTensorImpl.h' 2025-07-17T06:38:00.0022150Z adding 'torch/include/ATen/Operators.h' 2025-07-17T06:38:00.0023020Z adding 'torch/include/ATen/PTThreadPool.h' 2025-07-17T06:38:00.0023760Z adding 'torch/include/ATen/PadNd.h' 2025-07-17T06:38:00.0024800Z adding 'torch/include/ATen/Parallel-inl.h' 2025-07-17T06:38:00.0026310Z adding 'torch/include/ATen/Parallel.h' 2025-07-17T06:38:00.0027130Z adding 'torch/include/ATen/ParallelFuture.h' 2025-07-17T06:38:00.0027930Z adding 'torch/include/ATen/ParallelNative.h' 2025-07-17T06:38:00.0028920Z adding 'torch/include/ATen/ParallelOpenMP.h' 2025-07-17T06:38:00.0029860Z adding 'torch/include/ATen/PythonTorchFunctionTLS.h' 2025-07-17T06:38:00.0030690Z adding 'torch/include/ATen/ROCmFABackend.h' 2025-07-17T06:38:00.0199460Z adding 'torch/include/ATen/RedispatchFunctions.h' 2025-07-17T06:38:00.0298180Z adding 'torch/include/ATen/RegistrationDeclarations.h' 2025-07-17T06:38:00.0303270Z adding 'torch/include/ATen/SDPBackend.h' 2025-07-17T06:38:00.0304310Z adding 'torch/include/ATen/SavedTensorHooks.h' 2025-07-17T06:38:00.0309760Z adding 'torch/include/ATen/Scalar.h' 2025-07-17T06:38:00.0309950Z adding 'torch/include/ATen/ScalarOps.h' 2025-07-17T06:38:00.0311000Z adding 'torch/include/ATen/ScalarType.h' 2025-07-17T06:38:00.0311280Z adding 'torch/include/ATen/SequenceNumber.h' 2025-07-17T06:38:00.0311490Z adding 'torch/include/ATen/SmallVector.h' 2025-07-17T06:38:00.0311710Z adding 'torch/include/ATen/SparseCsrTensorImpl.h' 2025-07-17T06:38:00.0314190Z adding 'torch/include/ATen/SparseCsrTensorUtils.h' 2025-07-17T06:38:00.0318400Z adding 'torch/include/ATen/SparseTensorImpl.h' 2025-07-17T06:38:00.0319000Z adding 'torch/include/ATen/Storage.h' 2025-07-17T06:38:00.0320190Z adding 'torch/include/ATen/StorageUtils.h' 2025-07-17T06:38:00.0320930Z adding 'torch/include/ATen/Tensor.h' 2025-07-17T06:38:00.0321770Z adding 'torch/include/ATen/TensorAccessor.h' 2025-07-17T06:38:00.0323150Z adding 'torch/include/ATen/TensorGeometry.h' 2025-07-17T06:38:00.0329000Z adding 'torch/include/ATen/TensorIndexing.h' 2025-07-17T06:38:00.0337870Z adding 'torch/include/ATen/TensorIterator.h' 2025-07-17T06:38:00.0338870Z adding 'torch/include/ATen/TensorIteratorInternal.h' 2025-07-17T06:38:00.0340860Z adding 'torch/include/ATen/TensorMeta.h' 2025-07-17T06:38:00.0341830Z adding 'torch/include/ATen/TensorNames.h' 2025-07-17T06:38:00.0342980Z adding 'torch/include/ATen/TensorOperators.h' 2025-07-17T06:38:00.0343730Z adding 'torch/include/ATen/TensorOptions.h' 2025-07-17T06:38:00.0345290Z adding 'torch/include/ATen/TensorSubclassLikeUtils.h' 2025-07-17T06:38:00.0346900Z adding 'torch/include/ATen/TensorUtils.h' 2025-07-17T06:38:00.0347820Z adding 'torch/include/ATen/ThreadLocalPythonObjects.h' 2025-07-17T06:38:00.0349350Z adding 'torch/include/ATen/ThreadLocalState.h' 2025-07-17T06:38:00.0351590Z adding 'torch/include/ATen/TracerMode.h' 2025-07-17T06:38:00.0352050Z adding 'torch/include/ATen/TypeDefault.h' 2025-07-17T06:38:00.0353380Z adding 'torch/include/ATen/Utils.h' 2025-07-17T06:38:00.0354150Z adding 'torch/include/ATen/Version.h' 2025-07-17T06:38:00.0469780Z adding 'torch/include/ATen/VmapGeneratedPlumbing.h' 2025-07-17T06:38:00.0479220Z adding 'torch/include/ATen/WrapDimUtils.h' 2025-07-17T06:38:00.0480330Z adding 'torch/include/ATen/WrapDimUtilsMulti.h' 2025-07-17T06:38:00.0487320Z adding 'torch/include/ATen/autocast_mode.h' 2025-07-17T06:38:00.0488240Z adding 'torch/include/ATen/ceil_div.h' 2025-07-17T06:38:00.0490570Z adding 'torch/include/ATen/code_template.h' 2025-07-17T06:38:00.0492380Z adding 'torch/include/ATen/cpp_custom_type_hack.h' 2025-07-17T06:38:00.0493080Z adding 'torch/include/ATen/div_rtn.h' 2025-07-17T06:38:00.0496030Z adding 'torch/include/ATen/dlpack.h' 2025-07-17T06:38:00.0496700Z adding 'torch/include/ATen/jit_macros.h' 2025-07-17T06:38:00.0497880Z adding 'torch/include/ATen/jiterator_macros.h' 2025-07-17T06:38:00.0503060Z adding 'torch/include/ATen/record_function.h' 2025-07-17T06:38:00.0505330Z adding 'torch/include/ATen/core/ATenGeneral.h' 2025-07-17T06:38:00.0505930Z adding 'torch/include/ATen/core/ATenOpList.h' 2025-07-17T06:38:00.0506970Z adding 'torch/include/ATen/core/ATen_fwd.h' 2025-07-17T06:38:00.0508940Z adding 'torch/include/ATen/core/ATen_pch.h' 2025-07-17T06:38:00.0509500Z adding 'torch/include/ATen/core/Array.h' 2025-07-17T06:38:00.0510260Z adding 'torch/include/ATen/core/Backtrace.h' 2025-07-17T06:38:00.0516810Z adding 'torch/include/ATen/core/CachingHostAllocator.h' 2025-07-17T06:38:00.0517630Z adding 'torch/include/ATen/core/CheckMemoryFormat.h' 2025-07-17T06:38:00.0519120Z adding 'torch/include/ATen/core/DeprecatedTypeProperties.h' 2025-07-17T06:38:00.0519990Z adding 'torch/include/ATen/core/DeprecatedTypePropertiesRegistry.h' 2025-07-17T06:38:00.0523520Z adding 'torch/include/ATen/core/Dict.h' 2025-07-17T06:38:00.0525300Z adding 'torch/include/ATen/core/Dict_inl.h' 2025-07-17T06:38:00.0525990Z adding 'torch/include/ATen/core/DimVector.h' 2025-07-17T06:38:00.0526950Z adding 'torch/include/ATen/core/Dimname.h' 2025-07-17T06:38:00.0529580Z adding 'torch/include/ATen/core/DistributionsHelper.h' 2025-07-17T06:38:00.0530240Z adding 'torch/include/ATen/core/Formatting.h' 2025-07-17T06:38:00.0532340Z adding 'torch/include/ATen/core/Generator.h' 2025-07-17T06:38:00.0533100Z adding 'torch/include/ATen/core/GeneratorForPrivateuseone.h' 2025-07-17T06:38:00.0537820Z adding 'torch/include/ATen/core/IListRef.h' 2025-07-17T06:38:00.0539210Z adding 'torch/include/ATen/core/IListRef_inl.h' 2025-07-17T06:38:00.0541210Z adding 'torch/include/ATen/core/LegacyTypeDispatch.h' 2025-07-17T06:38:00.0544340Z adding 'torch/include/ATen/core/List.h' 2025-07-17T06:38:00.0546750Z adding 'torch/include/ATen/core/List_inl.h' 2025-07-17T06:38:00.0548830Z adding 'torch/include/ATen/core/MT19937RNGEngine.h' 2025-07-17T06:38:00.0550100Z adding 'torch/include/ATen/core/NamedTensor.h' 2025-07-17T06:38:00.0552160Z adding 'torch/include/ATen/core/NestedIntSymNodeImpl.h' 2025-07-17T06:38:00.0554310Z adding 'torch/include/ATen/core/PhiloxRNGEngine.h' 2025-07-17T06:38:00.0555080Z adding 'torch/include/ATen/core/PythonFallbackKernel.h' 2025-07-17T06:38:00.0555980Z adding 'torch/include/ATen/core/PythonOpRegistrationTrampoline.h' 2025-07-17T06:38:00.0557130Z adding 'torch/include/ATen/core/QuantizerBase.h' 2025-07-17T06:38:00.0558070Z adding 'torch/include/ATen/core/Range.h' 2025-07-17T06:38:00.0558980Z adding 'torch/include/ATen/core/Reduction.h' 2025-07-17T06:38:00.0559690Z adding 'torch/include/ATen/core/Scalar.h' 2025-07-17T06:38:00.0560420Z adding 'torch/include/ATen/core/ScalarType.h' 2025-07-17T06:38:00.0561650Z adding 'torch/include/ATen/core/Tensor.h' 2025-07-17T06:38:00.0563970Z adding 'torch/include/ATen/core/TensorAccessor.h' 2025-07-17T06:38:00.0572480Z adding 'torch/include/ATen/core/TensorBase.h' 2025-07-17T06:38:00.0606480Z adding 'torch/include/ATen/core/TensorBody.h' 2025-07-17T06:38:00.0609100Z adding 'torch/include/ATen/core/TorchDispatchUtils.h' 2025-07-17T06:38:00.0610610Z adding 'torch/include/ATen/core/TransformationHelper.h' 2025-07-17T06:38:00.0611550Z adding 'torch/include/ATen/core/UndefinedTensorImpl.h' 2025-07-17T06:38:00.0612450Z adding 'torch/include/ATen/core/UnsafeFromTH.h' 2025-07-17T06:38:00.0613930Z adding 'torch/include/ATen/core/VariableHooksInterface.h' 2025-07-17T06:38:00.0615070Z adding 'torch/include/ATen/core/Variadic.h' 2025-07-17T06:38:00.0616210Z adding 'torch/include/ATen/core/Vitals.h' 2025-07-17T06:38:00.0618190Z adding 'torch/include/ATen/core/alias_info.h' 2025-07-17T06:38:00.0627640Z adding 'torch/include/ATen/core/aten_interned_strings.h' 2025-07-17T06:38:00.0629760Z adding 'torch/include/ATen/core/blob.h' 2025-07-17T06:38:00.0630700Z adding 'torch/include/ATen/core/builtin_function.h' 2025-07-17T06:38:00.0634110Z adding 'torch/include/ATen/core/class_type.h' 2025-07-17T06:38:00.0634860Z adding 'torch/include/ATen/core/custom_class.h' 2025-07-17T06:38:00.0637620Z adding 'torch/include/ATen/core/dynamic_type.h' 2025-07-17T06:38:00.0638410Z adding 'torch/include/ATen/core/enum_tag.h' 2025-07-17T06:38:00.0639650Z adding 'torch/include/ATen/core/enum_type.h' 2025-07-17T06:38:00.0641000Z adding 'torch/include/ATen/core/function.h' 2025-07-17T06:38:00.0646760Z adding 'torch/include/ATen/core/function_schema.h' 2025-07-17T06:38:00.0647810Z adding 'torch/include/ATen/core/function_schema_inl.h' 2025-07-17T06:38:00.0648760Z adding 'torch/include/ATen/core/functional.h' 2025-07-17T06:38:00.0649580Z adding 'torch/include/ATen/core/grad_mode.h' 2025-07-17T06:38:00.0652670Z adding 'torch/include/ATen/core/interned_strings.h' 2025-07-17T06:38:00.0653490Z adding 'torch/include/ATen/core/interned_strings_class.h' 2025-07-17T06:38:00.0665200Z adding 'torch/include/ATen/core/ivalue.h' 2025-07-17T06:38:00.0683460Z adding 'torch/include/ATen/core/ivalue_inl.h' 2025-07-17T06:38:00.0684700Z adding 'torch/include/ATen/core/ivalue_to.h' 2025-07-17T06:38:00.0698570Z adding 'torch/include/ATen/core/jit_type.h' 2025-07-17T06:38:00.0703470Z adding 'torch/include/ATen/core/jit_type_base.h' 2025-07-17T06:38:00.0704790Z adding 'torch/include/ATen/core/operator_name.h' 2025-07-17T06:38:00.0706670Z adding 'torch/include/ATen/core/qualified_name.h' 2025-07-17T06:38:00.0707530Z adding 'torch/include/ATen/core/rref_interface.h' 2025-07-17T06:38:00.0709690Z adding 'torch/include/ATen/core/stack.h' 2025-07-17T06:38:00.0711440Z adding 'torch/include/ATen/core/symbol.h' 2025-07-17T06:38:00.0712590Z adding 'torch/include/ATen/core/type_factory.h' 2025-07-17T06:38:00.0713530Z adding 'torch/include/ATen/core/type_ptr.h' 2025-07-17T06:38:00.0714270Z adding 'torch/include/ATen/core/typeid.h' 2025-07-17T06:38:00.0717310Z adding 'torch/include/ATen/core/boxing/BoxedKernel.h' 2025-07-17T06:38:00.0718310Z adding 'torch/include/ATen/core/boxing/BoxedKernel_impl.h' 2025-07-17T06:38:00.0720650Z adding 'torch/include/ATen/core/boxing/KernelFunction.h' 2025-07-17T06:38:00.0723070Z adding 'torch/include/ATen/core/boxing/KernelFunction_impl.h' 2025-07-17T06:38:00.0723860Z adding 'torch/include/ATen/core/boxing/OperatorKernel.h' 2025-07-17T06:38:00.0725510Z adding 'torch/include/ATen/core/boxing/impl/WrapFunctionIntoFunctor.h' 2025-07-17T06:38:00.0726380Z adding 'torch/include/ATen/core/boxing/impl/WrapFunctionIntoRuntimeFunctor.h' 2025-07-17T06:38:00.0729440Z adding 'torch/include/ATen/core/boxing/impl/boxing.h' 2025-07-17T06:38:00.0734840Z adding 'torch/include/ATen/core/boxing/impl/make_boxed_from_unboxed_functor.h' 2025-07-17T06:38:00.0736020Z adding 'torch/include/ATen/core/boxing/impl/test_helpers.h' 2025-07-17T06:38:00.0737980Z adding 'torch/include/ATen/core/dispatch/CppSignature.h' 2025-07-17T06:38:00.0740520Z adding 'torch/include/ATen/core/dispatch/DispatchKeyExtractor.h' 2025-07-17T06:38:00.0747860Z adding 'torch/include/ATen/core/dispatch/Dispatcher.h' 2025-07-17T06:38:00.0748830Z adding 'torch/include/ATen/core/dispatch/ObservedOperators.h' 2025-07-17T06:38:00.0752150Z adding 'torch/include/ATen/core/dispatch/OperatorEntry.h' 2025-07-17T06:38:00.0752960Z adding 'torch/include/ATen/core/dispatch/OperatorOptions.h' 2025-07-17T06:38:00.0753950Z adding 'torch/include/ATen/core/dispatch/RegistrationHandleRAII.h' 2025-07-17T06:38:00.0755490Z adding 'torch/include/ATen/core/op_registration/adaption.h' 2025-07-17T06:38:00.0757290Z adding 'torch/include/ATen/core/op_registration/infer_schema.h' 2025-07-17T06:38:00.0759350Z adding 'torch/include/ATen/core/op_registration/op_allowlist.h' 2025-07-17T06:38:00.0763710Z adding 'torch/include/ATen/core/op_registration/op_registration.h' 2025-07-17T06:38:00.0764620Z adding 'torch/include/ATen/cpu/FlushDenormal.h' 2025-07-17T06:38:00.0765560Z adding 'torch/include/ATen/cpu/Utils.h' 2025-07-17T06:38:00.0767660Z adding 'torch/include/ATen/cpu/vml.h' 2025-07-17T06:38:00.0768580Z adding 'torch/include/ATen/cpu/vec/functional.h' 2025-07-17T06:38:00.0771240Z adding 'torch/include/ATen/cpu/vec/functional_base.h' 2025-07-17T06:38:00.0774350Z adding 'torch/include/ATen/cpu/vec/functional_bfloat16.h' 2025-07-17T06:38:00.0775500Z adding 'torch/include/ATen/cpu/vec/intrinsics.h' 2025-07-17T06:38:00.0776560Z adding 'torch/include/ATen/cpu/vec/vec.h' 2025-07-17T06:38:00.0784230Z adding 'torch/include/ATen/cpu/vec/vec_base.h' 2025-07-17T06:38:00.0785180Z adding 'torch/include/ATen/cpu/vec/vec_convert.h' 2025-07-17T06:38:00.0786800Z adding 'torch/include/ATen/cpu/vec/vec_half.h' 2025-07-17T06:38:00.0789260Z adding 'torch/include/ATen/cpu/vec/vec_mask.h' 2025-07-17T06:38:00.0791660Z adding 'torch/include/ATen/cpu/vec/vec_n.h' 2025-07-17T06:38:00.0792870Z adding 'torch/include/ATen/cpu/vec/vec_quant.h' 2025-07-17T06:38:00.0794800Z adding 'torch/include/ATen/cpu/vec/sve/sve_helper.h' 2025-07-17T06:38:00.0798000Z adding 'torch/include/ATen/cpu/vec/sve/vec_bfloat16.h' 2025-07-17T06:38:00.0799740Z adding 'torch/include/ATen/cpu/vec/sve/vec_common_sve.h' 2025-07-17T06:38:00.0802660Z adding 'torch/include/ATen/cpu/vec/sve/vec_double.h' 2025-07-17T06:38:00.0806740Z adding 'torch/include/ATen/cpu/vec/sve/vec_float.h' 2025-07-17T06:38:00.0810230Z adding 'torch/include/ATen/cpu/vec/sve/vec_int.h' 2025-07-17T06:38:00.0813260Z adding 'torch/include/ATen/cpu/vec/sve/vec_qint.h' 2025-07-17T06:38:00.0814230Z adding 'torch/include/ATen/cpu/vec/vec128/vec128.h' 2025-07-17T06:38:00.0817940Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_bfloat16_neon.h' 2025-07-17T06:38:00.0818890Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_convert.h' 2025-07-17T06:38:00.0822490Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_float_neon.h' 2025-07-17T06:38:00.0825780Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_half_neon.h' 2025-07-17T06:38:00.0827910Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_reduced_precision_common_neon.h' 2025-07-17T06:38:00.0829630Z adding 'torch/include/ATen/cpu/vec/vec256/missing_vld1_neon.h' 2025-07-17T06:38:00.0830460Z adding 'torch/include/ATen/cpu/vec/vec256/missing_vst1_neon.h' 2025-07-17T06:38:00.0833100Z adding 'torch/include/ATen/cpu/vec/vec256/vec256.h' 2025-07-17T06:38:00.0837590Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_16bit_float.h' 2025-07-17T06:38:00.0839510Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_bfloat16.h' 2025-07-17T06:38:00.0843090Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_complex_double.h' 2025-07-17T06:38:00.0847010Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_complex_float.h' 2025-07-17T06:38:00.0849190Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_convert.h' 2025-07-17T06:38:00.0851740Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_double.h' 2025-07-17T06:38:00.0856220Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_float.h' 2025-07-17T06:38:00.0857960Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_half.h' 2025-07-17T06:38:00.0866380Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_int.h' 2025-07-17T06:38:00.0868730Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_mask.h' 2025-07-17T06:38:00.0875090Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_qint.h' 2025-07-17T06:38:00.0876550Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_bfloat16_vsx.h' 2025-07-17T06:38:00.0878660Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_common_vsx.h' 2025-07-17T06:38:00.0882840Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_double_vsx.h' 2025-07-17T06:38:00.0887260Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_float_vsx.h' 2025-07-17T06:38:00.0889910Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_double_vsx.h' 2025-07-17T06:38:00.0892620Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_float_vsx.h' 2025-07-17T06:38:00.0895070Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int16_vsx.h' 2025-07-17T06:38:00.0897180Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int32_vsx.h' 2025-07-17T06:38:00.0899270Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int64_vsx.h' 2025-07-17T06:38:00.0901370Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint32_vsx.h' 2025-07-17T06:38:00.0904440Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint8_vsx.h' 2025-07-17T06:38:00.0907450Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_quint8_vsx.h' 2025-07-17T06:38:00.0911410Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vsx_helpers.h' 2025-07-17T06:38:00.0926290Z adding 'torch/include/ATen/cpu/vec/vec256/zarch/vec256_zarch.h' 2025-07-17T06:38:00.0929270Z adding 'torch/include/ATen/cpu/vec/vec512/vec512.h' 2025-07-17T06:38:00.0939120Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_bfloat16.h' 2025-07-17T06:38:00.0943900Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_complex_double.h' 2025-07-17T06:38:00.0949870Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_complex_float.h' 2025-07-17T06:38:00.0952080Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_convert.h' 2025-07-17T06:38:00.0954750Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_double.h' 2025-07-17T06:38:00.0959510Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_float.h' 2025-07-17T06:38:00.0963400Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_float8.h' 2025-07-17T06:38:00.0970610Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_int.h' 2025-07-17T06:38:00.0973990Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_mask.h' 2025-07-17T06:38:00.0980370Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_qint.h' 2025-07-17T06:38:00.0981790Z adding 'torch/include/ATen/cuda/ATenCUDAGeneral.h' 2025-07-17T06:38:00.0982810Z adding 'torch/include/ATen/cuda/ApplyGridUtils.cuh' 2025-07-17T06:38:00.0983960Z adding 'torch/include/ATen/cuda/AsmUtils.cuh' 2025-07-17T06:38:00.0987810Z adding 'torch/include/ATen/cuda/Atomic.cuh' 2025-07-17T06:38:00.0991950Z adding 'torch/include/ATen/cuda/CUDAApplyUtils.cuh' 2025-07-17T06:38:00.0994400Z adding 'torch/include/ATen/cuda/CUDABlas.h' 2025-07-17T06:38:00.0995000Z adding 'torch/include/ATen/cuda/CUDAContext.h' 2025-07-17T06:38:00.0996370Z adding 'torch/include/ATen/cuda/CUDAContextLight.h' 2025-07-17T06:38:00.0997490Z adding 'torch/include/ATen/cuda/CUDADataType.h' 2025-07-17T06:38:00.0998480Z adding 'torch/include/ATen/cuda/CUDADevice.h' 2025-07-17T06:38:00.1000960Z adding 'torch/include/ATen/cuda/CUDAEvent.h' 2025-07-17T06:38:00.1003050Z adding 'torch/include/ATen/cuda/CUDAGeneratorImpl.h' 2025-07-17T06:38:00.1003980Z adding 'torch/include/ATen/cuda/CUDAGraph.h' 2025-07-17T06:38:00.1005040Z adding 'torch/include/ATen/cuda/CUDAGraphsUtils.cuh' 2025-07-17T06:38:00.1006080Z adding 'torch/include/ATen/cuda/CUDASparse.h' 2025-07-17T06:38:00.1008350Z adding 'torch/include/ATen/cuda/CUDASparseBlas.h' 2025-07-17T06:38:00.1010100Z adding 'torch/include/ATen/cuda/CUDASparseDescriptors.h' 2025-07-17T06:38:00.1010700Z adding 'torch/include/ATen/cuda/CUDATensorMethods.cuh' 2025-07-17T06:38:00.1011530Z adding 'torch/include/ATen/cuda/CUDAUtils.h' 2025-07-17T06:38:00.1012790Z adding 'torch/include/ATen/cuda/CachingHostAllocator.h' 2025-07-17T06:38:00.1013920Z adding 'torch/include/ATen/cuda/DeviceUtils.cuh' 2025-07-17T06:38:00.1014800Z adding 'torch/include/ATen/cuda/EmptyTensor.h' 2025-07-17T06:38:00.1017190Z adding 'torch/include/ATen/cuda/Exceptions.h' 2025-07-17T06:38:00.1018260Z adding 'torch/include/ATen/cuda/NumericLimits.cuh' 2025-07-17T06:38:00.1019110Z adding 'torch/include/ATen/cuda/PeerToPeerAccess.h' 2025-07-17T06:38:00.1019880Z adding 'torch/include/ATen/cuda/PhiloxCudaState.h' 2025-07-17T06:38:00.1020590Z adding 'torch/include/ATen/cuda/PhiloxUtils.cuh' 2025-07-17T06:38:00.1021520Z adding 'torch/include/ATen/cuda/PinnedMemoryAllocator.h' 2025-07-17T06:38:00.1022590Z adding 'torch/include/ATen/cuda/ScanUtils.cuh' 2025-07-17T06:38:00.1023410Z adding 'torch/include/ATen/cuda/Sleep.h' 2025-07-17T06:38:00.1024260Z adding 'torch/include/ATen/cuda/ThrustAllocator.h' 2025-07-17T06:38:00.1025530Z adding 'torch/include/ATen/cuda/cub-RadixSortPairs.cuh' 2025-07-17T06:38:00.1029850Z adding 'torch/include/ATen/cuda/cub.cuh' 2025-07-17T06:38:00.1030880Z adding 'torch/include/ATen/cuda/cub.h' 2025-07-17T06:38:00.1031890Z adding 'torch/include/ATen/cuda/cub_definitions.cuh' 2025-07-17T06:38:00.1032880Z adding 'torch/include/ATen/cuda/jiterator.h' 2025-07-17T06:38:00.1034840Z adding 'torch/include/ATen/cuda/jiterator_impl.h' 2025-07-17T06:38:00.1035400Z adding 'torch/include/ATen/cuda/llvm_jit_strings.h' 2025-07-17T06:38:00.1037300Z adding 'torch/include/ATen/cuda/detail/CUDAHooks.h' 2025-07-17T06:38:00.1039570Z adding 'torch/include/ATen/cuda/detail/DeviceThreadHandles.h' 2025-07-17T06:38:00.1040240Z adding 'torch/include/ATen/cuda/detail/IndexUtils.cuh' 2025-07-17T06:38:00.1041840Z adding 'torch/include/ATen/cuda/detail/IntegerDivider.cuh' 2025-07-17T06:38:00.1042860Z adding 'torch/include/ATen/cuda/detail/KernelUtils.h' 2025-07-17T06:38:00.1043770Z adding 'torch/include/ATen/cuda/detail/LazyNVRTC.h' 2025-07-17T06:38:00.1045230Z adding 'torch/include/ATen/cuda/detail/OffsetCalculator.cuh' 2025-07-17T06:38:00.1046270Z adding 'torch/include/ATen/cuda/detail/PhiloxCudaStateRaw.cuh' 2025-07-17T06:38:00.1047410Z adding 'torch/include/ATen/cuda/detail/TensorInfo.cuh' 2025-07-17T06:38:00.1048600Z adding 'torch/include/ATen/cuda/detail/UnpackRaw.cuh' 2025-07-17T06:38:00.1052230Z adding 'torch/include/ATen/cuda/tunable/GemmCommon.h' 2025-07-17T06:38:00.1055590Z adding 'torch/include/ATen/cuda/tunable/GemmHipblaslt.h' 2025-07-17T06:38:00.1057660Z adding 'torch/include/ATen/cuda/tunable/GemmRocblas.h' 2025-07-17T06:38:00.1058390Z adding 'torch/include/ATen/cuda/tunable/StreamTimer.h' 2025-07-17T06:38:00.1060570Z adding 'torch/include/ATen/cuda/tunable/Tunable.h' 2025-07-17T06:38:00.1062060Z adding 'torch/include/ATen/cuda/tunable/TunableGemm.h' 2025-07-17T06:38:00.1065420Z adding 'torch/include/ATen/cuda/tunable/TunableOp.h' 2025-07-17T06:38:00.1069080Z adding 'torch/include/ATen/cudnn/Descriptors.h' 2025-07-17T06:38:00.1069680Z adding 'torch/include/ATen/cudnn/Handle.h' 2025-07-17T06:38:00.1070460Z adding 'torch/include/ATen/cudnn/Handles.h' 2025-07-17T06:38:00.1071260Z adding 'torch/include/ATen/cudnn/Types.h' 2025-07-17T06:38:00.1072220Z adding 'torch/include/ATen/cudnn/Utils.h' 2025-07-17T06:38:00.1073140Z adding 'torch/include/ATen/cudnn/cudnn-wrapper.h' 2025-07-17T06:38:00.1075070Z adding 'torch/include/ATen/detail/AcceleratorHooksInterface.h' 2025-07-17T06:38:00.1076390Z adding 'torch/include/ATen/detail/CUDAHooksInterface.h' 2025-07-17T06:38:00.1077650Z adding 'torch/include/ATen/detail/FunctionTraits.h' 2025-07-17T06:38:00.1078840Z adding 'torch/include/ATen/detail/HIPHooksInterface.h' 2025-07-17T06:38:00.1079790Z adding 'torch/include/ATen/detail/HPUHooksInterface.h' 2025-07-17T06:38:00.1080730Z adding 'torch/include/ATen/detail/IPUHooksInterface.h' 2025-07-17T06:38:00.1081800Z adding 'torch/include/ATen/detail/MAIAHooksInterface.h' 2025-07-17T06:38:00.1083090Z adding 'torch/include/ATen/detail/MPSHooksInterface.h' 2025-07-17T06:38:00.1084430Z adding 'torch/include/ATen/detail/MTIAHooksInterface.h' 2025-07-17T06:38:00.1085590Z adding 'torch/include/ATen/detail/PrivateUse1HooksInterface.h' 2025-07-17T06:38:00.1086710Z adding 'torch/include/ATen/detail/XPUHooksInterface.h' 2025-07-17T06:38:00.1088030Z adding 'torch/include/ATen/functorch/ADInterpreters.h' 2025-07-17T06:38:00.1091600Z adding 'torch/include/ATen/functorch/BatchRulesHelper.h' 2025-07-17T06:38:00.1092590Z adding 'torch/include/ATen/functorch/BatchedFallback.h' 2025-07-17T06:38:00.1094820Z adding 'torch/include/ATen/functorch/BatchedTensorImpl.h' 2025-07-17T06:38:00.1096000Z adding 'torch/include/ATen/functorch/BatchingMetaprogramming.h' 2025-07-17T06:38:00.1097890Z adding 'torch/include/ATen/functorch/DynamicLayer.h' 2025-07-17T06:38:00.1098550Z adding 'torch/include/ATen/functorch/FunctionalizeInterpreter.h' 2025-07-17T06:38:00.1101790Z adding 'torch/include/ATen/functorch/Interpreter.h' 2025-07-17T06:38:00.1104220Z adding 'torch/include/ATen/functorch/LegacyVmapTransforms.h' 2025-07-17T06:38:00.1104680Z adding 'torch/include/ATen/functorch/Macros.h' 2025-07-17T06:38:00.1106010Z adding 'torch/include/ATen/functorch/PlumbingHelper.h' 2025-07-17T06:38:00.1107560Z adding 'torch/include/ATen/functorch/TensorWrapper.h' 2025-07-17T06:38:00.1108460Z adding 'torch/include/ATen/functorch/VmapInterpreter.h' 2025-07-17T06:38:00.1110500Z adding 'torch/include/ATen/hip/impl/HIPAllocatorMasqueradingAsCUDA.h' 2025-07-17T06:38:00.1111340Z adding 'torch/include/ATen/hip/impl/HIPCachingAllocatorMasqueradingAsCUDA.h' 2025-07-17T06:38:00.1114370Z adding 'torch/include/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h' 2025-07-17T06:38:00.1115540Z adding 'torch/include/ATen/hip/impl/HIPStreamMasqueradingAsCUDA.h' 2025-07-17T06:38:00.1116570Z adding 'torch/include/ATen/metal/Context.h' 2025-07-17T06:38:00.1118790Z adding 'torch/include/ATen/miopen/Descriptors.h' 2025-07-17T06:38:00.1119570Z adding 'torch/include/ATen/miopen/Exceptions.h' 2025-07-17T06:38:00.1120400Z adding 'torch/include/ATen/miopen/Handle.h' 2025-07-17T06:38:00.1121210Z adding 'torch/include/ATen/miopen/Types.h' 2025-07-17T06:38:00.1122040Z adding 'torch/include/ATen/miopen/Utils.h' 2025-07-17T06:38:00.1122990Z adding 'torch/include/ATen/miopen/miopen-wrapper.h' 2025-07-17T06:38:00.1124140Z adding 'torch/include/ATen/mps/EmptyTensor.h' 2025-07-17T06:38:00.1126080Z adding 'torch/include/ATen/mps/IndexKernels.h' 2025-07-17T06:38:00.1130600Z adding 'torch/include/ATen/mps/MPSAllocator.h' 2025-07-17T06:38:00.1131670Z adding 'torch/include/ATen/mps/MPSAllocatorInterface.h' 2025-07-17T06:38:00.1132690Z adding 'torch/include/ATen/mps/MPSDevice.h' 2025-07-17T06:38:00.1134290Z adding 'torch/include/ATen/mps/MPSEvent.h' 2025-07-17T06:38:00.1135150Z adding 'torch/include/ATen/mps/MPSGeneratorImpl.h' 2025-07-17T06:38:00.1137070Z adding 'torch/include/ATen/mps/MPSGuardImpl.h' 2025-07-17T06:38:00.1137880Z adding 'torch/include/ATen/mps/MPSHooks.h' 2025-07-17T06:38:00.1141890Z adding 'torch/include/ATen/mps/MPSProfiler.h' 2025-07-17T06:38:00.1143050Z adding 'torch/include/ATen/mps/MPSStream.h' 2025-07-17T06:38:00.1145540Z adding 'torch/include/ATen/native/Activation.h' 2025-07-17T06:38:00.1146380Z adding 'torch/include/ATen/native/AdaptivePooling.h' 2025-07-17T06:38:00.1147210Z adding 'torch/include/ATen/native/AmpKernels.h' 2025-07-17T06:38:00.1149420Z adding 'torch/include/ATen/native/BatchLinearAlgebra.h' 2025-07-17T06:38:00.1150520Z adding 'torch/include/ATen/native/BinaryOps.h' 2025-07-17T06:38:00.1152800Z adding 'torch/include/ATen/native/BucketizationUtils.h' 2025-07-17T06:38:00.1154150Z adding 'torch/include/ATen/native/CPUBlas.h' 2025-07-17T06:38:00.1155300Z adding 'torch/include/ATen/native/CPUFallback.h' 2025-07-17T06:38:00.1156260Z adding 'torch/include/ATen/native/CanUse32BitIndexMath.h' 2025-07-17T06:38:00.1157670Z adding 'torch/include/ATen/native/ComplexHelper.h' 2025-07-17T06:38:00.1158670Z adding 'torch/include/ATen/native/CompositeRandomAccessor.h' 2025-07-17T06:38:00.1160630Z adding 'torch/include/ATen/native/CompositeRandomAccessorCommon.h' 2025-07-17T06:38:00.1163980Z adding 'torch/include/ATen/native/ConvUtils.h' 2025-07-17T06:38:00.1164600Z adding 'torch/include/ATen/native/ConvolutionMM3d.h' 2025-07-17T06:38:00.1165500Z adding 'torch/include/ATen/native/Copy.h' 2025-07-17T06:38:00.1166280Z adding 'torch/include/ATen/native/Cross.h' 2025-07-17T06:38:00.1168500Z adding 'torch/include/ATen/native/DilatedConvolutionUtils.h' 2025-07-17T06:38:00.1171310Z adding 'torch/include/ATen/native/DispatchStub.h' 2025-07-17T06:38:00.1171950Z adding 'torch/include/ATen/native/Distance.h' 2025-07-17T06:38:00.1175430Z adding 'torch/include/ATen/native/DistributionTemplates.h' 2025-07-17T06:38:00.1180270Z adding 'torch/include/ATen/native/Distributions.h' 2025-07-17T06:38:00.1181560Z adding 'torch/include/ATen/native/EmbeddingBag.h' 2025-07-17T06:38:00.1182370Z adding 'torch/include/ATen/native/Fill.h' 2025-07-17T06:38:00.1185850Z adding 'torch/include/ATen/native/ForeachUtils.h' 2025-07-17T06:38:00.1186830Z adding 'torch/include/ATen/native/FractionalMaxPooling.h' 2025-07-17T06:38:00.1187680Z adding 'torch/include/ATen/native/FunctionOfAMatrixUtils.h' 2025-07-17T06:38:00.1188470Z adding 'torch/include/ATen/native/FusedAdagrad.h' 2025-07-17T06:38:00.1189320Z adding 'torch/include/ATen/native/FusedAdam.h' 2025-07-17T06:38:00.1190250Z adding 'torch/include/ATen/native/FusedSGD.h' 2025-07-17T06:38:00.1191170Z adding 'torch/include/ATen/native/Gelu.h' 2025-07-17T06:38:00.1193500Z adding 'torch/include/ATen/native/GridSampler.h' 2025-07-17T06:38:00.1194440Z adding 'torch/include/ATen/native/GridSamplerUtils.h' 2025-07-17T06:38:00.1195370Z adding 'torch/include/ATen/native/Histogram.h' 2025-07-17T06:38:00.1196380Z adding 'torch/include/ATen/native/IndexKernel.h' 2025-07-17T06:38:00.1198340Z adding 'torch/include/ATen/native/IndexingUtils.h' 2025-07-17T06:38:00.1199030Z adding 'torch/include/ATen/native/Lerp.h' 2025-07-17T06:38:00.1199980Z adding 'torch/include/ATen/native/LinearAlgebra.h' 2025-07-17T06:38:00.1206200Z adding 'torch/include/ATen/native/LinearAlgebraUtils.h' 2025-07-17T06:38:00.1207040Z adding 'torch/include/ATen/native/LossMulti.h' 2025-07-17T06:38:00.1236130Z adding 'torch/include/ATen/native/Math.h' 2025-07-17T06:38:00.1237970Z adding 'torch/include/ATen/native/MathBitFallThroughLists.h' 2025-07-17T06:38:00.1240190Z adding 'torch/include/ATen/native/MathBitsFallback.h' 2025-07-17T06:38:00.1241250Z adding 'torch/include/ATen/native/MaxPooling.h' 2025-07-17T06:38:00.1242270Z adding 'torch/include/ATen/native/NonEmptyUtils.h' 2025-07-17T06:38:00.1243440Z adding 'torch/include/ATen/native/NonSymbolicBC.h' 2025-07-17T06:38:00.1244360Z adding 'torch/include/ATen/native/Normalization.h' 2025-07-17T06:38:00.1245380Z adding 'torch/include/ATen/native/Padding.h' 2025-07-17T06:38:00.1246520Z adding 'torch/include/ATen/native/PixelShuffle.h' 2025-07-17T06:38:00.1247490Z adding 'torch/include/ATen/native/PointwiseOps.h' 2025-07-17T06:38:00.1250420Z adding 'torch/include/ATen/native/Pool.h' 2025-07-17T06:38:00.1251230Z adding 'torch/include/ATen/native/Pow.h' 2025-07-17T06:38:00.1252440Z adding 'torch/include/ATen/native/RNN.h' 2025-07-17T06:38:00.1253330Z adding 'torch/include/ATen/native/RangeFactories.h' 2025-07-17T06:38:00.1254400Z adding 'torch/include/ATen/native/RangeUtils.h' 2025-07-17T06:38:00.1255240Z adding 'torch/include/ATen/native/ReduceAllOps.h' 2025-07-17T06:38:00.1256330Z adding 'torch/include/ATen/native/ReduceOps.h' 2025-07-17T06:38:00.1259800Z adding 'torch/include/ATen/native/ReduceOpsUtils.h' 2025-07-17T06:38:00.1260600Z adding 'torch/include/ATen/native/ReductionType.h' 2025-07-17T06:38:00.1261580Z adding 'torch/include/ATen/native/Repeat.h' 2025-07-17T06:38:00.1264280Z adding 'torch/include/ATen/native/Resize.h' 2025-07-17T06:38:00.1265260Z adding 'torch/include/ATen/native/ResizeCommon.h' 2025-07-17T06:38:00.1266580Z adding 'torch/include/ATen/native/ScatterGatherChecks.h' 2025-07-17T06:38:00.1267450Z adding 'torch/include/ATen/native/SegmentReduce.h' 2025-07-17T06:38:00.1270550Z adding 'torch/include/ATen/native/SharedReduceOps.h' 2025-07-17T06:38:00.1271510Z adding 'torch/include/ATen/native/SobolEngineOpsUtils.h' 2025-07-17T06:38:00.1272380Z adding 'torch/include/ATen/native/Sorting.h' 2025-07-17T06:38:00.1273420Z adding 'torch/include/ATen/native/SortingUtils.h' 2025-07-17T06:38:00.1275660Z adding 'torch/include/ATen/native/SparseTensorUtils.h' 2025-07-17T06:38:00.1276850Z adding 'torch/include/ATen/native/SpectralOpsUtils.h' 2025-07-17T06:38:00.1278740Z adding 'torch/include/ATen/native/StridedRandomAccessor.h' 2025-07-17T06:38:00.1279460Z adding 'torch/include/ATen/native/TensorAdvancedIndexing.h' 2025-07-17T06:38:00.1281390Z adding 'torch/include/ATen/native/TensorAdvancedIndexingUtils.h' 2025-07-17T06:38:00.1281900Z adding 'torch/include/ATen/native/TensorCompare.h' 2025-07-17T06:38:00.1282790Z adding 'torch/include/ATen/native/TensorConversions.h' 2025-07-17T06:38:00.1283820Z adding 'torch/include/ATen/native/TensorDimApply.h' 2025-07-17T06:38:00.1285840Z adding 'torch/include/ATen/native/TensorFactories.h' 2025-07-17T06:38:00.1286430Z adding 'torch/include/ATen/native/TensorIterator.h' 2025-07-17T06:38:00.1287500Z adding 'torch/include/ATen/native/TensorIteratorDynamicCasting.h' 2025-07-17T06:38:00.1288270Z adding 'torch/include/ATen/native/TensorProperties.h' 2025-07-17T06:38:00.1290190Z adding 'torch/include/ATen/native/TensorShape.h' 2025-07-17T06:38:00.1290930Z adding 'torch/include/ATen/native/TensorTransformations.h' 2025-07-17T06:38:00.1292080Z adding 'torch/include/ATen/native/TopKImpl.h' 2025-07-17T06:38:00.1292940Z adding 'torch/include/ATen/native/TransposeType.h' 2025-07-17T06:38:00.1294150Z adding 'torch/include/ATen/native/TriangularOpsUtils.h' 2025-07-17T06:38:00.1295030Z adding 'torch/include/ATen/native/TypeProperties.h' 2025-07-17T06:38:00.1296240Z adding 'torch/include/ATen/native/UnaryOps.h' 2025-07-17T06:38:00.1297140Z adding 'torch/include/ATen/native/Unfold2d.h' 2025-07-17T06:38:00.1298080Z adding 'torch/include/ATen/native/Unfold3d.h' 2025-07-17T06:38:00.1299470Z adding 'torch/include/ATen/native/UnfoldBackward.h' 2025-07-17T06:38:00.1303380Z adding 'torch/include/ATen/native/UpSample.h' 2025-07-17T06:38:00.1304190Z adding 'torch/include/ATen/native/batch_norm.h' 2025-07-17T06:38:00.1305170Z adding 'torch/include/ATen/native/group_norm.h' 2025-07-17T06:38:00.1306620Z adding 'torch/include/ATen/native/im2col.h' 2025-07-17T06:38:00.1308420Z adding 'torch/include/ATen/native/im2col_shape_check.h' 2025-07-17T06:38:00.1309500Z adding 'torch/include/ATen/native/layer_norm.h' 2025-07-17T06:38:00.1310420Z adding 'torch/include/ATen/native/verbose_wrapper.h' 2025-07-17T06:38:00.1311600Z adding 'torch/include/ATen/native/vol2col.h' 2025-07-17T06:38:00.1314250Z adding 'torch/include/ATen/native/ao_sparse/quantized/cpu/fbgemm_utils.h' 2025-07-17T06:38:00.1315160Z adding 'torch/include/ATen/native/ao_sparse/quantized/cpu/packed_params.h' 2025-07-17T06:38:00.1316590Z adding 'torch/include/ATen/native/ao_sparse/quantized/cpu/qnnpack_utils.h' 2025-07-17T06:38:00.1317970Z adding 'torch/include/ATen/native/cpu/AtomicAddFloat.h' 2025-07-17T06:38:00.1318820Z adding 'torch/include/ATen/native/cpu/CatKernel.h' 2025-07-17T06:38:00.1319670Z adding 'torch/include/ATen/native/cpu/ChannelShuffleKernel.h' 2025-07-17T06:38:00.1320600Z adding 'torch/include/ATen/native/cpu/CopyKernel.h' 2025-07-17T06:38:00.1321510Z adding 'torch/include/ATen/native/cpu/DepthwiseConvKernel.h' 2025-07-17T06:38:00.1324480Z adding 'torch/include/ATen/native/cpu/DistributionTemplates.h' 2025-07-17T06:38:00.1325410Z adding 'torch/include/ATen/native/cpu/Elu.h' 2025-07-17T06:38:00.1326720Z adding 'torch/include/ATen/native/cpu/Gelu.h' 2025-07-17T06:38:00.1327650Z adding 'torch/include/ATen/native/cpu/GridSamplerKernel.h' 2025-07-17T06:38:00.1328980Z adding 'torch/include/ATen/native/cpu/IndexKernelUtils.h' 2025-07-17T06:38:00.1329870Z adding 'torch/include/ATen/native/cpu/Intrinsics.h' 2025-07-17T06:38:00.1331040Z adding 'torch/include/ATen/native/cpu/IsContiguous.h' 2025-07-17T06:38:00.1332280Z adding 'torch/include/ATen/native/cpu/LogAddExp.h' 2025-07-17T06:38:00.1335180Z adding 'torch/include/ATen/native/cpu/LogSoftmaxKernelImpl.h' 2025-07-17T06:38:00.1338000Z adding 'torch/include/ATen/native/cpu/Loops.h' 2025-07-17T06:38:00.1338720Z adding 'torch/include/ATen/native/cpu/MaxUnpoolKernel.h' 2025-07-17T06:38:00.1339580Z adding 'torch/include/ATen/native/cpu/PixelShuffleKernel.h' 2025-07-17T06:38:00.1342660Z adding 'torch/include/ATen/native/cpu/Reduce.h' 2025-07-17T06:38:00.1344370Z adding 'torch/include/ATen/native/cpu/ReduceUtils.h' 2025-07-17T06:38:00.1345360Z adding 'torch/include/ATen/native/cpu/ReducedPrecisionFloatGemvFastPathKernel.h' 2025-07-17T06:38:00.1346140Z adding 'torch/include/ATen/native/cpu/SampledAddmmKernel.h' 2025-07-17T06:38:00.1348130Z adding 'torch/include/ATen/native/cpu/SerialStackImpl.h' 2025-07-17T06:38:00.1348740Z adding 'torch/include/ATen/native/cpu/SoftmaxKernel.h' 2025-07-17T06:38:00.1349750Z adding 'torch/include/ATen/native/cpu/SpmmReduceKernel.h' 2025-07-17T06:38:00.1350600Z adding 'torch/include/ATen/native/cpu/StackKernel.h' 2025-07-17T06:38:00.1360170Z adding 'torch/include/ATen/native/cpu/UpSampleKernelAVXAntialias.h' 2025-07-17T06:38:00.1361280Z adding 'torch/include/ATen/native/cpu/WeightNormKernel.h' 2025-07-17T06:38:00.1364750Z adding 'torch/include/ATen/native/cpu/avx_mathfun.h' 2025-07-17T06:38:00.1365630Z adding 'torch/include/ATen/native/cpu/int_mm_kernel.h' 2025-07-17T06:38:00.1366680Z adding 'torch/include/ATen/native/cpu/mixed_data_type.h' 2025-07-17T06:38:00.1368760Z adding 'torch/include/ATen/native/cpu/moments_utils.h' 2025-07-17T06:38:00.1370370Z adding 'torch/include/ATen/native/cpu/utils.h' 2025-07-17T06:38:00.1372280Z adding 'torch/include/ATen/native/cpu/zmath.h' 2025-07-17T06:38:00.1373560Z adding 'torch/include/ATen/native/cuda/Activation.h' 2025-07-17T06:38:00.1374600Z adding 'torch/include/ATen/native/cuda/BinaryInternal.h' 2025-07-17T06:38:00.1377430Z adding 'torch/include/ATen/native/cuda/CUDAJitLoops.cuh' 2025-07-17T06:38:00.1383130Z adding 'torch/include/ATen/native/cuda/CUDALoops.cuh' 2025-07-17T06:38:00.1384140Z adding 'torch/include/ATen/native/cuda/CompositeRandomAccessor.h' 2025-07-17T06:38:00.1384890Z adding 'torch/include/ATen/native/cuda/Copy.h' 2025-07-17T06:38:00.1389480Z adding 'torch/include/ATen/native/cuda/CuFFTPlanCache.h' 2025-07-17T06:38:00.1390310Z adding 'torch/include/ATen/native/cuda/CuFFTUtils.h' 2025-07-17T06:38:00.1391160Z adding 'torch/include/ATen/native/cuda/DeviceSqrt.cuh' 2025-07-17T06:38:00.1396220Z adding 'torch/include/ATen/native/cuda/DistributionTemplates.h' 2025-07-17T06:38:00.1396930Z adding 'torch/include/ATen/native/cuda/Distributions.h' 2025-07-17T06:38:00.1397890Z adding 'torch/include/ATen/native/cuda/EmbeddingBackwardKernel.cuh' 2025-07-17T06:38:00.1400660Z adding 'torch/include/ATen/native/cuda/ForeachFunctors.cuh' 2025-07-17T06:38:00.1401320Z adding 'torch/include/ATen/native/cuda/ForeachMinMaxFunctors.cuh' 2025-07-17T06:38:00.1403750Z adding 'torch/include/ATen/native/cuda/GridSampler.cuh' 2025-07-17T06:38:00.1404380Z adding 'torch/include/ATen/native/cuda/GridSampler.h' 2025-07-17T06:38:00.1405180Z adding 'torch/include/ATen/native/cuda/GroupMM.h' 2025-07-17T06:38:00.1407120Z adding 'torch/include/ATen/native/cuda/GroupMMCommon.cuh' 2025-07-17T06:38:00.1407750Z adding 'torch/include/ATen/native/cuda/IndexKernel.h' 2025-07-17T06:38:00.1408880Z adding 'torch/include/ATen/native/cuda/IndexKernelUtils.h' 2025-07-17T06:38:00.1411020Z adding 'torch/include/ATen/native/cuda/JitLoops.cuh' 2025-07-17T06:38:00.1413560Z adding 'torch/include/ATen/native/cuda/KernelUtils.cuh' 2025-07-17T06:38:00.1414210Z adding 'torch/include/ATen/native/cuda/LaunchUtils.h' 2025-07-17T06:38:00.1416880Z adding 'torch/include/ATen/native/cuda/Loops.cuh' 2025-07-17T06:38:00.1438480Z adding 'torch/include/ATen/native/cuda/Math.cuh' 2025-07-17T06:38:00.1443310Z adding 'torch/include/ATen/native/cuda/MemoryAccess.cuh' 2025-07-17T06:38:00.1444330Z adding 'torch/include/ATen/native/cuda/MiscUtils.h' 2025-07-17T06:38:00.1447120Z adding 'torch/include/ATen/native/cuda/MultiTensorApply.cuh' 2025-07-17T06:38:00.1458640Z adding 'torch/include/ATen/native/cuda/Normalization.cuh' 2025-07-17T06:38:00.1462010Z adding 'torch/include/ATen/native/cuda/PersistentSoftmax.cuh' 2025-07-17T06:38:00.1463130Z adding 'torch/include/ATen/native/cuda/Pow.cuh' 2025-07-17T06:38:00.1464340Z adding 'torch/include/ATen/native/cuda/Randperm.cuh' 2025-07-17T06:38:00.1474600Z adding 'torch/include/ATen/native/cuda/Reduce.cuh' 2025-07-17T06:38:00.1475320Z adding 'torch/include/ATen/native/cuda/ReduceOps.h' 2025-07-17T06:38:00.1476360Z adding 'torch/include/ATen/native/cuda/Resize.h' 2025-07-17T06:38:00.1477350Z adding 'torch/include/ATen/native/cuda/RowwiseScaledMM.h' 2025-07-17T06:38:00.1478170Z adding 'torch/include/ATen/native/cuda/ScaledGroupMM.h' 2025-07-17T06:38:00.1479010Z adding 'torch/include/ATen/native/cuda/ScanKernels.h' 2025-07-17T06:38:00.1482940Z adding 'torch/include/ATen/native/cuda/ScanUtils.cuh' 2025-07-17T06:38:00.1483640Z adding 'torch/include/ATen/native/cuda/Sort.h' 2025-07-17T06:38:00.1484490Z adding 'torch/include/ATen/native/cuda/SortStable.h' 2025-07-17T06:38:00.1487380Z adding 'torch/include/ATen/native/cuda/SortUtils.cuh' 2025-07-17T06:38:00.1488030Z adding 'torch/include/ATen/native/cuda/Sorting.h' 2025-07-17T06:38:00.1490330Z adding 'torch/include/ATen/native/cuda/SortingCommon.cuh' 2025-07-17T06:38:00.1492750Z adding 'torch/include/ATen/native/cuda/SortingRadixSelect.cuh' 2025-07-17T06:38:00.1496390Z adding 'torch/include/ATen/native/cuda/TensorModeKernel.cuh' 2025-07-17T06:38:00.1497020Z adding 'torch/include/ATen/native/cuda/TensorModeKernel.h' 2025-07-17T06:38:00.1497970Z adding 'torch/include/ATen/native/cuda/TensorTopK.h' 2025-07-17T06:38:00.1498830Z adding 'torch/include/ATen/native/cuda/UniqueCub.cuh' 2025-07-17T06:38:00.1501450Z adding 'torch/include/ATen/native/cuda/UpSample.cuh' 2025-07-17T06:38:00.1502580Z adding 'torch/include/ATen/native/cuda/block_reduce.cuh' 2025-07-17T06:38:00.1503780Z adding 'torch/include/ATen/native/cuda/cutlass_common.cuh' 2025-07-17T06:38:00.1504410Z adding 'torch/include/ATen/native/cuda/fused_adam_amsgrad_impl.cuh' 2025-07-17T06:38:00.1509610Z adding 'torch/include/ATen/native/cuda/fused_adam_impl.cuh' 2025-07-17T06:38:00.1509850Z adding 'torch/include/ATen/native/cuda/fused_adam_utils.cuh' 2025-07-17T06:38:00.1509990Z adding 'torch/include/ATen/native/cuda/fused_adamw_amsgrad_impl.cuh' 2025-07-17T06:38:00.1510100Z adding 'torch/include/ATen/native/cuda/fused_adamw_impl.cuh' 2025-07-17T06:38:00.1511110Z adding 'torch/include/ATen/native/cuda/im2col.cuh' 2025-07-17T06:38:00.1513310Z adding 'torch/include/ATen/native/cuda/jit_utils.h' 2025-07-17T06:38:00.1517540Z adding 'torch/include/ATen/native/cuda/reduction_template.cuh' 2025-07-17T06:38:00.1518220Z adding 'torch/include/ATen/native/cuda/thread_constants.h' 2025-07-17T06:38:00.1520590Z adding 'torch/include/ATen/native/cuda/vol2col.cuh' 2025-07-17T06:38:00.1521510Z adding 'torch/include/ATen/native/hip/ck_bgemm.h' 2025-07-17T06:38:00.1522520Z adding 'torch/include/ATen/native/hip/ck_gemm.h' 2025-07-17T06:38:00.1525140Z adding 'torch/include/ATen/native/hip/ck_gemm_template.h' 2025-07-17T06:38:00.1525910Z adding 'torch/include/ATen/native/hip/ck_types.h' 2025-07-17T06:38:00.1527410Z adding 'torch/include/ATen/native/hip/bgemm_kernels/bgemm_kernel_collection.h' 2025-07-17T06:38:00.1529540Z adding 'torch/include/ATen/native/hip/bgemm_kernels/bgemm_kernel_template.h' 2025-07-17T06:38:00.1530340Z adding 'torch/include/ATen/native/kleidiai/kai_kernels.h' 2025-07-17T06:38:00.1531370Z adding 'torch/include/ATen/native/kleidiai/kai_pack.h' 2025-07-17T06:38:00.1532650Z adding 'torch/include/ATen/native/kleidiai/kai_ukernel_interface.h' 2025-07-17T06:38:00.1534010Z adding 'torch/include/ATen/native/metal/MetalCommandBuffer.h' 2025-07-17T06:38:00.1534890Z adding 'torch/include/ATen/native/metal/MetalContext.h' 2025-07-17T06:38:00.1535860Z adding 'torch/include/ATen/native/metal/MetalConvParams.h' 2025-07-17T06:38:00.1536820Z adding 'torch/include/ATen/native/metal/MetalDevice.h' 2025-07-17T06:38:00.1537960Z adding 'torch/include/ATen/native/metal/MetalNeuronType.h' 2025-07-17T06:38:00.1539310Z adding 'torch/include/ATen/native/metal/MetalPrepackOpContext.h' 2025-07-17T06:38:00.1544980Z adding 'torch/include/ATen/native/metal/MetalShaders.h' 2025-07-17T06:38:00.1545860Z adding 'torch/include/ATen/native/metal/MetalTensorImpl.h' 2025-07-17T06:38:00.1546850Z adding 'torch/include/ATen/native/metal/MetalTensorImplStorage.h' 2025-07-17T06:38:00.1548060Z adding 'torch/include/ATen/native/metal/MetalTensorUtils.h' 2025-07-17T06:38:00.1549230Z adding 'torch/include/ATen/native/metal/mpscnn/MPSCNNClampOp.h' 2025-07-17T06:38:00.1550150Z adding 'torch/include/ATen/native/metal/mpscnn/MPSCNNConvOp.h' 2025-07-17T06:38:00.1551080Z adding 'torch/include/ATen/native/metal/mpscnn/MPSCNNFullyConnectedOp.h' 2025-07-17T06:38:00.1551990Z adding 'torch/include/ATen/native/metal/mpscnn/MPSCNNNeuronOp.h' 2025-07-17T06:38:00.1552820Z adding 'torch/include/ATen/native/metal/mpscnn/MPSCNNOp.h' 2025-07-17T06:38:00.1554070Z adding 'torch/include/ATen/native/metal/mpscnn/MPSCNNUtils.h' 2025-07-17T06:38:00.1556020Z adding 'torch/include/ATen/native/metal/mpscnn/MPSImage+Tensor.h' 2025-07-17T06:38:00.1556920Z adding 'torch/include/ATen/native/metal/mpscnn/MPSImageUtils.h' 2025-07-17T06:38:00.1557880Z adding 'torch/include/ATen/native/metal/mpscnn/MPSImageWrapper.h' 2025-07-17T06:38:00.1559110Z adding 'torch/include/ATen/native/metal/mpscnn/tests/MPSCNNTests.h' 2025-07-17T06:38:00.1560020Z adding 'torch/include/ATen/native/metal/mpscnn/tests/MetalOpTestRunner.h' 2025-07-17T06:38:00.1561190Z adding 'torch/include/ATen/native/metal/ops/MetalConvolution.h' 2025-07-17T06:38:00.1561990Z adding 'torch/include/ATen/native/metal/ops/MetalCopy.h' 2025-07-17T06:38:00.1563410Z adding 'torch/include/ATen/native/mkldnn/xpu/Conv.h' 2025-07-17T06:38:00.1564560Z adding 'torch/include/ATen/native/mkldnn/xpu/FusionUtils.h' 2025-07-17T06:38:00.1568680Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/Attr.h' 2025-07-17T06:38:00.1572120Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/DnnlExt.h' 2025-07-17T06:38:00.1573090Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/LRUCache.h' 2025-07-17T06:38:00.1574530Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/Utils.h' 2025-07-17T06:38:00.1575980Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/oneDNN.h' 2025-07-17T06:38:00.1577180Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/oneDNNContext.h' 2025-07-17T06:38:00.1578270Z adding 'torch/include/ATen/native/mps/Copy.h' 2025-07-17T06:38:00.1579270Z adding 'torch/include/ATen/native/mps/MPSGraphSequoiaOps.h' 2025-07-17T06:38:00.1580450Z adding 'torch/include/ATen/native/mps/MPSGraphSonomaOps.h' 2025-07-17T06:38:00.1582520Z adding 'torch/include/ATen/native/mps/MPSGraphVenturaOps.h' 2025-07-17T06:38:00.1583760Z adding 'torch/include/ATen/native/mps/MetalShaderLibrary.h' 2025-07-17T06:38:00.1588690Z adding 'torch/include/ATen/native/mps/OperationUtils.h' 2025-07-17T06:38:00.1589580Z adding 'torch/include/ATen/native/mps/TensorFactory.h' 2025-07-17T06:38:00.1590820Z adding 'torch/include/ATen/native/mps/kernels/Pooling.h' 2025-07-17T06:38:00.1591620Z adding 'torch/include/ATen/native/mps/kernels/UpSample.h' 2025-07-17T06:38:00.1592700Z adding 'torch/include/ATen/native/mps/operations/BinaryKernel.h' 2025-07-17T06:38:00.1593750Z adding 'torch/include/ATen/native/mps/operations/FusedAdamAmsgradKernelImpl.h' 2025-07-17T06:38:00.1594610Z adding 'torch/include/ATen/native/mps/operations/FusedAdamKernelImpl.h' 2025-07-17T06:38:00.1595470Z adding 'torch/include/ATen/native/mps/operations/FusedAdamWAmsgradKernelImpl.h' 2025-07-17T06:38:00.1596260Z adding 'torch/include/ATen/native/mps/operations/FusedAdamWKernelImpl.h' 2025-07-17T06:38:00.1599300Z adding 'torch/include/ATen/native/mps/operations/MultiTensorApply.h' 2025-07-17T06:38:00.1600170Z adding 'torch/include/ATen/native/mtia/EmptyTensor.h' 2025-07-17T06:38:00.1601270Z adding 'torch/include/ATen/native/nested/NestedTensorBinaryOps.h' 2025-07-17T06:38:00.1602410Z adding 'torch/include/ATen/native/nested/NestedTensorMath.h' 2025-07-17T06:38:00.1603750Z adding 'torch/include/ATen/native/nested/NestedTensorTransformerFunctions.h' 2025-07-17T06:38:00.1604680Z adding 'torch/include/ATen/native/nested/NestedTensorTransformerUtils.h' 2025-07-17T06:38:00.1608360Z adding 'torch/include/ATen/native/nested/NestedTensorUtils.h' 2025-07-17T06:38:00.1609520Z adding 'torch/include/ATen/native/quantized/AffineQuantizer.h' 2025-07-17T06:38:00.1610600Z adding 'torch/include/ATen/native/quantized/AffineQuantizerBase.h' 2025-07-17T06:38:00.1611640Z adding 'torch/include/ATen/native/quantized/ConvUtils.h' 2025-07-17T06:38:00.1612400Z adding 'torch/include/ATen/native/quantized/Copy.h' 2025-07-17T06:38:00.1613390Z adding 'torch/include/ATen/native/quantized/FakeQuantAffine.h' 2025-07-17T06:38:00.1614320Z adding 'torch/include/ATen/native/quantized/IndexKernel.h' 2025-07-17T06:38:00.1615540Z adding 'torch/include/ATen/native/quantized/PackedParams.h' 2025-07-17T06:38:00.1616330Z adding 'torch/include/ATen/native/quantized/library.h' 2025-07-17T06:38:00.1618890Z adding 'torch/include/ATen/native/quantized/cpu/ACLUtils.h' 2025-07-17T06:38:00.1619560Z adding 'torch/include/ATen/native/quantized/cpu/BinaryOps.h' 2025-07-17T06:38:00.1620510Z adding 'torch/include/ATen/native/quantized/cpu/EmbeddingPackedParams.h' 2025-07-17T06:38:00.1623310Z adding 'torch/include/ATen/native/quantized/cpu/OnednnUtils.h' 2025-07-17T06:38:00.1626640Z adding 'torch/include/ATen/native/quantized/cpu/QnnpackUtils.h' 2025-07-17T06:38:00.1629070Z adding 'torch/include/ATen/native/quantized/cpu/QuantUtils.h' 2025-07-17T06:38:00.1630840Z adding 'torch/include/ATen/native/quantized/cpu/QuantizedOps.h' 2025-07-17T06:38:00.1631460Z adding 'torch/include/ATen/native/quantized/cpu/RuyUtils.h' 2025-07-17T06:38:00.1634260Z adding 'torch/include/ATen/native/quantized/cpu/XnnpackUtils.h' 2025-07-17T06:38:00.1636940Z adding 'torch/include/ATen/native/quantized/cpu/conv_serialization.h' 2025-07-17T06:38:00.1639180Z adding 'torch/include/ATen/native/quantized/cpu/fbgemm_utils.h' 2025-07-17T06:38:00.1639740Z adding 'torch/include/ATen/native/quantized/cpu/init_qnnpack.h' 2025-07-17T06:38:00.1640730Z adding 'torch/include/ATen/native/quantized/cpu/qconv.h' 2025-07-17T06:38:00.1641780Z adding 'torch/include/ATen/native/quantized/cpu/qembeddingbag.h' 2025-07-17T06:38:00.1642580Z adding 'torch/include/ATen/native/quantized/cpu/qembeddingbag_prepack.h' 2025-07-17T06:38:00.1643520Z adding 'torch/include/ATen/native/quantized/cpu/qlinear.h' 2025-07-17T06:38:00.1646130Z adding 'torch/include/ATen/native/quantized/cudnn/utils.h' 2025-07-17T06:38:00.1647270Z adding 'torch/include/ATen/native/transformers/attention.h' 2025-07-17T06:38:00.1648500Z adding 'torch/include/ATen/native/transformers/sdp_utils.h' 2025-07-17T06:38:00.1652010Z adding 'torch/include/ATen/native/transformers/sdp_utils_cpp.h' 2025-07-17T06:38:00.1652930Z adding 'torch/include/ATen/native/transformers/cuda/sdp_utils.h' 2025-07-17T06:38:00.1654920Z adding 'torch/include/ATen/native/transformers/cuda/flash_attn/flash_api.h' 2025-07-17T06:38:00.1655840Z adding 'torch/include/ATen/native/transformers/cuda/flash_attn/static_switch.h' 2025-07-17T06:38:00.1658330Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/debug_utils.h' 2025-07-17T06:38:00.1660110Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm_kernel_utils.h' 2025-07-17T06:38:00.1678320Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernel_backward.h' 2025-07-17T06:38:00.1689750Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernel_forward.h' 2025-07-17T06:38:00.1690790Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/pytorch_utils.h' 2025-07-17T06:38:00.1695490Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_pipelined.h' 2025-07-17T06:38:00.1697600Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_rescale_output.h' 2025-07-17T06:38:00.1699080Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_thread_apply_logsumexp.h' 2025-07-17T06:38:00.1700500Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma.h' 2025-07-17T06:38:00.1702700Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_base.h' 2025-07-17T06:38:00.1707540Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_multistage.h' 2025-07-17T06:38:00.1710680Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_pipelined.h' 2025-07-17T06:38:00.1711960Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/find_default_mma.h' 2025-07-17T06:38:00.1714780Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/mma_accum_lambda_iterator.h' 2025-07-17T06:38:00.1726780Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/mma_from_smem.h' 2025-07-17T06:38:00.1729080Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/default_warp_iterator_from_smem.h' 2025-07-17T06:38:00.1732900Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/epilogue_predicated_tile_iterator.h' 2025-07-17T06:38:00.1733650Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/make_residual_last.h' 2025-07-17T06:38:00.1740210Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_access_iterator_residual_last.h' 2025-07-17T06:38:00.1745860Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_iterator_residual_last.h' 2025-07-17T06:38:00.1746880Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/transpose_warp_iterator.h' 2025-07-17T06:38:00.1749600Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/warp_iterator_from_smem.h' 2025-07-17T06:38:00.1757170Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels/cutlassB.h' 2025-07-17T06:38:00.1760160Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels/cutlassF.h' 2025-07-17T06:38:00.1761440Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/transform/tile_smem_loader.h' 2025-07-17T06:38:00.1762820Z adding 'torch/include/ATen/native/transformers/hip/aotriton_adapter.h' 2025-07-17T06:38:00.1766080Z adding 'torch/include/ATen/native/transformers/hip/flash_attn/flash_api.h' 2025-07-17T06:38:00.1767170Z adding 'torch/include/ATen/native/transformers/hip/flash_attn/ck/me_ck_api.h' 2025-07-17T06:38:00.1768190Z adding 'torch/include/ATen/native/utils/Factory.h' 2025-07-17T06:38:00.1769150Z adding 'torch/include/ATen/native/utils/ParamUtils.h' 2025-07-17T06:38:00.1770430Z adding 'torch/include/ATen/native/utils/ParamsHash.h' 2025-07-17T06:38:00.1827500Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d.h' 2025-07-17T06:38:00.1828280Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward.h' 2025-07-17T06:38:00.1829370Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.1830460Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cpu_dispatch.h' 2025-07-17T06:38:00.1831270Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cuda_dispatch.h' 2025-07-17T06:38:00.1832130Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_mps_dispatch.h' 2025-07-17T06:38:00.1833040Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_native.h' 2025-07-17T06:38:00.1834190Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_ops.h' 2025-07-17T06:38:00.1835250Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.1836200Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_cpu_dispatch.h' 2025-07-17T06:38:00.1837000Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_cuda_dispatch.h' 2025-07-17T06:38:00.1837910Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_mps_dispatch.h' 2025-07-17T06:38:00.1838810Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_native.h' 2025-07-17T06:38:00.1839800Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_ops.h' 2025-07-17T06:38:00.1840880Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d.h' 2025-07-17T06:38:00.1842000Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward.h' 2025-07-17T06:38:00.1843100Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.1843820Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cpu_dispatch.h' 2025-07-17T06:38:00.1844720Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cuda_dispatch.h' 2025-07-17T06:38:00.1845590Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_native.h' 2025-07-17T06:38:00.1846580Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_ops.h' 2025-07-17T06:38:00.1847580Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.1848340Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_cpu_dispatch.h' 2025-07-17T06:38:00.1849240Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_cuda_dispatch.h' 2025-07-17T06:38:00.1850100Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_native.h' 2025-07-17T06:38:00.1851060Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_ops.h' 2025-07-17T06:38:00.1851920Z adding 'torch/include/ATen/ops/_add_batch_dim.h' 2025-07-17T06:38:00.1852980Z adding 'torch/include/ATen/ops/_add_batch_dim_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.1853770Z adding 'torch/include/ATen/ops/_add_batch_dim_native.h' 2025-07-17T06:38:00.1854690Z adding 'torch/include/ATen/ops/_add_batch_dim_ops.h' 2025-07-17T06:38:00.1855670Z adding 'torch/include/ATen/ops/_add_relu.h' 2025-07-17T06:38:00.1856770Z adding 'torch/include/ATen/ops/_add_relu_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.1857600Z adding 'torch/include/ATen/ops/_add_relu_cpu_dispatch.h' 2025-07-17T06:38:00.1858470Z adding 'torch/include/ATen/ops/_add_relu_meta_dispatch.h' 2025-07-17T06:38:00.1859310Z adding 'torch/include/ATen/ops/_add_relu_native.h' 2025-07-17T06:38:00.1860590Z adding 'torch/include/ATen/ops/_add_relu_ops.h' 2025-07-17T06:38:00.1861540Z adding 'torch/include/ATen/ops/_addmm_activation.h' 2025-07-17T06:38:00.1862580Z adding 'torch/include/ATen/ops/_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.1863390Z adding 'torch/include/ATen/ops/_addmm_activation_cpu_dispatch.h' 2025-07-17T06:38:00.1864340Z adding 'torch/include/ATen/ops/_addmm_activation_cuda_dispatch.h' 2025-07-17T06:38:00.1865200Z adding 'torch/include/ATen/ops/_addmm_activation_meta.h' 2025-07-17T06:38:00.1866090Z adding 'torch/include/ATen/ops/_addmm_activation_meta_dispatch.h' 2025-07-17T06:38:00.1866930Z adding 'torch/include/ATen/ops/_addmm_activation_native.h' 2025-07-17T06:38:00.1868010Z adding 'torch/include/ATen/ops/_addmm_activation_ops.h' 2025-07-17T06:38:00.1869010Z adding 'torch/include/ATen/ops/_aminmax.h' 2025-07-17T06:38:00.1870010Z adding 'torch/include/ATen/ops/_aminmax_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.1870820Z adding 'torch/include/ATen/ops/_aminmax_cpu_dispatch.h' 2025-07-17T06:38:00.1871770Z adding 'torch/include/ATen/ops/_aminmax_cuda_dispatch.h' 2025-07-17T06:38:00.1872610Z adding 'torch/include/ATen/ops/_aminmax_native.h' 2025-07-17T06:38:00.1873650Z adding 'torch/include/ATen/ops/_aminmax_ops.h' 2025-07-17T06:38:00.1874700Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale.h' 2025-07-17T06:38:00.1875810Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.1876630Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cpu_dispatch.h' 2025-07-17T06:38:00.1877470Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cuda_dispatch.h' 2025-07-17T06:38:00.1878280Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_mps_dispatch.h' 2025-07-17T06:38:00.1879260Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_native.h' 2025-07-17T06:38:00.1880330Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_ops.h' 2025-07-17T06:38:00.1881280Z adding 'torch/include/ATen/ops/_amp_update_scale.h' 2025-07-17T06:38:00.1882350Z adding 'torch/include/ATen/ops/_amp_update_scale_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.1883300Z adding 'torch/include/ATen/ops/_amp_update_scale_cpu_dispatch.h' 2025-07-17T06:38:00.1884250Z adding 'torch/include/ATen/ops/_amp_update_scale_cuda_dispatch.h' 2025-07-17T06:38:00.1885150Z adding 'torch/include/ATen/ops/_amp_update_scale_meta_dispatch.h' 2025-07-17T06:38:00.1886030Z adding 'torch/include/ATen/ops/_amp_update_scale_mps_dispatch.h' 2025-07-17T06:38:00.1887110Z adding 'torch/include/ATen/ops/_amp_update_scale_native.h' 2025-07-17T06:38:00.1888190Z adding 'torch/include/ATen/ops/_amp_update_scale_ops.h' 2025-07-17T06:38:00.1889090Z adding 'torch/include/ATen/ops/_assert_async.h' 2025-07-17T06:38:00.1889980Z adding 'torch/include/ATen/ops/_assert_async_cpu_dispatch.h' 2025-07-17T06:38:00.1890930Z adding 'torch/include/ATen/ops/_assert_async_cuda_dispatch.h' 2025-07-17T06:38:00.1891770Z adding 'torch/include/ATen/ops/_assert_async_native.h' 2025-07-17T06:38:00.1892700Z adding 'torch/include/ATen/ops/_assert_async_ops.h' 2025-07-17T06:38:00.1893560Z adding 'torch/include/ATen/ops/_assert_scalar.h' 2025-07-17T06:38:00.1894610Z adding 'torch/include/ATen/ops/_assert_scalar_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.1895380Z adding 'torch/include/ATen/ops/_assert_scalar_native.h' 2025-07-17T06:38:00.1896280Z adding 'torch/include/ATen/ops/_assert_scalar_ops.h' 2025-07-17T06:38:00.1897340Z adding 'torch/include/ATen/ops/_assert_tensor_metadata.h' 2025-07-17T06:38:00.1898470Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.1899320Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_meta_dispatch.h' 2025-07-17T06:38:00.1900170Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_native.h' 2025-07-17T06:38:00.1901170Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_ops.h' 2025-07-17T06:38:00.1902080Z adding 'torch/include/ATen/ops/_autocast_to_full_precision.h' 2025-07-17T06:38:00.1903050Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.1903820Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_native.h' 2025-07-17T06:38:00.1904710Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_ops.h' 2025-07-17T06:38:00.1905640Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision.h' 2025-07-17T06:38:00.1906630Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.1907390Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_native.h' 2025-07-17T06:38:00.1908310Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_ops.h' 2025-07-17T06:38:00.1909180Z adding 'torch/include/ATen/ops/_backward.h' 2025-07-17T06:38:00.1910160Z adding 'torch/include/ATen/ops/_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.1910980Z adding 'torch/include/ATen/ops/_backward_native.h' 2025-07-17T06:38:00.1911880Z adding 'torch/include/ATen/ops/_backward_ops.h' 2025-07-17T06:38:00.1912950Z adding 'torch/include/ATen/ops/_batch_norm_impl_index.h' 2025-07-17T06:38:00.1913940Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward.h' 2025-07-17T06:38:00.1914940Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.1915750Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_native.h' 2025-07-17T06:38:00.1916890Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_ops.h' 2025-07-17T06:38:00.1917820Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.1918620Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_native.h' 2025-07-17T06:38:00.1919570Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_ops.h' 2025-07-17T06:38:00.1920660Z adding 'torch/include/ATen/ops/_batch_norm_no_update.h' 2025-07-17T06:38:00.1921720Z adding 'torch/include/ATen/ops/_batch_norm_no_update_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.1922560Z adding 'torch/include/ATen/ops/_batch_norm_no_update_native.h' 2025-07-17T06:38:00.1923570Z adding 'torch/include/ATen/ops/_batch_norm_no_update_ops.h' 2025-07-17T06:38:00.1924730Z adding 'torch/include/ATen/ops/_batch_norm_with_update.h' 2025-07-17T06:38:00.1925720Z adding 'torch/include/ATen/ops/_batch_norm_with_update_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.1926570Z adding 'torch/include/ATen/ops/_batch_norm_with_update_cpu_dispatch.h' 2025-07-17T06:38:00.1927440Z adding 'torch/include/ATen/ops/_batch_norm_with_update_cuda_dispatch.h' 2025-07-17T06:38:00.1928400Z adding 'torch/include/ATen/ops/_batch_norm_with_update_mps_dispatch.h' 2025-07-17T06:38:00.1929350Z adding 'torch/include/ATen/ops/_batch_norm_with_update_native.h' 2025-07-17T06:38:00.1930510Z adding 'torch/include/ATen/ops/_batch_norm_with_update_ops.h' 2025-07-17T06:38:00.1931330Z adding 'torch/include/ATen/ops/_cast_Byte.h' 2025-07-17T06:38:00.1932390Z adding 'torch/include/ATen/ops/_cast_Byte_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.1933150Z adding 'torch/include/ATen/ops/_cast_Byte_native.h' 2025-07-17T06:38:00.1934040Z adding 'torch/include/ATen/ops/_cast_Byte_ops.h' 2025-07-17T06:38:00.1934860Z adding 'torch/include/ATen/ops/_cast_Char.h' 2025-07-17T06:38:00.1935900Z adding 'torch/include/ATen/ops/_cast_Char_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.1936650Z adding 'torch/include/ATen/ops/_cast_Char_native.h' 2025-07-17T06:38:00.1937530Z adding 'torch/include/ATen/ops/_cast_Char_ops.h' 2025-07-17T06:38:00.1938380Z adding 'torch/include/ATen/ops/_cast_Double.h' 2025-07-17T06:38:00.1939440Z adding 'torch/include/ATen/ops/_cast_Double_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.1940220Z adding 'torch/include/ATen/ops/_cast_Double_native.h' 2025-07-17T06:38:00.1941100Z adding 'torch/include/ATen/ops/_cast_Double_ops.h' 2025-07-17T06:38:00.1941910Z adding 'torch/include/ATen/ops/_cast_Float.h' 2025-07-17T06:38:00.1942930Z adding 'torch/include/ATen/ops/_cast_Float_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.1943690Z adding 'torch/include/ATen/ops/_cast_Float_native.h' 2025-07-17T06:38:00.1944570Z adding 'torch/include/ATen/ops/_cast_Float_ops.h' 2025-07-17T06:38:00.1945400Z adding 'torch/include/ATen/ops/_cast_Half.h' 2025-07-17T06:38:00.1946470Z adding 'torch/include/ATen/ops/_cast_Half_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.1947200Z adding 'torch/include/ATen/ops/_cast_Half_native.h' 2025-07-17T06:38:00.1948070Z adding 'torch/include/ATen/ops/_cast_Half_ops.h' 2025-07-17T06:38:00.1948890Z adding 'torch/include/ATen/ops/_cast_Int.h' 2025-07-17T06:38:00.1949930Z adding 'torch/include/ATen/ops/_cast_Int_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.1969140Z adding 'torch/include/ATen/ops/_cast_Int_native.h' 2025-07-17T06:38:00.1970320Z adding 'torch/include/ATen/ops/_cast_Int_ops.h' 2025-07-17T06:38:00.1971200Z adding 'torch/include/ATen/ops/_cast_Long.h' 2025-07-17T06:38:00.1972800Z adding 'torch/include/ATen/ops/_cast_Long_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.1973580Z adding 'torch/include/ATen/ops/_cast_Long_native.h' 2025-07-17T06:38:00.1974510Z adding 'torch/include/ATen/ops/_cast_Long_ops.h' 2025-07-17T06:38:00.1975330Z adding 'torch/include/ATen/ops/_cast_Short.h' 2025-07-17T06:38:00.1976400Z adding 'torch/include/ATen/ops/_cast_Short_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.1977360Z adding 'torch/include/ATen/ops/_cast_Short_native.h' 2025-07-17T06:38:00.1978120Z adding 'torch/include/ATen/ops/_cast_Short_ops.h' 2025-07-17T06:38:00.1979230Z adding 'torch/include/ATen/ops/_cdist_backward.h' 2025-07-17T06:38:00.1980170Z adding 'torch/include/ATen/ops/_cdist_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.1981020Z adding 'torch/include/ATen/ops/_cdist_backward_cpu_dispatch.h' 2025-07-17T06:38:00.1981820Z adding 'torch/include/ATen/ops/_cdist_backward_cuda_dispatch.h' 2025-07-17T06:38:00.1982660Z adding 'torch/include/ATen/ops/_cdist_backward_native.h' 2025-07-17T06:38:00.1983830Z adding 'torch/include/ATen/ops/_cdist_backward_ops.h' 2025-07-17T06:38:00.1984640Z adding 'torch/include/ATen/ops/_cdist_forward.h' 2025-07-17T06:38:00.1985620Z adding 'torch/include/ATen/ops/_cdist_forward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.1986440Z adding 'torch/include/ATen/ops/_cdist_forward_cpu_dispatch.h' 2025-07-17T06:38:00.1987360Z adding 'torch/include/ATen/ops/_cdist_forward_cuda_dispatch.h' 2025-07-17T06:38:00.1988200Z adding 'torch/include/ATen/ops/_cdist_forward_mps_dispatch.h' 2025-07-17T06:38:00.1989030Z adding 'torch/include/ATen/ops/_cdist_forward_native.h' 2025-07-17T06:38:00.1989990Z adding 'torch/include/ATen/ops/_cdist_forward_ops.h' 2025-07-17T06:38:00.1991010Z adding 'torch/include/ATen/ops/_cholesky_solve_helper.h' 2025-07-17T06:38:00.1992050Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.1992920Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_cpu_dispatch.h' 2025-07-17T06:38:00.1993760Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_cuda_dispatch.h' 2025-07-17T06:38:00.1994700Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_native.h' 2025-07-17T06:38:00.1995650Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_ops.h' 2025-07-17T06:38:00.1996520Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor.h' 2025-07-17T06:38:00.1997480Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.1998380Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_native.h' 2025-07-17T06:38:00.1999350Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_ops.h' 2025-07-17T06:38:00.2000240Z adding 'torch/include/ATen/ops/_chunk_cat.h' 2025-07-17T06:38:00.2001300Z adding 'torch/include/ATen/ops/_chunk_cat_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2002180Z adding 'torch/include/ATen/ops/_chunk_cat_cuda_dispatch.h' 2025-07-17T06:38:00.2003020Z adding 'torch/include/ATen/ops/_chunk_cat_native.h' 2025-07-17T06:38:00.2003980Z adding 'torch/include/ATen/ops/_chunk_cat_ops.h' 2025-07-17T06:38:00.2004840Z adding 'torch/include/ATen/ops/_coalesce.h' 2025-07-17T06:38:00.2005900Z adding 'torch/include/ATen/ops/_coalesce_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2006670Z adding 'torch/include/ATen/ops/_coalesce_native.h' 2025-07-17T06:38:00.2007600Z adding 'torch/include/ATen/ops/_coalesce_ops.h' 2025-07-17T06:38:00.2008480Z adding 'torch/include/ATen/ops/_coalesced.h' 2025-07-17T06:38:00.2009560Z adding 'torch/include/ATen/ops/_coalesced_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2010350Z adding 'torch/include/ATen/ops/_coalesced_meta_dispatch.h' 2025-07-17T06:38:00.2011160Z adding 'torch/include/ATen/ops/_coalesced_native.h' 2025-07-17T06:38:00.2012130Z adding 'torch/include/ATen/ops/_coalesced_ops.h' 2025-07-17T06:38:00.2013180Z adding 'torch/include/ATen/ops/_compute_linear_combination.h' 2025-07-17T06:38:00.2014120Z adding 'torch/include/ATen/ops/_compute_linear_combination_cpu_dispatch.h' 2025-07-17T06:38:00.2014960Z adding 'torch/include/ATen/ops/_compute_linear_combination_cuda_dispatch.h' 2025-07-17T06:38:00.2015880Z adding 'torch/include/ATen/ops/_compute_linear_combination_native.h' 2025-07-17T06:38:00.2016830Z adding 'torch/include/ATen/ops/_compute_linear_combination_ops.h' 2025-07-17T06:38:00.2017640Z adding 'torch/include/ATen/ops/_conj.h' 2025-07-17T06:38:00.2018570Z adding 'torch/include/ATen/ops/_conj_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2019410Z adding 'torch/include/ATen/ops/_conj_copy.h' 2025-07-17T06:38:00.2020560Z adding 'torch/include/ATen/ops/_conj_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2021530Z adding 'torch/include/ATen/ops/_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.2022270Z adding 'torch/include/ATen/ops/_conj_copy_native.h' 2025-07-17T06:38:00.2023200Z adding 'torch/include/ATen/ops/_conj_copy_ops.h' 2025-07-17T06:38:00.2024110Z adding 'torch/include/ATen/ops/_conj_native.h' 2025-07-17T06:38:00.2025030Z adding 'torch/include/ATen/ops/_conj_ops.h' 2025-07-17T06:38:00.2025870Z adding 'torch/include/ATen/ops/_conj_physical.h' 2025-07-17T06:38:00.2026830Z adding 'torch/include/ATen/ops/_conj_physical_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2027670Z adding 'torch/include/ATen/ops/_conj_physical_native.h' 2025-07-17T06:38:00.2028600Z adding 'torch/include/ATen/ops/_conj_physical_ops.h' 2025-07-17T06:38:00.2029800Z adding 'torch/include/ATen/ops/_conv_depthwise2d.h' 2025-07-17T06:38:00.2030830Z adding 'torch/include/ATen/ops/_conv_depthwise2d_cuda_dispatch.h' 2025-07-17T06:38:00.2031780Z adding 'torch/include/ATen/ops/_conv_depthwise2d_native.h' 2025-07-17T06:38:00.2032790Z adding 'torch/include/ATen/ops/_conv_depthwise2d_ops.h' 2025-07-17T06:38:00.2033740Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr.h' 2025-07-17T06:38:00.2034740Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.2035640Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cpu_dispatch.h' 2025-07-17T06:38:00.2036520Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cuda_dispatch.h' 2025-07-17T06:38:00.2037350Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta.h' 2025-07-17T06:38:00.2038210Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta_dispatch.h' 2025-07-17T06:38:00.2039160Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_native.h' 2025-07-17T06:38:00.2040150Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_ops.h' 2025-07-17T06:38:00.2041090Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo.h' 2025-07-17T06:38:00.2042130Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.2043000Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cpu_dispatch.h' 2025-07-17T06:38:00.2043870Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cuda_dispatch.h' 2025-07-17T06:38:00.2044700Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta.h' 2025-07-17T06:38:00.2045580Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta_dispatch.h' 2025-07-17T06:38:00.2046560Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_native.h' 2025-07-17T06:38:00.2047540Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_ops.h' 2025-07-17T06:38:00.2048390Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack.h' 2025-07-17T06:38:00.2049290Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_cuda_dispatch.h' 2025-07-17T06:38:00.2050220Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu.h' 2025-07-17T06:38:00.2051110Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_cpu_dispatch.h' 2025-07-17T06:38:00.2051920Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_native.h' 2025-07-17T06:38:00.2052830Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_ops.h' 2025-07-17T06:38:00.2053800Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_mps_dispatch.h' 2025-07-17T06:38:00.2054700Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_native.h' 2025-07-17T06:38:00.2055580Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_ops.h' 2025-07-17T06:38:00.2057010Z adding 'torch/include/ATen/ops/_convolution.h' 2025-07-17T06:38:00.2058240Z adding 'torch/include/ATen/ops/_convolution_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2059190Z adding 'torch/include/ATen/ops/_convolution_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.2060210Z adding 'torch/include/ATen/ops/_convolution_double_backward.h' 2025-07-17T06:38:00.2061280Z adding 'torch/include/ATen/ops/_convolution_double_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.2062190Z adding 'torch/include/ATen/ops/_convolution_double_backward_native.h' 2025-07-17T06:38:00.2063250Z adding 'torch/include/ATen/ops/_convolution_double_backward_ops.h' 2025-07-17T06:38:00.2064190Z adding 'torch/include/ATen/ops/_convolution_mode.h' 2025-07-17T06:38:00.2065180Z adding 'torch/include/ATen/ops/_convolution_mode_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.2066060Z adding 'torch/include/ATen/ops/_convolution_mode_native.h' 2025-07-17T06:38:00.2067020Z adding 'torch/include/ATen/ops/_convolution_mode_ops.h' 2025-07-17T06:38:00.2067930Z adding 'torch/include/ATen/ops/_convolution_native.h' 2025-07-17T06:38:00.2069040Z adding 'torch/include/ATen/ops/_convolution_ops.h' 2025-07-17T06:38:00.2070060Z adding 'torch/include/ATen/ops/_copy_from.h' 2025-07-17T06:38:00.2070980Z adding 'torch/include/ATen/ops/_copy_from_and_resize.h' 2025-07-17T06:38:00.2071950Z adding 'torch/include/ATen/ops/_copy_from_and_resize_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2072750Z adding 'torch/include/ATen/ops/_copy_from_and_resize_mps_dispatch.h' 2025-07-17T06:38:00.2073680Z adding 'torch/include/ATen/ops/_copy_from_and_resize_native.h' 2025-07-17T06:38:00.2074630Z adding 'torch/include/ATen/ops/_copy_from_and_resize_ops.h' 2025-07-17T06:38:00.2075570Z adding 'torch/include/ATen/ops/_copy_from_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2076370Z adding 'torch/include/ATen/ops/_copy_from_mps_dispatch.h' 2025-07-17T06:38:00.2077290Z adding 'torch/include/ATen/ops/_copy_from_native.h' 2025-07-17T06:38:00.2078240Z adding 'torch/include/ATen/ops/_copy_from_ops.h' 2025-07-17T06:38:00.2079090Z adding 'torch/include/ATen/ops/_cslt_compress.h' 2025-07-17T06:38:00.2079970Z adding 'torch/include/ATen/ops/_cslt_compress_cuda_dispatch.h' 2025-07-17T06:38:00.2080900Z adding 'torch/include/ATen/ops/_cslt_compress_native.h' 2025-07-17T06:38:00.2081780Z adding 'torch/include/ATen/ops/_cslt_compress_ops.h' 2025-07-17T06:38:00.2082720Z adding 'torch/include/ATen/ops/_cslt_sparse_mm.h' 2025-07-17T06:38:00.2083600Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_cuda_dispatch.h' 2025-07-17T06:38:00.2084550Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_native.h' 2025-07-17T06:38:00.2085530Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_ops.h' 2025-07-17T06:38:00.2086420Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search.h' 2025-07-17T06:38:00.2087350Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_cuda_dispatch.h' 2025-07-17T06:38:00.2088290Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_native.h' 2025-07-17T06:38:00.2089240Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_ops.h' 2025-07-17T06:38:00.2090260Z adding 'torch/include/ATen/ops/_ctc_loss.h' 2025-07-17T06:38:00.2091320Z adding 'torch/include/ATen/ops/_ctc_loss_backward.h' 2025-07-17T06:38:00.2092450Z adding 'torch/include/ATen/ops/_ctc_loss_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2093330Z adding 'torch/include/ATen/ops/_ctc_loss_backward_cpu_dispatch.h' 2025-07-17T06:38:00.2094170Z adding 'torch/include/ATen/ops/_ctc_loss_backward_cuda_dispatch.h' 2025-07-17T06:38:00.2095060Z adding 'torch/include/ATen/ops/_ctc_loss_backward_native.h' 2025-07-17T06:38:00.2096290Z adding 'torch/include/ATen/ops/_ctc_loss_backward_ops.h' 2025-07-17T06:38:00.2097300Z adding 'torch/include/ATen/ops/_ctc_loss_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2098100Z adding 'torch/include/ATen/ops/_ctc_loss_cpu_dispatch.h' 2025-07-17T06:38:00.2098920Z adding 'torch/include/ATen/ops/_ctc_loss_cuda_dispatch.h' 2025-07-17T06:38:00.2099890Z adding 'torch/include/ATen/ops/_ctc_loss_meta_dispatch.h' 2025-07-17T06:38:00.2100800Z adding 'torch/include/ATen/ops/_ctc_loss_native.h' 2025-07-17T06:38:00.2106970Z adding 'torch/include/ATen/ops/_ctc_loss_ops.h' 2025-07-17T06:38:00.2107340Z adding 'torch/include/ATen/ops/_cudnn_attention_backward.h' 2025-07-17T06:38:00.2107660Z adding 'torch/include/ATen/ops/_cudnn_attention_backward_cuda_dispatch.h' 2025-07-17T06:38:00.2108000Z adding 'torch/include/ATen/ops/_cudnn_attention_backward_native.h' 2025-07-17T06:38:00.2108360Z adding 'torch/include/ATen/ops/_cudnn_attention_backward_ops.h' 2025-07-17T06:38:00.2108670Z adding 'torch/include/ATen/ops/_cudnn_attention_forward.h' 2025-07-17T06:38:00.2108980Z adding 'torch/include/ATen/ops/_cudnn_attention_forward_cuda_dispatch.h' 2025-07-17T06:38:00.2109310Z adding 'torch/include/ATen/ops/_cudnn_attention_forward_native.h' 2025-07-17T06:38:00.2110140Z adding 'torch/include/ATen/ops/_cudnn_attention_forward_ops.h' 2025-07-17T06:38:00.2111000Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss.h' 2025-07-17T06:38:00.2112100Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2113180Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_cuda_dispatch.h' 2025-07-17T06:38:00.2113790Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_native.h' 2025-07-17T06:38:00.2114860Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_ops.h' 2025-07-17T06:38:00.2115970Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state.h' 2025-07-17T06:38:00.2116970Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2117840Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_cuda_dispatch.h' 2025-07-17T06:38:00.2118710Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_native.h' 2025-07-17T06:38:00.2119820Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_ops.h' 2025-07-17T06:38:00.2121320Z adding 'torch/include/ATen/ops/_cudnn_rnn.h' 2025-07-17T06:38:00.2123550Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward.h' 2025-07-17T06:38:00.2124310Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2125350Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_cuda_dispatch.h' 2025-07-17T06:38:00.2126300Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_native.h' 2025-07-17T06:38:00.2127580Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_ops.h' 2025-07-17T06:38:00.2128680Z adding 'torch/include/ATen/ops/_cudnn_rnn_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2129740Z adding 'torch/include/ATen/ops/_cudnn_rnn_cuda_dispatch.h' 2025-07-17T06:38:00.2130950Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight.h' 2025-07-17T06:38:00.2131980Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2132820Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_cuda_dispatch.h' 2025-07-17T06:38:00.2133780Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_native.h' 2025-07-17T06:38:00.2134800Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_ops.h' 2025-07-17T06:38:00.2135700Z adding 'torch/include/ATen/ops/_cudnn_rnn_native.h' 2025-07-17T06:38:00.2136870Z adding 'torch/include/ATen/ops/_cudnn_rnn_ops.h' 2025-07-17T06:38:00.2137850Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache.h' 2025-07-17T06:38:00.2138840Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.2139600Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_native.h' 2025-07-17T06:38:00.2140470Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_ops.h' 2025-07-17T06:38:00.2141440Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size.h' 2025-07-17T06:38:00.2142400Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.2143170Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_native.h' 2025-07-17T06:38:00.2144050Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_ops.h' 2025-07-17T06:38:00.2144980Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size.h' 2025-07-17T06:38:00.2145950Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.2146690Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_native.h' 2025-07-17T06:38:00.2147580Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_ops.h' 2025-07-17T06:38:00.2148530Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size.h' 2025-07-17T06:38:00.2149520Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.2150240Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_native.h' 2025-07-17T06:38:00.2151190Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_ops.h' 2025-07-17T06:38:00.2152100Z adding 'torch/include/ATen/ops/_cummax_helper.h' 2025-07-17T06:38:00.2153140Z adding 'torch/include/ATen/ops/_cummax_helper_cpu_dispatch.h' 2025-07-17T06:38:00.2154260Z adding 'torch/include/ATen/ops/_cummax_helper_cuda_dispatch.h' 2025-07-17T06:38:00.2154830Z adding 'torch/include/ATen/ops/_cummax_helper_mps_dispatch.h' 2025-07-17T06:38:00.2155800Z adding 'torch/include/ATen/ops/_cummax_helper_native.h' 2025-07-17T06:38:00.2156480Z adding 'torch/include/ATen/ops/_cummax_helper_ops.h' 2025-07-17T06:38:00.2158050Z adding 'torch/include/ATen/ops/_cummin_helper.h' 2025-07-17T06:38:00.2158340Z adding 'torch/include/ATen/ops/_cummin_helper_cpu_dispatch.h' 2025-07-17T06:38:00.2159200Z adding 'torch/include/ATen/ops/_cummin_helper_cuda_dispatch.h' 2025-07-17T06:38:00.2159900Z adding 'torch/include/ATen/ops/_cummin_helper_mps_dispatch.h' 2025-07-17T06:38:00.2160850Z adding 'torch/include/ATen/ops/_cummin_helper_native.h' 2025-07-17T06:38:00.2161590Z adding 'torch/include/ATen/ops/_cummin_helper_ops.h' 2025-07-17T06:38:00.2162710Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap.h' 2025-07-17T06:38:00.2163520Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.2164300Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_native.h' 2025-07-17T06:38:00.2165190Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_ops.h' 2025-07-17T06:38:00.2166300Z adding 'torch/include/ATen/ops/_dimI.h' 2025-07-17T06:38:00.2166930Z adding 'torch/include/ATen/ops/_dimI_native.h' 2025-07-17T06:38:00.2167720Z adding 'torch/include/ATen/ops/_dimI_ops.h' 2025-07-17T06:38:00.2168540Z adding 'torch/include/ATen/ops/_dimV.h' 2025-07-17T06:38:00.2169430Z adding 'torch/include/ATen/ops/_dimV_native.h' 2025-07-17T06:38:00.2170320Z adding 'torch/include/ATen/ops/_dimV_ops.h' 2025-07-17T06:38:00.2171170Z adding 'torch/include/ATen/ops/_dim_arange.h' 2025-07-17T06:38:00.2172110Z adding 'torch/include/ATen/ops/_dim_arange_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.2172950Z adding 'torch/include/ATen/ops/_dim_arange_native.h' 2025-07-17T06:38:00.2173840Z adding 'torch/include/ATen/ops/_dim_arange_ops.h' 2025-07-17T06:38:00.2174730Z adding 'torch/include/ATen/ops/_dirichlet_grad.h' 2025-07-17T06:38:00.2175670Z adding 'torch/include/ATen/ops/_dirichlet_grad_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2176560Z adding 'torch/include/ATen/ops/_dirichlet_grad_cpu_dispatch.h' 2025-07-17T06:38:00.2177390Z adding 'torch/include/ATen/ops/_dirichlet_grad_cuda_dispatch.h' 2025-07-17T06:38:00.2178190Z adding 'torch/include/ATen/ops/_dirichlet_grad_native.h' 2025-07-17T06:38:00.2179130Z adding 'torch/include/ATen/ops/_dirichlet_grad_ops.h' 2025-07-17T06:38:00.2180140Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit.h' 2025-07-17T06:38:00.2181050Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_cpu_dispatch.h' 2025-07-17T06:38:00.2181870Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_native.h' 2025-07-17T06:38:00.2182790Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_ops.h' 2025-07-17T06:38:00.2183780Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight.h' 2025-07-17T06:38:00.2184720Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_cpu_dispatch.h' 2025-07-17T06:38:00.2185530Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_native.h' 2025-07-17T06:38:00.2187010Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_ops.h' 2025-07-17T06:38:00.2188150Z adding 'torch/include/ATen/ops/_efficient_attention_backward.h' 2025-07-17T06:38:00.2189220Z adding 'torch/include/ATen/ops/_efficient_attention_backward_cuda_dispatch.h' 2025-07-17T06:38:00.2190160Z adding 'torch/include/ATen/ops/_efficient_attention_backward_native.h' 2025-07-17T06:38:00.2191230Z adding 'torch/include/ATen/ops/_efficient_attention_backward_ops.h' 2025-07-17T06:38:00.2192520Z adding 'torch/include/ATen/ops/_efficient_attention_forward.h' 2025-07-17T06:38:00.2193530Z adding 'torch/include/ATen/ops/_efficient_attention_forward_cuda_dispatch.h' 2025-07-17T06:38:00.2194410Z adding 'torch/include/ATen/ops/_efficient_attention_forward_native.h' 2025-07-17T06:38:00.2195440Z adding 'torch/include/ATen/ops/_efficient_attention_forward_ops.h' 2025-07-17T06:38:00.2196710Z adding 'torch/include/ATen/ops/_efficientzerotensor.h' 2025-07-17T06:38:00.2197710Z adding 'torch/include/ATen/ops/_efficientzerotensor_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2198550Z adding 'torch/include/ATen/ops/_efficientzerotensor_cpu_dispatch.h' 2025-07-17T06:38:00.2199420Z adding 'torch/include/ATen/ops/_efficientzerotensor_cuda_dispatch.h' 2025-07-17T06:38:00.2200360Z adding 'torch/include/ATen/ops/_efficientzerotensor_meta_dispatch.h' 2025-07-17T06:38:00.2201210Z adding 'torch/include/ATen/ops/_efficientzerotensor_mps_dispatch.h' 2025-07-17T06:38:00.2202080Z adding 'torch/include/ATen/ops/_efficientzerotensor_native.h' 2025-07-17T06:38:00.2203050Z adding 'torch/include/ATen/ops/_efficientzerotensor_ops.h' 2025-07-17T06:38:00.2204190Z adding 'torch/include/ATen/ops/_embedding_bag.h' 2025-07-17T06:38:00.2205250Z adding 'torch/include/ATen/ops/_embedding_bag_backward.h' 2025-07-17T06:38:00.2206260Z adding 'torch/include/ATen/ops/_embedding_bag_backward_cpu_dispatch.h' 2025-07-17T06:38:00.2207090Z adding 'torch/include/ATen/ops/_embedding_bag_backward_cuda_dispatch.h' 2025-07-17T06:38:00.2208080Z adding 'torch/include/ATen/ops/_embedding_bag_backward_native.h' 2025-07-17T06:38:00.2209080Z adding 'torch/include/ATen/ops/_embedding_bag_backward_ops.h' 2025-07-17T06:38:00.2210140Z adding 'torch/include/ATen/ops/_embedding_bag_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2210950Z adding 'torch/include/ATen/ops/_embedding_bag_cpu_dispatch.h' 2025-07-17T06:38:00.2211900Z adding 'torch/include/ATen/ops/_embedding_bag_cuda_dispatch.h' 2025-07-17T06:38:00.2213160Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward.h' 2025-07-17T06:38:00.2214250Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2215080Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_cpu_dispatch.h' 2025-07-17T06:38:00.2216050Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_cuda_dispatch.h' 2025-07-17T06:38:00.2216950Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_native.h' 2025-07-17T06:38:00.2218000Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_ops.h' 2025-07-17T06:38:00.2219030Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only.h' 2025-07-17T06:38:00.2220160Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2220990Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_cpu_dispatch.h' 2025-07-17T06:38:00.2221860Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_cuda_dispatch.h' 2025-07-17T06:38:00.2222760Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_native.h' 2025-07-17T06:38:00.2223940Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_ops.h' 2025-07-17T06:38:00.2224840Z adding 'torch/include/ATen/ops/_embedding_bag_native.h' 2025-07-17T06:38:00.2225910Z adding 'torch/include/ATen/ops/_embedding_bag_ops.h' 2025-07-17T06:38:00.2226930Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward.h' 2025-07-17T06:38:00.2228040Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2228870Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cpu_dispatch.h' 2025-07-17T06:38:00.2229730Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cuda_dispatch.h' 2025-07-17T06:38:00.2230610Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_native.h' 2025-07-17T06:38:00.2231700Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_ops.h' 2025-07-17T06:38:00.2232680Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward.h' 2025-07-17T06:38:00.2233710Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.2234530Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_native.h' 2025-07-17T06:38:00.2235600Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_ops.h' 2025-07-17T06:38:00.2236940Z adding 'torch/include/ATen/ops/_empty_affine_quantized.h' 2025-07-17T06:38:00.2238050Z adding 'torch/include/ATen/ops/_empty_affine_quantized_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2238950Z adding 'torch/include/ATen/ops/_empty_affine_quantized_cpu_dispatch.h' 2025-07-17T06:38:00.2239930Z adding 'torch/include/ATen/ops/_empty_affine_quantized_native.h' 2025-07-17T06:38:00.2240970Z adding 'torch/include/ATen/ops/_empty_affine_quantized_ops.h' 2025-07-17T06:38:00.2242410Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized.h' 2025-07-17T06:38:00.2243450Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2244460Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_cpu_dispatch.h' 2025-07-17T06:38:00.2245350Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_native.h' 2025-07-17T06:38:00.2246400Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_ops.h' 2025-07-17T06:38:00.2247230Z adding 'torch/include/ATen/ops/_euclidean_dist.h' 2025-07-17T06:38:00.2248300Z adding 'torch/include/ATen/ops/_euclidean_dist_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2249140Z adding 'torch/include/ATen/ops/_euclidean_dist_native.h' 2025-07-17T06:38:00.2250030Z adding 'torch/include/ATen/ops/_euclidean_dist_ops.h' 2025-07-17T06:38:00.2251050Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine.h' 2025-07-17T06:38:00.2252060Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward.h' 2025-07-17T06:38:00.2253030Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cpu_dispatch.h' 2025-07-17T06:38:00.2253870Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cuda_dispatch.h' 2025-07-17T06:38:00.2254710Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_native.h' 2025-07-17T06:38:00.2255770Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_ops.h' 2025-07-17T06:38:00.2256760Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2257550Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cpu_dispatch.h' 2025-07-17T06:38:00.2258380Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cuda_dispatch.h' 2025-07-17T06:38:00.2259330Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_native.h' 2025-07-17T06:38:00.2260340Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_ops.h' 2025-07-17T06:38:00.2261300Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine.h' 2025-07-17T06:38:00.2262210Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward.h' 2025-07-17T06:38:00.2263200Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cpu_dispatch.h' 2025-07-17T06:38:00.2264050Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cuda_dispatch.h' 2025-07-17T06:38:00.2264900Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_native.h' 2025-07-17T06:38:00.2265840Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_ops.h' 2025-07-17T06:38:00.2266940Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2267730Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cpu_dispatch.h' 2025-07-17T06:38:00.2268570Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cuda_dispatch.h' 2025-07-17T06:38:00.2269410Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_native.h' 2025-07-17T06:38:00.2270500Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_ops.h' 2025-07-17T06:38:00.2271560Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams.h' 2025-07-17T06:38:00.2272570Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2273390Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cpu_dispatch.h' 2025-07-17T06:38:00.2274340Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cuda_dispatch.h' 2025-07-17T06:38:00.2275190Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_native.h' 2025-07-17T06:38:00.2276220Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_ops.h' 2025-07-17T06:38:00.2277190Z adding 'torch/include/ATen/ops/_fft_c2c.h' 2025-07-17T06:38:00.2278240Z adding 'torch/include/ATen/ops/_fft_c2c_cpu_dispatch.h' 2025-07-17T06:38:00.2279110Z adding 'torch/include/ATen/ops/_fft_c2c_cuda_dispatch.h' 2025-07-17T06:38:00.2279960Z adding 'torch/include/ATen/ops/_fft_c2c_mps_dispatch.h' 2025-07-17T06:38:00.2280830Z adding 'torch/include/ATen/ops/_fft_c2c_native.h' 2025-07-17T06:38:00.2281890Z adding 'torch/include/ATen/ops/_fft_c2c_ops.h' 2025-07-17T06:38:00.2282990Z adding 'torch/include/ATen/ops/_fft_c2r.h' 2025-07-17T06:38:00.2283900Z adding 'torch/include/ATen/ops/_fft_c2r_cpu_dispatch.h' 2025-07-17T06:38:00.2284810Z adding 'torch/include/ATen/ops/_fft_c2r_cuda_dispatch.h' 2025-07-17T06:38:00.2285770Z adding 'torch/include/ATen/ops/_fft_c2r_mps_dispatch.h' 2025-07-17T06:38:00.2286630Z adding 'torch/include/ATen/ops/_fft_c2r_native.h' 2025-07-17T06:38:00.2287610Z adding 'torch/include/ATen/ops/_fft_c2r_ops.h' 2025-07-17T06:38:00.2288520Z adding 'torch/include/ATen/ops/_fft_r2c.h' 2025-07-17T06:38:00.2289520Z adding 'torch/include/ATen/ops/_fft_r2c_cpu_dispatch.h' 2025-07-17T06:38:00.2290360Z adding 'torch/include/ATen/ops/_fft_r2c_cuda_dispatch.h' 2025-07-17T06:38:00.2291180Z adding 'torch/include/ATen/ops/_fft_r2c_mps_dispatch.h' 2025-07-17T06:38:00.2292020Z adding 'torch/include/ATen/ops/_fft_r2c_native.h' 2025-07-17T06:38:00.2293090Z adding 'torch/include/ATen/ops/_fft_r2c_ops.h' 2025-07-17T06:38:00.2294020Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask.h' 2025-07-17T06:38:00.2294920Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_cuda_dispatch.h' 2025-07-17T06:38:00.2295730Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_meta_dispatch.h' 2025-07-17T06:38:00.2296660Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_native.h' 2025-07-17T06:38:00.2297580Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_ops.h' 2025-07-17T06:38:00.2298680Z adding 'torch/include/ATen/ops/_flash_attention_backward.h' 2025-07-17T06:38:00.2299690Z adding 'torch/include/ATen/ops/_flash_attention_backward_cuda_dispatch.h' 2025-07-17T06:38:00.2300660Z adding 'torch/include/ATen/ops/_flash_attention_backward_native.h' 2025-07-17T06:38:00.2301690Z adding 'torch/include/ATen/ops/_flash_attention_backward_ops.h' 2025-07-17T06:38:00.2302810Z adding 'torch/include/ATen/ops/_flash_attention_forward.h' 2025-07-17T06:38:00.2303820Z adding 'torch/include/ATen/ops/_flash_attention_forward_cuda_dispatch.h' 2025-07-17T06:38:00.2304800Z adding 'torch/include/ATen/ops/_flash_attention_forward_native.h' 2025-07-17T06:38:00.2305830Z adding 'torch/include/ATen/ops/_flash_attention_forward_ops.h' 2025-07-17T06:38:00.2306740Z adding 'torch/include/ATen/ops/_foobar.h' 2025-07-17T06:38:00.2307670Z adding 'torch/include/ATen/ops/_foobar_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2308550Z adding 'torch/include/ATen/ops/_foobar_cpu_dispatch.h' 2025-07-17T06:38:00.2309390Z adding 'torch/include/ATen/ops/_foobar_native.h' 2025-07-17T06:38:00.2310330Z adding 'torch/include/ATen/ops/_foobar_ops.h' 2025-07-17T06:38:00.2311230Z adding 'torch/include/ATen/ops/_foreach_abs.h' 2025-07-17T06:38:00.2312290Z adding 'torch/include/ATen/ops/_foreach_abs_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2313130Z adding 'torch/include/ATen/ops/_foreach_abs_cuda_dispatch.h' 2025-07-17T06:38:00.2313940Z adding 'torch/include/ATen/ops/_foreach_abs_native.h' 2025-07-17T06:38:00.2314900Z adding 'torch/include/ATen/ops/_foreach_abs_ops.h' 2025-07-17T06:38:00.2315880Z adding 'torch/include/ATen/ops/_foreach_acos.h' 2025-07-17T06:38:00.2316850Z adding 'torch/include/ATen/ops/_foreach_acos_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2317660Z adding 'torch/include/ATen/ops/_foreach_acos_cuda_dispatch.h' 2025-07-17T06:38:00.2318470Z adding 'torch/include/ATen/ops/_foreach_acos_native.h' 2025-07-17T06:38:00.2319530Z adding 'torch/include/ATen/ops/_foreach_acos_ops.h' 2025-07-17T06:38:00.2320660Z adding 'torch/include/ATen/ops/_foreach_add.h' 2025-07-17T06:38:00.2321770Z adding 'torch/include/ATen/ops/_foreach_add_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2322610Z adding 'torch/include/ATen/ops/_foreach_add_cuda_dispatch.h' 2025-07-17T06:38:00.2323680Z adding 'torch/include/ATen/ops/_foreach_add_native.h' 2025-07-17T06:38:00.2325110Z adding 'torch/include/ATen/ops/_foreach_add_ops.h' 2025-07-17T06:38:00.2326240Z adding 'torch/include/ATen/ops/_foreach_addcdiv.h' 2025-07-17T06:38:00.2327340Z adding 'torch/include/ATen/ops/_foreach_addcdiv_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2328260Z adding 'torch/include/ATen/ops/_foreach_addcdiv_cuda_dispatch.h' 2025-07-17T06:38:00.2329230Z adding 'torch/include/ATen/ops/_foreach_addcdiv_native.h' 2025-07-17T06:38:00.2330570Z adding 'torch/include/ATen/ops/_foreach_addcdiv_ops.h' 2025-07-17T06:38:00.2331700Z adding 'torch/include/ATen/ops/_foreach_addcmul.h' 2025-07-17T06:38:00.2332900Z adding 'torch/include/ATen/ops/_foreach_addcmul_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2333780Z adding 'torch/include/ATen/ops/_foreach_addcmul_cuda_dispatch.h' 2025-07-17T06:38:00.2334740Z adding 'torch/include/ATen/ops/_foreach_addcmul_native.h' 2025-07-17T06:38:00.2336090Z adding 'torch/include/ATen/ops/_foreach_addcmul_ops.h' 2025-07-17T06:38:00.2337090Z adding 'torch/include/ATen/ops/_foreach_asin.h' 2025-07-17T06:38:00.2338060Z adding 'torch/include/ATen/ops/_foreach_asin_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2338860Z adding 'torch/include/ATen/ops/_foreach_asin_cuda_dispatch.h' 2025-07-17T06:38:00.2339700Z adding 'torch/include/ATen/ops/_foreach_asin_native.h' 2025-07-17T06:38:00.2340780Z adding 'torch/include/ATen/ops/_foreach_asin_ops.h' 2025-07-17T06:38:00.2341650Z adding 'torch/include/ATen/ops/_foreach_atan.h' 2025-07-17T06:38:00.2342610Z adding 'torch/include/ATen/ops/_foreach_atan_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2343400Z adding 'torch/include/ATen/ops/_foreach_atan_cuda_dispatch.h' 2025-07-17T06:38:00.2344340Z adding 'torch/include/ATen/ops/_foreach_atan_native.h' 2025-07-17T06:38:00.2345270Z adding 'torch/include/ATen/ops/_foreach_atan_ops.h' 2025-07-17T06:38:00.2346140Z adding 'torch/include/ATen/ops/_foreach_ceil.h' 2025-07-17T06:38:00.2347090Z adding 'torch/include/ATen/ops/_foreach_ceil_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2347970Z adding 'torch/include/ATen/ops/_foreach_ceil_cuda_dispatch.h' 2025-07-17T06:38:00.2348800Z adding 'torch/include/ATen/ops/_foreach_ceil_native.h' 2025-07-17T06:38:00.2349730Z adding 'torch/include/ATen/ops/_foreach_ceil_ops.h' 2025-07-17T06:38:00.2350810Z adding 'torch/include/ATen/ops/_foreach_clamp_max.h' 2025-07-17T06:38:00.2351960Z adding 'torch/include/ATen/ops/_foreach_clamp_max_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2352800Z adding 'torch/include/ATen/ops/_foreach_clamp_max_cuda_dispatch.h' 2025-07-17T06:38:00.2353710Z adding 'torch/include/ATen/ops/_foreach_clamp_max_native.h' 2025-07-17T06:38:00.2354930Z adding 'torch/include/ATen/ops/_foreach_clamp_max_ops.h' 2025-07-17T06:38:00.2356090Z adding 'torch/include/ATen/ops/_foreach_clamp_min.h' 2025-07-17T06:38:00.2357130Z adding 'torch/include/ATen/ops/_foreach_clamp_min_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2357950Z adding 'torch/include/ATen/ops/_foreach_clamp_min_cuda_dispatch.h' 2025-07-17T06:38:00.2358870Z adding 'torch/include/ATen/ops/_foreach_clamp_min_native.h' 2025-07-17T06:38:00.2360210Z adding 'torch/include/ATen/ops/_foreach_clamp_min_ops.h' 2025-07-17T06:38:00.2361140Z adding 'torch/include/ATen/ops/_foreach_copy.h' 2025-07-17T06:38:00.2362090Z adding 'torch/include/ATen/ops/_foreach_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2362890Z adding 'torch/include/ATen/ops/_foreach_copy_cuda_dispatch.h' 2025-07-17T06:38:00.2363840Z adding 'torch/include/ATen/ops/_foreach_copy_native.h' 2025-07-17T06:38:00.2364830Z adding 'torch/include/ATen/ops/_foreach_copy_ops.h' 2025-07-17T06:38:00.2365700Z adding 'torch/include/ATen/ops/_foreach_cos.h' 2025-07-17T06:38:00.2366650Z adding 'torch/include/ATen/ops/_foreach_cos_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2367540Z adding 'torch/include/ATen/ops/_foreach_cos_cuda_dispatch.h' 2025-07-17T06:38:00.2368370Z adding 'torch/include/ATen/ops/_foreach_cos_native.h' 2025-07-17T06:38:00.2369320Z adding 'torch/include/ATen/ops/_foreach_cos_ops.h' 2025-07-17T06:38:00.2370200Z adding 'torch/include/ATen/ops/_foreach_cosh.h' 2025-07-17T06:38:00.2371270Z adding 'torch/include/ATen/ops/_foreach_cosh_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2372020Z adding 'torch/include/ATen/ops/_foreach_cosh_cuda_dispatch.h' 2025-07-17T06:38:00.2372840Z adding 'torch/include/ATen/ops/_foreach_cosh_native.h' 2025-07-17T06:38:00.2373760Z adding 'torch/include/ATen/ops/_foreach_cosh_ops.h' 2025-07-17T06:38:00.2374960Z adding 'torch/include/ATen/ops/_foreach_div.h' 2025-07-17T06:38:00.2376040Z adding 'torch/include/ATen/ops/_foreach_div_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2376880Z adding 'torch/include/ATen/ops/_foreach_div_cuda_dispatch.h' 2025-07-17T06:38:00.2377830Z adding 'torch/include/ATen/ops/_foreach_div_native.h' 2025-07-17T06:38:00.2379310Z adding 'torch/include/ATen/ops/_foreach_div_ops.h' 2025-07-17T06:38:00.2380220Z adding 'torch/include/ATen/ops/_foreach_erf.h' 2025-07-17T06:38:00.2381140Z adding 'torch/include/ATen/ops/_foreach_erf_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2381900Z adding 'torch/include/ATen/ops/_foreach_erf_cuda_dispatch.h' 2025-07-17T06:38:00.2387670Z adding 'torch/include/ATen/ops/_foreach_erf_native.h' 2025-07-17T06:38:00.2387920Z adding 'torch/include/ATen/ops/_foreach_erf_ops.h' 2025-07-17T06:38:00.2388150Z adding 'torch/include/ATen/ops/_foreach_erfc.h' 2025-07-17T06:38:00.2388480Z adding 'torch/include/ATen/ops/_foreach_erfc_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2388830Z adding 'torch/include/ATen/ops/_foreach_erfc_cuda_dispatch.h' 2025-07-17T06:38:00.2389100Z adding 'torch/include/ATen/ops/_foreach_erfc_native.h' 2025-07-17T06:38:00.2389350Z adding 'torch/include/ATen/ops/_foreach_erfc_ops.h' 2025-07-17T06:38:00.2389650Z adding 'torch/include/ATen/ops/_foreach_exp.h' 2025-07-17T06:38:00.2390860Z adding 'torch/include/ATen/ops/_foreach_exp_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2391780Z adding 'torch/include/ATen/ops/_foreach_exp_cuda_dispatch.h' 2025-07-17T06:38:00.2394000Z adding 'torch/include/ATen/ops/_foreach_exp_native.h' 2025-07-17T06:38:00.2394820Z adding 'torch/include/ATen/ops/_foreach_exp_ops.h' 2025-07-17T06:38:00.2395740Z adding 'torch/include/ATen/ops/_foreach_expm1.h' 2025-07-17T06:38:00.2396780Z adding 'torch/include/ATen/ops/_foreach_expm1_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2397880Z adding 'torch/include/ATen/ops/_foreach_expm1_cuda_dispatch.h' 2025-07-17T06:38:00.2398720Z adding 'torch/include/ATen/ops/_foreach_expm1_native.h' 2025-07-17T06:38:00.2399730Z adding 'torch/include/ATen/ops/_foreach_expm1_ops.h' 2025-07-17T06:38:00.2400650Z adding 'torch/include/ATen/ops/_foreach_floor.h' 2025-07-17T06:38:00.2401850Z adding 'torch/include/ATen/ops/_foreach_floor_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2402680Z adding 'torch/include/ATen/ops/_foreach_floor_cuda_dispatch.h' 2025-07-17T06:38:00.2403530Z adding 'torch/include/ATen/ops/_foreach_floor_native.h' 2025-07-17T06:38:00.2404500Z adding 'torch/include/ATen/ops/_foreach_floor_ops.h' 2025-07-17T06:38:00.2405620Z adding 'torch/include/ATen/ops/_foreach_frac.h' 2025-07-17T06:38:00.2406620Z adding 'torch/include/ATen/ops/_foreach_frac_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2407430Z adding 'torch/include/ATen/ops/_foreach_frac_cuda_dispatch.h' 2025-07-17T06:38:00.2408280Z adding 'torch/include/ATen/ops/_foreach_frac_native.h' 2025-07-17T06:38:00.2409490Z adding 'torch/include/ATen/ops/_foreach_frac_ops.h' 2025-07-17T06:38:00.2410610Z adding 'torch/include/ATen/ops/_foreach_lerp.h' 2025-07-17T06:38:00.2411690Z adding 'torch/include/ATen/ops/_foreach_lerp_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2412900Z adding 'torch/include/ATen/ops/_foreach_lerp_cuda_dispatch.h' 2025-07-17T06:38:00.2414080Z adding 'torch/include/ATen/ops/_foreach_lerp_native.h' 2025-07-17T06:38:00.2415420Z adding 'torch/include/ATen/ops/_foreach_lerp_ops.h' 2025-07-17T06:38:00.2416320Z adding 'torch/include/ATen/ops/_foreach_lgamma.h' 2025-07-17T06:38:00.2417280Z adding 'torch/include/ATen/ops/_foreach_lgamma_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2418350Z adding 'torch/include/ATen/ops/_foreach_lgamma_cuda_dispatch.h' 2025-07-17T06:38:00.2419180Z adding 'torch/include/ATen/ops/_foreach_lgamma_native.h' 2025-07-17T06:38:00.2420160Z adding 'torch/include/ATen/ops/_foreach_lgamma_ops.h' 2025-07-17T06:38:00.2421270Z adding 'torch/include/ATen/ops/_foreach_log.h' 2025-07-17T06:38:00.2422530Z adding 'torch/include/ATen/ops/_foreach_log10.h' 2025-07-17T06:38:00.2423740Z adding 'torch/include/ATen/ops/_foreach_log10_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2424570Z adding 'torch/include/ATen/ops/_foreach_log10_cuda_dispatch.h' 2025-07-17T06:38:00.2425410Z adding 'torch/include/ATen/ops/_foreach_log10_native.h' 2025-07-17T06:38:00.2426390Z adding 'torch/include/ATen/ops/_foreach_log10_ops.h' 2025-07-17T06:38:00.2427500Z adding 'torch/include/ATen/ops/_foreach_log1p.h' 2025-07-17T06:38:00.2428480Z adding 'torch/include/ATen/ops/_foreach_log1p_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2429280Z adding 'torch/include/ATen/ops/_foreach_log1p_cuda_dispatch.h' 2025-07-17T06:38:00.2430120Z adding 'torch/include/ATen/ops/_foreach_log1p_native.h' 2025-07-17T06:38:00.2431290Z adding 'torch/include/ATen/ops/_foreach_log1p_ops.h' 2025-07-17T06:38:00.2432190Z adding 'torch/include/ATen/ops/_foreach_log2.h' 2025-07-17T06:38:00.2433160Z adding 'torch/include/ATen/ops/_foreach_log2_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2434270Z adding 'torch/include/ATen/ops/_foreach_log2_cuda_dispatch.h' 2025-07-17T06:38:00.2435020Z adding 'torch/include/ATen/ops/_foreach_log2_native.h' 2025-07-17T06:38:00.2435970Z adding 'torch/include/ATen/ops/_foreach_log2_ops.h' 2025-07-17T06:38:00.2436910Z adding 'torch/include/ATen/ops/_foreach_log_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2437710Z adding 'torch/include/ATen/ops/_foreach_log_cuda_dispatch.h' 2025-07-17T06:38:00.2438740Z adding 'torch/include/ATen/ops/_foreach_log_native.h' 2025-07-17T06:38:00.2439690Z adding 'torch/include/ATen/ops/_foreach_log_ops.h' 2025-07-17T06:38:00.2440580Z adding 'torch/include/ATen/ops/_foreach_max.h' 2025-07-17T06:38:00.2441540Z adding 'torch/include/ATen/ops/_foreach_max_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2442520Z adding 'torch/include/ATen/ops/_foreach_max_cuda_dispatch.h' 2025-07-17T06:38:00.2443390Z adding 'torch/include/ATen/ops/_foreach_max_native.h' 2025-07-17T06:38:00.2444290Z adding 'torch/include/ATen/ops/_foreach_max_ops.h' 2025-07-17T06:38:00.2445350Z adding 'torch/include/ATen/ops/_foreach_maximum.h' 2025-07-17T06:38:00.2446590Z adding 'torch/include/ATen/ops/_foreach_maximum_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2447450Z adding 'torch/include/ATen/ops/_foreach_maximum_cuda_dispatch.h' 2025-07-17T06:38:00.2448370Z adding 'torch/include/ATen/ops/_foreach_maximum_native.h' 2025-07-17T06:38:00.2449610Z adding 'torch/include/ATen/ops/_foreach_maximum_ops.h' 2025-07-17T06:38:00.2450870Z adding 'torch/include/ATen/ops/_foreach_minimum.h' 2025-07-17T06:38:00.2451920Z adding 'torch/include/ATen/ops/_foreach_minimum_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2452770Z adding 'torch/include/ATen/ops/_foreach_minimum_cuda_dispatch.h' 2025-07-17T06:38:00.2453690Z adding 'torch/include/ATen/ops/_foreach_minimum_native.h' 2025-07-17T06:38:00.2455300Z adding 'torch/include/ATen/ops/_foreach_minimum_ops.h' 2025-07-17T06:38:00.2456250Z adding 'torch/include/ATen/ops/_foreach_mul.h' 2025-07-17T06:38:00.2457300Z adding 'torch/include/ATen/ops/_foreach_mul_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2458150Z adding 'torch/include/ATen/ops/_foreach_mul_cuda_dispatch.h' 2025-07-17T06:38:00.2459310Z adding 'torch/include/ATen/ops/_foreach_mul_native.h' 2025-07-17T06:38:00.2460740Z adding 'torch/include/ATen/ops/_foreach_mul_ops.h' 2025-07-17T06:38:00.2461620Z adding 'torch/include/ATen/ops/_foreach_neg.h' 2025-07-17T06:38:00.2462580Z adding 'torch/include/ATen/ops/_foreach_neg_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2463570Z adding 'torch/include/ATen/ops/_foreach_neg_cuda_dispatch.h' 2025-07-17T06:38:00.2464470Z adding 'torch/include/ATen/ops/_foreach_neg_native.h' 2025-07-17T06:38:00.2465360Z adding 'torch/include/ATen/ops/_foreach_neg_ops.h' 2025-07-17T06:38:00.2466270Z adding 'torch/include/ATen/ops/_foreach_norm.h' 2025-07-17T06:38:00.2467480Z adding 'torch/include/ATen/ops/_foreach_norm_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2468320Z adding 'torch/include/ATen/ops/_foreach_norm_cuda_dispatch.h' 2025-07-17T06:38:00.2469170Z adding 'torch/include/ATen/ops/_foreach_norm_native.h' 2025-07-17T06:38:00.2470130Z adding 'torch/include/ATen/ops/_foreach_norm_ops.h' 2025-07-17T06:38:00.2471380Z adding 'torch/include/ATen/ops/_foreach_pow.h' 2025-07-17T06:38:00.2472430Z adding 'torch/include/ATen/ops/_foreach_pow_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2473290Z adding 'torch/include/ATen/ops/_foreach_pow_cuda_dispatch.h' 2025-07-17T06:38:00.2474210Z adding 'torch/include/ATen/ops/_foreach_pow_native.h' 2025-07-17T06:38:00.2475830Z adding 'torch/include/ATen/ops/_foreach_pow_ops.h' 2025-07-17T06:38:00.2476680Z adding 'torch/include/ATen/ops/_foreach_reciprocal.h' 2025-07-17T06:38:00.2477660Z adding 'torch/include/ATen/ops/_foreach_reciprocal_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2478450Z adding 'torch/include/ATen/ops/_foreach_reciprocal_cuda_dispatch.h' 2025-07-17T06:38:00.2479480Z adding 'torch/include/ATen/ops/_foreach_reciprocal_native.h' 2025-07-17T06:38:00.2480430Z adding 'torch/include/ATen/ops/_foreach_reciprocal_ops.h' 2025-07-17T06:38:00.2481300Z adding 'torch/include/ATen/ops/_foreach_round.h' 2025-07-17T06:38:00.2482240Z adding 'torch/include/ATen/ops/_foreach_round_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2483240Z adding 'torch/include/ATen/ops/_foreach_round_cuda_dispatch.h' 2025-07-17T06:38:00.2484070Z adding 'torch/include/ATen/ops/_foreach_round_native.h' 2025-07-17T06:38:00.2485000Z adding 'torch/include/ATen/ops/_foreach_round_ops.h' 2025-07-17T06:38:00.2485860Z adding 'torch/include/ATen/ops/_foreach_rsqrt.h' 2025-07-17T06:38:00.2487050Z adding 'torch/include/ATen/ops/_foreach_rsqrt_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2487850Z adding 'torch/include/ATen/ops/_foreach_rsqrt_cuda_dispatch.h' 2025-07-17T06:38:00.2488730Z adding 'torch/include/ATen/ops/_foreach_rsqrt_native.h' 2025-07-17T06:38:00.2489630Z adding 'torch/include/ATen/ops/_foreach_rsqrt_ops.h' 2025-07-17T06:38:00.2490720Z adding 'torch/include/ATen/ops/_foreach_sigmoid.h' 2025-07-17T06:38:00.2491670Z adding 'torch/include/ATen/ops/_foreach_sigmoid_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2492500Z adding 'torch/include/ATen/ops/_foreach_sigmoid_cuda_dispatch.h' 2025-07-17T06:38:00.2493300Z adding 'torch/include/ATen/ops/_foreach_sigmoid_native.h' 2025-07-17T06:38:00.2494440Z adding 'torch/include/ATen/ops/_foreach_sigmoid_ops.h' 2025-07-17T06:38:00.2495370Z adding 'torch/include/ATen/ops/_foreach_sign.h' 2025-07-17T06:38:00.2496400Z adding 'torch/include/ATen/ops/_foreach_sign_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2497270Z adding 'torch/include/ATen/ops/_foreach_sign_cuda_dispatch.h' 2025-07-17T06:38:00.2498390Z adding 'torch/include/ATen/ops/_foreach_sign_native.h' 2025-07-17T06:38:00.2499410Z adding 'torch/include/ATen/ops/_foreach_sign_ops.h' 2025-07-17T06:38:00.2500540Z adding 'torch/include/ATen/ops/_foreach_sin.h' 2025-07-17T06:38:00.2501510Z adding 'torch/include/ATen/ops/_foreach_sin_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2502580Z adding 'torch/include/ATen/ops/_foreach_sin_cuda_dispatch.h' 2025-07-17T06:38:00.2503470Z adding 'torch/include/ATen/ops/_foreach_sin_native.h' 2025-07-17T06:38:00.2504530Z adding 'torch/include/ATen/ops/_foreach_sin_ops.h' 2025-07-17T06:38:00.2505430Z adding 'torch/include/ATen/ops/_foreach_sinh.h' 2025-07-17T06:38:00.2506720Z adding 'torch/include/ATen/ops/_foreach_sinh_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2507510Z adding 'torch/include/ATen/ops/_foreach_sinh_cuda_dispatch.h' 2025-07-17T06:38:00.2508390Z adding 'torch/include/ATen/ops/_foreach_sinh_native.h' 2025-07-17T06:38:00.2509350Z adding 'torch/include/ATen/ops/_foreach_sinh_ops.h' 2025-07-17T06:38:00.2510560Z adding 'torch/include/ATen/ops/_foreach_sqrt.h' 2025-07-17T06:38:00.2511580Z adding 'torch/include/ATen/ops/_foreach_sqrt_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2512420Z adding 'torch/include/ATen/ops/_foreach_sqrt_cuda_dispatch.h' 2025-07-17T06:38:00.2513270Z adding 'torch/include/ATen/ops/_foreach_sqrt_native.h' 2025-07-17T06:38:00.2514620Z adding 'torch/include/ATen/ops/_foreach_sqrt_ops.h' 2025-07-17T06:38:00.2515830Z adding 'torch/include/ATen/ops/_foreach_sub.h' 2025-07-17T06:38:00.2516920Z adding 'torch/include/ATen/ops/_foreach_sub_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2517820Z adding 'torch/include/ATen/ops/_foreach_sub_cuda_dispatch.h' 2025-07-17T06:38:00.2519090Z adding 'torch/include/ATen/ops/_foreach_sub_native.h' 2025-07-17T06:38:00.2520440Z adding 'torch/include/ATen/ops/_foreach_sub_ops.h' 2025-07-17T06:38:00.2521560Z adding 'torch/include/ATen/ops/_foreach_tan.h' 2025-07-17T06:38:00.2522580Z adding 'torch/include/ATen/ops/_foreach_tan_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2523600Z adding 'torch/include/ATen/ops/_foreach_tan_cuda_dispatch.h' 2025-07-17T06:38:00.2524510Z adding 'torch/include/ATen/ops/_foreach_tan_native.h' 2025-07-17T06:38:00.2525570Z adding 'torch/include/ATen/ops/_foreach_tan_ops.h' 2025-07-17T06:38:00.2526520Z adding 'torch/include/ATen/ops/_foreach_tanh.h' 2025-07-17T06:38:00.2527660Z adding 'torch/include/ATen/ops/_foreach_tanh_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2528470Z adding 'torch/include/ATen/ops/_foreach_tanh_cuda_dispatch.h' 2025-07-17T06:38:00.2529330Z adding 'torch/include/ATen/ops/_foreach_tanh_native.h' 2025-07-17T06:38:00.2530300Z adding 'torch/include/ATen/ops/_foreach_tanh_ops.h' 2025-07-17T06:38:00.2531380Z adding 'torch/include/ATen/ops/_foreach_trunc.h' 2025-07-17T06:38:00.2532390Z adding 'torch/include/ATen/ops/_foreach_trunc_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2533210Z adding 'torch/include/ATen/ops/_foreach_trunc_cuda_dispatch.h' 2025-07-17T06:38:00.2534070Z adding 'torch/include/ATen/ops/_foreach_trunc_native.h' 2025-07-17T06:38:00.2535220Z adding 'torch/include/ATen/ops/_foreach_trunc_ops.h' 2025-07-17T06:38:00.2536090Z adding 'torch/include/ATen/ops/_foreach_zero.h' 2025-07-17T06:38:00.2537050Z adding 'torch/include/ATen/ops/_foreach_zero_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2537850Z adding 'torch/include/ATen/ops/_foreach_zero_cuda_dispatch.h' 2025-07-17T06:38:00.2538890Z adding 'torch/include/ATen/ops/_foreach_zero_native.h' 2025-07-17T06:38:00.2539870Z adding 'torch/include/ATen/ops/_foreach_zero_ops.h' 2025-07-17T06:38:00.2540810Z adding 'torch/include/ATen/ops/_functional_assert_async.h' 2025-07-17T06:38:00.2541700Z adding 'torch/include/ATen/ops/_functional_assert_async_cpu_dispatch.h' 2025-07-17T06:38:00.2542740Z adding 'torch/include/ATen/ops/_functional_assert_async_native.h' 2025-07-17T06:38:00.2543660Z adding 'torch/include/ATen/ops/_functional_assert_async_ops.h' 2025-07-17T06:38:00.2544530Z adding 'torch/include/ATen/ops/_functional_assert_scalar.h' 2025-07-17T06:38:00.2545560Z adding 'torch/include/ATen/ops/_functional_assert_scalar_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2546530Z adding 'torch/include/ATen/ops/_functional_assert_scalar_native.h' 2025-07-17T06:38:00.2547480Z adding 'torch/include/ATen/ops/_functional_assert_scalar_ops.h' 2025-07-17T06:38:00.2548360Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range.h' 2025-07-17T06:38:00.2549350Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2550400Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size.h' 2025-07-17T06:38:00.2551440Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2552220Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_native.h' 2025-07-17T06:38:00.2553230Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_ops.h' 2025-07-17T06:38:00.2554230Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_native.h' 2025-07-17T06:38:00.2555220Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_ops.h' 2025-07-17T06:38:00.2556350Z adding 'torch/include/ATen/ops/_fused_adagrad.h' 2025-07-17T06:38:00.2557470Z adding 'torch/include/ATen/ops/_fused_adagrad_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2558580Z adding 'torch/include/ATen/ops/_fused_adagrad_cpu_dispatch.h' 2025-07-17T06:38:00.2559550Z adding 'torch/include/ATen/ops/_fused_adagrad_native.h' 2025-07-17T06:38:00.2560900Z adding 'torch/include/ATen/ops/_fused_adagrad_ops.h' 2025-07-17T06:38:00.2562310Z adding 'torch/include/ATen/ops/_fused_adam.h' 2025-07-17T06:38:00.2563720Z adding 'torch/include/ATen/ops/_fused_adam_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2564570Z adding 'torch/include/ATen/ops/_fused_adam_cpu_dispatch.h' 2025-07-17T06:38:00.2565460Z adding 'torch/include/ATen/ops/_fused_adam_cuda_dispatch.h' 2025-07-17T06:38:00.2566360Z adding 'torch/include/ATen/ops/_fused_adam_mps_dispatch.h' 2025-07-17T06:38:00.2567620Z adding 'torch/include/ATen/ops/_fused_adam_native.h' 2025-07-17T06:38:00.2569560Z adding 'torch/include/ATen/ops/_fused_adam_ops.h' 2025-07-17T06:38:00.2570460Z adding 'torch/include/ATen/ops/_fused_adamw.h' 2025-07-17T06:38:00.2571600Z adding 'torch/include/ATen/ops/_fused_adamw_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2573640Z adding 'torch/include/ATen/ops/_fused_adamw_cpu_dispatch.h' 2025-07-17T06:38:00.2574540Z adding 'torch/include/ATen/ops/_fused_adamw_cuda_dispatch.h' 2025-07-17T06:38:00.2576010Z adding 'torch/include/ATen/ops/_fused_adamw_mps_dispatch.h' 2025-07-17T06:38:00.2577160Z adding 'torch/include/ATen/ops/_fused_adamw_native.h' 2025-07-17T06:38:00.2578870Z adding 'torch/include/ATen/ops/_fused_adamw_ops.h' 2025-07-17T06:38:00.2579780Z adding 'torch/include/ATen/ops/_fused_dropout.h' 2025-07-17T06:38:00.2580940Z adding 'torch/include/ATen/ops/_fused_dropout_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2581970Z adding 'torch/include/ATen/ops/_fused_dropout_cuda_dispatch.h' 2025-07-17T06:38:00.2582870Z adding 'torch/include/ATen/ops/_fused_dropout_native.h' 2025-07-17T06:38:00.2583880Z adding 'torch/include/ATen/ops/_fused_dropout_ops.h' 2025-07-17T06:38:00.2585290Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper.h' 2025-07-17T06:38:00.2586480Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2587360Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cpu_dispatch.h' 2025-07-17T06:38:00.2588280Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cuda_dispatch.h' 2025-07-17T06:38:00.2589350Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_native.h' 2025-07-17T06:38:00.2590610Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_ops.h' 2025-07-17T06:38:00.2591490Z adding 'torch/include/ATen/ops/_fused_rms_norm.h' 2025-07-17T06:38:00.2592410Z adding 'torch/include/ATen/ops/_fused_rms_norm_mps_dispatch.h' 2025-07-17T06:38:00.2593360Z adding 'torch/include/ATen/ops/_fused_rms_norm_native.h' 2025-07-17T06:38:00.2594290Z adding 'torch/include/ATen/ops/_fused_rms_norm_ops.h' 2025-07-17T06:38:00.2595200Z adding 'torch/include/ATen/ops/_fused_sdp_choice.h' 2025-07-17T06:38:00.2596140Z adding 'torch/include/ATen/ops/_fused_sdp_choice_cpu_dispatch.h' 2025-07-17T06:38:00.2597170Z adding 'torch/include/ATen/ops/_fused_sdp_choice_cuda_dispatch.h' 2025-07-17T06:38:00.2598070Z adding 'torch/include/ATen/ops/_fused_sdp_choice_meta_dispatch.h' 2025-07-17T06:38:00.2598950Z adding 'torch/include/ATen/ops/_fused_sdp_choice_native.h' 2025-07-17T06:38:00.2599910Z adding 'torch/include/ATen/ops/_fused_sdp_choice_ops.h' 2025-07-17T06:38:00.2601280Z adding 'torch/include/ATen/ops/_fused_sgd.h' 2025-07-17T06:38:00.2602470Z adding 'torch/include/ATen/ops/_fused_sgd_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2603270Z adding 'torch/include/ATen/ops/_fused_sgd_cpu_dispatch.h' 2025-07-17T06:38:00.2604150Z adding 'torch/include/ATen/ops/_fused_sgd_cuda_dispatch.h' 2025-07-17T06:38:00.2605110Z adding 'torch/include/ATen/ops/_fused_sgd_mps_dispatch.h' 2025-07-17T06:38:00.2606130Z adding 'torch/include/ATen/ops/_fused_sgd_native.h' 2025-07-17T06:38:00.2607590Z adding 'torch/include/ATen/ops/_fused_sgd_ops.h' 2025-07-17T06:38:00.2608430Z adding 'torch/include/ATen/ops/_fw_primal.h' 2025-07-17T06:38:00.2609500Z adding 'torch/include/ATen/ops/_fw_primal_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2610320Z adding 'torch/include/ATen/ops/_fw_primal_copy.h' 2025-07-17T06:38:00.2611290Z adding 'torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2612200Z adding 'torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.2613160Z adding 'torch/include/ATen/ops/_fw_primal_copy_native.h' 2025-07-17T06:38:00.2614050Z adding 'torch/include/ATen/ops/_fw_primal_copy_ops.h' 2025-07-17T06:38:00.2614920Z adding 'torch/include/ATen/ops/_fw_primal_native.h' 2025-07-17T06:38:00.2615810Z adding 'torch/include/ATen/ops/_fw_primal_ops.h' 2025-07-17T06:38:00.2616820Z adding 'torch/include/ATen/ops/_gather_sparse_backward.h' 2025-07-17T06:38:00.2617810Z adding 'torch/include/ATen/ops/_gather_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.2618580Z adding 'torch/include/ATen/ops/_gather_sparse_backward_native.h' 2025-07-17T06:38:00.2619520Z adding 'torch/include/ATen/ops/_gather_sparse_backward_ops.h' 2025-07-17T06:38:00.2620620Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback.h' 2025-07-17T06:38:00.2621540Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward.h' 2025-07-17T06:38:00.2622540Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.2623330Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_native.h' 2025-07-17T06:38:00.2624400Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_ops.h' 2025-07-17T06:38:00.2625430Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2626170Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_native.h' 2025-07-17T06:38:00.2627140Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_ops.h' 2025-07-17T06:38:00.2628090Z adding 'torch/include/ATen/ops/_grouped_mm.h' 2025-07-17T06:38:00.2629040Z adding 'torch/include/ATen/ops/_grouped_mm_cuda_dispatch.h' 2025-07-17T06:38:00.2629870Z adding 'torch/include/ATen/ops/_grouped_mm_native.h' 2025-07-17T06:38:00.2630800Z adding 'torch/include/ATen/ops/_grouped_mm_ops.h' 2025-07-17T06:38:00.2631830Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type.h' 2025-07-17T06:38:00.2632820Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.2633580Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_native.h' 2025-07-17T06:38:00.2634470Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_ops.h' 2025-07-17T06:38:00.2635430Z adding 'torch/include/ATen/ops/_has_same_storage_numel.h' 2025-07-17T06:38:00.2636420Z adding 'torch/include/ATen/ops/_has_same_storage_numel_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2637180Z adding 'torch/include/ATen/ops/_has_same_storage_numel_native.h' 2025-07-17T06:38:00.2638070Z adding 'torch/include/ATen/ops/_has_same_storage_numel_ops.h' 2025-07-17T06:38:00.2639160Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges.h' 2025-07-17T06:38:00.2640180Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2640990Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_cpu_dispatch.h' 2025-07-17T06:38:00.2641850Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_mps_dispatch.h' 2025-07-17T06:38:00.2642820Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_native.h' 2025-07-17T06:38:00.2643830Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_ops.h' 2025-07-17T06:38:00.2645190Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts.h' 2025-07-17T06:38:00.2646200Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2647180Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_cpu_dispatch.h' 2025-07-17T06:38:00.2648010Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_mps_dispatch.h' 2025-07-17T06:38:00.2648860Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_native.h' 2025-07-17T06:38:00.2649850Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_ops.h' 2025-07-17T06:38:00.2650930Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors.h' 2025-07-17T06:38:00.2651950Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2652770Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_cpu_dispatch.h' 2025-07-17T06:38:00.2653570Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_mps_dispatch.h' 2025-07-17T06:38:00.2654560Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_native.h' 2025-07-17T06:38:00.2655580Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_ops.h' 2025-07-17T06:38:00.2656520Z adding 'torch/include/ATen/ops/_index_put_impl.h' 2025-07-17T06:38:00.2657530Z adding 'torch/include/ATen/ops/_index_put_impl_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2658460Z adding 'torch/include/ATen/ops/_index_put_impl_cpu_dispatch.h' 2025-07-17T06:38:00.2659290Z adding 'torch/include/ATen/ops/_index_put_impl_cuda_dispatch.h' 2025-07-17T06:38:00.2660110Z adding 'torch/include/ATen/ops/_index_put_impl_meta_dispatch.h' 2025-07-17T06:38:00.2660900Z adding 'torch/include/ATen/ops/_index_put_impl_mps_dispatch.h' 2025-07-17T06:38:00.2661900Z adding 'torch/include/ATen/ops/_index_put_impl_native.h' 2025-07-17T06:38:00.2662970Z adding 'torch/include/ATen/ops/_index_put_impl_ops.h' 2025-07-17T06:38:00.2663790Z adding 'torch/include/ATen/ops/_indices.h' 2025-07-17T06:38:00.2664780Z adding 'torch/include/ATen/ops/_indices_copy.h' 2025-07-17T06:38:00.2665800Z adding 'torch/include/ATen/ops/_indices_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2666740Z adding 'torch/include/ATen/ops/_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.2667520Z adding 'torch/include/ATen/ops/_indices_copy_native.h' 2025-07-17T06:38:00.2668470Z adding 'torch/include/ATen/ops/_indices_copy_ops.h' 2025-07-17T06:38:00.2669440Z adding 'torch/include/ATen/ops/_indices_native.h' 2025-07-17T06:38:00.2670340Z adding 'torch/include/ATen/ops/_indices_ops.h' 2025-07-17T06:38:00.2671250Z adding 'torch/include/ATen/ops/_int_mm.h' 2025-07-17T06:38:00.2672220Z adding 'torch/include/ATen/ops/_int_mm_cpu_dispatch.h' 2025-07-17T06:38:00.2673260Z adding 'torch/include/ATen/ops/_int_mm_cuda_dispatch.h' 2025-07-17T06:38:00.2674150Z adding 'torch/include/ATen/ops/_int_mm_native.h' 2025-07-17T06:38:00.2675150Z adding 'torch/include/ATen/ops/_int_mm_ops.h' 2025-07-17T06:38:00.2676090Z adding 'torch/include/ATen/ops/_is_all_true.h' 2025-07-17T06:38:00.2677240Z adding 'torch/include/ATen/ops/_is_all_true_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2678070Z adding 'torch/include/ATen/ops/_is_all_true_native.h' 2025-07-17T06:38:00.2679010Z adding 'torch/include/ATen/ops/_is_all_true_ops.h' 2025-07-17T06:38:00.2679890Z adding 'torch/include/ATen/ops/_is_any_true.h' 2025-07-17T06:38:00.2681020Z adding 'torch/include/ATen/ops/_is_any_true_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2681920Z adding 'torch/include/ATen/ops/_is_any_true_native.h' 2025-07-17T06:38:00.2682890Z adding 'torch/include/ATen/ops/_is_any_true_ops.h' 2025-07-17T06:38:00.2683830Z adding 'torch/include/ATen/ops/_is_zerotensor.h' 2025-07-17T06:38:00.2684940Z adding 'torch/include/ATen/ops/_is_zerotensor_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.2685700Z adding 'torch/include/ATen/ops/_is_zerotensor_native.h' 2025-07-17T06:38:00.2686620Z adding 'torch/include/ATen/ops/_is_zerotensor_ops.h' 2025-07-17T06:38:00.2687700Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward.h' 2025-07-17T06:38:00.2688760Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_cpu_dispatch.h' 2025-07-17T06:38:00.2689630Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_cuda_dispatch.h' 2025-07-17T06:38:00.2690470Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_native.h' 2025-07-17T06:38:00.2691390Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_ops.h' 2025-07-17T06:38:00.2692310Z adding 'torch/include/ATen/ops/_lazy_clone.h' 2025-07-17T06:38:00.2693290Z adding 'torch/include/ATen/ops/_lazy_clone_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2694040Z adding 'torch/include/ATen/ops/_lazy_clone_native.h' 2025-07-17T06:38:00.2694940Z adding 'torch/include/ATen/ops/_lazy_clone_ops.h' 2025-07-17T06:38:00.2695920Z adding 'torch/include/ATen/ops/_linalg_check_errors.h' 2025-07-17T06:38:00.2696910Z adding 'torch/include/ATen/ops/_linalg_check_errors_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2697670Z adding 'torch/include/ATen/ops/_linalg_check_errors_native.h' 2025-07-17T06:38:00.2698590Z adding 'torch/include/ATen/ops/_linalg_check_errors_ops.h' 2025-07-17T06:38:00.2699590Z adding 'torch/include/ATen/ops/_linalg_det.h' 2025-07-17T06:38:00.2700610Z adding 'torch/include/ATen/ops/_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.2701400Z adding 'torch/include/ATen/ops/_linalg_det_cpu_dispatch.h' 2025-07-17T06:38:00.2702260Z adding 'torch/include/ATen/ops/_linalg_det_cuda_dispatch.h' 2025-07-17T06:38:00.2703200Z adding 'torch/include/ATen/ops/_linalg_det_meta.h' 2025-07-17T06:38:00.2704090Z adding 'torch/include/ATen/ops/_linalg_det_meta_dispatch.h' 2025-07-17T06:38:00.2704920Z adding 'torch/include/ATen/ops/_linalg_det_mps_dispatch.h' 2025-07-17T06:38:00.2705760Z adding 'torch/include/ATen/ops/_linalg_det_native.h' 2025-07-17T06:38:00.2706900Z adding 'torch/include/ATen/ops/_linalg_det_ops.h' 2025-07-17T06:38:00.2707800Z adding 'torch/include/ATen/ops/_linalg_eigh.h' 2025-07-17T06:38:00.2708830Z adding 'torch/include/ATen/ops/_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.2709620Z adding 'torch/include/ATen/ops/_linalg_eigh_cpu_dispatch.h' 2025-07-17T06:38:00.2710590Z adding 'torch/include/ATen/ops/_linalg_eigh_cuda_dispatch.h' 2025-07-17T06:38:00.2711430Z adding 'torch/include/ATen/ops/_linalg_eigh_meta.h' 2025-07-17T06:38:00.2712320Z adding 'torch/include/ATen/ops/_linalg_eigh_meta_dispatch.h' 2025-07-17T06:38:00.2713170Z adding 'torch/include/ATen/ops/_linalg_eigh_native.h' 2025-07-17T06:38:00.2714270Z adding 'torch/include/ATen/ops/_linalg_eigh_ops.h' 2025-07-17T06:38:00.2715150Z adding 'torch/include/ATen/ops/_linalg_eigvals.h' 2025-07-17T06:38:00.2716030Z adding 'torch/include/ATen/ops/_linalg_eigvals_cpu_dispatch.h' 2025-07-17T06:38:00.2716870Z adding 'torch/include/ATen/ops/_linalg_eigvals_cuda_dispatch.h' 2025-07-17T06:38:00.2717790Z adding 'torch/include/ATen/ops/_linalg_eigvals_native.h' 2025-07-17T06:38:00.2718700Z adding 'torch/include/ATen/ops/_linalg_eigvals_ops.h' 2025-07-17T06:38:00.2719610Z adding 'torch/include/ATen/ops/_linalg_slogdet.h' 2025-07-17T06:38:00.2720620Z adding 'torch/include/ATen/ops/_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.2721520Z adding 'torch/include/ATen/ops/_linalg_slogdet_cpu_dispatch.h' 2025-07-17T06:38:00.2722390Z adding 'torch/include/ATen/ops/_linalg_slogdet_cuda_dispatch.h' 2025-07-17T06:38:00.2723220Z adding 'torch/include/ATen/ops/_linalg_slogdet_meta.h' 2025-07-17T06:38:00.2724100Z adding 'torch/include/ATen/ops/_linalg_slogdet_meta_dispatch.h' 2025-07-17T06:38:00.2725050Z adding 'torch/include/ATen/ops/_linalg_slogdet_mps_dispatch.h' 2025-07-17T06:38:00.2725930Z adding 'torch/include/ATen/ops/_linalg_slogdet_native.h' 2025-07-17T06:38:00.2726910Z adding 'torch/include/ATen/ops/_linalg_slogdet_ops.h' 2025-07-17T06:38:00.2727880Z adding 'torch/include/ATen/ops/_linalg_solve_ex.h' 2025-07-17T06:38:00.2729030Z adding 'torch/include/ATen/ops/_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.2729870Z adding 'torch/include/ATen/ops/_linalg_solve_ex_cpu_dispatch.h' 2025-07-17T06:38:00.2730740Z adding 'torch/include/ATen/ops/_linalg_solve_ex_cuda_dispatch.h' 2025-07-17T06:38:00.2731580Z adding 'torch/include/ATen/ops/_linalg_solve_ex_meta.h' 2025-07-17T06:38:00.2732600Z adding 'torch/include/ATen/ops/_linalg_solve_ex_meta_dispatch.h' 2025-07-17T06:38:00.2733490Z adding 'torch/include/ATen/ops/_linalg_solve_ex_mps_dispatch.h' 2025-07-17T06:38:00.2734350Z adding 'torch/include/ATen/ops/_linalg_solve_ex_native.h' 2025-07-17T06:38:00.2735370Z adding 'torch/include/ATen/ops/_linalg_solve_ex_ops.h' 2025-07-17T06:38:00.2736420Z adding 'torch/include/ATen/ops/_linalg_svd.h' 2025-07-17T06:38:00.2737470Z adding 'torch/include/ATen/ops/_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.2738280Z adding 'torch/include/ATen/ops/_linalg_svd_cpu_dispatch.h' 2025-07-17T06:38:00.2739160Z adding 'torch/include/ATen/ops/_linalg_svd_cuda_dispatch.h' 2025-07-17T06:38:00.2740100Z adding 'torch/include/ATen/ops/_linalg_svd_meta.h' 2025-07-17T06:38:00.2740980Z adding 'torch/include/ATen/ops/_linalg_svd_meta_dispatch.h' 2025-07-17T06:38:00.2741830Z adding 'torch/include/ATen/ops/_linalg_svd_native.h' 2025-07-17T06:38:00.2742830Z adding 'torch/include/ATen/ops/_linalg_svd_ops.h' 2025-07-17T06:38:00.2743830Z adding 'torch/include/ATen/ops/_local_scalar_dense.h' 2025-07-17T06:38:00.2744760Z adding 'torch/include/ATen/ops/_local_scalar_dense_cpu_dispatch.h' 2025-07-17T06:38:00.2745580Z adding 'torch/include/ATen/ops/_local_scalar_dense_cuda_dispatch.h' 2025-07-17T06:38:00.2746410Z adding 'torch/include/ATen/ops/_local_scalar_dense_mps_dispatch.h' 2025-07-17T06:38:00.2747390Z adding 'torch/include/ATen/ops/_local_scalar_dense_native.h' 2025-07-17T06:38:00.2748290Z adding 'torch/include/ATen/ops/_local_scalar_dense_ops.h' 2025-07-17T06:38:00.2749280Z adding 'torch/include/ATen/ops/_log_softmax.h' 2025-07-17T06:38:00.2750170Z adding 'torch/include/ATen/ops/_log_softmax_backward_data.h' 2025-07-17T06:38:00.2751320Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.2752140Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_cpu_dispatch.h' 2025-07-17T06:38:00.2753020Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_cuda_dispatch.h' 2025-07-17T06:38:00.2753910Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_meta.h' 2025-07-17T06:38:00.2754910Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_meta_dispatch.h' 2025-07-17T06:38:00.2755790Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_mps_dispatch.h' 2025-07-17T06:38:00.2756690Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_native.h' 2025-07-17T06:38:00.2757690Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_ops.h' 2025-07-17T06:38:00.2758800Z adding 'torch/include/ATen/ops/_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.2759580Z adding 'torch/include/ATen/ops/_log_softmax_cpu_dispatch.h' 2025-07-17T06:38:00.2760450Z adding 'torch/include/ATen/ops/_log_softmax_cuda_dispatch.h' 2025-07-17T06:38:00.2761280Z adding 'torch/include/ATen/ops/_log_softmax_meta.h' 2025-07-17T06:38:00.2762250Z adding 'torch/include/ATen/ops/_log_softmax_meta_dispatch.h' 2025-07-17T06:38:00.2763100Z adding 'torch/include/ATen/ops/_log_softmax_mps_dispatch.h' 2025-07-17T06:38:00.2763950Z adding 'torch/include/ATen/ops/_log_softmax_native.h' 2025-07-17T06:38:00.2764900Z adding 'torch/include/ATen/ops/_log_softmax_ops.h' 2025-07-17T06:38:00.2765950Z adding 'torch/include/ATen/ops/_logcumsumexp.h' 2025-07-17T06:38:00.2766890Z adding 'torch/include/ATen/ops/_logcumsumexp_cpu_dispatch.h' 2025-07-17T06:38:00.2767720Z adding 'torch/include/ATen/ops/_logcumsumexp_cuda_dispatch.h' 2025-07-17T06:38:00.2768580Z adding 'torch/include/ATen/ops/_logcumsumexp_mps_dispatch.h' 2025-07-17T06:38:00.2769560Z adding 'torch/include/ATen/ops/_logcumsumexp_native.h' 2025-07-17T06:38:00.2770530Z adding 'torch/include/ATen/ops/_logcumsumexp_ops.h' 2025-07-17T06:38:00.2771570Z adding 'torch/include/ATen/ops/_lstm_mps.h' 2025-07-17T06:38:00.2772620Z adding 'torch/include/ATen/ops/_lstm_mps_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2773540Z adding 'torch/include/ATen/ops/_lstm_mps_mps_dispatch.h' 2025-07-17T06:38:00.2774460Z adding 'torch/include/ATen/ops/_lstm_mps_native.h' 2025-07-17T06:38:00.2775630Z adding 'torch/include/ATen/ops/_lstm_mps_ops.h' 2025-07-17T06:38:00.2776530Z adding 'torch/include/ATen/ops/_lu_with_info.h' 2025-07-17T06:38:00.2777610Z adding 'torch/include/ATen/ops/_lu_with_info_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.2778360Z adding 'torch/include/ATen/ops/_lu_with_info_native.h' 2025-07-17T06:38:00.2779270Z adding 'torch/include/ATen/ops/_lu_with_info_ops.h' 2025-07-17T06:38:00.2780240Z adding 'torch/include/ATen/ops/_make_dep_token.h' 2025-07-17T06:38:00.2781280Z adding 'torch/include/ATen/ops/_make_dep_token_cpu_dispatch.h' 2025-07-17T06:38:00.2782150Z adding 'torch/include/ATen/ops/_make_dep_token_native.h' 2025-07-17T06:38:00.2783100Z adding 'torch/include/ATen/ops/_make_dep_token_ops.h' 2025-07-17T06:38:00.2783940Z adding 'torch/include/ATen/ops/_make_dual.h' 2025-07-17T06:38:00.2785010Z adding 'torch/include/ATen/ops/_make_dual_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2785850Z adding 'torch/include/ATen/ops/_make_dual_copy.h' 2025-07-17T06:38:00.2786840Z adding 'torch/include/ATen/ops/_make_dual_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2787740Z adding 'torch/include/ATen/ops/_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.2788590Z adding 'torch/include/ATen/ops/_make_dual_copy_native.h' 2025-07-17T06:38:00.2789560Z adding 'torch/include/ATen/ops/_make_dual_copy_ops.h' 2025-07-17T06:38:00.2790420Z adding 'torch/include/ATen/ops/_make_dual_native.h' 2025-07-17T06:38:00.2791300Z adding 'torch/include/ATen/ops/_make_dual_ops.h' 2025-07-17T06:38:00.2792440Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor.h' 2025-07-17T06:38:00.2793460Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2794270Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_cpu_dispatch.h' 2025-07-17T06:38:00.2795100Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_cuda_dispatch.h' 2025-07-17T06:38:00.2796080Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_native.h' 2025-07-17T06:38:00.2797100Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_ops.h' 2025-07-17T06:38:00.2798030Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor.h' 2025-07-17T06:38:00.2799000Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2799930Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cpu_dispatch.h' 2025-07-17T06:38:00.2800760Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cuda_dispatch.h' 2025-07-17T06:38:00.2801620Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_native.h' 2025-07-17T06:38:00.2802570Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_ops.h' 2025-07-17T06:38:00.2803550Z adding 'torch/include/ATen/ops/_masked_scale.h' 2025-07-17T06:38:00.2804530Z adding 'torch/include/ATen/ops/_masked_scale_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2805360Z adding 'torch/include/ATen/ops/_masked_scale_cuda_dispatch.h' 2025-07-17T06:38:00.2806160Z adding 'torch/include/ATen/ops/_masked_scale_native.h' 2025-07-17T06:38:00.2807220Z adding 'torch/include/ATen/ops/_masked_scale_ops.h' 2025-07-17T06:38:00.2808180Z adding 'torch/include/ATen/ops/_masked_softmax.h' 2025-07-17T06:38:00.2809110Z adding 'torch/include/ATen/ops/_masked_softmax_backward.h' 2025-07-17T06:38:00.2810090Z adding 'torch/include/ATen/ops/_masked_softmax_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2811000Z adding 'torch/include/ATen/ops/_masked_softmax_backward_cpu_dispatch.h' 2025-07-17T06:38:00.2811870Z adding 'torch/include/ATen/ops/_masked_softmax_backward_cuda_dispatch.h' 2025-07-17T06:38:00.2812690Z adding 'torch/include/ATen/ops/_masked_softmax_backward_native.h' 2025-07-17T06:38:00.2813640Z adding 'torch/include/ATen/ops/_masked_softmax_backward_ops.h' 2025-07-17T06:38:00.2814710Z adding 'torch/include/ATen/ops/_masked_softmax_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2815510Z adding 'torch/include/ATen/ops/_masked_softmax_cpu_dispatch.h' 2025-07-17T06:38:00.2816330Z adding 'torch/include/ATen/ops/_masked_softmax_cuda_dispatch.h' 2025-07-17T06:38:00.2817170Z adding 'torch/include/ATen/ops/_masked_softmax_native.h' 2025-07-17T06:38:00.2818240Z adding 'torch/include/ATen/ops/_masked_softmax_ops.h' 2025-07-17T06:38:00.2819140Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear.h' 2025-07-17T06:38:00.2820040Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_cuda_dispatch.h' 2025-07-17T06:38:00.2820890Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_native.h' 2025-07-17T06:38:00.2821950Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_ops.h' 2025-07-17T06:38:00.2822840Z adding 'torch/include/ATen/ops/_mkldnn_reshape.h' 2025-07-17T06:38:00.2823800Z adding 'torch/include/ATen/ops/_mkldnn_reshape_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2824570Z adding 'torch/include/ATen/ops/_mkldnn_reshape_native.h' 2025-07-17T06:38:00.2825670Z adding 'torch/include/ATen/ops/_mkldnn_reshape_ops.h' 2025-07-17T06:38:00.2826600Z adding 'torch/include/ATen/ops/_mkldnn_transpose.h' 2025-07-17T06:38:00.2827560Z adding 'torch/include/ATen/ops/_mkldnn_transpose_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2828340Z adding 'torch/include/ATen/ops/_mkldnn_transpose_meta_dispatch.h' 2025-07-17T06:38:00.2829350Z adding 'torch/include/ATen/ops/_mkldnn_transpose_native.h' 2025-07-17T06:38:00.2830340Z adding 'torch/include/ATen/ops/_mkldnn_transpose_ops.h' 2025-07-17T06:38:00.2831510Z adding 'torch/include/ATen/ops/_mps_convolution.h' 2025-07-17T06:38:00.2832540Z adding 'torch/include/ATen/ops/_mps_convolution_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2833470Z adding 'torch/include/ATen/ops/_mps_convolution_mps_dispatch.h' 2025-07-17T06:38:00.2834330Z adding 'torch/include/ATen/ops/_mps_convolution_native.h' 2025-07-17T06:38:00.2835340Z adding 'torch/include/ATen/ops/_mps_convolution_ops.h' 2025-07-17T06:38:00.2836550Z adding 'torch/include/ATen/ops/_mps_convolution_transpose.h' 2025-07-17T06:38:00.2837720Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2838550Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_mps_dispatch.h' 2025-07-17T06:38:00.2839400Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_native.h' 2025-07-17T06:38:00.2840410Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_ops.h' 2025-07-17T06:38:00.2841680Z adding 'torch/include/ATen/ops/_native_batch_norm_legit.h' 2025-07-17T06:38:00.2842680Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2843580Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_cpu_dispatch.h' 2025-07-17T06:38:00.2844500Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_cuda_dispatch.h' 2025-07-17T06:38:00.2845510Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_mps_dispatch.h' 2025-07-17T06:38:00.2846590Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_native.h' 2025-07-17T06:38:00.2847630Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training.h' 2025-07-17T06:38:00.2848720Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2849590Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_native.h' 2025-07-17T06:38:00.2850700Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_ops.h' 2025-07-17T06:38:00.2851930Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_ops.h' 2025-07-17T06:38:00.2852990Z adding 'torch/include/ATen/ops/_native_multi_head_attention.h' 2025-07-17T06:38:00.2854170Z adding 'torch/include/ATen/ops/_native_multi_head_attention_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2855050Z adding 'torch/include/ATen/ops/_native_multi_head_attention_cpu_dispatch.h' 2025-07-17T06:38:00.2855910Z adding 'torch/include/ATen/ops/_native_multi_head_attention_cuda_dispatch.h' 2025-07-17T06:38:00.2856870Z adding 'torch/include/ATen/ops/_native_multi_head_attention_native.h' 2025-07-17T06:38:00.2858080Z adding 'torch/include/ATen/ops/_native_multi_head_attention_ops.h' 2025-07-17T06:38:00.2858940Z adding 'torch/include/ATen/ops/_neg_view.h' 2025-07-17T06:38:00.2859870Z adding 'torch/include/ATen/ops/_neg_view_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2860660Z adding 'torch/include/ATen/ops/_neg_view_copy.h' 2025-07-17T06:38:00.2862120Z adding 'torch/include/ATen/ops/_neg_view_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2863020Z adding 'torch/include/ATen/ops/_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.2863730Z adding 'torch/include/ATen/ops/_neg_view_copy_native.h' 2025-07-17T06:38:00.2869840Z adding 'torch/include/ATen/ops/_neg_view_copy_ops.h' 2025-07-17T06:38:00.2870050Z adding 'torch/include/ATen/ops/_neg_view_native.h' 2025-07-17T06:38:00.2870160Z adding 'torch/include/ATen/ops/_neg_view_ops.h' 2025-07-17T06:38:00.2870310Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets.h' 2025-07-17T06:38:00.2870490Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cpu_dispatch.h' 2025-07-17T06:38:00.2870680Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cuda_dispatch.h' 2025-07-17T06:38:00.2870900Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_native.h' 2025-07-17T06:38:00.2871060Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_ops.h' 2025-07-17T06:38:00.2871780Z adding 'torch/include/ATen/ops/_nested_from_padded.h' 2025-07-17T06:38:00.2872820Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example.h' 2025-07-17T06:38:00.2873790Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2874570Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_native.h' 2025-07-17T06:38:00.2875490Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_ops.h' 2025-07-17T06:38:00.2876530Z adding 'torch/include/ATen/ops/_nested_from_padded_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2877340Z adding 'torch/include/ATen/ops/_nested_from_padded_cpu_dispatch.h' 2025-07-17T06:38:00.2878160Z adding 'torch/include/ATen/ops/_nested_from_padded_cuda_dispatch.h' 2025-07-17T06:38:00.2879000Z adding 'torch/include/ATen/ops/_nested_from_padded_native.h' 2025-07-17T06:38:00.2880060Z adding 'torch/include/ATen/ops/_nested_from_padded_ops.h' 2025-07-17T06:38:00.2881090Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor.h' 2025-07-17T06:38:00.2881940Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor_native.h' 2025-07-17T06:38:00.2882890Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor_ops.h' 2025-07-17T06:38:00.2883850Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy.h' 2025-07-17T06:38:00.2884680Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy_native.h' 2025-07-17T06:38:00.2885550Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy_ops.h' 2025-07-17T06:38:00.2886430Z adding 'torch/include/ATen/ops/_nested_get_lengths.h' 2025-07-17T06:38:00.2887410Z adding 'torch/include/ATen/ops/_nested_get_lengths_native.h' 2025-07-17T06:38:00.2888240Z adding 'torch/include/ATen/ops/_nested_get_lengths_ops.h' 2025-07-17T06:38:00.2889070Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen.h' 2025-07-17T06:38:00.2889880Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen_native.h' 2025-07-17T06:38:00.2890860Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen_ops.h' 2025-07-17T06:38:00.2891710Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen.h' 2025-07-17T06:38:00.2892500Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen_native.h' 2025-07-17T06:38:00.2893360Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen_ops.h' 2025-07-17T06:38:00.2894290Z adding 'torch/include/ATen/ops/_nested_get_offsets.h' 2025-07-17T06:38:00.2895080Z adding 'torch/include/ATen/ops/_nested_get_offsets_native.h' 2025-07-17T06:38:00.2895900Z adding 'torch/include/ATen/ops/_nested_get_offsets_ops.h' 2025-07-17T06:38:00.2896750Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx.h' 2025-07-17T06:38:00.2897610Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx_native.h' 2025-07-17T06:38:00.2898500Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx_ops.h' 2025-07-17T06:38:00.2899310Z adding 'torch/include/ATen/ops/_nested_get_values.h' 2025-07-17T06:38:00.2900190Z adding 'torch/include/ATen/ops/_nested_get_values_copy.h' 2025-07-17T06:38:00.2901290Z adding 'torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2902200Z adding 'torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.2902910Z adding 'torch/include/ATen/ops/_nested_get_values_copy_native.h' 2025-07-17T06:38:00.2903810Z adding 'torch/include/ATen/ops/_nested_get_values_copy_ops.h' 2025-07-17T06:38:00.2904690Z adding 'torch/include/ATen/ops/_nested_get_values_native.h' 2025-07-17T06:38:00.2905540Z adding 'torch/include/ATen/ops/_nested_get_values_ops.h' 2025-07-17T06:38:00.2906470Z adding 'torch/include/ATen/ops/_nested_select_backward.h' 2025-07-17T06:38:00.2907330Z adding 'torch/include/ATen/ops/_nested_select_backward_native.h' 2025-07-17T06:38:00.2908380Z adding 'torch/include/ATen/ops/_nested_select_backward_ops.h' 2025-07-17T06:38:00.2909300Z adding 'torch/include/ATen/ops/_nested_sum_backward.h' 2025-07-17T06:38:00.2910100Z adding 'torch/include/ATen/ops/_nested_sum_backward_native.h' 2025-07-17T06:38:00.2910980Z adding 'torch/include/ATen/ops/_nested_sum_backward_ops.h' 2025-07-17T06:38:00.2912020Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask.h' 2025-07-17T06:38:00.2913010Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2913830Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_cpu_dispatch.h' 2025-07-17T06:38:00.2914650Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_cuda_dispatch.h' 2025-07-17T06:38:00.2915650Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned.h' 2025-07-17T06:38:00.2916590Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cpu_dispatch.h' 2025-07-17T06:38:00.2917430Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cuda_dispatch.h' 2025-07-17T06:38:00.2918280Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_native.h' 2025-07-17T06:38:00.2919300Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_ops.h' 2025-07-17T06:38:00.2920140Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_native.h' 2025-07-17T06:38:00.2921080Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_ops.h' 2025-07-17T06:38:00.2922110Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list.h' 2025-07-17T06:38:00.2923270Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2924070Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_native.h' 2025-07-17T06:38:00.2925060Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_ops.h' 2025-07-17T06:38:00.2925950Z adding 'torch/include/ATen/ops/_nested_tensor_size.h' 2025-07-17T06:38:00.2927040Z adding 'torch/include/ATen/ops/_nested_tensor_size_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2927820Z adding 'torch/include/ATen/ops/_nested_tensor_size_native.h' 2025-07-17T06:38:00.2928790Z adding 'torch/include/ATen/ops/_nested_tensor_size_ops.h' 2025-07-17T06:38:00.2929680Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape.h' 2025-07-17T06:38:00.2930650Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape_native.h' 2025-07-17T06:38:00.2931550Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape_ops.h' 2025-07-17T06:38:00.2932410Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets.h' 2025-07-17T06:38:00.2933430Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2934310Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_native.h' 2025-07-17T06:38:00.2935290Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_ops.h' 2025-07-17T06:38:00.2936140Z adding 'torch/include/ATen/ops/_nested_tensor_strides.h' 2025-07-17T06:38:00.2937120Z adding 'torch/include/ATen/ops/_nested_tensor_strides_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2937980Z adding 'torch/include/ATen/ops/_nested_tensor_strides_native.h' 2025-07-17T06:38:00.2938940Z adding 'torch/include/ATen/ops/_nested_tensor_strides_ops.h' 2025-07-17T06:38:00.2939820Z adding 'torch/include/ATen/ops/_nested_view_from_buffer.h' 2025-07-17T06:38:00.2940770Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy.h' 2025-07-17T06:38:00.2941900Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2942840Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.2943560Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_native.h' 2025-07-17T06:38:00.2944520Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_ops.h' 2025-07-17T06:38:00.2945520Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_cpu_dispatch.h' 2025-07-17T06:38:00.2946410Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_cuda_dispatch.h' 2025-07-17T06:38:00.2947180Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_native.h' 2025-07-17T06:38:00.2948080Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_ops.h' 2025-07-17T06:38:00.2949070Z adding 'torch/include/ATen/ops/_nested_view_from_jagged.h' 2025-07-17T06:38:00.2950070Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy.h' 2025-07-17T06:38:00.2951110Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2952030Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.2952910Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_native.h' 2025-07-17T06:38:00.2953940Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_ops.h' 2025-07-17T06:38:00.2954740Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_native.h' 2025-07-17T06:38:00.2955700Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_ops.h' 2025-07-17T06:38:00.2956750Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta.h' 2025-07-17T06:38:00.2957770Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2958530Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_native.h' 2025-07-17T06:38:00.2959480Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_ops.h' 2025-07-17T06:38:00.2960410Z adding 'torch/include/ATen/ops/_nnpack_available.h' 2025-07-17T06:38:00.2961380Z adding 'torch/include/ATen/ops/_nnpack_available_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.2962120Z adding 'torch/include/ATen/ops/_nnpack_available_native.h' 2025-07-17T06:38:00.2963030Z adding 'torch/include/ATen/ops/_nnpack_available_ops.h' 2025-07-17T06:38:00.2964270Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution.h' 2025-07-17T06:38:00.2965360Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2966140Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_native.h' 2025-07-17T06:38:00.2967130Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_ops.h' 2025-07-17T06:38:00.2968000Z adding 'torch/include/ATen/ops/_nnz.h' 2025-07-17T06:38:00.2968860Z adding 'torch/include/ATen/ops/_nnz_native.h' 2025-07-17T06:38:00.2969730Z adding 'torch/include/ATen/ops/_nnz_ops.h' 2025-07-17T06:38:00.2970710Z adding 'torch/include/ATen/ops/_pack_padded_sequence.h' 2025-07-17T06:38:00.2971770Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward.h' 2025-07-17T06:38:00.2972770Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.2973560Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_native.h' 2025-07-17T06:38:00.2974440Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_ops.h' 2025-07-17T06:38:00.2975560Z adding 'torch/include/ATen/ops/_pack_padded_sequence_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2976340Z adding 'torch/include/ATen/ops/_pack_padded_sequence_native.h' 2025-07-17T06:38:00.2977330Z adding 'torch/include/ATen/ops/_pack_padded_sequence_ops.h' 2025-07-17T06:38:00.2978220Z adding 'torch/include/ATen/ops/_pad_circular.h' 2025-07-17T06:38:00.2979320Z adding 'torch/include/ATen/ops/_pad_circular_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.2980110Z adding 'torch/include/ATen/ops/_pad_circular_native.h' 2025-07-17T06:38:00.2981010Z adding 'torch/include/ATen/ops/_pad_circular_ops.h' 2025-07-17T06:38:00.2981890Z adding 'torch/include/ATen/ops/_pad_enum.h' 2025-07-17T06:38:00.2982970Z adding 'torch/include/ATen/ops/_pad_enum_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.2983730Z adding 'torch/include/ATen/ops/_pad_enum_native.h' 2025-07-17T06:38:00.2984630Z adding 'torch/include/ATen/ops/_pad_enum_ops.h' 2025-07-17T06:38:00.2985580Z adding 'torch/include/ATen/ops/_pad_packed_sequence.h' 2025-07-17T06:38:00.2986670Z adding 'torch/include/ATen/ops/_pad_packed_sequence_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.2987450Z adding 'torch/include/ATen/ops/_pad_packed_sequence_native.h' 2025-07-17T06:38:00.2988390Z adding 'torch/include/ATen/ops/_pad_packed_sequence_ops.h' 2025-07-17T06:38:00.2989380Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward.h' 2025-07-17T06:38:00.2990430Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_cpu_dispatch.h' 2025-07-17T06:38:00.2991280Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_cuda_dispatch.h' 2025-07-17T06:38:00.2992130Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_native.h' 2025-07-17T06:38:00.2993020Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_ops.h' 2025-07-17T06:38:00.2994000Z adding 'torch/include/ATen/ops/_pdist_backward.h' 2025-07-17T06:38:00.2995000Z adding 'torch/include/ATen/ops/_pdist_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.2995810Z adding 'torch/include/ATen/ops/_pdist_backward_cpu_dispatch.h' 2025-07-17T06:38:00.2996640Z adding 'torch/include/ATen/ops/_pdist_backward_cuda_dispatch.h' 2025-07-17T06:38:00.2997630Z adding 'torch/include/ATen/ops/_pdist_backward_native.h' 2025-07-17T06:38:00.2998610Z adding 'torch/include/ATen/ops/_pdist_backward_ops.h' 2025-07-17T06:38:00.2999500Z adding 'torch/include/ATen/ops/_pdist_forward.h' 2025-07-17T06:38:00.3000480Z adding 'torch/include/ATen/ops/_pdist_forward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3001360Z adding 'torch/include/ATen/ops/_pdist_forward_cpu_dispatch.h' 2025-07-17T06:38:00.3002200Z adding 'torch/include/ATen/ops/_pdist_forward_cuda_dispatch.h' 2025-07-17T06:38:00.3003030Z adding 'torch/include/ATen/ops/_pdist_forward_native.h' 2025-07-17T06:38:00.3003980Z adding 'torch/include/ATen/ops/_pdist_forward_ops.h' 2025-07-17T06:38:00.3004940Z adding 'torch/include/ATen/ops/_pin_memory.h' 2025-07-17T06:38:00.3005940Z adding 'torch/include/ATen/ops/_pin_memory_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3006730Z adding 'torch/include/ATen/ops/_pin_memory_native.h' 2025-07-17T06:38:00.3007670Z adding 'torch/include/ATen/ops/_pin_memory_ops.h' 2025-07-17T06:38:00.3008670Z adding 'torch/include/ATen/ops/_prelu_kernel.h' 2025-07-17T06:38:00.3009630Z adding 'torch/include/ATen/ops/_prelu_kernel_backward.h' 2025-07-17T06:38:00.3010550Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_cpu_dispatch.h' 2025-07-17T06:38:00.3011380Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_cuda_dispatch.h' 2025-07-17T06:38:00.3012320Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_mps_dispatch.h' 2025-07-17T06:38:00.3013160Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_native.h' 2025-07-17T06:38:00.3014070Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_ops.h' 2025-07-17T06:38:00.3014930Z adding 'torch/include/ATen/ops/_prelu_kernel_cpu_dispatch.h' 2025-07-17T06:38:00.3015900Z adding 'torch/include/ATen/ops/_prelu_kernel_cuda_dispatch.h' 2025-07-17T06:38:00.3016750Z adding 'torch/include/ATen/ops/_prelu_kernel_mps_dispatch.h' 2025-07-17T06:38:00.3017630Z adding 'torch/include/ATen/ops/_prelu_kernel_native.h' 2025-07-17T06:38:00.3018520Z adding 'torch/include/ATen/ops/_prelu_kernel_ops.h' 2025-07-17T06:38:00.3019470Z adding 'torch/include/ATen/ops/_print.h' 2025-07-17T06:38:00.3020430Z adding 'torch/include/ATen/ops/_print_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3021270Z adding 'torch/include/ATen/ops/_print_native.h' 2025-07-17T06:38:00.3022080Z adding 'torch/include/ATen/ops/_print_ops.h' 2025-07-17T06:38:00.3023040Z adding 'torch/include/ATen/ops/_propagate_xla_data.h' 2025-07-17T06:38:00.3024000Z adding 'torch/include/ATen/ops/_propagate_xla_data_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3024770Z adding 'torch/include/ATen/ops/_propagate_xla_data_native.h' 2025-07-17T06:38:00.3025650Z adding 'torch/include/ATen/ops/_propagate_xla_data_ops.h' 2025-07-17T06:38:00.3026690Z adding 'torch/include/ATen/ops/_remove_batch_dim.h' 2025-07-17T06:38:00.3027670Z adding 'torch/include/ATen/ops/_remove_batch_dim_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3028440Z adding 'torch/include/ATen/ops/_remove_batch_dim_native.h' 2025-07-17T06:38:00.3029340Z adding 'torch/include/ATen/ops/_remove_batch_dim_ops.h' 2025-07-17T06:38:00.3030390Z adding 'torch/include/ATen/ops/_reshape_alias.h' 2025-07-17T06:38:00.3031480Z adding 'torch/include/ATen/ops/_reshape_alias_copy.h' 2025-07-17T06:38:00.3032480Z adding 'torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3033410Z adding 'torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.3034290Z adding 'torch/include/ATen/ops/_reshape_alias_copy_native.h' 2025-07-17T06:38:00.3035240Z adding 'torch/include/ATen/ops/_reshape_alias_copy_ops.h' 2025-07-17T06:38:00.3036140Z adding 'torch/include/ATen/ops/_reshape_alias_cpu_dispatch.h' 2025-07-17T06:38:00.3036960Z adding 'torch/include/ATen/ops/_reshape_alias_cuda_dispatch.h' 2025-07-17T06:38:00.3037900Z adding 'torch/include/ATen/ops/_reshape_alias_meta_dispatch.h' 2025-07-17T06:38:00.3038720Z adding 'torch/include/ATen/ops/_reshape_alias_mps_dispatch.h' 2025-07-17T06:38:00.3039520Z adding 'torch/include/ATen/ops/_reshape_alias_native.h' 2025-07-17T06:38:00.3040430Z adding 'torch/include/ATen/ops/_reshape_alias_ops.h' 2025-07-17T06:38:00.3041450Z adding 'torch/include/ATen/ops/_reshape_copy.h' 2025-07-17T06:38:00.3042410Z adding 'torch/include/ATen/ops/_reshape_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3043160Z adding 'torch/include/ATen/ops/_reshape_copy_native.h' 2025-07-17T06:38:00.3044060Z adding 'torch/include/ATen/ops/_reshape_copy_ops.h' 2025-07-17T06:38:00.3045110Z adding 'torch/include/ATen/ops/_reshape_from_tensor.h' 2025-07-17T06:38:00.3046020Z adding 'torch/include/ATen/ops/_reshape_from_tensor_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3046760Z adding 'torch/include/ATen/ops/_reshape_from_tensor_native.h' 2025-07-17T06:38:00.3047650Z adding 'torch/include/ATen/ops/_reshape_from_tensor_ops.h' 2025-07-17T06:38:00.3048860Z adding 'torch/include/ATen/ops/_resize_output.h' 2025-07-17T06:38:00.3049900Z adding 'torch/include/ATen/ops/_resize_output_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3050720Z adding 'torch/include/ATen/ops/_resize_output_meta_dispatch.h' 2025-07-17T06:38:00.3051580Z adding 'torch/include/ATen/ops/_resize_output_native.h' 2025-07-17T06:38:00.3052700Z adding 'torch/include/ATen/ops/_resize_output_ops.h' 2025-07-17T06:38:00.3053580Z adding 'torch/include/ATen/ops/_rowwise_prune.h' 2025-07-17T06:38:00.3054550Z adding 'torch/include/ATen/ops/_rowwise_prune_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3055290Z adding 'torch/include/ATen/ops/_rowwise_prune_native.h' 2025-07-17T06:38:00.3056300Z adding 'torch/include/ATen/ops/_rowwise_prune_ops.h' 2025-07-17T06:38:00.3057150Z adding 'torch/include/ATen/ops/_safe_softmax.h' 2025-07-17T06:38:00.3058110Z adding 'torch/include/ATen/ops/_safe_softmax_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3058870Z adding 'torch/include/ATen/ops/_safe_softmax_native.h' 2025-07-17T06:38:00.3059870Z adding 'torch/include/ATen/ops/_safe_softmax_ops.h' 2025-07-17T06:38:00.3060780Z adding 'torch/include/ATen/ops/_sample_dirichlet.h' 2025-07-17T06:38:00.3061780Z adding 'torch/include/ATen/ops/_sample_dirichlet_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3062570Z adding 'torch/include/ATen/ops/_sample_dirichlet_cpu_dispatch.h' 2025-07-17T06:38:00.3063500Z adding 'torch/include/ATen/ops/_sample_dirichlet_cuda_dispatch.h' 2025-07-17T06:38:00.3064340Z adding 'torch/include/ATen/ops/_sample_dirichlet_native.h' 2025-07-17T06:38:00.3065340Z adding 'torch/include/ATen/ops/_sample_dirichlet_ops.h' 2025-07-17T06:38:00.3066180Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16.h' 2025-07-17T06:38:00.3067280Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3068010Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_native.h' 2025-07-17T06:38:00.3068880Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_ops.h' 2025-07-17T06:38:00.3069840Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math.h' 2025-07-17T06:38:00.3070970Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3071830Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps.h' 2025-07-17T06:38:00.3073120Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_mps_dispatch.h' 2025-07-17T06:38:00.3074000Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_native.h' 2025-07-17T06:38:00.3075150Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_ops.h' 2025-07-17T06:38:00.3076020Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_native.h' 2025-07-17T06:38:00.3077020Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_ops.h' 2025-07-17T06:38:00.3077990Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention.h' 2025-07-17T06:38:00.3079220Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward.h' 2025-07-17T06:38:00.3080270Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_cuda_dispatch.h' 2025-07-17T06:38:00.3081140Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_native.h' 2025-07-17T06:38:00.3082170Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_ops.h' 2025-07-17T06:38:00.3083200Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_cuda_dispatch.h' 2025-07-17T06:38:00.3084120Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_native.h' 2025-07-17T06:38:00.3085160Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_ops.h' 2025-07-17T06:38:00.3086050Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention.h' 2025-07-17T06:38:00.3087170Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward.h' 2025-07-17T06:38:00.3088120Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_cuda_dispatch.h' 2025-07-17T06:38:00.3089050Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_native.h' 2025-07-17T06:38:00.3090100Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_ops.h' 2025-07-17T06:38:00.3091170Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_cuda_dispatch.h' 2025-07-17T06:38:00.3092070Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_native.h' 2025-07-17T06:38:00.3093040Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_ops.h' 2025-07-17T06:38:00.3093970Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention.h' 2025-07-17T06:38:00.3095190Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward.h' 2025-07-17T06:38:00.3096200Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_cuda_dispatch.h' 2025-07-17T06:38:00.3097140Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_native.h' 2025-07-17T06:38:00.3098170Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_ops.h' 2025-07-17T06:38:00.3099210Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_cuda_dispatch.h' 2025-07-17T06:38:00.3100140Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu.h' 2025-07-17T06:38:00.3101100Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward.h' 2025-07-17T06:38:00.3102060Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_cpu_dispatch.h' 2025-07-17T06:38:00.3103010Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_native.h' 2025-07-17T06:38:00.3104040Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_ops.h' 2025-07-17T06:38:00.3104900Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_cpu_dispatch.h' 2025-07-17T06:38:00.3105750Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_native.h' 2025-07-17T06:38:00.3106820Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_ops.h' 2025-07-17T06:38:00.3107690Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_native.h' 2025-07-17T06:38:00.3108670Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_ops.h' 2025-07-17T06:38:00.3109640Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable.h' 2025-07-17T06:38:00.3110870Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward.h' 2025-07-17T06:38:00.3111980Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3112820Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_native.h' 2025-07-17T06:38:00.3113860Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_ops.h' 2025-07-17T06:38:00.3114980Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3115770Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_native.h' 2025-07-17T06:38:00.3116740Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_ops.h' 2025-07-17T06:38:00.3117610Z adding 'torch/include/ATen/ops/_scaled_grouped_mm.h' 2025-07-17T06:38:00.3118660Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_cuda_dispatch.h' 2025-07-17T06:38:00.3119570Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_native.h' 2025-07-17T06:38:00.3120520Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_ops.h' 2025-07-17T06:38:00.3121510Z adding 'torch/include/ATen/ops/_scaled_mm.h' 2025-07-17T06:38:00.3122610Z adding 'torch/include/ATen/ops/_scaled_mm_cpu_dispatch.h' 2025-07-17T06:38:00.3123530Z adding 'torch/include/ATen/ops/_scaled_mm_cuda_dispatch.h' 2025-07-17T06:38:00.3124430Z adding 'torch/include/ATen/ops/_scaled_mm_native.h' 2025-07-17T06:38:00.3125500Z adding 'torch/include/ATen/ops/_scaled_mm_ops.h' 2025-07-17T06:38:00.3126610Z adding 'torch/include/ATen/ops/_segment_reduce_backward.h' 2025-07-17T06:38:00.3127660Z adding 'torch/include/ATen/ops/_segment_reduce_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3128500Z adding 'torch/include/ATen/ops/_segment_reduce_backward_cpu_dispatch.h' 2025-07-17T06:38:00.3129370Z adding 'torch/include/ATen/ops/_segment_reduce_backward_cuda_dispatch.h' 2025-07-17T06:38:00.3130350Z adding 'torch/include/ATen/ops/_segment_reduce_backward_native.h' 2025-07-17T06:38:00.3131440Z adding 'torch/include/ATen/ops/_segment_reduce_backward_ops.h' 2025-07-17T06:38:00.3132310Z adding 'torch/include/ATen/ops/_shape_as_tensor.h' 2025-07-17T06:38:00.3133290Z adding 'torch/include/ATen/ops/_shape_as_tensor_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3134200Z adding 'torch/include/ATen/ops/_shape_as_tensor_native.h' 2025-07-17T06:38:00.3135120Z adding 'torch/include/ATen/ops/_shape_as_tensor_ops.h' 2025-07-17T06:38:00.3137090Z adding 'torch/include/ATen/ops/_slow_conv2d_backward.h' 2025-07-17T06:38:00.3137930Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3138990Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_cpu_dispatch.h' 2025-07-17T06:38:00.3139970Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_cuda_dispatch.h' 2025-07-17T06:38:00.3140950Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_native.h' 2025-07-17T06:38:00.3142070Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_ops.h' 2025-07-17T06:38:00.3143390Z adding 'torch/include/ATen/ops/_slow_conv2d_forward.h' 2025-07-17T06:38:00.3144460Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_cpu_dispatch.h' 2025-07-17T06:38:00.3145370Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_cuda_dispatch.h' 2025-07-17T06:38:00.3146290Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_native.h' 2025-07-17T06:38:00.3147450Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_ops.h' 2025-07-17T06:38:00.3148400Z adding 'torch/include/ATen/ops/_sobol_engine_draw.h' 2025-07-17T06:38:00.3149400Z adding 'torch/include/ATen/ops/_sobol_engine_draw_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3150170Z adding 'torch/include/ATen/ops/_sobol_engine_draw_native.h' 2025-07-17T06:38:00.3151260Z adding 'torch/include/ATen/ops/_sobol_engine_draw_ops.h' 2025-07-17T06:38:00.3152150Z adding 'torch/include/ATen/ops/_sobol_engine_ff.h' 2025-07-17T06:38:00.3153190Z adding 'torch/include/ATen/ops/_sobol_engine_ff_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3154010Z adding 'torch/include/ATen/ops/_sobol_engine_ff_native.h' 2025-07-17T06:38:00.3155060Z adding 'torch/include/ATen/ops/_sobol_engine_ff_ops.h' 2025-07-17T06:38:00.3155960Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state.h' 2025-07-17T06:38:00.3156990Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3157770Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_native.h' 2025-07-17T06:38:00.3158820Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_ops.h' 2025-07-17T06:38:00.3159640Z adding 'torch/include/ATen/ops/_sobol_engine_scramble.h' 2025-07-17T06:38:00.3160590Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3161360Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_native.h' 2025-07-17T06:38:00.3162360Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_ops.h' 2025-07-17T06:38:00.3163260Z adding 'torch/include/ATen/ops/_softmax.h' 2025-07-17T06:38:00.3164160Z adding 'torch/include/ATen/ops/_softmax_backward_data.h' 2025-07-17T06:38:00.3165220Z adding 'torch/include/ATen/ops/_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.3166090Z adding 'torch/include/ATen/ops/_softmax_backward_data_cpu_dispatch.h' 2025-07-17T06:38:00.3166990Z adding 'torch/include/ATen/ops/_softmax_backward_data_cuda_dispatch.h' 2025-07-17T06:38:00.3167820Z adding 'torch/include/ATen/ops/_softmax_backward_data_meta.h' 2025-07-17T06:38:00.3168810Z adding 'torch/include/ATen/ops/_softmax_backward_data_meta_dispatch.h' 2025-07-17T06:38:00.3169830Z adding 'torch/include/ATen/ops/_softmax_backward_data_mps_dispatch.h' 2025-07-17T06:38:00.3170790Z adding 'torch/include/ATen/ops/_softmax_backward_data_native.h' 2025-07-17T06:38:00.3171760Z adding 'torch/include/ATen/ops/_softmax_backward_data_ops.h' 2025-07-17T06:38:00.3172760Z adding 'torch/include/ATen/ops/_softmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.3173690Z adding 'torch/include/ATen/ops/_softmax_cpu_dispatch.h' 2025-07-17T06:38:00.3174620Z adding 'torch/include/ATen/ops/_softmax_cuda_dispatch.h' 2025-07-17T06:38:00.3175480Z adding 'torch/include/ATen/ops/_softmax_meta.h' 2025-07-17T06:38:00.3176360Z adding 'torch/include/ATen/ops/_softmax_meta_dispatch.h' 2025-07-17T06:38:00.3177260Z adding 'torch/include/ATen/ops/_softmax_mps_dispatch.h' 2025-07-17T06:38:00.3178200Z adding 'torch/include/ATen/ops/_softmax_native.h' 2025-07-17T06:38:00.3179160Z adding 'torch/include/ATen/ops/_softmax_ops.h' 2025-07-17T06:38:00.3180080Z adding 'torch/include/ATen/ops/_sparse_addmm.h' 2025-07-17T06:38:00.3181200Z adding 'torch/include/ATen/ops/_sparse_addmm_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3181980Z adding 'torch/include/ATen/ops/_sparse_addmm_native.h' 2025-07-17T06:38:00.3184050Z adding 'torch/include/ATen/ops/_sparse_addmm_ops.h' 2025-07-17T06:38:00.3184670Z adding 'torch/include/ATen/ops/_sparse_broadcast_to.h' 2025-07-17T06:38:00.3185720Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy.h' 2025-07-17T06:38:00.3186750Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3187670Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.3188370Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_native.h' 2025-07-17T06:38:00.3189430Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_ops.h' 2025-07-17T06:38:00.3190300Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_native.h' 2025-07-17T06:38:00.3191200Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_ops.h' 2025-07-17T06:38:00.3192170Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe.h' 2025-07-17T06:38:00.3193280Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3194080Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_native.h' 2025-07-17T06:38:00.3195030Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_ops.h' 2025-07-17T06:38:00.3195970Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe.h' 2025-07-17T06:38:00.3197070Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3197930Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_native.h' 2025-07-17T06:38:00.3198880Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_ops.h' 2025-07-17T06:38:00.3200040Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe.h' 2025-07-17T06:38:00.3201230Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3202100Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_native.h' 2025-07-17T06:38:00.3203070Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_ops.h' 2025-07-17T06:38:00.3204070Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims.h' 2025-07-17T06:38:00.3205160Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3205960Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_native.h' 2025-07-17T06:38:00.3206910Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_ops.h' 2025-07-17T06:38:00.3208010Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe.h' 2025-07-17T06:38:00.3209180Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3209990Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_native.h' 2025-07-17T06:38:00.3210960Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_ops.h' 2025-07-17T06:38:00.3211970Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims.h' 2025-07-17T06:38:00.3213960Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors.h' 2025-07-17T06:38:00.3214670Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3215550Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_meta_dispatch.h' 2025-07-17T06:38:00.3216420Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_native.h' 2025-07-17T06:38:00.3217610Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_ops.h' 2025-07-17T06:38:00.3218620Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3219490Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_meta_dispatch.h' 2025-07-17T06:38:00.3220360Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_native.h' 2025-07-17T06:38:00.3221450Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_ops.h' 2025-07-17T06:38:00.3222390Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe.h' 2025-07-17T06:38:00.3223370Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3224160Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_native.h' 2025-07-17T06:38:00.3225240Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_ops.h' 2025-07-17T06:38:00.3226150Z adding 'torch/include/ATen/ops/_sparse_csr_prod.h' 2025-07-17T06:38:00.3227180Z adding 'torch/include/ATen/ops/_sparse_csr_prod_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3227960Z adding 'torch/include/ATen/ops/_sparse_csr_prod_native.h' 2025-07-17T06:38:00.3229080Z adding 'torch/include/ATen/ops/_sparse_csr_prod_ops.h' 2025-07-17T06:38:00.3230000Z adding 'torch/include/ATen/ops/_sparse_csr_sum.h' 2025-07-17T06:38:00.3231000Z adding 'torch/include/ATen/ops/_sparse_csr_sum_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3231790Z adding 'torch/include/ATen/ops/_sparse_csr_sum_native.h' 2025-07-17T06:38:00.3232880Z adding 'torch/include/ATen/ops/_sparse_csr_sum_ops.h' 2025-07-17T06:38:00.3233860Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe.h' 2025-07-17T06:38:00.3234830Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3235610Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_native.h' 2025-07-17T06:38:00.3236650Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_ops.h' 2025-07-17T06:38:00.3237630Z adding 'torch/include/ATen/ops/_sparse_log_softmax.h' 2025-07-17T06:38:00.3238590Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data.h' 2025-07-17T06:38:00.3239590Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3240510Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_native.h' 2025-07-17T06:38:00.3241520Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_ops.h' 2025-07-17T06:38:00.3242450Z adding 'torch/include/ATen/ops/_sparse_log_softmax_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3243390Z adding 'torch/include/ATen/ops/_sparse_log_softmax_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3244270Z adding 'torch/include/ATen/ops/_sparse_log_softmax_native.h' 2025-07-17T06:38:00.3245340Z adding 'torch/include/ATen/ops/_sparse_log_softmax_ops.h' 2025-07-17T06:38:00.3246230Z adding 'torch/include/ATen/ops/_sparse_mask_projection.h' 2025-07-17T06:38:00.3247230Z adding 'torch/include/ATen/ops/_sparse_mask_projection_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3248120Z adding 'torch/include/ATen/ops/_sparse_mask_projection_native.h' 2025-07-17T06:38:00.3249140Z adding 'torch/include/ATen/ops/_sparse_mask_projection_ops.h' 2025-07-17T06:38:00.3250000Z adding 'torch/include/ATen/ops/_sparse_mm.h' 2025-07-17T06:38:00.3250940Z adding 'torch/include/ATen/ops/_sparse_mm_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3251810Z adding 'torch/include/ATen/ops/_sparse_mm_native.h' 2025-07-17T06:38:00.3252750Z adding 'torch/include/ATen/ops/_sparse_mm_ops.h' 2025-07-17T06:38:00.3253630Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl.h' 2025-07-17T06:38:00.3254530Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward.h' 2025-07-17T06:38:00.3255560Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_native.h' 2025-07-17T06:38:00.3256500Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_ops.h' 2025-07-17T06:38:00.3257310Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_native.h' 2025-07-17T06:38:00.3258210Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_ops.h' 2025-07-17T06:38:00.3259240Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm.h' 2025-07-17T06:38:00.3260190Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_cuda_dispatch.h' 2025-07-17T06:38:00.3261060Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_native.h' 2025-07-17T06:38:00.3262010Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_ops.h' 2025-07-17T06:38:00.3262920Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply.h' 2025-07-17T06:38:00.3263840Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_cuda_dispatch.h' 2025-07-17T06:38:00.3264670Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense.h' 2025-07-17T06:38:00.3265590Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_cuda_dispatch.h' 2025-07-17T06:38:00.3266470Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_native.h' 2025-07-17T06:38:00.3267370Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_ops.h' 2025-07-17T06:38:00.3268170Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_native.h' 2025-07-17T06:38:00.3269060Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_ops.h' 2025-07-17T06:38:00.3270030Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear.h' 2025-07-17T06:38:00.3270960Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_cuda_dispatch.h' 2025-07-17T06:38:00.3271800Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_native.h' 2025-07-17T06:38:00.3272750Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_ops.h' 2025-07-17T06:38:00.3273690Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm.h' 2025-07-17T06:38:00.3274600Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_cuda_dispatch.h' 2025-07-17T06:38:00.3275410Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_native.h' 2025-07-17T06:38:00.3276300Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_ops.h' 2025-07-17T06:38:00.3277270Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile.h' 2025-07-17T06:38:00.3278180Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_cuda_dispatch.h' 2025-07-17T06:38:00.3278990Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_native.h' 2025-07-17T06:38:00.3279900Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_ops.h' 2025-07-17T06:38:00.3280890Z adding 'torch/include/ATen/ops/_sparse_softmax.h' 2025-07-17T06:38:00.3281900Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data.h' 2025-07-17T06:38:00.3282840Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3283620Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_native.h' 2025-07-17T06:38:00.3284680Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_ops.h' 2025-07-17T06:38:00.3285620Z adding 'torch/include/ATen/ops/_sparse_softmax_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3286480Z adding 'torch/include/ATen/ops/_sparse_softmax_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3287280Z adding 'torch/include/ATen/ops/_sparse_softmax_native.h' 2025-07-17T06:38:00.3288410Z adding 'torch/include/ATen/ops/_sparse_softmax_ops.h' 2025-07-17T06:38:00.3289300Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul.h' 2025-07-17T06:38:00.3290250Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3291010Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_native.h' 2025-07-17T06:38:00.3292050Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_ops.h' 2025-07-17T06:38:00.3292970Z adding 'torch/include/ATen/ops/_sparse_sum.h' 2025-07-17T06:38:00.3293880Z adding 'torch/include/ATen/ops/_sparse_sum_backward.h' 2025-07-17T06:38:00.3294850Z adding 'torch/include/ATen/ops/_sparse_sum_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3296110Z adding 'torch/include/ATen/ops/_sparse_sum_backward_native.h' 2025-07-17T06:38:00.3297050Z adding 'torch/include/ATen/ops/_sparse_sum_backward_ops.h' 2025-07-17T06:38:00.3297980Z adding 'torch/include/ATen/ops/_sparse_sum_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3298880Z adding 'torch/include/ATen/ops/_sparse_sum_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3299770Z adding 'torch/include/ATen/ops/_sparse_sum_native.h' 2025-07-17T06:38:00.3300840Z adding 'torch/include/ATen/ops/_sparse_sum_ops.h' 2025-07-17T06:38:00.3301780Z adding 'torch/include/ATen/ops/_spdiags.h' 2025-07-17T06:38:00.3302770Z adding 'torch/include/ATen/ops/_spdiags_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3303760Z adding 'torch/include/ATen/ops/_spdiags_cpu_dispatch.h' 2025-07-17T06:38:00.3304640Z adding 'torch/include/ATen/ops/_spdiags_native.h' 2025-07-17T06:38:00.3305550Z adding 'torch/include/ATen/ops/_spdiags_ops.h' 2025-07-17T06:38:00.3306410Z adding 'torch/include/ATen/ops/_spsolve.h' 2025-07-17T06:38:00.3307360Z adding 'torch/include/ATen/ops/_spsolve_native.h' 2025-07-17T06:38:00.3308250Z adding 'torch/include/ATen/ops/_spsolve_ops.h' 2025-07-17T06:38:00.3309140Z adding 'torch/include/ATen/ops/_stack.h' 2025-07-17T06:38:00.3310090Z adding 'torch/include/ATen/ops/_stack_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3311010Z adding 'torch/include/ATen/ops/_stack_cpu_dispatch.h' 2025-07-17T06:38:00.3311850Z adding 'torch/include/ATen/ops/_stack_native.h' 2025-07-17T06:38:00.3312790Z adding 'torch/include/ATen/ops/_stack_ops.h' 2025-07-17T06:38:00.3313700Z adding 'torch/include/ATen/ops/_standard_gamma.h' 2025-07-17T06:38:00.3314770Z adding 'torch/include/ATen/ops/_standard_gamma_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3315580Z adding 'torch/include/ATen/ops/_standard_gamma_cpu_dispatch.h' 2025-07-17T06:38:00.3316390Z adding 'torch/include/ATen/ops/_standard_gamma_cuda_dispatch.h' 2025-07-17T06:38:00.3317260Z adding 'torch/include/ATen/ops/_standard_gamma_grad.h' 2025-07-17T06:38:00.3318320Z adding 'torch/include/ATen/ops/_standard_gamma_grad_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3319130Z adding 'torch/include/ATen/ops/_standard_gamma_grad_cpu_dispatch.h' 2025-07-17T06:38:00.3319950Z adding 'torch/include/ATen/ops/_standard_gamma_grad_cuda_dispatch.h' 2025-07-17T06:38:00.3320770Z adding 'torch/include/ATen/ops/_standard_gamma_grad_native.h' 2025-07-17T06:38:00.3321790Z adding 'torch/include/ATen/ops/_standard_gamma_grad_ops.h' 2025-07-17T06:38:00.3322650Z adding 'torch/include/ATen/ops/_standard_gamma_native.h' 2025-07-17T06:38:00.3323630Z adding 'torch/include/ATen/ops/_standard_gamma_ops.h' 2025-07-17T06:38:00.3324490Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults.h' 2025-07-17T06:38:00.3325570Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3326330Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_native.h' 2025-07-17T06:38:00.3327290Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_ops.h' 2025-07-17T06:38:00.3328520Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch.h' 2025-07-17T06:38:00.3329270Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3330140Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3330890Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_native.h' 2025-07-17T06:38:00.3331860Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_ops.h' 2025-07-17T06:38:00.3332820Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view.h' 2025-07-17T06:38:00.3333800Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3334580Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy.h' 2025-07-17T06:38:00.3335550Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3336560Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.3337290Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_native.h' 2025-07-17T06:38:00.3338220Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_ops.h' 2025-07-17T06:38:00.3339030Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_native.h' 2025-07-17T06:38:00.3340030Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_ops.h' 2025-07-17T06:38:00.3340850Z adding 'torch/include/ATen/ops/_test_check_tensor.h' 2025-07-17T06:38:00.3341820Z adding 'torch/include/ATen/ops/_test_check_tensor_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3342540Z adding 'torch/include/ATen/ops/_test_check_tensor_native.h' 2025-07-17T06:38:00.3343550Z adding 'torch/include/ATen/ops/_test_check_tensor_ops.h' 2025-07-17T06:38:00.3344450Z adding 'torch/include/ATen/ops/_test_functorch_fallback.h' 2025-07-17T06:38:00.3345430Z adding 'torch/include/ATen/ops/_test_functorch_fallback_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3346210Z adding 'torch/include/ATen/ops/_test_functorch_fallback_cpu_dispatch.h' 2025-07-17T06:38:00.3347140Z adding 'torch/include/ATen/ops/_test_functorch_fallback_native.h' 2025-07-17T06:38:00.3348080Z adding 'torch/include/ATen/ops/_test_functorch_fallback_ops.h' 2025-07-17T06:38:00.3349010Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist.h' 2025-07-17T06:38:00.3349970Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3350880Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_cpu_dispatch.h' 2025-07-17T06:38:00.3351710Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_native.h' 2025-07-17T06:38:00.3352650Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_ops.h' 2025-07-17T06:38:00.3353540Z adding 'torch/include/ATen/ops/_test_optional_floatlist.h' 2025-07-17T06:38:00.3354620Z adding 'torch/include/ATen/ops/_test_optional_floatlist_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3355410Z adding 'torch/include/ATen/ops/_test_optional_floatlist_cpu_dispatch.h' 2025-07-17T06:38:00.3356220Z adding 'torch/include/ATen/ops/_test_optional_floatlist_native.h' 2025-07-17T06:38:00.3357170Z adding 'torch/include/ATen/ops/_test_optional_floatlist_ops.h' 2025-07-17T06:38:00.3358160Z adding 'torch/include/ATen/ops/_test_optional_intlist.h' 2025-07-17T06:38:00.3359140Z adding 'torch/include/ATen/ops/_test_optional_intlist_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3359900Z adding 'torch/include/ATen/ops/_test_optional_intlist_cpu_dispatch.h' 2025-07-17T06:38:00.3360720Z adding 'torch/include/ATen/ops/_test_optional_intlist_native.h' 2025-07-17T06:38:00.3361750Z adding 'torch/include/ATen/ops/_test_optional_intlist_ops.h' 2025-07-17T06:38:00.3362640Z adding 'torch/include/ATen/ops/_test_parallel_materialize.h' 2025-07-17T06:38:00.3363620Z adding 'torch/include/ATen/ops/_test_parallel_materialize_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3364370Z adding 'torch/include/ATen/ops/_test_parallel_materialize_native.h' 2025-07-17T06:38:00.3365380Z adding 'torch/include/ATen/ops/_test_parallel_materialize_ops.h' 2025-07-17T06:38:00.3366250Z adding 'torch/include/ATen/ops/_test_serialization_subcmul.h' 2025-07-17T06:38:00.3367190Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3367940Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_native.h' 2025-07-17T06:38:00.3368920Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_ops.h' 2025-07-17T06:38:00.3369770Z adding 'torch/include/ATen/ops/_test_string_default.h' 2025-07-17T06:38:00.3370740Z adding 'torch/include/ATen/ops/_test_string_default_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3371470Z adding 'torch/include/ATen/ops/_test_string_default_native.h' 2025-07-17T06:38:00.3372480Z adding 'torch/include/ATen/ops/_test_string_default_ops.h' 2025-07-17T06:38:00.3373370Z adding 'torch/include/ATen/ops/_test_warn_in_autograd.h' 2025-07-17T06:38:00.3374330Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3375100Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_native.h' 2025-07-17T06:38:00.3376150Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_ops.h' 2025-07-17T06:38:00.3377110Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward.h' 2025-07-17T06:38:00.3378110Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3378920Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_native.h' 2025-07-17T06:38:00.3379950Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_ops.h' 2025-07-17T06:38:00.3380860Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward.h' 2025-07-17T06:38:00.3381840Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3382620Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_native.h' 2025-07-17T06:38:00.3383720Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_ops.h' 2025-07-17T06:38:00.3384640Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell.h' 2025-07-17T06:38:00.3385700Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward.h' 2025-07-17T06:38:00.3391240Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3391520Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_cuda_dispatch.h' 2025-07-17T06:38:00.3391670Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_native.h' 2025-07-17T06:38:00.3391830Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_ops.h' 2025-07-17T06:38:00.3392020Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3392150Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_cuda_dispatch.h' 2025-07-17T06:38:00.3392260Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_native.h' 2025-07-17T06:38:00.3393110Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_ops.h' 2025-07-17T06:38:00.3394090Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell.h' 2025-07-17T06:38:00.3395120Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward.h' 2025-07-17T06:38:00.3396150Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3397000Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl.h' 2025-07-17T06:38:00.3398010Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3398940Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_cuda_dispatch.h' 2025-07-17T06:38:00.3399820Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_native.h' 2025-07-17T06:38:00.3400850Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_ops.h' 2025-07-17T06:38:00.3401700Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_native.h' 2025-07-17T06:38:00.3402770Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_ops.h' 2025-07-17T06:38:00.3403750Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3404580Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_cuda_dispatch.h' 2025-07-17T06:38:00.3405430Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_native.h' 2025-07-17T06:38:00.3406570Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_ops.h' 2025-07-17T06:38:00.3407590Z adding 'torch/include/ATen/ops/_to_copy.h' 2025-07-17T06:38:00.3408610Z adding 'torch/include/ATen/ops/_to_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3409420Z adding 'torch/include/ATen/ops/_to_copy_native.h' 2025-07-17T06:38:00.3410540Z adding 'torch/include/ATen/ops/_to_copy_ops.h' 2025-07-17T06:38:00.3411450Z adding 'torch/include/ATen/ops/_to_cpu.h' 2025-07-17T06:38:00.3412400Z adding 'torch/include/ATen/ops/_to_cpu_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3413150Z adding 'torch/include/ATen/ops/_to_cpu_native.h' 2025-07-17T06:38:00.3414170Z adding 'torch/include/ATen/ops/_to_cpu_ops.h' 2025-07-17T06:38:00.3415050Z adding 'torch/include/ATen/ops/_to_dense.h' 2025-07-17T06:38:00.3416020Z adding 'torch/include/ATen/ops/_to_dense_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3416800Z adding 'torch/include/ATen/ops/_to_dense_native.h' 2025-07-17T06:38:00.3417880Z adding 'torch/include/ATen/ops/_to_dense_ops.h' 2025-07-17T06:38:00.3418860Z adding 'torch/include/ATen/ops/_to_sparse.h' 2025-07-17T06:38:00.3419760Z adding 'torch/include/ATen/ops/_to_sparse_bsc.h' 2025-07-17T06:38:00.3420750Z adding 'torch/include/ATen/ops/_to_sparse_bsc_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3421660Z adding 'torch/include/ATen/ops/_to_sparse_bsc_cpu_dispatch.h' 2025-07-17T06:38:00.3422500Z adding 'torch/include/ATen/ops/_to_sparse_bsc_cuda_dispatch.h' 2025-07-17T06:38:00.3423360Z adding 'torch/include/ATen/ops/_to_sparse_bsc_native.h' 2025-07-17T06:38:00.3424320Z adding 'torch/include/ATen/ops/_to_sparse_bsc_ops.h' 2025-07-17T06:38:00.3425280Z adding 'torch/include/ATen/ops/_to_sparse_bsr.h' 2025-07-17T06:38:00.3426260Z adding 'torch/include/ATen/ops/_to_sparse_bsr_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3427020Z adding 'torch/include/ATen/ops/_to_sparse_bsr_cpu_dispatch.h' 2025-07-17T06:38:00.3427830Z adding 'torch/include/ATen/ops/_to_sparse_bsr_cuda_dispatch.h' 2025-07-17T06:38:00.3428760Z adding 'torch/include/ATen/ops/_to_sparse_bsr_native.h' 2025-07-17T06:38:00.3429730Z adding 'torch/include/ATen/ops/_to_sparse_bsr_ops.h' 2025-07-17T06:38:00.3430690Z adding 'torch/include/ATen/ops/_to_sparse_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3431500Z adding 'torch/include/ATen/ops/_to_sparse_cpu_dispatch.h' 2025-07-17T06:38:00.3432460Z adding 'torch/include/ATen/ops/_to_sparse_csc.h' 2025-07-17T06:38:00.3433440Z adding 'torch/include/ATen/ops/_to_sparse_csc_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3434230Z adding 'torch/include/ATen/ops/_to_sparse_csc_cpu_dispatch.h' 2025-07-17T06:38:00.3435030Z adding 'torch/include/ATen/ops/_to_sparse_csc_cuda_dispatch.h' 2025-07-17T06:38:00.3436000Z adding 'torch/include/ATen/ops/_to_sparse_csc_native.h' 2025-07-17T06:38:00.3436960Z adding 'torch/include/ATen/ops/_to_sparse_csc_ops.h' 2025-07-17T06:38:00.3437810Z adding 'torch/include/ATen/ops/_to_sparse_csr.h' 2025-07-17T06:38:00.3438770Z adding 'torch/include/ATen/ops/_to_sparse_csr_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3439640Z adding 'torch/include/ATen/ops/_to_sparse_csr_cpu_dispatch.h' 2025-07-17T06:38:00.3440460Z adding 'torch/include/ATen/ops/_to_sparse_csr_cuda_dispatch.h' 2025-07-17T06:38:00.3441290Z adding 'torch/include/ATen/ops/_to_sparse_csr_native.h' 2025-07-17T06:38:00.3442230Z adding 'torch/include/ATen/ops/_to_sparse_csr_ops.h' 2025-07-17T06:38:00.3443230Z adding 'torch/include/ATen/ops/_to_sparse_cuda_dispatch.h' 2025-07-17T06:38:00.3444090Z adding 'torch/include/ATen/ops/_to_sparse_mps_dispatch.h' 2025-07-17T06:38:00.3445000Z adding 'torch/include/ATen/ops/_to_sparse_native.h' 2025-07-17T06:38:00.3446050Z adding 'torch/include/ATen/ops/_to_sparse_ops.h' 2025-07-17T06:38:00.3447080Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured.h' 2025-07-17T06:38:00.3447990Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_cuda_dispatch.h' 2025-07-17T06:38:00.3448800Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_native.h' 2025-07-17T06:38:00.3449670Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_ops.h' 2025-07-17T06:38:00.3450720Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv.h' 2025-07-17T06:38:00.3451740Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3452570Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_cpu_dispatch.h' 2025-07-17T06:38:00.3453370Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_cuda_dispatch.h' 2025-07-17T06:38:00.3454310Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_native.h' 2025-07-17T06:38:00.3455320Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_ops.h' 2025-07-17T06:38:00.3456450Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd.h' 2025-07-17T06:38:00.3457530Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3458530Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_cpu_dispatch.h' 2025-07-17T06:38:00.3459380Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_cuda_dispatch.h' 2025-07-17T06:38:00.3460280Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_native.h' 2025-07-17T06:38:00.3461430Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_ops.h' 2025-07-17T06:38:00.3462440Z adding 'torch/include/ATen/ops/_trilinear.h' 2025-07-17T06:38:00.3463430Z adding 'torch/include/ATen/ops/_trilinear_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3464370Z adding 'torch/include/ATen/ops/_trilinear_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.3465090Z adding 'torch/include/ATen/ops/_trilinear_native.h' 2025-07-17T06:38:00.3466200Z adding 'torch/include/ATen/ops/_trilinear_ops.h' 2025-07-17T06:38:00.3467250Z adding 'torch/include/ATen/ops/_triton_multi_head_attention.h' 2025-07-17T06:38:00.3468240Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3469060Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_cuda_dispatch.h' 2025-07-17T06:38:00.3470030Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_native.h' 2025-07-17T06:38:00.3471060Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_ops.h' 2025-07-17T06:38:00.3471970Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention.h' 2025-07-17T06:38:00.3472950Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3473860Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_cuda_dispatch.h' 2025-07-17T06:38:00.3474680Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_native.h' 2025-07-17T06:38:00.3475630Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_ops.h' 2025-07-17T06:38:00.3476530Z adding 'torch/include/ATen/ops/_unique.h' 2025-07-17T06:38:00.3477550Z adding 'torch/include/ATen/ops/_unique2.h' 2025-07-17T06:38:00.3478550Z adding 'torch/include/ATen/ops/_unique2_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3479350Z adding 'torch/include/ATen/ops/_unique2_cpu_dispatch.h' 2025-07-17T06:38:00.3480170Z adding 'torch/include/ATen/ops/_unique2_cuda_dispatch.h' 2025-07-17T06:38:00.3481090Z adding 'torch/include/ATen/ops/_unique2_mps_dispatch.h' 2025-07-17T06:38:00.3481960Z adding 'torch/include/ATen/ops/_unique2_native.h' 2025-07-17T06:38:00.3482930Z adding 'torch/include/ATen/ops/_unique2_ops.h' 2025-07-17T06:38:00.3483910Z adding 'torch/include/ATen/ops/_unique_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3484830Z adding 'torch/include/ATen/ops/_unique_cpu_dispatch.h' 2025-07-17T06:38:00.3485630Z adding 'torch/include/ATen/ops/_unique_cuda_dispatch.h' 2025-07-17T06:38:00.3486490Z adding 'torch/include/ATen/ops/_unique_native.h' 2025-07-17T06:38:00.3487430Z adding 'torch/include/ATen/ops/_unique_ops.h' 2025-07-17T06:38:00.3488430Z adding 'torch/include/ATen/ops/_unpack_dual.h' 2025-07-17T06:38:00.3489560Z adding 'torch/include/ATen/ops/_unpack_dual_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3490400Z adding 'torch/include/ATen/ops/_unpack_dual_native.h' 2025-07-17T06:38:00.3491280Z adding 'torch/include/ATen/ops/_unpack_dual_ops.h' 2025-07-17T06:38:00.3492250Z adding 'torch/include/ATen/ops/_unsafe_index.h' 2025-07-17T06:38:00.3493200Z adding 'torch/include/ATen/ops/_unsafe_index_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3493940Z adding 'torch/include/ATen/ops/_unsafe_index_native.h' 2025-07-17T06:38:00.3494830Z adding 'torch/include/ATen/ops/_unsafe_index_ops.h' 2025-07-17T06:38:00.3495800Z adding 'torch/include/ATen/ops/_unsafe_index_put.h' 2025-07-17T06:38:00.3496770Z adding 'torch/include/ATen/ops/_unsafe_index_put_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3497510Z adding 'torch/include/ATen/ops/_unsafe_index_put_native.h' 2025-07-17T06:38:00.3498420Z adding 'torch/include/ATen/ops/_unsafe_index_put_ops.h' 2025-07-17T06:38:00.3499390Z adding 'torch/include/ATen/ops/_unsafe_masked_index.h' 2025-07-17T06:38:00.3500390Z adding 'torch/include/ATen/ops/_unsafe_masked_index_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3501130Z adding 'torch/include/ATen/ops/_unsafe_masked_index_native.h' 2025-07-17T06:38:00.3502040Z adding 'torch/include/ATen/ops/_unsafe_masked_index_ops.h' 2025-07-17T06:38:00.3503050Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate.h' 2025-07-17T06:38:00.3504020Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3504770Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_native.h' 2025-07-17T06:38:00.3505680Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_ops.h' 2025-07-17T06:38:00.3506730Z adding 'torch/include/ATen/ops/_unsafe_view.h' 2025-07-17T06:38:00.3507740Z adding 'torch/include/ATen/ops/_unsafe_view_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3508850Z adding 'torch/include/ATen/ops/_unsafe_view_native.h' 2025-07-17T06:38:00.3509780Z adding 'torch/include/ATen/ops/_unsafe_view_ops.h' 2025-07-17T06:38:00.3511200Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa.h' 2025-07-17T06:38:00.3512560Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward.h' 2025-07-17T06:38:00.3513660Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.3514510Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cpu_dispatch.h' 2025-07-17T06:38:00.3515580Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cuda_dispatch.h' 2025-07-17T06:38:00.3516420Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta.h' 2025-07-17T06:38:00.3517340Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta_dispatch.h' 2025-07-17T06:38:00.3518240Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_native.h' 2025-07-17T06:38:00.3519330Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_ops.h' 2025-07-17T06:38:00.3520330Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.3521170Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3522040Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_cpu_dispatch.h' 2025-07-17T06:38:00.3523040Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_cuda_dispatch.h' 2025-07-17T06:38:00.3523900Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_meta.h' 2025-07-17T06:38:00.3524780Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_meta_dispatch.h' 2025-07-17T06:38:00.3525640Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_mps_dispatch.h' 2025-07-17T06:38:00.3526640Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_native.h' 2025-07-17T06:38:00.3527700Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_ops.h' 2025-07-17T06:38:00.3528940Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa.h' 2025-07-17T06:38:00.3530230Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward.h' 2025-07-17T06:38:00.3531400Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.3532260Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cpu_dispatch.h' 2025-07-17T06:38:00.3533170Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cuda_dispatch.h' 2025-07-17T06:38:00.3534010Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta.h' 2025-07-17T06:38:00.3535020Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta_dispatch.h' 2025-07-17T06:38:00.3535900Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_native.h' 2025-07-17T06:38:00.3536900Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_ops.h' 2025-07-17T06:38:00.3537900Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.3538870Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3539690Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_cpu_dispatch.h' 2025-07-17T06:38:00.3540550Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_cuda_dispatch.h' 2025-07-17T06:38:00.3541390Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_meta.h' 2025-07-17T06:38:00.3542360Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_meta_dispatch.h' 2025-07-17T06:38:00.3543230Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_mps_dispatch.h' 2025-07-17T06:38:00.3544100Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_native.h' 2025-07-17T06:38:00.3545150Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_ops.h' 2025-07-17T06:38:00.3546470Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d.h' 2025-07-17T06:38:00.3547660Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward.h' 2025-07-17T06:38:00.3548730Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.3549560Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cpu_dispatch.h' 2025-07-17T06:38:00.3550560Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cuda_dispatch.h' 2025-07-17T06:38:00.3551420Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta.h' 2025-07-17T06:38:00.3552310Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta_dispatch.h' 2025-07-17T06:38:00.3553200Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_mps_dispatch.h' 2025-07-17T06:38:00.3554160Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_native.h' 2025-07-17T06:38:00.3555180Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_ops.h' 2025-07-17T06:38:00.3556190Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.3557010Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3557950Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_cpu_dispatch.h' 2025-07-17T06:38:00.3558890Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_cuda_dispatch.h' 2025-07-17T06:38:00.3559710Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_meta.h' 2025-07-17T06:38:00.3560600Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_meta_dispatch.h' 2025-07-17T06:38:00.3561560Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_mps_dispatch.h' 2025-07-17T06:38:00.3562500Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_native.h' 2025-07-17T06:38:00.3563500Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_ops.h' 2025-07-17T06:38:00.3564710Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d.h' 2025-07-17T06:38:00.3566090Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward.h' 2025-07-17T06:38:00.3567120Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.3567950Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cpu_dispatch.h' 2025-07-17T06:38:00.3568840Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cuda_dispatch.h' 2025-07-17T06:38:00.3569790Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta.h' 2025-07-17T06:38:00.3570710Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta_dispatch.h' 2025-07-17T06:38:00.3571600Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_mps_dispatch.h' 2025-07-17T06:38:00.3572480Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_native.h' 2025-07-17T06:38:00.3573570Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_ops.h' 2025-07-17T06:38:00.3574590Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.3575440Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3576270Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_cpu_dispatch.h' 2025-07-17T06:38:00.3577250Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_cuda_dispatch.h' 2025-07-17T06:38:00.3578100Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_meta.h' 2025-07-17T06:38:00.3578980Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_meta_dispatch.h' 2025-07-17T06:38:00.3579830Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_mps_dispatch.h' 2025-07-17T06:38:00.3580850Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_native.h' 2025-07-17T06:38:00.3581890Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_ops.h' 2025-07-17T06:38:00.3583180Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d.h' 2025-07-17T06:38:00.3584430Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward.h' 2025-07-17T06:38:00.3585620Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.3586490Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cpu_dispatch.h' 2025-07-17T06:38:00.3587410Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cuda_dispatch.h' 2025-07-17T06:38:00.3588220Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta.h' 2025-07-17T06:38:00.3589260Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta_dispatch.h' 2025-07-17T06:38:00.3590140Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_mps_dispatch.h' 2025-07-17T06:38:00.3591030Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_native.h' 2025-07-17T06:38:00.3592010Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_ops.h' 2025-07-17T06:38:00.3593140Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.3593950Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3594830Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_cpu_dispatch.h' 2025-07-17T06:38:00.3595710Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_cuda_dispatch.h' 2025-07-17T06:38:00.3596640Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_meta.h' 2025-07-17T06:38:00.3597560Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_meta_dispatch.h' 2025-07-17T06:38:00.3598410Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_mps_dispatch.h' 2025-07-17T06:38:00.3599330Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_native.h' 2025-07-17T06:38:00.3600460Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_ops.h' 2025-07-17T06:38:00.3601380Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss.h' 2025-07-17T06:38:00.3602280Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_cuda_dispatch.h' 2025-07-17T06:38:00.3603100Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_native.h' 2025-07-17T06:38:00.3604190Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_ops.h' 2025-07-17T06:38:00.3605060Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight.h' 2025-07-17T06:38:00.3606010Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3606760Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_native.h' 2025-07-17T06:38:00.3607720Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_ops.h' 2025-07-17T06:38:00.3608620Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices.h' 2025-07-17T06:38:00.3609530Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_cpu_dispatch.h' 2025-07-17T06:38:00.3610360Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_cuda_dispatch.h' 2025-07-17T06:38:00.3611270Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_native.h' 2025-07-17T06:38:00.3612210Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_ops.h' 2025-07-17T06:38:00.3613120Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args.h' 2025-07-17T06:38:00.3614050Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3614920Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_native.h' 2025-07-17T06:38:00.3615840Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_ops.h' 2025-07-17T06:38:00.3616710Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args.h' 2025-07-17T06:38:00.3617660Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3618510Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_native.h' 2025-07-17T06:38:00.3619440Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_ops.h' 2025-07-17T06:38:00.3620330Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args.h' 2025-07-17T06:38:00.3621330Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3622200Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_native.h' 2025-07-17T06:38:00.3623150Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_ops.h' 2025-07-17T06:38:00.3624000Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args.h' 2025-07-17T06:38:00.3624970Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3625830Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_native.h' 2025-07-17T06:38:00.3626750Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_ops.h' 2025-07-17T06:38:00.3627620Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args.h' 2025-07-17T06:38:00.3628590Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3629420Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_native.h' 2025-07-17T06:38:00.3630340Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_ops.h' 2025-07-17T06:38:00.3631180Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args.h' 2025-07-17T06:38:00.3632100Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3632960Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_native.h' 2025-07-17T06:38:00.3633860Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_ops.h' 2025-07-17T06:38:00.3634610Z adding 'torch/include/ATen/ops/_values.h' 2025-07-17T06:38:00.3635490Z adding 'torch/include/ATen/ops/_values_copy.h' 2025-07-17T06:38:00.3636530Z adding 'torch/include/ATen/ops/_values_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3637450Z adding 'torch/include/ATen/ops/_values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.3638140Z adding 'torch/include/ATen/ops/_values_copy_native.h' 2025-07-17T06:38:00.3639060Z adding 'torch/include/ATen/ops/_values_copy_ops.h' 2025-07-17T06:38:00.3639980Z adding 'torch/include/ATen/ops/_values_native.h' 2025-07-17T06:38:00.3640860Z adding 'torch/include/ATen/ops/_values_ops.h' 2025-07-17T06:38:00.3641670Z adding 'torch/include/ATen/ops/_version.h' 2025-07-17T06:38:00.3642600Z adding 'torch/include/ATen/ops/_version_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3643440Z adding 'torch/include/ATen/ops/_version_native.h' 2025-07-17T06:38:00.3644320Z adding 'torch/include/ATen/ops/_version_ops.h' 2025-07-17T06:38:00.3645200Z adding 'torch/include/ATen/ops/_weight_int4pack_mm.h' 2025-07-17T06:38:00.3646090Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_cuda_dispatch.h' 2025-07-17T06:38:00.3647030Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu.h' 2025-07-17T06:38:00.3647920Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_cpu_dispatch.h' 2025-07-17T06:38:00.3648740Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_native.h' 2025-07-17T06:38:00.3649660Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_ops.h' 2025-07-17T06:38:00.3650640Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_mps_dispatch.h' 2025-07-17T06:38:00.3651500Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_native.h' 2025-07-17T06:38:00.3652400Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_ops.h' 2025-07-17T06:38:00.3653310Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros.h' 2025-07-17T06:38:00.3654230Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros_native.h' 2025-07-17T06:38:00.3655170Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros_ops.h' 2025-07-17T06:38:00.3655950Z adding 'torch/include/ATen/ops/_weight_int8pack_mm.h' 2025-07-17T06:38:00.3656850Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_cpu_dispatch.h' 2025-07-17T06:38:00.3657820Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_mps_dispatch.h' 2025-07-17T06:38:00.3658970Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_native.h' 2025-07-17T06:38:00.3659510Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_ops.h' 2025-07-17T06:38:00.3660340Z adding 'torch/include/ATen/ops/_weight_norm.h' 2025-07-17T06:38:00.3661370Z adding 'torch/include/ATen/ops/_weight_norm_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3662230Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward.h' 2025-07-17T06:38:00.3663190Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3663950Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_native.h' 2025-07-17T06:38:00.3664960Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_ops.h' 2025-07-17T06:38:00.3665880Z adding 'torch/include/ATen/ops/_weight_norm_interface.h' 2025-07-17T06:38:00.3666800Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward.h' 2025-07-17T06:38:00.3667800Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3668700Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_cpu_dispatch.h' 2025-07-17T06:38:00.3669520Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_cuda_dispatch.h' 2025-07-17T06:38:00.3670350Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_mps_dispatch.h' 2025-07-17T06:38:00.3671190Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_native.h' 2025-07-17T06:38:00.3672290Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_ops.h' 2025-07-17T06:38:00.3673250Z adding 'torch/include/ATen/ops/_weight_norm_interface_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3674030Z adding 'torch/include/ATen/ops/_weight_norm_interface_cpu_dispatch.h' 2025-07-17T06:38:00.3674850Z adding 'torch/include/ATen/ops/_weight_norm_interface_cuda_dispatch.h' 2025-07-17T06:38:00.3675770Z adding 'torch/include/ATen/ops/_weight_norm_interface_mps_dispatch.h' 2025-07-17T06:38:00.3676600Z adding 'torch/include/ATen/ops/_weight_norm_interface_native.h' 2025-07-17T06:38:00.3677560Z adding 'torch/include/ATen/ops/_weight_norm_interface_ops.h' 2025-07-17T06:38:00.3678370Z adding 'torch/include/ATen/ops/_weight_norm_native.h' 2025-07-17T06:38:00.3679370Z adding 'torch/include/ATen/ops/_weight_norm_ops.h' 2025-07-17T06:38:00.3680260Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack.h' 2025-07-17T06:38:00.3681220Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3681970Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_native.h' 2025-07-17T06:38:00.3682980Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_ops.h' 2025-07-17T06:38:00.3683910Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked.h' 2025-07-17T06:38:00.3684900Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3685710Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_native.h' 2025-07-17T06:38:00.3686740Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_ops.h' 2025-07-17T06:38:00.3687570Z adding 'torch/include/ATen/ops/abs.h' 2025-07-17T06:38:00.3688490Z adding 'torch/include/ATen/ops/abs_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3689280Z adding 'torch/include/ATen/ops/abs_cpu_dispatch.h' 2025-07-17T06:38:00.3690190Z adding 'torch/include/ATen/ops/abs_cuda_dispatch.h' 2025-07-17T06:38:00.3690980Z adding 'torch/include/ATen/ops/abs_mps_dispatch.h' 2025-07-17T06:38:00.3691830Z adding 'torch/include/ATen/ops/abs_native.h' 2025-07-17T06:38:00.3692760Z adding 'torch/include/ATen/ops/abs_ops.h' 2025-07-17T06:38:00.3693760Z adding 'torch/include/ATen/ops/absolute.h' 2025-07-17T06:38:00.3694740Z adding 'torch/include/ATen/ops/absolute_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3695470Z adding 'torch/include/ATen/ops/absolute_native.h' 2025-07-17T06:38:00.3696430Z adding 'torch/include/ATen/ops/absolute_ops.h' 2025-07-17T06:38:00.3697390Z adding 'torch/include/ATen/ops/acos.h' 2025-07-17T06:38:00.3698380Z adding 'torch/include/ATen/ops/acos_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.3699130Z adding 'torch/include/ATen/ops/acos_cpu_dispatch.h' 2025-07-17T06:38:00.3699940Z adding 'torch/include/ATen/ops/acos_cuda_dispatch.h' 2025-07-17T06:38:00.3700870Z adding 'torch/include/ATen/ops/acos_meta.h' 2025-07-17T06:38:00.3701710Z adding 'torch/include/ATen/ops/acos_meta_dispatch.h' 2025-07-17T06:38:00.3702500Z adding 'torch/include/ATen/ops/acos_mps_dispatch.h' 2025-07-17T06:38:00.3703320Z adding 'torch/include/ATen/ops/acos_native.h' 2025-07-17T06:38:00.3704370Z adding 'torch/include/ATen/ops/acos_ops.h' 2025-07-17T06:38:00.3705290Z adding 'torch/include/ATen/ops/acosh.h' 2025-07-17T06:38:00.3706320Z adding 'torch/include/ATen/ops/acosh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.3707010Z adding 'torch/include/ATen/ops/acosh_cpu_dispatch.h' 2025-07-17T06:38:00.3707930Z adding 'torch/include/ATen/ops/acosh_cuda_dispatch.h' 2025-07-17T06:38:00.3708760Z adding 'torch/include/ATen/ops/acosh_meta.h' 2025-07-17T06:38:00.3709610Z adding 'torch/include/ATen/ops/acosh_meta_dispatch.h' 2025-07-17T06:38:00.3710420Z adding 'torch/include/ATen/ops/acosh_mps_dispatch.h' 2025-07-17T06:38:00.3711380Z adding 'torch/include/ATen/ops/acosh_native.h' 2025-07-17T06:38:00.3712330Z adding 'torch/include/ATen/ops/acosh_ops.h' 2025-07-17T06:38:00.3713250Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d.h' 2025-07-17T06:38:00.3714250Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3715230Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3716020Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_native.h' 2025-07-17T06:38:00.3716990Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_ops.h' 2025-07-17T06:38:00.3718070Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d.h' 2025-07-17T06:38:00.3719140Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3719970Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_cpu_dispatch.h' 2025-07-17T06:38:00.3720800Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_cuda_dispatch.h' 2025-07-17T06:38:00.3721620Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_mps_dispatch.h' 2025-07-17T06:38:00.3722930Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_native.h' 2025-07-17T06:38:00.3723850Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_ops.h' 2025-07-17T06:38:00.3724870Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d.h' 2025-07-17T06:38:00.3725820Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward.h' 2025-07-17T06:38:00.3726810Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_cpu_dispatch.h' 2025-07-17T06:38:00.3727640Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_cuda_dispatch.h' 2025-07-17T06:38:00.3728490Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_native.h' 2025-07-17T06:38:00.3729370Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_ops.h' 2025-07-17T06:38:00.3730400Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3731170Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_cpu_dispatch.h' 2025-07-17T06:38:00.3732000Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_cuda_dispatch.h' 2025-07-17T06:38:00.3732820Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_native.h' 2025-07-17T06:38:00.3733860Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_ops.h' 2025-07-17T06:38:00.3734710Z adding 'torch/include/ATen/ops/adaptive_max_pool1d.h' 2025-07-17T06:38:00.3735640Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3736380Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_native.h' 2025-07-17T06:38:00.3737410Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_ops.h' 2025-07-17T06:38:00.3738330Z adding 'torch/include/ATen/ops/adaptive_max_pool2d.h' 2025-07-17T06:38:00.3739250Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward.h' 2025-07-17T06:38:00.3740270Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.3741140Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_cpu_dispatch.h' 2025-07-17T06:38:00.3742000Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_cuda_dispatch.h' 2025-07-17T06:38:00.3742810Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_meta.h' 2025-07-17T06:38:00.3743680Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_meta_dispatch.h' 2025-07-17T06:38:00.3744600Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_mps_dispatch.h' 2025-07-17T06:38:00.3745490Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_native.h' 2025-07-17T06:38:00.3746420Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_ops.h' 2025-07-17T06:38:00.3747420Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.3748290Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_cpu_dispatch.h' 2025-07-17T06:38:00.3749120Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_cuda_dispatch.h' 2025-07-17T06:38:00.3749940Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_meta.h' 2025-07-17T06:38:00.3750780Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_meta_dispatch.h' 2025-07-17T06:38:00.3751680Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_mps_dispatch.h' 2025-07-17T06:38:00.3752530Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_native.h' 2025-07-17T06:38:00.3753510Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_ops.h' 2025-07-17T06:38:00.3754420Z adding 'torch/include/ATen/ops/adaptive_max_pool3d.h' 2025-07-17T06:38:00.3755460Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward.h' 2025-07-17T06:38:00.3756480Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.3757220Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_cpu_dispatch.h' 2025-07-17T06:38:00.3758020Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_cuda_dispatch.h' 2025-07-17T06:38:00.3758930Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_meta.h' 2025-07-17T06:38:00.3759800Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_meta_dispatch.h' 2025-07-17T06:38:00.3760630Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_native.h' 2025-07-17T06:38:00.3761580Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_ops.h' 2025-07-17T06:38:00.3762640Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.3763390Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_cpu_dispatch.h' 2025-07-17T06:38:00.3764210Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_cuda_dispatch.h' 2025-07-17T06:38:00.3765050Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_meta.h' 2025-07-17T06:38:00.3765960Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_meta_dispatch.h' 2025-07-17T06:38:00.3766800Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_native.h' 2025-07-17T06:38:00.3767770Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_ops.h' 2025-07-17T06:38:00.3768690Z adding 'torch/include/ATen/ops/add.h' 2025-07-17T06:38:00.3769770Z adding 'torch/include/ATen/ops/add_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3770680Z adding 'torch/include/ATen/ops/add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.3771440Z adding 'torch/include/ATen/ops/add_cpu_dispatch.h' 2025-07-17T06:38:00.3772270Z adding 'torch/include/ATen/ops/add_cuda_dispatch.h' 2025-07-17T06:38:00.3773200Z adding 'torch/include/ATen/ops/add_meta.h' 2025-07-17T06:38:00.3774070Z adding 'torch/include/ATen/ops/add_meta_dispatch.h' 2025-07-17T06:38:00.3774870Z adding 'torch/include/ATen/ops/add_mps_dispatch.h' 2025-07-17T06:38:00.3775840Z adding 'torch/include/ATen/ops/add_native.h' 2025-07-17T06:38:00.3777090Z adding 'torch/include/ATen/ops/add_ops.h' 2025-07-17T06:38:00.3778050Z adding 'torch/include/ATen/ops/addbmm.h' 2025-07-17T06:38:00.3778950Z adding 'torch/include/ATen/ops/addbmm_cpu_dispatch.h' 2025-07-17T06:38:00.3779790Z adding 'torch/include/ATen/ops/addbmm_cuda_dispatch.h' 2025-07-17T06:38:00.3780720Z adding 'torch/include/ATen/ops/addbmm_meta_dispatch.h' 2025-07-17T06:38:00.3781590Z adding 'torch/include/ATen/ops/addbmm_mps_dispatch.h' 2025-07-17T06:38:00.3782450Z adding 'torch/include/ATen/ops/addbmm_native.h' 2025-07-17T06:38:00.3783460Z adding 'torch/include/ATen/ops/addbmm_ops.h' 2025-07-17T06:38:00.3784500Z adding 'torch/include/ATen/ops/addcdiv.h' 2025-07-17T06:38:00.3785540Z adding 'torch/include/ATen/ops/addcdiv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.3786270Z adding 'torch/include/ATen/ops/addcdiv_cpu_dispatch.h' 2025-07-17T06:38:00.3787110Z adding 'torch/include/ATen/ops/addcdiv_cuda_dispatch.h' 2025-07-17T06:38:00.3788040Z adding 'torch/include/ATen/ops/addcdiv_meta.h' 2025-07-17T06:38:00.3788950Z adding 'torch/include/ATen/ops/addcdiv_meta_dispatch.h' 2025-07-17T06:38:00.3789750Z adding 'torch/include/ATen/ops/addcdiv_mps_dispatch.h' 2025-07-17T06:38:00.3790590Z adding 'torch/include/ATen/ops/addcdiv_native.h' 2025-07-17T06:38:00.3791690Z adding 'torch/include/ATen/ops/addcdiv_ops.h' 2025-07-17T06:38:00.3792620Z adding 'torch/include/ATen/ops/addcmul.h' 2025-07-17T06:38:00.3793640Z adding 'torch/include/ATen/ops/addcmul_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.3794370Z adding 'torch/include/ATen/ops/addcmul_cpu_dispatch.h' 2025-07-17T06:38:00.3795320Z adding 'torch/include/ATen/ops/addcmul_cuda_dispatch.h' 2025-07-17T06:38:00.3796150Z adding 'torch/include/ATen/ops/addcmul_meta.h' 2025-07-17T06:38:00.3796990Z adding 'torch/include/ATen/ops/addcmul_meta_dispatch.h' 2025-07-17T06:38:00.3797780Z adding 'torch/include/ATen/ops/addcmul_mps_dispatch.h' 2025-07-17T06:38:00.3798770Z adding 'torch/include/ATen/ops/addcmul_native.h' 2025-07-17T06:38:00.3799770Z adding 'torch/include/ATen/ops/addcmul_ops.h' 2025-07-17T06:38:00.3800800Z adding 'torch/include/ATen/ops/addmm.h' 2025-07-17T06:38:00.3801820Z adding 'torch/include/ATen/ops/addmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.3802710Z adding 'torch/include/ATen/ops/addmm_cpu_dispatch.h' 2025-07-17T06:38:00.3803630Z adding 'torch/include/ATen/ops/addmm_cuda_dispatch.h' 2025-07-17T06:38:00.3804450Z adding 'torch/include/ATen/ops/addmm_meta.h' 2025-07-17T06:38:00.3805300Z adding 'torch/include/ATen/ops/addmm_meta_dispatch.h' 2025-07-17T06:38:00.3806210Z adding 'torch/include/ATen/ops/addmm_mps_dispatch.h' 2025-07-17T06:38:00.3807200Z adding 'torch/include/ATen/ops/addmm_native.h' 2025-07-17T06:38:00.3808340Z adding 'torch/include/ATen/ops/addmm_ops.h' 2025-07-17T06:38:00.3809270Z adding 'torch/include/ATen/ops/addmv.h' 2025-07-17T06:38:00.3810390Z adding 'torch/include/ATen/ops/addmv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.3811160Z adding 'torch/include/ATen/ops/addmv_cpu_dispatch.h' 2025-07-17T06:38:00.3812020Z adding 'torch/include/ATen/ops/addmv_cuda_dispatch.h' 2025-07-17T06:38:00.3812840Z adding 'torch/include/ATen/ops/addmv_meta.h' 2025-07-17T06:38:00.3813800Z adding 'torch/include/ATen/ops/addmv_meta_dispatch.h' 2025-07-17T06:38:00.3814630Z adding 'torch/include/ATen/ops/addmv_mps_dispatch.h' 2025-07-17T06:38:00.3815500Z adding 'torch/include/ATen/ops/addmv_native.h' 2025-07-17T06:38:00.3816550Z adding 'torch/include/ATen/ops/addmv_ops.h' 2025-07-17T06:38:00.3817550Z adding 'torch/include/ATen/ops/addr.h' 2025-07-17T06:38:00.3818560Z adding 'torch/include/ATen/ops/addr_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3819380Z adding 'torch/include/ATen/ops/addr_cpu_dispatch.h' 2025-07-17T06:38:00.3820190Z adding 'torch/include/ATen/ops/addr_cuda_dispatch.h' 2025-07-17T06:38:00.3821110Z adding 'torch/include/ATen/ops/addr_mps_dispatch.h' 2025-07-17T06:38:00.3822060Z adding 'torch/include/ATen/ops/addr_native.h' 2025-07-17T06:38:00.3823070Z adding 'torch/include/ATen/ops/addr_ops.h' 2025-07-17T06:38:00.3823940Z adding 'torch/include/ATen/ops/adjoint.h' 2025-07-17T06:38:00.3824980Z adding 'torch/include/ATen/ops/adjoint_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3825740Z adding 'torch/include/ATen/ops/adjoint_native.h' 2025-07-17T06:38:00.3826630Z adding 'torch/include/ATen/ops/adjoint_ops.h' 2025-07-17T06:38:00.3827720Z adding 'torch/include/ATen/ops/affine_grid_generator.h' 2025-07-17T06:38:00.3828810Z adding 'torch/include/ATen/ops/affine_grid_generator_backward.h' 2025-07-17T06:38:00.3829810Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3830600Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_native.h' 2025-07-17T06:38:00.3831470Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_ops.h' 2025-07-17T06:38:00.3832560Z adding 'torch/include/ATen/ops/affine_grid_generator_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3833360Z adding 'torch/include/ATen/ops/affine_grid_generator_native.h' 2025-07-17T06:38:00.3834290Z adding 'torch/include/ATen/ops/affine_grid_generator_ops.h' 2025-07-17T06:38:00.3835100Z adding 'torch/include/ATen/ops/alias.h' 2025-07-17T06:38:00.3836140Z adding 'torch/include/ATen/ops/alias_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3836940Z adding 'torch/include/ATen/ops/alias_copy.h' 2025-07-17T06:38:00.3837920Z adding 'torch/include/ATen/ops/alias_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3838790Z adding 'torch/include/ATen/ops/alias_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.3839610Z adding 'torch/include/ATen/ops/alias_copy_native.h' 2025-07-17T06:38:00.3840560Z adding 'torch/include/ATen/ops/alias_copy_ops.h' 2025-07-17T06:38:00.3841350Z adding 'torch/include/ATen/ops/alias_native.h' 2025-07-17T06:38:00.3842240Z adding 'torch/include/ATen/ops/alias_ops.h' 2025-07-17T06:38:00.3843150Z adding 'torch/include/ATen/ops/align_as.h' 2025-07-17T06:38:00.3844110Z adding 'torch/include/ATen/ops/align_as_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3844840Z adding 'torch/include/ATen/ops/align_as_native.h' 2025-07-17T06:38:00.3845720Z adding 'torch/include/ATen/ops/align_as_ops.h' 2025-07-17T06:38:00.3846660Z adding 'torch/include/ATen/ops/align_tensors.h' 2025-07-17T06:38:00.3847640Z adding 'torch/include/ATen/ops/align_tensors_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3848390Z adding 'torch/include/ATen/ops/align_tensors_native.h' 2025-07-17T06:38:00.3849260Z adding 'torch/include/ATen/ops/align_tensors_ops.h' 2025-07-17T06:38:00.3850180Z adding 'torch/include/ATen/ops/align_to.h' 2025-07-17T06:38:00.3851150Z adding 'torch/include/ATen/ops/align_to_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3851900Z adding 'torch/include/ATen/ops/align_to_native.h' 2025-07-17T06:38:00.3852840Z adding 'torch/include/ATen/ops/align_to_ops.h' 2025-07-17T06:38:00.3854030Z adding 'torch/include/ATen/ops/all.h' 2025-07-17T06:38:00.3854980Z adding 'torch/include/ATen/ops/all_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3855910Z adding 'torch/include/ATen/ops/all_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.3856740Z adding 'torch/include/ATen/ops/all_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3857690Z adding 'torch/include/ATen/ops/all_cpu_dispatch.h' 2025-07-17T06:38:00.3858580Z adding 'torch/include/ATen/ops/all_cuda_dispatch.h' 2025-07-17T06:38:00.3859410Z adding 'torch/include/ATen/ops/all_meta.h' 2025-07-17T06:38:00.3860300Z adding 'torch/include/ATen/ops/all_meta_dispatch.h' 2025-07-17T06:38:00.3861280Z adding 'torch/include/ATen/ops/all_mps_dispatch.h' 2025-07-17T06:38:00.3862190Z adding 'torch/include/ATen/ops/all_native.h' 2025-07-17T06:38:00.3863350Z adding 'torch/include/ATen/ops/all_ops.h' 2025-07-17T06:38:00.3864260Z adding 'torch/include/ATen/ops/allclose.h' 2025-07-17T06:38:00.3865310Z adding 'torch/include/ATen/ops/allclose_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3866070Z adding 'torch/include/ATen/ops/allclose_native.h' 2025-07-17T06:38:00.3866970Z adding 'torch/include/ATen/ops/allclose_ops.h' 2025-07-17T06:38:00.3867810Z adding 'torch/include/ATen/ops/alpha_dropout.h' 2025-07-17T06:38:00.3868900Z adding 'torch/include/ATen/ops/alpha_dropout_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3869630Z adding 'torch/include/ATen/ops/alpha_dropout_native.h' 2025-07-17T06:38:00.3870530Z adding 'torch/include/ATen/ops/alpha_dropout_ops.h' 2025-07-17T06:38:00.3871410Z adding 'torch/include/ATen/ops/amax.h' 2025-07-17T06:38:00.3872510Z adding 'torch/include/ATen/ops/amax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.3873310Z adding 'torch/include/ATen/ops/amax_cpu_dispatch.h' 2025-07-17T06:38:00.3874090Z adding 'torch/include/ATen/ops/amax_cuda_dispatch.h' 2025-07-17T06:38:00.3874890Z adding 'torch/include/ATen/ops/amax_meta.h' 2025-07-17T06:38:00.3875850Z adding 'torch/include/ATen/ops/amax_meta_dispatch.h' 2025-07-17T06:38:00.3876680Z adding 'torch/include/ATen/ops/amax_mps_dispatch.h' 2025-07-17T06:38:00.3877510Z adding 'torch/include/ATen/ops/amax_native.h' 2025-07-17T06:38:00.3878440Z adding 'torch/include/ATen/ops/amax_ops.h' 2025-07-17T06:38:00.3879430Z adding 'torch/include/ATen/ops/amin.h' 2025-07-17T06:38:00.3880450Z adding 'torch/include/ATen/ops/amin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.3881170Z adding 'torch/include/ATen/ops/amin_cpu_dispatch.h' 2025-07-17T06:38:00.3881990Z adding 'torch/include/ATen/ops/amin_cuda_dispatch.h' 2025-07-17T06:38:00.3882930Z adding 'torch/include/ATen/ops/amin_meta.h' 2025-07-17T06:38:00.3883740Z adding 'torch/include/ATen/ops/amin_meta_dispatch.h' 2025-07-17T06:38:00.3884500Z adding 'torch/include/ATen/ops/amin_mps_dispatch.h' 2025-07-17T06:38:00.3885320Z adding 'torch/include/ATen/ops/amin_native.h' 2025-07-17T06:38:00.3886340Z adding 'torch/include/ATen/ops/amin_ops.h' 2025-07-17T06:38:00.3887270Z adding 'torch/include/ATen/ops/aminmax.h' 2025-07-17T06:38:00.3888290Z adding 'torch/include/ATen/ops/aminmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.3889060Z adding 'torch/include/ATen/ops/aminmax_cpu_dispatch.h' 2025-07-17T06:38:00.3890000Z adding 'torch/include/ATen/ops/aminmax_cuda_dispatch.h' 2025-07-17T06:38:00.3890820Z adding 'torch/include/ATen/ops/aminmax_meta.h' 2025-07-17T06:38:00.3891690Z adding 'torch/include/ATen/ops/aminmax_meta_dispatch.h' 2025-07-17T06:38:00.3892510Z adding 'torch/include/ATen/ops/aminmax_mps_dispatch.h' 2025-07-17T06:38:00.3893450Z adding 'torch/include/ATen/ops/aminmax_native.h' 2025-07-17T06:38:00.3894430Z adding 'torch/include/ATen/ops/aminmax_ops.h' 2025-07-17T06:38:00.3895280Z adding 'torch/include/ATen/ops/and.h' 2025-07-17T06:38:00.3896230Z adding 'torch/include/ATen/ops/and_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3897100Z adding 'torch/include/ATen/ops/and_native.h' 2025-07-17T06:38:00.3898130Z adding 'torch/include/ATen/ops/and_ops.h' 2025-07-17T06:38:00.3898980Z adding 'torch/include/ATen/ops/angle.h' 2025-07-17T06:38:00.3899850Z adding 'torch/include/ATen/ops/angle_cpu_dispatch.h' 2025-07-17T06:38:00.3905320Z adding 'torch/include/ATen/ops/angle_cuda_dispatch.h' 2025-07-17T06:38:00.3905540Z adding 'torch/include/ATen/ops/angle_mps_dispatch.h' 2025-07-17T06:38:00.3905650Z adding 'torch/include/ATen/ops/angle_native.h' 2025-07-17T06:38:00.3905730Z adding 'torch/include/ATen/ops/angle_ops.h' 2025-07-17T06:38:00.3905790Z adding 'torch/include/ATen/ops/any.h' 2025-07-17T06:38:00.3905940Z adding 'torch/include/ATen/ops/any_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3906130Z adding 'torch/include/ATen/ops/any_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.3906990Z adding 'torch/include/ATen/ops/any_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3907940Z adding 'torch/include/ATen/ops/any_cpu_dispatch.h' 2025-07-17T06:38:00.3908820Z adding 'torch/include/ATen/ops/any_cuda_dispatch.h' 2025-07-17T06:38:00.3909660Z adding 'torch/include/ATen/ops/any_meta.h' 2025-07-17T06:38:00.3910520Z adding 'torch/include/ATen/ops/any_meta_dispatch.h' 2025-07-17T06:38:00.3911510Z adding 'torch/include/ATen/ops/any_mps_dispatch.h' 2025-07-17T06:38:00.3912440Z adding 'torch/include/ATen/ops/any_native.h' 2025-07-17T06:38:00.3913610Z adding 'torch/include/ATen/ops/any_ops.h' 2025-07-17T06:38:00.3914710Z adding 'torch/include/ATen/ops/arange.h' 2025-07-17T06:38:00.3915850Z adding 'torch/include/ATen/ops/arange_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3916680Z adding 'torch/include/ATen/ops/arange_cpu_dispatch.h' 2025-07-17T06:38:00.3917480Z adding 'torch/include/ATen/ops/arange_cuda_dispatch.h' 2025-07-17T06:38:00.3918330Z adding 'torch/include/ATen/ops/arange_meta_dispatch.h' 2025-07-17T06:38:00.3919200Z adding 'torch/include/ATen/ops/arange_mps_dispatch.h' 2025-07-17T06:38:00.3920080Z adding 'torch/include/ATen/ops/arange_native.h' 2025-07-17T06:38:00.3921210Z adding 'torch/include/ATen/ops/arange_ops.h' 2025-07-17T06:38:00.3922120Z adding 'torch/include/ATen/ops/arccos.h' 2025-07-17T06:38:00.3923170Z adding 'torch/include/ATen/ops/arccos_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3923940Z adding 'torch/include/ATen/ops/arccos_native.h' 2025-07-17T06:38:00.3924860Z adding 'torch/include/ATen/ops/arccos_ops.h' 2025-07-17T06:38:00.3925740Z adding 'torch/include/ATen/ops/arccosh.h' 2025-07-17T06:38:00.3926800Z adding 'torch/include/ATen/ops/arccosh_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3927560Z adding 'torch/include/ATen/ops/arccosh_native.h' 2025-07-17T06:38:00.3928480Z adding 'torch/include/ATen/ops/arccosh_ops.h' 2025-07-17T06:38:00.3929350Z adding 'torch/include/ATen/ops/arcsin.h' 2025-07-17T06:38:00.3930370Z adding 'torch/include/ATen/ops/arcsin_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3931120Z adding 'torch/include/ATen/ops/arcsin_native.h' 2025-07-17T06:38:00.3932410Z adding 'torch/include/ATen/ops/arcsin_ops.h' 2025-07-17T06:38:00.3934160Z adding 'torch/include/ATen/ops/arcsinh.h' 2025-07-17T06:38:00.3935200Z adding 'torch/include/ATen/ops/arcsinh_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3937110Z adding 'torch/include/ATen/ops/arcsinh_native.h' 2025-07-17T06:38:00.3938090Z adding 'torch/include/ATen/ops/arcsinh_ops.h' 2025-07-17T06:38:00.3939030Z adding 'torch/include/ATen/ops/arctan.h' 2025-07-17T06:38:00.3939980Z adding 'torch/include/ATen/ops/arctan2.h' 2025-07-17T06:38:00.3941210Z adding 'torch/include/ATen/ops/arctan2_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3942050Z adding 'torch/include/ATen/ops/arctan2_native.h' 2025-07-17T06:38:00.3943050Z adding 'torch/include/ATen/ops/arctan2_ops.h' 2025-07-17T06:38:00.3944070Z adding 'torch/include/ATen/ops/arctan_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3945020Z adding 'torch/include/ATen/ops/arctan_native.h' 2025-07-17T06:38:00.3946030Z adding 'torch/include/ATen/ops/arctan_ops.h' 2025-07-17T06:38:00.3946950Z adding 'torch/include/ATen/ops/arctanh.h' 2025-07-17T06:38:00.3947900Z adding 'torch/include/ATen/ops/arctanh_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3948850Z adding 'torch/include/ATen/ops/arctanh_native.h' 2025-07-17T06:38:00.3949830Z adding 'torch/include/ATen/ops/arctanh_ops.h' 2025-07-17T06:38:00.3950750Z adding 'torch/include/ATen/ops/argmax.h' 2025-07-17T06:38:00.3951790Z adding 'torch/include/ATen/ops/argmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.3952760Z adding 'torch/include/ATen/ops/argmax_cpu_dispatch.h' 2025-07-17T06:38:00.3953630Z adding 'torch/include/ATen/ops/argmax_cuda_dispatch.h' 2025-07-17T06:38:00.3954470Z adding 'torch/include/ATen/ops/argmax_meta.h' 2025-07-17T06:38:00.3955350Z adding 'torch/include/ATen/ops/argmax_meta_dispatch.h' 2025-07-17T06:38:00.3956360Z adding 'torch/include/ATen/ops/argmax_mps_dispatch.h' 2025-07-17T06:38:00.3957240Z adding 'torch/include/ATen/ops/argmax_native.h' 2025-07-17T06:38:00.3958200Z adding 'torch/include/ATen/ops/argmax_ops.h' 2025-07-17T06:38:00.3959100Z adding 'torch/include/ATen/ops/argmin.h' 2025-07-17T06:38:00.3960330Z adding 'torch/include/ATen/ops/argmin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.3961120Z adding 'torch/include/ATen/ops/argmin_cpu_dispatch.h' 2025-07-17T06:38:00.3961980Z adding 'torch/include/ATen/ops/argmin_cuda_dispatch.h' 2025-07-17T06:38:00.3962800Z adding 'torch/include/ATen/ops/argmin_meta.h' 2025-07-17T06:38:00.3963850Z adding 'torch/include/ATen/ops/argmin_meta_dispatch.h' 2025-07-17T06:38:00.3964680Z adding 'torch/include/ATen/ops/argmin_mps_dispatch.h' 2025-07-17T06:38:00.3965520Z adding 'torch/include/ATen/ops/argmin_native.h' 2025-07-17T06:38:00.3966480Z adding 'torch/include/ATen/ops/argmin_ops.h' 2025-07-17T06:38:00.3967670Z adding 'torch/include/ATen/ops/argsort.h' 2025-07-17T06:38:00.3968700Z adding 'torch/include/ATen/ops/argsort_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3969450Z adding 'torch/include/ATen/ops/argsort_native.h' 2025-07-17T06:38:00.3970500Z adding 'torch/include/ATen/ops/argsort_ops.h' 2025-07-17T06:38:00.3971580Z adding 'torch/include/ATen/ops/argwhere.h' 2025-07-17T06:38:00.3972550Z adding 'torch/include/ATen/ops/argwhere_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.3973310Z adding 'torch/include/ATen/ops/argwhere_native.h' 2025-07-17T06:38:00.3974190Z adding 'torch/include/ATen/ops/argwhere_ops.h' 2025-07-17T06:38:00.3975450Z adding 'torch/include/ATen/ops/as_strided.h' 2025-07-17T06:38:00.3976560Z adding 'torch/include/ATen/ops/as_strided_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.3977650Z adding 'torch/include/ATen/ops/as_strided_copy.h' 2025-07-17T06:38:00.3978800Z adding 'torch/include/ATen/ops/as_strided_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3979930Z adding 'torch/include/ATen/ops/as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.3980700Z adding 'torch/include/ATen/ops/as_strided_copy_native.h' 2025-07-17T06:38:00.3981680Z adding 'torch/include/ATen/ops/as_strided_copy_ops.h' 2025-07-17T06:38:00.3982570Z adding 'torch/include/ATen/ops/as_strided_cpu_dispatch.h' 2025-07-17T06:38:00.3983610Z adding 'torch/include/ATen/ops/as_strided_cuda_dispatch.h' 2025-07-17T06:38:00.3984460Z adding 'torch/include/ATen/ops/as_strided_meta_dispatch.h' 2025-07-17T06:38:00.3985280Z adding 'torch/include/ATen/ops/as_strided_mps_dispatch.h' 2025-07-17T06:38:00.3986140Z adding 'torch/include/ATen/ops/as_strided_native.h' 2025-07-17T06:38:00.3987310Z adding 'torch/include/ATen/ops/as_strided_ops.h' 2025-07-17T06:38:00.3988530Z adding 'torch/include/ATen/ops/as_strided_scatter.h' 2025-07-17T06:38:00.3989590Z adding 'torch/include/ATen/ops/as_strided_scatter_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.3990530Z adding 'torch/include/ATen/ops/as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.3991470Z adding 'torch/include/ATen/ops/as_strided_scatter_native.h' 2025-07-17T06:38:00.3992510Z adding 'torch/include/ATen/ops/as_strided_scatter_ops.h' 2025-07-17T06:38:00.3993350Z adding 'torch/include/ATen/ops/asin.h' 2025-07-17T06:38:00.3994360Z adding 'torch/include/ATen/ops/asin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.3995320Z adding 'torch/include/ATen/ops/asin_cpu_dispatch.h' 2025-07-17T06:38:00.3996140Z adding 'torch/include/ATen/ops/asin_cuda_dispatch.h' 2025-07-17T06:38:00.3996970Z adding 'torch/include/ATen/ops/asin_meta.h' 2025-07-17T06:38:00.3997800Z adding 'torch/include/ATen/ops/asin_meta_dispatch.h' 2025-07-17T06:38:00.3998800Z adding 'torch/include/ATen/ops/asin_mps_dispatch.h' 2025-07-17T06:38:00.3999680Z adding 'torch/include/ATen/ops/asin_native.h' 2025-07-17T06:38:00.4000630Z adding 'torch/include/ATen/ops/asin_ops.h' 2025-07-17T06:38:00.4001520Z adding 'torch/include/ATen/ops/asinh.h' 2025-07-17T06:38:00.4002700Z adding 'torch/include/ATen/ops/asinh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.4003440Z adding 'torch/include/ATen/ops/asinh_cpu_dispatch.h' 2025-07-17T06:38:00.4004260Z adding 'torch/include/ATen/ops/asinh_cuda_dispatch.h' 2025-07-17T06:38:00.4005070Z adding 'torch/include/ATen/ops/asinh_meta.h' 2025-07-17T06:38:00.4006090Z adding 'torch/include/ATen/ops/asinh_meta_dispatch.h' 2025-07-17T06:38:00.4006910Z adding 'torch/include/ATen/ops/asinh_mps_dispatch.h' 2025-07-17T06:38:00.4007770Z adding 'torch/include/ATen/ops/asinh_native.h' 2025-07-17T06:38:00.4008740Z adding 'torch/include/ATen/ops/asinh_ops.h' 2025-07-17T06:38:00.4009810Z adding 'torch/include/ATen/ops/atan.h' 2025-07-17T06:38:00.4010710Z adding 'torch/include/ATen/ops/atan2.h' 2025-07-17T06:38:00.4011700Z adding 'torch/include/ATen/ops/atan2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.4012490Z adding 'torch/include/ATen/ops/atan2_cpu_dispatch.h' 2025-07-17T06:38:00.4013490Z adding 'torch/include/ATen/ops/atan2_cuda_dispatch.h' 2025-07-17T06:38:00.4014320Z adding 'torch/include/ATen/ops/atan2_meta.h' 2025-07-17T06:38:00.4015170Z adding 'torch/include/ATen/ops/atan2_meta_dispatch.h' 2025-07-17T06:38:00.4016010Z adding 'torch/include/ATen/ops/atan2_mps_dispatch.h' 2025-07-17T06:38:00.4017030Z adding 'torch/include/ATen/ops/atan2_native.h' 2025-07-17T06:38:00.4018030Z adding 'torch/include/ATen/ops/atan2_ops.h' 2025-07-17T06:38:00.4019030Z adding 'torch/include/ATen/ops/atan_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.4019760Z adding 'torch/include/ATen/ops/atan_cpu_dispatch.h' 2025-07-17T06:38:00.4020750Z adding 'torch/include/ATen/ops/atan_cuda_dispatch.h' 2025-07-17T06:38:00.4021600Z adding 'torch/include/ATen/ops/atan_meta.h' 2025-07-17T06:38:00.4022440Z adding 'torch/include/ATen/ops/atan_meta_dispatch.h' 2025-07-17T06:38:00.4023230Z adding 'torch/include/ATen/ops/atan_mps_dispatch.h' 2025-07-17T06:38:00.4024280Z adding 'torch/include/ATen/ops/atan_native.h' 2025-07-17T06:38:00.4025260Z adding 'torch/include/ATen/ops/atan_ops.h' 2025-07-17T06:38:00.4026150Z adding 'torch/include/ATen/ops/atanh.h' 2025-07-17T06:38:00.4027140Z adding 'torch/include/ATen/ops/atanh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.4028070Z adding 'torch/include/ATen/ops/atanh_cpu_dispatch.h' 2025-07-17T06:38:00.4028910Z adding 'torch/include/ATen/ops/atanh_cuda_dispatch.h' 2025-07-17T06:38:00.4029720Z adding 'torch/include/ATen/ops/atanh_meta.h' 2025-07-17T06:38:00.4030590Z adding 'torch/include/ATen/ops/atanh_meta_dispatch.h' 2025-07-17T06:38:00.4031610Z adding 'torch/include/ATen/ops/atanh_mps_dispatch.h' 2025-07-17T06:38:00.4032500Z adding 'torch/include/ATen/ops/atanh_native.h' 2025-07-17T06:38:00.4033470Z adding 'torch/include/ATen/ops/atanh_ops.h' 2025-07-17T06:38:00.4034360Z adding 'torch/include/ATen/ops/atleast_1d.h' 2025-07-17T06:38:00.4035530Z adding 'torch/include/ATen/ops/atleast_1d_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4036300Z adding 'torch/include/ATen/ops/atleast_1d_native.h' 2025-07-17T06:38:00.4037250Z adding 'torch/include/ATen/ops/atleast_1d_ops.h' 2025-07-17T06:38:00.4038130Z adding 'torch/include/ATen/ops/atleast_2d.h' 2025-07-17T06:38:00.4039260Z adding 'torch/include/ATen/ops/atleast_2d_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4040030Z adding 'torch/include/ATen/ops/atleast_2d_native.h' 2025-07-17T06:38:00.4040970Z adding 'torch/include/ATen/ops/atleast_2d_ops.h' 2025-07-17T06:38:00.4041830Z adding 'torch/include/ATen/ops/atleast_3d.h' 2025-07-17T06:38:00.4042970Z adding 'torch/include/ATen/ops/atleast_3d_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4043730Z adding 'torch/include/ATen/ops/atleast_3d_native.h' 2025-07-17T06:38:00.4044640Z adding 'torch/include/ATen/ops/atleast_3d_ops.h' 2025-07-17T06:38:00.4045610Z adding 'torch/include/ATen/ops/avg_pool1d.h' 2025-07-17T06:38:00.4046800Z adding 'torch/include/ATen/ops/avg_pool1d_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4047690Z adding 'torch/include/ATen/ops/avg_pool1d_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4048460Z adding 'torch/include/ATen/ops/avg_pool1d_native.h' 2025-07-17T06:38:00.4049450Z adding 'torch/include/ATen/ops/avg_pool1d_ops.h' 2025-07-17T06:38:00.4050630Z adding 'torch/include/ATen/ops/avg_pool2d.h' 2025-07-17T06:38:00.4051640Z adding 'torch/include/ATen/ops/avg_pool2d_backward.h' 2025-07-17T06:38:00.4052700Z adding 'torch/include/ATen/ops/avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.4053500Z adding 'torch/include/ATen/ops/avg_pool2d_backward_cpu_dispatch.h' 2025-07-17T06:38:00.4054580Z adding 'torch/include/ATen/ops/avg_pool2d_backward_cuda_dispatch.h' 2025-07-17T06:38:00.4055470Z adding 'torch/include/ATen/ops/avg_pool2d_backward_meta.h' 2025-07-17T06:38:00.4056370Z adding 'torch/include/ATen/ops/avg_pool2d_backward_meta_dispatch.h' 2025-07-17T06:38:00.4057270Z adding 'torch/include/ATen/ops/avg_pool2d_backward_mps_dispatch.h' 2025-07-17T06:38:00.4058350Z adding 'torch/include/ATen/ops/avg_pool2d_backward_native.h' 2025-07-17T06:38:00.4059410Z adding 'torch/include/ATen/ops/avg_pool2d_backward_ops.h' 2025-07-17T06:38:00.4060440Z adding 'torch/include/ATen/ops/avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.4061260Z adding 'torch/include/ATen/ops/avg_pool2d_cpu_dispatch.h' 2025-07-17T06:38:00.4062330Z adding 'torch/include/ATen/ops/avg_pool2d_cuda_dispatch.h' 2025-07-17T06:38:00.4063490Z adding 'torch/include/ATen/ops/avg_pool2d_meta.h' 2025-07-17T06:38:00.4064390Z adding 'torch/include/ATen/ops/avg_pool2d_meta_dispatch.h' 2025-07-17T06:38:00.4065240Z adding 'torch/include/ATen/ops/avg_pool2d_mps_dispatch.h' 2025-07-17T06:38:00.4066370Z adding 'torch/include/ATen/ops/avg_pool2d_native.h' 2025-07-17T06:38:00.4067400Z adding 'torch/include/ATen/ops/avg_pool2d_ops.h' 2025-07-17T06:38:00.4068390Z adding 'torch/include/ATen/ops/avg_pool3d.h' 2025-07-17T06:38:00.4069390Z adding 'torch/include/ATen/ops/avg_pool3d_backward.h' 2025-07-17T06:38:00.4070610Z adding 'torch/include/ATen/ops/avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.4071400Z adding 'torch/include/ATen/ops/avg_pool3d_backward_cpu_dispatch.h' 2025-07-17T06:38:00.4072240Z adding 'torch/include/ATen/ops/avg_pool3d_backward_cuda_dispatch.h' 2025-07-17T06:38:00.4073100Z adding 'torch/include/ATen/ops/avg_pool3d_backward_meta.h' 2025-07-17T06:38:00.4074150Z adding 'torch/include/ATen/ops/avg_pool3d_backward_meta_dispatch.h' 2025-07-17T06:38:00.4075070Z adding 'torch/include/ATen/ops/avg_pool3d_backward_native.h' 2025-07-17T06:38:00.4076090Z adding 'torch/include/ATen/ops/avg_pool3d_backward_ops.h' 2025-07-17T06:38:00.4077090Z adding 'torch/include/ATen/ops/avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.4078040Z adding 'torch/include/ATen/ops/avg_pool3d_cpu_dispatch.h' 2025-07-17T06:38:00.4078910Z adding 'torch/include/ATen/ops/avg_pool3d_cuda_dispatch.h' 2025-07-17T06:38:00.4079760Z adding 'torch/include/ATen/ops/avg_pool3d_meta.h' 2025-07-17T06:38:00.4080640Z adding 'torch/include/ATen/ops/avg_pool3d_meta_dispatch.h' 2025-07-17T06:38:00.4081760Z adding 'torch/include/ATen/ops/avg_pool3d_native.h' 2025-07-17T06:38:00.4082760Z adding 'torch/include/ATen/ops/avg_pool3d_ops.h' 2025-07-17T06:38:00.4083760Z adding 'torch/include/ATen/ops/baddbmm.h' 2025-07-17T06:38:00.4084800Z adding 'torch/include/ATen/ops/baddbmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.4085770Z adding 'torch/include/ATen/ops/baddbmm_cpu_dispatch.h' 2025-07-17T06:38:00.4086760Z adding 'torch/include/ATen/ops/baddbmm_cuda_dispatch.h' 2025-07-17T06:38:00.4087580Z adding 'torch/include/ATen/ops/baddbmm_meta.h' 2025-07-17T06:38:00.4088480Z adding 'torch/include/ATen/ops/baddbmm_meta_dispatch.h' 2025-07-17T06:38:00.4089510Z adding 'torch/include/ATen/ops/baddbmm_mps_dispatch.h' 2025-07-17T06:38:00.4090430Z adding 'torch/include/ATen/ops/baddbmm_native.h' 2025-07-17T06:38:00.4091590Z adding 'torch/include/ATen/ops/baddbmm_ops.h' 2025-07-17T06:38:00.4092660Z adding 'torch/include/ATen/ops/bartlett_window.h' 2025-07-17T06:38:00.4093890Z adding 'torch/include/ATen/ops/bartlett_window_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4094700Z adding 'torch/include/ATen/ops/bartlett_window_native.h' 2025-07-17T06:38:00.4095770Z adding 'torch/include/ATen/ops/bartlett_window_ops.h' 2025-07-17T06:38:00.4096660Z adding 'torch/include/ATen/ops/batch_norm.h' 2025-07-17T06:38:00.4097790Z adding 'torch/include/ATen/ops/batch_norm_backward.h' 2025-07-17T06:38:00.4098770Z adding 'torch/include/ATen/ops/batch_norm_backward_cpu_dispatch.h' 2025-07-17T06:38:00.4099590Z adding 'torch/include/ATen/ops/batch_norm_backward_cuda_dispatch.h' 2025-07-17T06:38:00.4100530Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt.h' 2025-07-17T06:38:00.4101750Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4102600Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_cuda_dispatch.h' 2025-07-17T06:38:00.4103420Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_native.h' 2025-07-17T06:38:00.4104440Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_ops.h' 2025-07-17T06:38:00.4105490Z adding 'torch/include/ATen/ops/batch_norm_backward_mps_dispatch.h' 2025-07-17T06:38:00.4106410Z adding 'torch/include/ATen/ops/batch_norm_backward_native.h' 2025-07-17T06:38:00.4107430Z adding 'torch/include/ATen/ops/batch_norm_backward_ops.h' 2025-07-17T06:38:00.4108450Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce.h' 2025-07-17T06:38:00.4109660Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4110490Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_cuda_dispatch.h' 2025-07-17T06:38:00.4111350Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_native.h' 2025-07-17T06:38:00.4112400Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_ops.h' 2025-07-17T06:38:00.4113520Z adding 'torch/include/ATen/ops/batch_norm_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4114410Z adding 'torch/include/ATen/ops/batch_norm_elemt.h' 2025-07-17T06:38:00.4115320Z adding 'torch/include/ATen/ops/batch_norm_elemt_cuda_dispatch.h' 2025-07-17T06:38:00.4116160Z adding 'torch/include/ATen/ops/batch_norm_elemt_native.h' 2025-07-17T06:38:00.4117330Z adding 'torch/include/ATen/ops/batch_norm_elemt_ops.h' 2025-07-17T06:38:00.4118330Z adding 'torch/include/ATen/ops/batch_norm_gather_stats.h' 2025-07-17T06:38:00.4119330Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4120170Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_cuda_dispatch.h' 2025-07-17T06:38:00.4121200Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_native.h' 2025-07-17T06:38:00.4122240Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_ops.h' 2025-07-17T06:38:00.4123230Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts.h' 2025-07-17T06:38:00.4124260Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4125300Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_cuda_dispatch.h' 2025-07-17T06:38:00.4126120Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_native.h' 2025-07-17T06:38:00.4127160Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_ops.h' 2025-07-17T06:38:00.4127980Z adding 'torch/include/ATen/ops/batch_norm_native.h' 2025-07-17T06:38:00.4129120Z adding 'torch/include/ATen/ops/batch_norm_ops.h' 2025-07-17T06:38:00.4130040Z adding 'torch/include/ATen/ops/batch_norm_stats.h' 2025-07-17T06:38:00.4131020Z adding 'torch/include/ATen/ops/batch_norm_stats_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4131840Z adding 'torch/include/ATen/ops/batch_norm_stats_cuda_dispatch.h' 2025-07-17T06:38:00.4132850Z adding 'torch/include/ATen/ops/batch_norm_stats_native.h' 2025-07-17T06:38:00.4133830Z adding 'torch/include/ATen/ops/batch_norm_stats_ops.h' 2025-07-17T06:38:00.4134770Z adding 'torch/include/ATen/ops/batch_norm_update_stats.h' 2025-07-17T06:38:00.4135760Z adding 'torch/include/ATen/ops/batch_norm_update_stats_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4136770Z adding 'torch/include/ATen/ops/batch_norm_update_stats_cpu_dispatch.h' 2025-07-17T06:38:00.4137600Z adding 'torch/include/ATen/ops/batch_norm_update_stats_cuda_dispatch.h' 2025-07-17T06:38:00.4138460Z adding 'torch/include/ATen/ops/batch_norm_update_stats_native.h' 2025-07-17T06:38:00.4139450Z adding 'torch/include/ATen/ops/batch_norm_update_stats_ops.h' 2025-07-17T06:38:00.4140640Z adding 'torch/include/ATen/ops/bernoulli.h' 2025-07-17T06:38:00.4141710Z adding 'torch/include/ATen/ops/bernoulli_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4142610Z adding 'torch/include/ATen/ops/bernoulli_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.4143420Z adding 'torch/include/ATen/ops/bernoulli_cpu_dispatch.h' 2025-07-17T06:38:00.4144430Z adding 'torch/include/ATen/ops/bernoulli_cuda_dispatch.h' 2025-07-17T06:38:00.4145300Z adding 'torch/include/ATen/ops/bernoulli_meta_dispatch.h' 2025-07-17T06:38:00.4146160Z adding 'torch/include/ATen/ops/bernoulli_mps_dispatch.h' 2025-07-17T06:38:00.4147050Z adding 'torch/include/ATen/ops/bernoulli_native.h' 2025-07-17T06:38:00.4148680Z adding 'torch/include/ATen/ops/bernoulli_ops.h' 2025-07-17T06:38:00.4149350Z adding 'torch/include/ATen/ops/bilinear.h' 2025-07-17T06:38:00.4150310Z adding 'torch/include/ATen/ops/bilinear_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4151060Z adding 'torch/include/ATen/ops/bilinear_native.h' 2025-07-17T06:38:00.4152160Z adding 'torch/include/ATen/ops/bilinear_ops.h' 2025-07-17T06:38:00.4153150Z adding 'torch/include/ATen/ops/binary_cross_entropy.h' 2025-07-17T06:38:00.4154110Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward.h' 2025-07-17T06:38:00.4155410Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_cpu_dispatch.h' 2025-07-17T06:38:00.4156480Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_cuda_dispatch.h' 2025-07-17T06:38:00.4157360Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_mps_dispatch.h' 2025-07-17T06:38:00.4158250Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_native.h' 2025-07-17T06:38:00.4159240Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_ops.h' 2025-07-17T06:38:00.4160330Z adding 'torch/include/ATen/ops/binary_cross_entropy_cpu_dispatch.h' 2025-07-17T06:38:00.4161190Z adding 'torch/include/ATen/ops/binary_cross_entropy_cuda_dispatch.h' 2025-07-17T06:38:00.4162030Z adding 'torch/include/ATen/ops/binary_cross_entropy_mps_dispatch.h' 2025-07-17T06:38:00.4162900Z adding 'torch/include/ATen/ops/binary_cross_entropy_native.h' 2025-07-17T06:38:00.4164060Z adding 'torch/include/ATen/ops/binary_cross_entropy_ops.h' 2025-07-17T06:38:00.4165060Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits.h' 2025-07-17T06:38:00.4166050Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4166880Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_native.h' 2025-07-17T06:38:00.4168030Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_ops.h' 2025-07-17T06:38:00.4169030Z adding 'torch/include/ATen/ops/bincount.h' 2025-07-17T06:38:00.4170070Z adding 'torch/include/ATen/ops/bincount_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4170860Z adding 'torch/include/ATen/ops/bincount_cpu_dispatch.h' 2025-07-17T06:38:00.4171870Z adding 'torch/include/ATen/ops/bincount_cuda_dispatch.h' 2025-07-17T06:38:00.4172690Z adding 'torch/include/ATen/ops/bincount_mps_dispatch.h' 2025-07-17T06:38:00.4173550Z adding 'torch/include/ATen/ops/bincount_native.h' 2025-07-17T06:38:00.4174500Z adding 'torch/include/ATen/ops/bincount_ops.h' 2025-07-17T06:38:00.4175580Z adding 'torch/include/ATen/ops/binomial.h' 2025-07-17T06:38:00.4176580Z adding 'torch/include/ATen/ops/binomial_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4177360Z adding 'torch/include/ATen/ops/binomial_cpu_dispatch.h' 2025-07-17T06:38:00.4178180Z adding 'torch/include/ATen/ops/binomial_cuda_dispatch.h' 2025-07-17T06:38:00.4179190Z adding 'torch/include/ATen/ops/binomial_native.h' 2025-07-17T06:38:00.4180160Z adding 'torch/include/ATen/ops/binomial_ops.h' 2025-07-17T06:38:00.4181140Z adding 'torch/include/ATen/ops/bitwise_and.h' 2025-07-17T06:38:00.4182150Z adding 'torch/include/ATen/ops/bitwise_and_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4183230Z adding 'torch/include/ATen/ops/bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.4183990Z adding 'torch/include/ATen/ops/bitwise_and_cpu_dispatch.h' 2025-07-17T06:38:00.4184810Z adding 'torch/include/ATen/ops/bitwise_and_cuda_dispatch.h' 2025-07-17T06:38:00.4185620Z adding 'torch/include/ATen/ops/bitwise_and_meta.h' 2025-07-17T06:38:00.4186700Z adding 'torch/include/ATen/ops/bitwise_and_meta_dispatch.h' 2025-07-17T06:38:00.4187510Z adding 'torch/include/ATen/ops/bitwise_and_mps_dispatch.h' 2025-07-17T06:38:00.4188380Z adding 'torch/include/ATen/ops/bitwise_and_native.h' 2025-07-17T06:38:00.4189570Z adding 'torch/include/ATen/ops/bitwise_and_ops.h' 2025-07-17T06:38:00.4190790Z adding 'torch/include/ATen/ops/bitwise_left_shift.h' 2025-07-17T06:38:00.4191800Z adding 'torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4192730Z adding 'torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.4193460Z adding 'torch/include/ATen/ops/bitwise_left_shift_cpu_dispatch.h' 2025-07-17T06:38:00.4194490Z adding 'torch/include/ATen/ops/bitwise_left_shift_cuda_dispatch.h' 2025-07-17T06:38:00.4195320Z adding 'torch/include/ATen/ops/bitwise_left_shift_meta.h' 2025-07-17T06:38:00.4196150Z adding 'torch/include/ATen/ops/bitwise_left_shift_meta_dispatch.h' 2025-07-17T06:38:00.4196980Z adding 'torch/include/ATen/ops/bitwise_left_shift_mps_dispatch.h' 2025-07-17T06:38:00.4198040Z adding 'torch/include/ATen/ops/bitwise_left_shift_native.h' 2025-07-17T06:38:00.4199270Z adding 'torch/include/ATen/ops/bitwise_left_shift_ops.h' 2025-07-17T06:38:00.4200160Z adding 'torch/include/ATen/ops/bitwise_not.h' 2025-07-17T06:38:00.4201150Z adding 'torch/include/ATen/ops/bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.4202070Z adding 'torch/include/ATen/ops/bitwise_not_cpu_dispatch.h' 2025-07-17T06:38:00.4202910Z adding 'torch/include/ATen/ops/bitwise_not_cuda_dispatch.h' 2025-07-17T06:38:00.4203720Z adding 'torch/include/ATen/ops/bitwise_not_meta.h' 2025-07-17T06:38:00.4204570Z adding 'torch/include/ATen/ops/bitwise_not_meta_dispatch.h' 2025-07-17T06:38:00.4205560Z adding 'torch/include/ATen/ops/bitwise_not_mps_dispatch.h' 2025-07-17T06:38:00.4206400Z adding 'torch/include/ATen/ops/bitwise_not_native.h' 2025-07-17T06:38:00.4207350Z adding 'torch/include/ATen/ops/bitwise_not_ops.h' 2025-07-17T06:38:00.4208350Z adding 'torch/include/ATen/ops/bitwise_or.h' 2025-07-17T06:38:00.4209560Z adding 'torch/include/ATen/ops/bitwise_or_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4210460Z adding 'torch/include/ATen/ops/bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.4211190Z adding 'torch/include/ATen/ops/bitwise_or_cpu_dispatch.h' 2025-07-17T06:38:00.4212020Z adding 'torch/include/ATen/ops/bitwise_or_cuda_dispatch.h' 2025-07-17T06:38:00.4213010Z adding 'torch/include/ATen/ops/bitwise_or_meta.h' 2025-07-17T06:38:00.4213850Z adding 'torch/include/ATen/ops/bitwise_or_meta_dispatch.h' 2025-07-17T06:38:00.4214680Z adding 'torch/include/ATen/ops/bitwise_or_mps_dispatch.h' 2025-07-17T06:38:00.4215540Z adding 'torch/include/ATen/ops/bitwise_or_native.h' 2025-07-17T06:38:00.4216960Z adding 'torch/include/ATen/ops/bitwise_or_ops.h' 2025-07-17T06:38:00.4217960Z adding 'torch/include/ATen/ops/bitwise_right_shift.h' 2025-07-17T06:38:00.4218960Z adding 'torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4219870Z adding 'torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.4220800Z adding 'torch/include/ATen/ops/bitwise_right_shift_cpu_dispatch.h' 2025-07-17T06:38:00.4221630Z adding 'torch/include/ATen/ops/bitwise_right_shift_cuda_dispatch.h' 2025-07-17T06:38:00.4222450Z adding 'torch/include/ATen/ops/bitwise_right_shift_meta.h' 2025-07-17T06:38:00.4223300Z adding 'torch/include/ATen/ops/bitwise_right_shift_meta_dispatch.h' 2025-07-17T06:38:00.4224280Z adding 'torch/include/ATen/ops/bitwise_right_shift_mps_dispatch.h' 2025-07-17T06:38:00.4225150Z adding 'torch/include/ATen/ops/bitwise_right_shift_native.h' 2025-07-17T06:38:00.4226370Z adding 'torch/include/ATen/ops/bitwise_right_shift_ops.h' 2025-07-17T06:38:00.4227370Z adding 'torch/include/ATen/ops/bitwise_xor.h' 2025-07-17T06:38:00.4228590Z adding 'torch/include/ATen/ops/bitwise_xor_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4229470Z adding 'torch/include/ATen/ops/bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.4230210Z adding 'torch/include/ATen/ops/bitwise_xor_cpu_dispatch.h' 2025-07-17T06:38:00.4231040Z adding 'torch/include/ATen/ops/bitwise_xor_cuda_dispatch.h' 2025-07-17T06:38:00.4232030Z adding 'torch/include/ATen/ops/bitwise_xor_meta.h' 2025-07-17T06:38:00.4232910Z adding 'torch/include/ATen/ops/bitwise_xor_meta_dispatch.h' 2025-07-17T06:38:00.4233710Z adding 'torch/include/ATen/ops/bitwise_xor_mps_dispatch.h' 2025-07-17T06:38:00.4234590Z adding 'torch/include/ATen/ops/bitwise_xor_native.h' 2025-07-17T06:38:00.4235970Z adding 'torch/include/ATen/ops/bitwise_xor_ops.h' 2025-07-17T06:38:00.4237020Z adding 'torch/include/ATen/ops/blackman_window.h' 2025-07-17T06:38:00.4238090Z adding 'torch/include/ATen/ops/blackman_window_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4238860Z adding 'torch/include/ATen/ops/blackman_window_native.h' 2025-07-17T06:38:00.4240110Z adding 'torch/include/ATen/ops/blackman_window_ops.h' 2025-07-17T06:38:00.4241010Z adding 'torch/include/ATen/ops/block_diag.h' 2025-07-17T06:38:00.4241980Z adding 'torch/include/ATen/ops/block_diag_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4242720Z adding 'torch/include/ATen/ops/block_diag_native.h' 2025-07-17T06:38:00.4243840Z adding 'torch/include/ATen/ops/block_diag_ops.h' 2025-07-17T06:38:00.4244780Z adding 'torch/include/ATen/ops/bmm.h' 2025-07-17T06:38:00.4245770Z adding 'torch/include/ATen/ops/bmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.4246530Z adding 'torch/include/ATen/ops/bmm_cpu_dispatch.h' 2025-07-17T06:38:00.4247590Z adding 'torch/include/ATen/ops/bmm_cuda_dispatch.h' 2025-07-17T06:38:00.4248430Z adding 'torch/include/ATen/ops/bmm_meta.h' 2025-07-17T06:38:00.4249280Z adding 'torch/include/ATen/ops/bmm_meta_dispatch.h' 2025-07-17T06:38:00.4250100Z adding 'torch/include/ATen/ops/bmm_mps_dispatch.h' 2025-07-17T06:38:00.4251190Z adding 'torch/include/ATen/ops/bmm_native.h' 2025-07-17T06:38:00.4252220Z adding 'torch/include/ATen/ops/bmm_ops.h' 2025-07-17T06:38:00.4253120Z adding 'torch/include/ATen/ops/broadcast_tensors.h' 2025-07-17T06:38:00.4254080Z adding 'torch/include/ATen/ops/broadcast_tensors_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4255010Z adding 'torch/include/ATen/ops/broadcast_tensors_native.h' 2025-07-17T06:38:00.4255920Z adding 'torch/include/ATen/ops/broadcast_tensors_ops.h' 2025-07-17T06:38:00.4256830Z adding 'torch/include/ATen/ops/broadcast_to.h' 2025-07-17T06:38:00.4257800Z adding 'torch/include/ATen/ops/broadcast_to_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4258730Z adding 'torch/include/ATen/ops/broadcast_to_native.h' 2025-07-17T06:38:00.4259630Z adding 'torch/include/ATen/ops/broadcast_to_ops.h' 2025-07-17T06:38:00.4260620Z adding 'torch/include/ATen/ops/bucketize.h' 2025-07-17T06:38:00.4261610Z adding 'torch/include/ATen/ops/bucketize_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4262620Z adding 'torch/include/ATen/ops/bucketize_cpu_dispatch.h' 2025-07-17T06:38:00.4263470Z adding 'torch/include/ATen/ops/bucketize_cuda_dispatch.h' 2025-07-17T06:38:00.4264300Z adding 'torch/include/ATen/ops/bucketize_mps_dispatch.h' 2025-07-17T06:38:00.4265200Z adding 'torch/include/ATen/ops/bucketize_native.h' 2025-07-17T06:38:00.4266450Z adding 'torch/include/ATen/ops/bucketize_ops.h' 2025-07-17T06:38:00.4267320Z adding 'torch/include/ATen/ops/can_cast.h' 2025-07-17T06:38:00.4268270Z adding 'torch/include/ATen/ops/can_cast_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4269020Z adding 'torch/include/ATen/ops/can_cast_native.h' 2025-07-17T06:38:00.4270080Z adding 'torch/include/ATen/ops/can_cast_ops.h' 2025-07-17T06:38:00.4270940Z adding 'torch/include/ATen/ops/cartesian_prod.h' 2025-07-17T06:38:00.4271910Z adding 'torch/include/ATen/ops/cartesian_prod_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4272670Z adding 'torch/include/ATen/ops/cartesian_prod_native.h' 2025-07-17T06:38:00.4273720Z adding 'torch/include/ATen/ops/cartesian_prod_ops.h' 2025-07-17T06:38:00.4274660Z adding 'torch/include/ATen/ops/cat.h' 2025-07-17T06:38:00.4275660Z adding 'torch/include/ATen/ops/cat_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.4276500Z adding 'torch/include/ATen/ops/cat_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4277480Z adding 'torch/include/ATen/ops/cat_cpu_dispatch.h' 2025-07-17T06:38:00.4278330Z adding 'torch/include/ATen/ops/cat_cuda_dispatch.h' 2025-07-17T06:38:00.4279530Z adding 'torch/include/ATen/ops/cat_meta.h' 2025-07-17T06:38:00.4280390Z adding 'torch/include/ATen/ops/cat_meta_dispatch.h' 2025-07-17T06:38:00.4281400Z adding 'torch/include/ATen/ops/cat_mps_dispatch.h' 2025-07-17T06:38:00.4282350Z adding 'torch/include/ATen/ops/cat_native.h' 2025-07-17T06:38:00.4283360Z adding 'torch/include/ATen/ops/cat_ops.h' 2025-07-17T06:38:00.4284280Z adding 'torch/include/ATen/ops/cauchy.h' 2025-07-17T06:38:00.4285450Z adding 'torch/include/ATen/ops/cauchy_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4286280Z adding 'torch/include/ATen/ops/cauchy_cpu_dispatch.h' 2025-07-17T06:38:00.4287110Z adding 'torch/include/ATen/ops/cauchy_cuda_dispatch.h' 2025-07-17T06:38:00.4287930Z adding 'torch/include/ATen/ops/cauchy_meta_dispatch.h' 2025-07-17T06:38:00.4288970Z adding 'torch/include/ATen/ops/cauchy_native.h' 2025-07-17T06:38:00.4290000Z adding 'torch/include/ATen/ops/cauchy_ops.h' 2025-07-17T06:38:00.4290880Z adding 'torch/include/ATen/ops/ccol_indices.h' 2025-07-17T06:38:00.4291870Z adding 'torch/include/ATen/ops/ccol_indices_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4292860Z adding 'torch/include/ATen/ops/ccol_indices_copy.h' 2025-07-17T06:38:00.4293850Z adding 'torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4294760Z adding 'torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.4295470Z adding 'torch/include/ATen/ops/ccol_indices_copy_native.h' 2025-07-17T06:38:00.4296580Z adding 'torch/include/ATen/ops/ccol_indices_copy_ops.h' 2025-07-17T06:38:00.4297460Z adding 'torch/include/ATen/ops/ccol_indices_native.h' 2025-07-17T06:38:00.4298340Z adding 'torch/include/ATen/ops/ccol_indices_ops.h' 2025-07-17T06:38:00.4299220Z adding 'torch/include/ATen/ops/cdist.h' 2025-07-17T06:38:00.4300410Z adding 'torch/include/ATen/ops/cdist_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4301200Z adding 'torch/include/ATen/ops/cdist_native.h' 2025-07-17T06:38:00.4302090Z adding 'torch/include/ATen/ops/cdist_ops.h' 2025-07-17T06:38:00.4302990Z adding 'torch/include/ATen/ops/ceil.h' 2025-07-17T06:38:00.4304170Z adding 'torch/include/ATen/ops/ceil_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.4304940Z adding 'torch/include/ATen/ops/ceil_cpu_dispatch.h' 2025-07-17T06:38:00.4305770Z adding 'torch/include/ATen/ops/ceil_cuda_dispatch.h' 2025-07-17T06:38:00.4306600Z adding 'torch/include/ATen/ops/ceil_meta.h' 2025-07-17T06:38:00.4307650Z adding 'torch/include/ATen/ops/ceil_meta_dispatch.h' 2025-07-17T06:38:00.4308520Z adding 'torch/include/ATen/ops/ceil_mps_dispatch.h' 2025-07-17T06:38:00.4309360Z adding 'torch/include/ATen/ops/ceil_native.h' 2025-07-17T06:38:00.4310340Z adding 'torch/include/ATen/ops/ceil_ops.h' 2025-07-17T06:38:00.4311490Z adding 'torch/include/ATen/ops/celu.h' 2025-07-17T06:38:00.4312430Z adding 'torch/include/ATen/ops/celu_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4313170Z adding 'torch/include/ATen/ops/celu_native.h' 2025-07-17T06:38:00.4314150Z adding 'torch/include/ATen/ops/celu_ops.h' 2025-07-17T06:38:00.4315220Z adding 'torch/include/ATen/ops/chain_matmul.h' 2025-07-17T06:38:00.4316220Z adding 'torch/include/ATen/ops/chain_matmul_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4317010Z adding 'torch/include/ATen/ops/chain_matmul_native.h' 2025-07-17T06:38:00.4317950Z adding 'torch/include/ATen/ops/chain_matmul_ops.h' 2025-07-17T06:38:00.4318950Z adding 'torch/include/ATen/ops/chalf.h' 2025-07-17T06:38:00.4319910Z adding 'torch/include/ATen/ops/chalf_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4320660Z adding 'torch/include/ATen/ops/chalf_native.h' 2025-07-17T06:38:00.4321580Z adding 'torch/include/ATen/ops/chalf_ops.h' 2025-07-17T06:38:00.4322770Z adding 'torch/include/ATen/ops/channel_shuffle.h' 2025-07-17T06:38:00.4323790Z adding 'torch/include/ATen/ops/channel_shuffle_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4324570Z adding 'torch/include/ATen/ops/channel_shuffle_cpu_dispatch.h' 2025-07-17T06:38:00.4325390Z adding 'torch/include/ATen/ops/channel_shuffle_cuda_dispatch.h' 2025-07-17T06:38:00.4326400Z adding 'torch/include/ATen/ops/channel_shuffle_native.h' 2025-07-17T06:38:00.4327360Z adding 'torch/include/ATen/ops/channel_shuffle_ops.h' 2025-07-17T06:38:00.4328260Z adding 'torch/include/ATen/ops/cholesky.h' 2025-07-17T06:38:00.4329160Z adding 'torch/include/ATen/ops/cholesky_cpu_dispatch.h' 2025-07-17T06:38:00.4330240Z adding 'torch/include/ATen/ops/cholesky_cuda_dispatch.h' 2025-07-17T06:38:00.4331210Z adding 'torch/include/ATen/ops/cholesky_inverse.h' 2025-07-17T06:38:00.4332110Z adding 'torch/include/ATen/ops/cholesky_inverse_cpu_dispatch.h' 2025-07-17T06:38:00.4332970Z adding 'torch/include/ATen/ops/cholesky_inverse_cuda_dispatch.h' 2025-07-17T06:38:00.4334000Z adding 'torch/include/ATen/ops/cholesky_inverse_native.h' 2025-07-17T06:38:00.4335000Z adding 'torch/include/ATen/ops/cholesky_inverse_ops.h' 2025-07-17T06:38:00.4335840Z adding 'torch/include/ATen/ops/cholesky_mps_dispatch.h' 2025-07-17T06:38:00.4336660Z adding 'torch/include/ATen/ops/cholesky_native.h' 2025-07-17T06:38:00.4337790Z adding 'torch/include/ATen/ops/cholesky_ops.h' 2025-07-17T06:38:00.4338740Z adding 'torch/include/ATen/ops/cholesky_solve.h' 2025-07-17T06:38:00.4339900Z adding 'torch/include/ATen/ops/cholesky_solve_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4340710Z adding 'torch/include/ATen/ops/cholesky_solve_native.h' 2025-07-17T06:38:00.4341950Z adding 'torch/include/ATen/ops/cholesky_solve_ops.h' 2025-07-17T06:38:00.4342880Z adding 'torch/include/ATen/ops/choose_qparams_optimized.h' 2025-07-17T06:38:00.4343950Z adding 'torch/include/ATen/ops/choose_qparams_optimized_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4344780Z adding 'torch/include/ATen/ops/choose_qparams_optimized_native.h' 2025-07-17T06:38:00.4345950Z adding 'torch/include/ATen/ops/choose_qparams_optimized_ops.h' 2025-07-17T06:38:00.4346790Z adding 'torch/include/ATen/ops/chunk.h' 2025-07-17T06:38:00.4347770Z adding 'torch/include/ATen/ops/chunk_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4348570Z adding 'torch/include/ATen/ops/chunk_native.h' 2025-07-17T06:38:00.4349860Z adding 'torch/include/ATen/ops/chunk_ops.h' 2025-07-17T06:38:00.4350920Z adding 'torch/include/ATen/ops/clamp.h' 2025-07-17T06:38:00.4352040Z adding 'torch/include/ATen/ops/clamp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.4353020Z adding 'torch/include/ATen/ops/clamp_cpu_dispatch.h' 2025-07-17T06:38:00.4354240Z adding 'torch/include/ATen/ops/clamp_cuda_dispatch.h' 2025-07-17T06:38:00.4355270Z adding 'torch/include/ATen/ops/clamp_max.h' 2025-07-17T06:38:00.4356370Z adding 'torch/include/ATen/ops/clamp_max_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.4357240Z adding 'torch/include/ATen/ops/clamp_max_cpu_dispatch.h' 2025-07-17T06:38:00.4358400Z adding 'torch/include/ATen/ops/clamp_max_cuda_dispatch.h' 2025-07-17T06:38:00.4359310Z adding 'torch/include/ATen/ops/clamp_max_meta.h' 2025-07-17T06:38:00.4360330Z adding 'torch/include/ATen/ops/clamp_max_meta_dispatch.h' 2025-07-17T06:38:00.4361220Z adding 'torch/include/ATen/ops/clamp_max_mps_dispatch.h' 2025-07-17T06:38:00.4362310Z adding 'torch/include/ATen/ops/clamp_max_native.h' 2025-07-17T06:38:00.4363500Z adding 'torch/include/ATen/ops/clamp_max_ops.h' 2025-07-17T06:38:00.4364440Z adding 'torch/include/ATen/ops/clamp_meta.h' 2025-07-17T06:38:00.4365550Z adding 'torch/include/ATen/ops/clamp_meta_dispatch.h' 2025-07-17T06:38:00.4366730Z adding 'torch/include/ATen/ops/clamp_min.h' 2025-07-17T06:38:00.4367840Z adding 'torch/include/ATen/ops/clamp_min_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.4368760Z adding 'torch/include/ATen/ops/clamp_min_cpu_dispatch.h' 2025-07-17T06:38:00.4369650Z adding 'torch/include/ATen/ops/clamp_min_cuda_dispatch.h' 2025-07-17T06:38:00.4370680Z adding 'torch/include/ATen/ops/clamp_min_meta.h' 2025-07-17T06:38:00.4371590Z adding 'torch/include/ATen/ops/clamp_min_meta_dispatch.h' 2025-07-17T06:38:00.4372460Z adding 'torch/include/ATen/ops/clamp_min_mps_dispatch.h' 2025-07-17T06:38:00.4373370Z adding 'torch/include/ATen/ops/clamp_min_native.h' 2025-07-17T06:38:00.4374690Z adding 'torch/include/ATen/ops/clamp_min_ops.h' 2025-07-17T06:38:00.4375970Z adding 'torch/include/ATen/ops/clamp_mps_dispatch.h' 2025-07-17T06:38:00.4376890Z adding 'torch/include/ATen/ops/clamp_native.h' 2025-07-17T06:38:00.4378070Z adding 'torch/include/ATen/ops/clamp_ops.h' 2025-07-17T06:38:00.4379280Z adding 'torch/include/ATen/ops/clip.h' 2025-07-17T06:38:00.4380330Z adding 'torch/include/ATen/ops/clip_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4381150Z adding 'torch/include/ATen/ops/clip_native.h' 2025-07-17T06:38:00.4382300Z adding 'torch/include/ATen/ops/clip_ops.h' 2025-07-17T06:38:00.4383420Z adding 'torch/include/ATen/ops/clone.h' 2025-07-17T06:38:00.4384460Z adding 'torch/include/ATen/ops/clone_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4385270Z adding 'torch/include/ATen/ops/clone_native.h' 2025-07-17T06:38:00.4386250Z adding 'torch/include/ATen/ops/clone_ops.h' 2025-07-17T06:38:00.4387290Z adding 'torch/include/ATen/ops/coalesce.h' 2025-07-17T06:38:00.4388310Z adding 'torch/include/ATen/ops/coalesce_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4389080Z adding 'torch/include/ATen/ops/coalesce_native.h' 2025-07-17T06:38:00.4389990Z adding 'torch/include/ATen/ops/coalesce_ops.h' 2025-07-17T06:38:00.4391330Z adding 'torch/include/ATen/ops/col2im.h' 2025-07-17T06:38:00.4392310Z adding 'torch/include/ATen/ops/col2im_cpu_dispatch.h' 2025-07-17T06:38:00.4393200Z adding 'torch/include/ATen/ops/col2im_cuda_dispatch.h' 2025-07-17T06:38:00.4394110Z adding 'torch/include/ATen/ops/col2im_mps_dispatch.h' 2025-07-17T06:38:00.4395160Z adding 'torch/include/ATen/ops/col2im_native.h' 2025-07-17T06:38:00.4396190Z adding 'torch/include/ATen/ops/col2im_ops.h' 2025-07-17T06:38:00.4397040Z adding 'torch/include/ATen/ops/col_indices.h' 2025-07-17T06:38:00.4398000Z adding 'torch/include/ATen/ops/col_indices_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4399040Z adding 'torch/include/ATen/ops/col_indices_copy.h' 2025-07-17T06:38:00.4400050Z adding 'torch/include/ATen/ops/col_indices_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4400980Z adding 'torch/include/ATen/ops/col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.4401710Z adding 'torch/include/ATen/ops/col_indices_copy_native.h' 2025-07-17T06:38:00.4402840Z adding 'torch/include/ATen/ops/col_indices_copy_ops.h' 2025-07-17T06:38:00.4403690Z adding 'torch/include/ATen/ops/col_indices_native.h' 2025-07-17T06:38:00.4404600Z adding 'torch/include/ATen/ops/col_indices_ops.h' 2025-07-17T06:38:00.4405540Z adding 'torch/include/ATen/ops/column_stack.h' 2025-07-17T06:38:00.4408530Z adding 'torch/include/ATen/ops/column_stack_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4409800Z adding 'torch/include/ATen/ops/column_stack_native.h' 2025-07-17T06:38:00.4411090Z adding 'torch/include/ATen/ops/column_stack_ops.h' 2025-07-17T06:38:00.4412180Z adding 'torch/include/ATen/ops/combinations.h' 2025-07-17T06:38:00.4413360Z adding 'torch/include/ATen/ops/combinations_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4414290Z adding 'torch/include/ATen/ops/combinations_native.h' 2025-07-17T06:38:00.4415330Z adding 'torch/include/ATen/ops/combinations_ops.h' 2025-07-17T06:38:00.4416340Z adding 'torch/include/ATen/ops/complex.h' 2025-07-17T06:38:00.4417540Z adding 'torch/include/ATen/ops/complex_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4418400Z adding 'torch/include/ATen/ops/complex_cpu_dispatch.h' 2025-07-17T06:38:00.4419320Z adding 'torch/include/ATen/ops/complex_cuda_dispatch.h' 2025-07-17T06:38:00.4420300Z adding 'torch/include/ATen/ops/complex_mps_dispatch.h' 2025-07-17T06:38:00.4421140Z adding 'torch/include/ATen/ops/complex_native.h' 2025-07-17T06:38:00.4422140Z adding 'torch/include/ATen/ops/complex_ops.h' 2025-07-17T06:38:00.4423150Z adding 'torch/include/ATen/ops/concat.h' 2025-07-17T06:38:00.4424220Z adding 'torch/include/ATen/ops/concat_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4425030Z adding 'torch/include/ATen/ops/concat_native.h' 2025-07-17T06:38:00.4426090Z adding 'torch/include/ATen/ops/concat_ops.h' 2025-07-17T06:38:00.4427080Z adding 'torch/include/ATen/ops/concatenate.h' 2025-07-17T06:38:00.4428180Z adding 'torch/include/ATen/ops/concatenate_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4429030Z adding 'torch/include/ATen/ops/concatenate_native.h' 2025-07-17T06:38:00.4430090Z adding 'torch/include/ATen/ops/concatenate_ops.h' 2025-07-17T06:38:00.4430960Z adding 'torch/include/ATen/ops/conj.h' 2025-07-17T06:38:00.4431930Z adding 'torch/include/ATen/ops/conj_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4432690Z adding 'torch/include/ATen/ops/conj_native.h' 2025-07-17T06:38:00.4433620Z adding 'torch/include/ATen/ops/conj_ops.h' 2025-07-17T06:38:00.4434560Z adding 'torch/include/ATen/ops/conj_physical.h' 2025-07-17T06:38:00.4435560Z adding 'torch/include/ATen/ops/conj_physical_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4436450Z adding 'torch/include/ATen/ops/conj_physical_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4437250Z adding 'torch/include/ATen/ops/conj_physical_cpu_dispatch.h' 2025-07-17T06:38:00.4438120Z adding 'torch/include/ATen/ops/conj_physical_cuda_dispatch.h' 2025-07-17T06:38:00.4438960Z adding 'torch/include/ATen/ops/conj_physical_mps_dispatch.h' 2025-07-17T06:38:00.4439810Z adding 'torch/include/ATen/ops/conj_physical_native.h' 2025-07-17T06:38:00.4440810Z adding 'torch/include/ATen/ops/conj_physical_ops.h' 2025-07-17T06:38:00.4441920Z adding 'torch/include/ATen/ops/constant_pad_nd.h' 2025-07-17T06:38:00.4447860Z adding 'torch/include/ATen/ops/constant_pad_nd_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4448110Z adding 'torch/include/ATen/ops/constant_pad_nd_mps_dispatch.h' 2025-07-17T06:38:00.4448230Z adding 'torch/include/ATen/ops/constant_pad_nd_native.h' 2025-07-17T06:38:00.4448320Z adding 'torch/include/ATen/ops/constant_pad_nd_ops.h' 2025-07-17T06:38:00.4448400Z adding 'torch/include/ATen/ops/contiguous.h' 2025-07-17T06:38:00.4448570Z adding 'torch/include/ATen/ops/contiguous_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4448650Z adding 'torch/include/ATen/ops/contiguous_native.h' 2025-07-17T06:38:00.4448950Z adding 'torch/include/ATen/ops/contiguous_ops.h' 2025-07-17T06:38:00.4450050Z adding 'torch/include/ATen/ops/conv1d.h' 2025-07-17T06:38:00.4451120Z adding 'torch/include/ATen/ops/conv1d_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4451920Z adding 'torch/include/ATen/ops/conv1d_native.h' 2025-07-17T06:38:00.4452920Z adding 'torch/include/ATen/ops/conv1d_ops.h' 2025-07-17T06:38:00.4454030Z adding 'torch/include/ATen/ops/conv2d.h' 2025-07-17T06:38:00.4455080Z adding 'torch/include/ATen/ops/conv2d_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4455900Z adding 'torch/include/ATen/ops/conv2d_native.h' 2025-07-17T06:38:00.4456910Z adding 'torch/include/ATen/ops/conv2d_ops.h' 2025-07-17T06:38:00.4458010Z adding 'torch/include/ATen/ops/conv3d.h' 2025-07-17T06:38:00.4459050Z adding 'torch/include/ATen/ops/conv3d_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4459860Z adding 'torch/include/ATen/ops/conv3d_native.h' 2025-07-17T06:38:00.4460860Z adding 'torch/include/ATen/ops/conv3d_ops.h' 2025-07-17T06:38:00.4462110Z adding 'torch/include/ATen/ops/conv_depthwise3d.h' 2025-07-17T06:38:00.4463290Z adding 'torch/include/ATen/ops/conv_depthwise3d_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4464090Z adding 'torch/include/ATen/ops/conv_depthwise3d_cuda_dispatch.h' 2025-07-17T06:38:00.4464990Z adding 'torch/include/ATen/ops/conv_depthwise3d_native.h' 2025-07-17T06:38:00.4466020Z adding 'torch/include/ATen/ops/conv_depthwise3d_ops.h' 2025-07-17T06:38:00.4466970Z adding 'torch/include/ATen/ops/conv_tbc.h' 2025-07-17T06:38:00.4467890Z adding 'torch/include/ATen/ops/conv_tbc_backward.h' 2025-07-17T06:38:00.4468890Z adding 'torch/include/ATen/ops/conv_tbc_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4469700Z adding 'torch/include/ATen/ops/conv_tbc_backward_native.h' 2025-07-17T06:38:00.4470640Z adding 'torch/include/ATen/ops/conv_tbc_backward_ops.h' 2025-07-17T06:38:00.4471590Z adding 'torch/include/ATen/ops/conv_tbc_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4472370Z adding 'torch/include/ATen/ops/conv_tbc_native.h' 2025-07-17T06:38:00.4473350Z adding 'torch/include/ATen/ops/conv_tbc_ops.h' 2025-07-17T06:38:00.4474400Z adding 'torch/include/ATen/ops/conv_transpose1d.h' 2025-07-17T06:38:00.4475430Z adding 'torch/include/ATen/ops/conv_transpose1d_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4476220Z adding 'torch/include/ATen/ops/conv_transpose1d_native.h' 2025-07-17T06:38:00.4477170Z adding 'torch/include/ATen/ops/conv_transpose1d_ops.h' 2025-07-17T06:38:00.4478200Z adding 'torch/include/ATen/ops/conv_transpose2d.h' 2025-07-17T06:38:00.4479210Z adding 'torch/include/ATen/ops/conv_transpose2d_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4479990Z adding 'torch/include/ATen/ops/conv_transpose2d_native.h' 2025-07-17T06:38:00.4480950Z adding 'torch/include/ATen/ops/conv_transpose2d_ops.h' 2025-07-17T06:38:00.4481950Z adding 'torch/include/ATen/ops/conv_transpose3d.h' 2025-07-17T06:38:00.4483010Z adding 'torch/include/ATen/ops/conv_transpose3d_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4483800Z adding 'torch/include/ATen/ops/conv_transpose3d_native.h' 2025-07-17T06:38:00.4484760Z adding 'torch/include/ATen/ops/conv_transpose3d_ops.h' 2025-07-17T06:38:00.4486010Z adding 'torch/include/ATen/ops/convolution.h' 2025-07-17T06:38:00.4487690Z adding 'torch/include/ATen/ops/convolution_backward.h' 2025-07-17T06:38:00.4488700Z adding 'torch/include/ATen/ops/convolution_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4489570Z adding 'torch/include/ATen/ops/convolution_backward_cuda_dispatch.h' 2025-07-17T06:38:00.4490490Z adding 'torch/include/ATen/ops/convolution_backward_native.h' 2025-07-17T06:38:00.4491570Z adding 'torch/include/ATen/ops/convolution_backward_ops.h' 2025-07-17T06:38:00.4493040Z adding 'torch/include/ATen/ops/convolution_backward_overrideable.h' 2025-07-17T06:38:00.4494220Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4495030Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_native.h' 2025-07-17T06:38:00.4496130Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_ops.h' 2025-07-17T06:38:00.4497170Z adding 'torch/include/ATen/ops/convolution_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4498000Z adding 'torch/include/ATen/ops/convolution_native.h' 2025-07-17T06:38:00.4499030Z adding 'torch/include/ATen/ops/convolution_ops.h' 2025-07-17T06:38:00.4500310Z adding 'torch/include/ATen/ops/convolution_overrideable.h' 2025-07-17T06:38:00.4501440Z adding 'torch/include/ATen/ops/convolution_overrideable_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4502260Z adding 'torch/include/ATen/ops/convolution_overrideable_native.h' 2025-07-17T06:38:00.4503280Z adding 'torch/include/ATen/ops/convolution_overrideable_ops.h' 2025-07-17T06:38:00.4504150Z adding 'torch/include/ATen/ops/copy.h' 2025-07-17T06:38:00.4505140Z adding 'torch/include/ATen/ops/copy_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4506120Z adding 'torch/include/ATen/ops/copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.4506870Z adding 'torch/include/ATen/ops/copy_meta_dispatch.h' 2025-07-17T06:38:00.4507770Z adding 'torch/include/ATen/ops/copy_native.h' 2025-07-17T06:38:00.4508770Z adding 'torch/include/ATen/ops/copy_ops.h' 2025-07-17T06:38:00.4509740Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse.h' 2025-07-17T06:38:00.4510730Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4511540Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_meta_dispatch.h' 2025-07-17T06:38:00.4512370Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_native.h' 2025-07-17T06:38:00.4513390Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_ops.h' 2025-07-17T06:38:00.4514300Z adding 'torch/include/ATen/ops/copysign.h' 2025-07-17T06:38:00.4515310Z adding 'torch/include/ATen/ops/copysign_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4516220Z adding 'torch/include/ATen/ops/copysign_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.4516990Z adding 'torch/include/ATen/ops/copysign_cpu_dispatch.h' 2025-07-17T06:38:00.4517840Z adding 'torch/include/ATen/ops/copysign_cuda_dispatch.h' 2025-07-17T06:38:00.4518680Z adding 'torch/include/ATen/ops/copysign_meta.h' 2025-07-17T06:38:00.4519530Z adding 'torch/include/ATen/ops/copysign_meta_dispatch.h' 2025-07-17T06:38:00.4520330Z adding 'torch/include/ATen/ops/copysign_mps_dispatch.h' 2025-07-17T06:38:00.4521190Z adding 'torch/include/ATen/ops/copysign_native.h' 2025-07-17T06:38:00.4522290Z adding 'torch/include/ATen/ops/copysign_ops.h' 2025-07-17T06:38:00.4523160Z adding 'torch/include/ATen/ops/corrcoef.h' 2025-07-17T06:38:00.4524110Z adding 'torch/include/ATen/ops/corrcoef_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4524860Z adding 'torch/include/ATen/ops/corrcoef_native.h' 2025-07-17T06:38:00.4525740Z adding 'torch/include/ATen/ops/corrcoef_ops.h' 2025-07-17T06:38:00.4526640Z adding 'torch/include/ATen/ops/cos.h' 2025-07-17T06:38:00.4527640Z adding 'torch/include/ATen/ops/cos_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.4528400Z adding 'torch/include/ATen/ops/cos_cpu_dispatch.h' 2025-07-17T06:38:00.4529250Z adding 'torch/include/ATen/ops/cos_cuda_dispatch.h' 2025-07-17T06:38:00.4530040Z adding 'torch/include/ATen/ops/cos_meta.h' 2025-07-17T06:38:00.4530890Z adding 'torch/include/ATen/ops/cos_meta_dispatch.h' 2025-07-17T06:38:00.4531690Z adding 'torch/include/ATen/ops/cos_mps_dispatch.h' 2025-07-17T06:38:00.4532520Z adding 'torch/include/ATen/ops/cos_native.h' 2025-07-17T06:38:00.4533490Z adding 'torch/include/ATen/ops/cos_ops.h' 2025-07-17T06:38:00.4534390Z adding 'torch/include/ATen/ops/cosh.h' 2025-07-17T06:38:00.4535390Z adding 'torch/include/ATen/ops/cosh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.4536120Z adding 'torch/include/ATen/ops/cosh_cpu_dispatch.h' 2025-07-17T06:38:00.4536970Z adding 'torch/include/ATen/ops/cosh_cuda_dispatch.h' 2025-07-17T06:38:00.4537750Z adding 'torch/include/ATen/ops/cosh_meta.h' 2025-07-17T06:38:00.4538640Z adding 'torch/include/ATen/ops/cosh_meta_dispatch.h' 2025-07-17T06:38:00.4539460Z adding 'torch/include/ATen/ops/cosh_mps_dispatch.h' 2025-07-17T06:38:00.4540350Z adding 'torch/include/ATen/ops/cosh_native.h' 2025-07-17T06:38:00.4541300Z adding 'torch/include/ATen/ops/cosh_ops.h' 2025-07-17T06:38:00.4542230Z adding 'torch/include/ATen/ops/cosine_embedding_loss.h' 2025-07-17T06:38:00.4543220Z adding 'torch/include/ATen/ops/cosine_embedding_loss_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4543980Z adding 'torch/include/ATen/ops/cosine_embedding_loss_native.h' 2025-07-17T06:38:00.4544970Z adding 'torch/include/ATen/ops/cosine_embedding_loss_ops.h' 2025-07-17T06:38:00.4545820Z adding 'torch/include/ATen/ops/cosine_similarity.h' 2025-07-17T06:38:00.4546800Z adding 'torch/include/ATen/ops/cosine_similarity_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4547560Z adding 'torch/include/ATen/ops/cosine_similarity_native.h' 2025-07-17T06:38:00.4548480Z adding 'torch/include/ATen/ops/cosine_similarity_ops.h' 2025-07-17T06:38:00.4549420Z adding 'torch/include/ATen/ops/count_nonzero.h' 2025-07-17T06:38:00.4550440Z adding 'torch/include/ATen/ops/count_nonzero_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4551230Z adding 'torch/include/ATen/ops/count_nonzero_cpu_dispatch.h' 2025-07-17T06:38:00.4552070Z adding 'torch/include/ATen/ops/count_nonzero_cuda_dispatch.h' 2025-07-17T06:38:00.4552880Z adding 'torch/include/ATen/ops/count_nonzero_mps_dispatch.h' 2025-07-17T06:38:00.4553800Z adding 'torch/include/ATen/ops/count_nonzero_native.h' 2025-07-17T06:38:00.4554850Z adding 'torch/include/ATen/ops/count_nonzero_ops.h' 2025-07-17T06:38:00.4555730Z adding 'torch/include/ATen/ops/cov.h' 2025-07-17T06:38:00.4556710Z adding 'torch/include/ATen/ops/cov_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4557480Z adding 'torch/include/ATen/ops/cov_native.h' 2025-07-17T06:38:00.4558410Z adding 'torch/include/ATen/ops/cov_ops.h' 2025-07-17T06:38:00.4559320Z adding 'torch/include/ATen/ops/cross.h' 2025-07-17T06:38:00.4560310Z adding 'torch/include/ATen/ops/cross_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4561230Z adding 'torch/include/ATen/ops/cross_entropy_loss.h' 2025-07-17T06:38:00.4562250Z adding 'torch/include/ATen/ops/cross_entropy_loss_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4563030Z adding 'torch/include/ATen/ops/cross_entropy_loss_native.h' 2025-07-17T06:38:00.4564000Z adding 'torch/include/ATen/ops/cross_entropy_loss_ops.h' 2025-07-17T06:38:00.4564810Z adding 'torch/include/ATen/ops/cross_native.h' 2025-07-17T06:38:00.4565780Z adding 'torch/include/ATen/ops/cross_ops.h' 2025-07-17T06:38:00.4566640Z adding 'torch/include/ATen/ops/crow_indices.h' 2025-07-17T06:38:00.4567600Z adding 'torch/include/ATen/ops/crow_indices_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4568430Z adding 'torch/include/ATen/ops/crow_indices_copy.h' 2025-07-17T06:38:00.4569410Z adding 'torch/include/ATen/ops/crow_indices_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4570330Z adding 'torch/include/ATen/ops/crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.4571110Z adding 'torch/include/ATen/ops/crow_indices_copy_native.h' 2025-07-17T06:38:00.4572020Z adding 'torch/include/ATen/ops/crow_indices_copy_ops.h' 2025-07-17T06:38:00.4572870Z adding 'torch/include/ATen/ops/crow_indices_native.h' 2025-07-17T06:38:00.4573770Z adding 'torch/include/ATen/ops/crow_indices_ops.h' 2025-07-17T06:38:00.4574690Z adding 'torch/include/ATen/ops/ctc_loss.h' 2025-07-17T06:38:00.4575670Z adding 'torch/include/ATen/ops/ctc_loss_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4576460Z adding 'torch/include/ATen/ops/ctc_loss_native.h' 2025-07-17T06:38:00.4577480Z adding 'torch/include/ATen/ops/ctc_loss_ops.h' 2025-07-17T06:38:00.4578440Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator.h' 2025-07-17T06:38:00.4579370Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward.h' 2025-07-17T06:38:00.4580500Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4581230Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_cuda_dispatch.h' 2025-07-17T06:38:00.4582030Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_native.h' 2025-07-17T06:38:00.4583000Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_ops.h' 2025-07-17T06:38:00.4583970Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4584780Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_cuda_dispatch.h' 2025-07-17T06:38:00.4585630Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_native.h' 2025-07-17T06:38:00.4586580Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_ops.h' 2025-07-17T06:38:00.4587570Z adding 'torch/include/ATen/ops/cudnn_batch_norm.h' 2025-07-17T06:38:00.4588670Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward.h' 2025-07-17T06:38:00.4589700Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4590530Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_cuda_dispatch.h' 2025-07-17T06:38:00.4591410Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_native.h' 2025-07-17T06:38:00.4592490Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_ops.h' 2025-07-17T06:38:00.4593500Z adding 'torch/include/ATen/ops/cudnn_batch_norm_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4594350Z adding 'torch/include/ATen/ops/cudnn_batch_norm_cuda_dispatch.h' 2025-07-17T06:38:00.4595200Z adding 'torch/include/ATen/ops/cudnn_batch_norm_native.h' 2025-07-17T06:38:00.4599890Z adding 'torch/include/ATen/ops/cudnn_batch_norm_ops.h' 2025-07-17T06:38:00.4601110Z adding 'torch/include/ATen/ops/cudnn_convolution.h' 2025-07-17T06:38:00.4603380Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu.h' 2025-07-17T06:38:00.4604300Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4605230Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_cuda_dispatch.h' 2025-07-17T06:38:00.4606160Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_native.h' 2025-07-17T06:38:00.4607360Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_ops.h' 2025-07-17T06:38:00.4608410Z adding 'torch/include/ATen/ops/cudnn_convolution_cuda_dispatch.h' 2025-07-17T06:38:00.4609280Z adding 'torch/include/ATen/ops/cudnn_convolution_native.h' 2025-07-17T06:38:00.4610320Z adding 'torch/include/ATen/ops/cudnn_convolution_ops.h' 2025-07-17T06:38:00.4611680Z adding 'torch/include/ATen/ops/cudnn_convolution_relu.h' 2025-07-17T06:38:00.4612830Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4613690Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_cuda_dispatch.h' 2025-07-17T06:38:00.4614560Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_native.h' 2025-07-17T06:38:00.4615680Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_ops.h' 2025-07-17T06:38:00.4617030Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose.h' 2025-07-17T06:38:00.4618170Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4619000Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_cuda_dispatch.h' 2025-07-17T06:38:00.4620050Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_native.h' 2025-07-17T06:38:00.4621130Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_ops.h' 2025-07-17T06:38:00.4622070Z adding 'torch/include/ATen/ops/cudnn_grid_sampler.h' 2025-07-17T06:38:00.4623100Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward.h' 2025-07-17T06:38:00.4624270Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4625110Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_cuda_dispatch.h' 2025-07-17T06:38:00.4625950Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_native.h' 2025-07-17T06:38:00.4626950Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_ops.h' 2025-07-17T06:38:00.4628040Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4628890Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_cuda_dispatch.h' 2025-07-17T06:38:00.4629720Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_native.h' 2025-07-17T06:38:00.4630670Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_ops.h' 2025-07-17T06:38:00.4631650Z adding 'torch/include/ATen/ops/cudnn_is_acceptable.h' 2025-07-17T06:38:00.4632650Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4633430Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_native.h' 2025-07-17T06:38:00.4634330Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_ops.h' 2025-07-17T06:38:00.4635470Z adding 'torch/include/ATen/ops/cummax.h' 2025-07-17T06:38:00.4636450Z adding 'torch/include/ATen/ops/cummax_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4637340Z adding 'torch/include/ATen/ops/cummax_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4638130Z adding 'torch/include/ATen/ops/cummax_native.h' 2025-07-17T06:38:00.4639320Z adding 'torch/include/ATen/ops/cummax_ops.h' 2025-07-17T06:38:00.4640250Z adding 'torch/include/ATen/ops/cummaxmin_backward.h' 2025-07-17T06:38:00.4641230Z adding 'torch/include/ATen/ops/cummaxmin_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4642000Z adding 'torch/include/ATen/ops/cummaxmin_backward_native.h' 2025-07-17T06:38:00.4643040Z adding 'torch/include/ATen/ops/cummaxmin_backward_ops.h' 2025-07-17T06:38:00.4644020Z adding 'torch/include/ATen/ops/cummin.h' 2025-07-17T06:38:00.4645010Z adding 'torch/include/ATen/ops/cummin_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4645910Z adding 'torch/include/ATen/ops/cummin_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4646870Z adding 'torch/include/ATen/ops/cummin_native.h' 2025-07-17T06:38:00.4647880Z adding 'torch/include/ATen/ops/cummin_ops.h' 2025-07-17T06:38:00.4648860Z adding 'torch/include/ATen/ops/cumprod.h' 2025-07-17T06:38:00.4649750Z adding 'torch/include/ATen/ops/cumprod_backward.h' 2025-07-17T06:38:00.4650830Z adding 'torch/include/ATen/ops/cumprod_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4651620Z adding 'torch/include/ATen/ops/cumprod_backward_native.h' 2025-07-17T06:38:00.4652520Z adding 'torch/include/ATen/ops/cumprod_backward_ops.h' 2025-07-17T06:38:00.4653500Z adding 'torch/include/ATen/ops/cumprod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.4654480Z adding 'torch/include/ATen/ops/cumprod_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4655320Z adding 'torch/include/ATen/ops/cumprod_cpu_dispatch.h' 2025-07-17T06:38:00.4656150Z adding 'torch/include/ATen/ops/cumprod_cuda_dispatch.h' 2025-07-17T06:38:00.4656990Z adding 'torch/include/ATen/ops/cumprod_meta.h' 2025-07-17T06:38:00.4657940Z adding 'torch/include/ATen/ops/cumprod_meta_dispatch.h' 2025-07-17T06:38:00.4658830Z adding 'torch/include/ATen/ops/cumprod_mps_dispatch.h' 2025-07-17T06:38:00.4659690Z adding 'torch/include/ATen/ops/cumprod_native.h' 2025-07-17T06:38:00.4660830Z adding 'torch/include/ATen/ops/cumprod_ops.h' 2025-07-17T06:38:00.4661940Z adding 'torch/include/ATen/ops/cumsum.h' 2025-07-17T06:38:00.4662950Z adding 'torch/include/ATen/ops/cumsum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.4663800Z adding 'torch/include/ATen/ops/cumsum_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4664590Z adding 'torch/include/ATen/ops/cumsum_cpu_dispatch.h' 2025-07-17T06:38:00.4665560Z adding 'torch/include/ATen/ops/cumsum_cuda_dispatch.h' 2025-07-17T06:38:00.4666410Z adding 'torch/include/ATen/ops/cumsum_meta.h' 2025-07-17T06:38:00.4667270Z adding 'torch/include/ATen/ops/cumsum_meta_dispatch.h' 2025-07-17T06:38:00.4668130Z adding 'torch/include/ATen/ops/cumsum_mps_dispatch.h' 2025-07-17T06:38:00.4669110Z adding 'torch/include/ATen/ops/cumsum_native.h' 2025-07-17T06:38:00.4670260Z adding 'torch/include/ATen/ops/cumsum_ops.h' 2025-07-17T06:38:00.4671160Z adding 'torch/include/ATen/ops/cumulative_trapezoid.h' 2025-07-17T06:38:00.4672150Z adding 'torch/include/ATen/ops/cumulative_trapezoid_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4673040Z adding 'torch/include/ATen/ops/cumulative_trapezoid_native.h' 2025-07-17T06:38:00.4673980Z adding 'torch/include/ATen/ops/cumulative_trapezoid_ops.h' 2025-07-17T06:38:00.4674780Z adding 'torch/include/ATen/ops/data.h' 2025-07-17T06:38:00.4675750Z adding 'torch/include/ATen/ops/data_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4676600Z adding 'torch/include/ATen/ops/data_native.h' 2025-07-17T06:38:00.4677520Z adding 'torch/include/ATen/ops/data_ops.h' 2025-07-17T06:38:00.4678390Z adding 'torch/include/ATen/ops/deg2rad.h' 2025-07-17T06:38:00.4679390Z adding 'torch/include/ATen/ops/deg2rad_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4680260Z adding 'torch/include/ATen/ops/deg2rad_native.h' 2025-07-17T06:38:00.4681220Z adding 'torch/include/ATen/ops/deg2rad_ops.h' 2025-07-17T06:38:00.4682040Z adding 'torch/include/ATen/ops/dense_dim.h' 2025-07-17T06:38:00.4683010Z adding 'torch/include/ATen/ops/dense_dim_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4683900Z adding 'torch/include/ATen/ops/dense_dim_native.h' 2025-07-17T06:38:00.4684830Z adding 'torch/include/ATen/ops/dense_dim_ops.h' 2025-07-17T06:38:00.4685800Z adding 'torch/include/ATen/ops/dequantize.h' 2025-07-17T06:38:00.4686800Z adding 'torch/include/ATen/ops/dequantize_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4687740Z adding 'torch/include/ATen/ops/dequantize_cpu_dispatch.h' 2025-07-17T06:38:00.4688580Z adding 'torch/include/ATen/ops/dequantize_cuda_dispatch.h' 2025-07-17T06:38:00.4689470Z adding 'torch/include/ATen/ops/dequantize_native.h' 2025-07-17T06:38:00.4690500Z adding 'torch/include/ATen/ops/dequantize_ops.h' 2025-07-17T06:38:00.4691520Z adding 'torch/include/ATen/ops/det.h' 2025-07-17T06:38:00.4692500Z adding 'torch/include/ATen/ops/det_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4693230Z adding 'torch/include/ATen/ops/det_native.h' 2025-07-17T06:38:00.4694120Z adding 'torch/include/ATen/ops/det_ops.h' 2025-07-17T06:38:00.4695120Z adding 'torch/include/ATen/ops/detach.h' 2025-07-17T06:38:00.4696100Z adding 'torch/include/ATen/ops/detach_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4696900Z adding 'torch/include/ATen/ops/detach_copy.h' 2025-07-17T06:38:00.4697890Z adding 'torch/include/ATen/ops/detach_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4698930Z adding 'torch/include/ATen/ops/detach_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.4699660Z adding 'torch/include/ATen/ops/detach_copy_native.h' 2025-07-17T06:38:00.4700610Z adding 'torch/include/ATen/ops/detach_copy_ops.h' 2025-07-17T06:38:00.4701500Z adding 'torch/include/ATen/ops/detach_native.h' 2025-07-17T06:38:00.4702500Z adding 'torch/include/ATen/ops/detach_ops.h' 2025-07-17T06:38:00.4703390Z adding 'torch/include/ATen/ops/diag.h' 2025-07-17T06:38:00.4704400Z adding 'torch/include/ATen/ops/diag_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4705230Z adding 'torch/include/ATen/ops/diag_embed.h' 2025-07-17T06:38:00.4706340Z adding 'torch/include/ATen/ops/diag_embed_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4707280Z adding 'torch/include/ATen/ops/diag_embed_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.4708020Z adding 'torch/include/ATen/ops/diag_embed_native.h' 2025-07-17T06:38:00.4708970Z adding 'torch/include/ATen/ops/diag_embed_ops.h' 2025-07-17T06:38:00.4709960Z adding 'torch/include/ATen/ops/diag_native.h' 2025-07-17T06:38:00.4710970Z adding 'torch/include/ATen/ops/diag_ops.h' 2025-07-17T06:38:00.4711840Z adding 'torch/include/ATen/ops/diagflat.h' 2025-07-17T06:38:00.4712790Z adding 'torch/include/ATen/ops/diagflat_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4713640Z adding 'torch/include/ATen/ops/diagflat_native.h' 2025-07-17T06:38:00.4714530Z adding 'torch/include/ATen/ops/diagflat_ops.h' 2025-07-17T06:38:00.4715420Z adding 'torch/include/ATen/ops/diagonal.h' 2025-07-17T06:38:00.4716540Z adding 'torch/include/ATen/ops/diagonal_backward.h' 2025-07-17T06:38:00.4717730Z adding 'torch/include/ATen/ops/diagonal_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4718550Z adding 'torch/include/ATen/ops/diagonal_backward_native.h' 2025-07-17T06:38:00.4719530Z adding 'torch/include/ATen/ops/diagonal_backward_ops.h' 2025-07-17T06:38:00.4720490Z adding 'torch/include/ATen/ops/diagonal_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4721460Z adding 'torch/include/ATen/ops/diagonal_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4722310Z adding 'torch/include/ATen/ops/diagonal_copy.h' 2025-07-17T06:38:00.4723310Z adding 'torch/include/ATen/ops/diagonal_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4724200Z adding 'torch/include/ATen/ops/diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.4725040Z adding 'torch/include/ATen/ops/diagonal_copy_native.h' 2025-07-17T06:38:00.4726020Z adding 'torch/include/ATen/ops/diagonal_copy_ops.h' 2025-07-17T06:38:00.4726860Z adding 'torch/include/ATen/ops/diagonal_native.h' 2025-07-17T06:38:00.4727810Z adding 'torch/include/ATen/ops/diagonal_ops.h' 2025-07-17T06:38:00.4728860Z adding 'torch/include/ATen/ops/diagonal_scatter.h' 2025-07-17T06:38:00.4729840Z adding 'torch/include/ATen/ops/diagonal_scatter_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4730780Z adding 'torch/include/ATen/ops/diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.4731500Z adding 'torch/include/ATen/ops/diagonal_scatter_native.h' 2025-07-17T06:38:00.4732580Z adding 'torch/include/ATen/ops/diagonal_scatter_ops.h' 2025-07-17T06:38:00.4733510Z adding 'torch/include/ATen/ops/diff.h' 2025-07-17T06:38:00.4734500Z adding 'torch/include/ATen/ops/diff_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4735280Z adding 'torch/include/ATen/ops/diff_native.h' 2025-07-17T06:38:00.4736380Z adding 'torch/include/ATen/ops/diff_ops.h' 2025-07-17T06:38:00.4737280Z adding 'torch/include/ATen/ops/digamma.h' 2025-07-17T06:38:00.4738260Z adding 'torch/include/ATen/ops/digamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.4739040Z adding 'torch/include/ATen/ops/digamma_cpu_dispatch.h' 2025-07-17T06:38:00.4740010Z adding 'torch/include/ATen/ops/digamma_cuda_dispatch.h' 2025-07-17T06:38:00.4740830Z adding 'torch/include/ATen/ops/digamma_meta.h' 2025-07-17T06:38:00.4741670Z adding 'torch/include/ATen/ops/digamma_meta_dispatch.h' 2025-07-17T06:38:00.4742480Z adding 'torch/include/ATen/ops/digamma_mps_dispatch.h' 2025-07-17T06:38:00.4743410Z adding 'torch/include/ATen/ops/digamma_native.h' 2025-07-17T06:38:00.4744400Z adding 'torch/include/ATen/ops/digamma_ops.h' 2025-07-17T06:38:00.4745300Z adding 'torch/include/ATen/ops/dist.h' 2025-07-17T06:38:00.4746270Z adding 'torch/include/ATen/ops/dist_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4747170Z adding 'torch/include/ATen/ops/dist_native.h' 2025-07-17T06:38:00.4748100Z adding 'torch/include/ATen/ops/dist_ops.h' 2025-07-17T06:38:00.4749140Z adding 'torch/include/ATen/ops/div.h' 2025-07-17T06:38:00.4750170Z adding 'torch/include/ATen/ops/div_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4751210Z adding 'torch/include/ATen/ops/div_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.4752010Z adding 'torch/include/ATen/ops/div_cpu_dispatch.h' 2025-07-17T06:38:00.4752860Z adding 'torch/include/ATen/ops/div_cuda_dispatch.h' 2025-07-17T06:38:00.4753710Z adding 'torch/include/ATen/ops/div_meta.h' 2025-07-17T06:38:00.4754690Z adding 'torch/include/ATen/ops/div_meta_dispatch.h' 2025-07-17T06:38:00.4755550Z adding 'torch/include/ATen/ops/div_mps_dispatch.h' 2025-07-17T06:38:00.4756510Z adding 'torch/include/ATen/ops/div_native.h' 2025-07-17T06:38:00.4757870Z adding 'torch/include/ATen/ops/div_ops.h' 2025-07-17T06:38:00.4759010Z adding 'torch/include/ATen/ops/divide.h' 2025-07-17T06:38:00.4760040Z adding 'torch/include/ATen/ops/divide_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4760860Z adding 'torch/include/ATen/ops/divide_native.h' 2025-07-17T06:38:00.4762130Z adding 'torch/include/ATen/ops/divide_ops.h' 2025-07-17T06:38:00.4763160Z adding 'torch/include/ATen/ops/dot.h' 2025-07-17T06:38:00.4764170Z adding 'torch/include/ATen/ops/dot_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4764990Z adding 'torch/include/ATen/ops/dot_cpu_dispatch.h' 2025-07-17T06:38:00.4765810Z adding 'torch/include/ATen/ops/dot_cuda_dispatch.h' 2025-07-17T06:38:00.4766740Z adding 'torch/include/ATen/ops/dot_mps_dispatch.h' 2025-07-17T06:38:00.4767610Z adding 'torch/include/ATen/ops/dot_native.h' 2025-07-17T06:38:00.4768520Z adding 'torch/include/ATen/ops/dot_ops.h' 2025-07-17T06:38:00.4769450Z adding 'torch/include/ATen/ops/dropout.h' 2025-07-17T06:38:00.4770480Z adding 'torch/include/ATen/ops/dropout_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4771270Z adding 'torch/include/ATen/ops/dropout_native.h' 2025-07-17T06:38:00.4772200Z adding 'torch/include/ATen/ops/dropout_ops.h' 2025-07-17T06:38:00.4773080Z adding 'torch/include/ATen/ops/dsplit.h' 2025-07-17T06:38:00.4774160Z adding 'torch/include/ATen/ops/dsplit_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4774950Z adding 'torch/include/ATen/ops/dsplit_native.h' 2025-07-17T06:38:00.4775910Z adding 'torch/include/ATen/ops/dsplit_ops.h' 2025-07-17T06:38:00.4776770Z adding 'torch/include/ATen/ops/dstack.h' 2025-07-17T06:38:00.4777860Z adding 'torch/include/ATen/ops/dstack_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4778630Z adding 'torch/include/ATen/ops/dstack_native.h' 2025-07-17T06:38:00.4779540Z adding 'torch/include/ATen/ops/dstack_ops.h' 2025-07-17T06:38:00.4780420Z adding 'torch/include/ATen/ops/einsum.h' 2025-07-17T06:38:00.4781490Z adding 'torch/include/ATen/ops/einsum_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4782270Z adding 'torch/include/ATen/ops/einsum_native.h' 2025-07-17T06:38:00.4783170Z adding 'torch/include/ATen/ops/einsum_ops.h' 2025-07-17T06:38:00.4784090Z adding 'torch/include/ATen/ops/elu.h' 2025-07-17T06:38:00.4785180Z adding 'torch/include/ATen/ops/elu_backward.h' 2025-07-17T06:38:00.4786230Z adding 'torch/include/ATen/ops/elu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.4787040Z adding 'torch/include/ATen/ops/elu_backward_cpu_dispatch.h' 2025-07-17T06:38:00.4787930Z adding 'torch/include/ATen/ops/elu_backward_cuda_dispatch.h' 2025-07-17T06:38:00.4788870Z adding 'torch/include/ATen/ops/elu_backward_meta.h' 2025-07-17T06:38:00.4789790Z adding 'torch/include/ATen/ops/elu_backward_meta_dispatch.h' 2025-07-17T06:38:00.4790610Z adding 'torch/include/ATen/ops/elu_backward_mps_dispatch.h' 2025-07-17T06:38:00.4791470Z adding 'torch/include/ATen/ops/elu_backward_native.h' 2025-07-17T06:38:00.4792600Z adding 'torch/include/ATen/ops/elu_backward_ops.h' 2025-07-17T06:38:00.4793660Z adding 'torch/include/ATen/ops/elu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.4794440Z adding 'torch/include/ATen/ops/elu_cpu_dispatch.h' 2025-07-17T06:38:00.4795270Z adding 'torch/include/ATen/ops/elu_cuda_dispatch.h' 2025-07-17T06:38:00.4796250Z adding 'torch/include/ATen/ops/elu_meta.h' 2025-07-17T06:38:00.4797110Z adding 'torch/include/ATen/ops/elu_meta_dispatch.h' 2025-07-17T06:38:00.4797940Z adding 'torch/include/ATen/ops/elu_mps_dispatch.h' 2025-07-17T06:38:00.4798780Z adding 'torch/include/ATen/ops/elu_native.h' 2025-07-17T06:38:00.4799910Z adding 'torch/include/ATen/ops/elu_ops.h' 2025-07-17T06:38:00.4801070Z adding 'torch/include/ATen/ops/embedding.h' 2025-07-17T06:38:00.4802070Z adding 'torch/include/ATen/ops/embedding_backward.h' 2025-07-17T06:38:00.4803080Z adding 'torch/include/ATen/ops/embedding_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4804000Z adding 'torch/include/ATen/ops/embedding_backward_native.h' 2025-07-17T06:38:00.4804970Z adding 'torch/include/ATen/ops/embedding_backward_ops.h' 2025-07-17T06:38:00.4805930Z adding 'torch/include/ATen/ops/embedding_bag.h' 2025-07-17T06:38:00.4806950Z adding 'torch/include/ATen/ops/embedding_bag_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4807860Z adding 'torch/include/ATen/ops/embedding_bag_native.h' 2025-07-17T06:38:00.4808910Z adding 'torch/include/ATen/ops/embedding_bag_ops.h' 2025-07-17T06:38:00.4809950Z adding 'torch/include/ATen/ops/embedding_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4811030Z adding 'torch/include/ATen/ops/embedding_dense_backward.h' 2025-07-17T06:38:00.4812230Z adding 'torch/include/ATen/ops/embedding_dense_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4813080Z adding 'torch/include/ATen/ops/embedding_dense_backward_cpu_dispatch.h' 2025-07-17T06:38:00.4813960Z adding 'torch/include/ATen/ops/embedding_dense_backward_cuda_dispatch.h' 2025-07-17T06:38:00.4814770Z adding 'torch/include/ATen/ops/embedding_dense_backward_mps_dispatch.h' 2025-07-17T06:38:00.4815750Z adding 'torch/include/ATen/ops/embedding_dense_backward_native.h' 2025-07-17T06:38:00.4816770Z adding 'torch/include/ATen/ops/embedding_dense_backward_ops.h' 2025-07-17T06:38:00.4817670Z adding 'torch/include/ATen/ops/embedding_native.h' 2025-07-17T06:38:00.4818680Z adding 'torch/include/ATen/ops/embedding_ops.h' 2025-07-17T06:38:00.4820310Z adding 'torch/include/ATen/ops/embedding_renorm.h' 2025-07-17T06:38:00.4821250Z adding 'torch/include/ATen/ops/embedding_renorm_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4822090Z adding 'torch/include/ATen/ops/embedding_renorm_cpu_dispatch.h' 2025-07-17T06:38:00.4822910Z adding 'torch/include/ATen/ops/embedding_renorm_cuda_dispatch.h' 2025-07-17T06:38:00.4823840Z adding 'torch/include/ATen/ops/embedding_renorm_meta_dispatch.h' 2025-07-17T06:38:00.4824670Z adding 'torch/include/ATen/ops/embedding_renorm_native.h' 2025-07-17T06:38:00.4825680Z adding 'torch/include/ATen/ops/embedding_renorm_ops.h' 2025-07-17T06:38:00.4826580Z adding 'torch/include/ATen/ops/embedding_sparse_backward.h' 2025-07-17T06:38:00.4827680Z adding 'torch/include/ATen/ops/embedding_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4828470Z adding 'torch/include/ATen/ops/embedding_sparse_backward_native.h' 2025-07-17T06:38:00.4829410Z adding 'torch/include/ATen/ops/embedding_sparse_backward_ops.h' 2025-07-17T06:38:00.4830820Z adding 'torch/include/ATen/ops/empty.h' 2025-07-17T06:38:00.4832010Z adding 'torch/include/ATen/ops/empty_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4832930Z adding 'torch/include/ATen/ops/empty_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4833830Z adding 'torch/include/ATen/ops/empty_cpu_dispatch.h' 2025-07-17T06:38:00.4834750Z adding 'torch/include/ATen/ops/empty_cuda_dispatch.h' 2025-07-17T06:38:00.4835890Z adding 'torch/include/ATen/ops/empty_like.h' 2025-07-17T06:38:00.4836930Z adding 'torch/include/ATen/ops/empty_like_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4837790Z adding 'torch/include/ATen/ops/empty_like_native.h' 2025-07-17T06:38:00.4838890Z adding 'torch/include/ATen/ops/empty_like_ops.h' 2025-07-17T06:38:00.4839900Z adding 'torch/include/ATen/ops/empty_meta_dispatch.h' 2025-07-17T06:38:00.4840790Z adding 'torch/include/ATen/ops/empty_mps_dispatch.h' 2025-07-17T06:38:00.4841820Z adding 'torch/include/ATen/ops/empty_native.h' 2025-07-17T06:38:00.4843020Z adding 'torch/include/ATen/ops/empty_ops.h' 2025-07-17T06:38:00.4844430Z adding 'torch/include/ATen/ops/empty_permuted.h' 2025-07-17T06:38:00.4845500Z adding 'torch/include/ATen/ops/empty_permuted_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4846310Z adding 'torch/include/ATen/ops/empty_permuted_native.h' 2025-07-17T06:38:00.4847300Z adding 'torch/include/ATen/ops/empty_permuted_ops.h' 2025-07-17T06:38:00.4848480Z adding 'torch/include/ATen/ops/empty_quantized.h' 2025-07-17T06:38:00.4849520Z adding 'torch/include/ATen/ops/empty_quantized_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4850360Z adding 'torch/include/ATen/ops/empty_quantized_native.h' 2025-07-17T06:38:00.4851390Z adding 'torch/include/ATen/ops/empty_quantized_ops.h' 2025-07-17T06:38:00.4852800Z adding 'torch/include/ATen/ops/empty_strided.h' 2025-07-17T06:38:00.4853810Z adding 'torch/include/ATen/ops/empty_strided_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4854680Z adding 'torch/include/ATen/ops/empty_strided_cpu_dispatch.h' 2025-07-17T06:38:00.4855620Z adding 'torch/include/ATen/ops/empty_strided_cuda_dispatch.h' 2025-07-17T06:38:00.4856640Z adding 'torch/include/ATen/ops/empty_strided_meta_dispatch.h' 2025-07-17T06:38:00.4857530Z adding 'torch/include/ATen/ops/empty_strided_mps_dispatch.h' 2025-07-17T06:38:00.4858420Z adding 'torch/include/ATen/ops/empty_strided_native.h' 2025-07-17T06:38:00.4859400Z adding 'torch/include/ATen/ops/empty_strided_ops.h' 2025-07-17T06:38:00.4860470Z adding 'torch/include/ATen/ops/eq.h' 2025-07-17T06:38:00.4861460Z adding 'torch/include/ATen/ops/eq_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.4862270Z adding 'torch/include/ATen/ops/eq_cpu_dispatch.h' 2025-07-17T06:38:00.4863140Z adding 'torch/include/ATen/ops/eq_cuda_dispatch.h' 2025-07-17T06:38:00.4864120Z adding 'torch/include/ATen/ops/eq_meta.h' 2025-07-17T06:38:00.4865030Z adding 'torch/include/ATen/ops/eq_meta_dispatch.h' 2025-07-17T06:38:00.4865920Z adding 'torch/include/ATen/ops/eq_mps_dispatch.h' 2025-07-17T06:38:00.4866840Z adding 'torch/include/ATen/ops/eq_native.h' 2025-07-17T06:38:00.4868060Z adding 'torch/include/ATen/ops/eq_ops.h' 2025-07-17T06:38:00.4868940Z adding 'torch/include/ATen/ops/equal.h' 2025-07-17T06:38:00.4869820Z adding 'torch/include/ATen/ops/equal_cpu_dispatch.h' 2025-07-17T06:38:00.4870630Z adding 'torch/include/ATen/ops/equal_cuda_dispatch.h' 2025-07-17T06:38:00.4871530Z adding 'torch/include/ATen/ops/equal_mps_dispatch.h' 2025-07-17T06:38:00.4872420Z adding 'torch/include/ATen/ops/equal_native.h' 2025-07-17T06:38:00.4873300Z adding 'torch/include/ATen/ops/equal_ops.h' 2025-07-17T06:38:00.4874190Z adding 'torch/include/ATen/ops/erf.h' 2025-07-17T06:38:00.4875340Z adding 'torch/include/ATen/ops/erf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.4876130Z adding 'torch/include/ATen/ops/erf_cpu_dispatch.h' 2025-07-17T06:38:00.4876940Z adding 'torch/include/ATen/ops/erf_cuda_dispatch.h' 2025-07-17T06:38:00.4877770Z adding 'torch/include/ATen/ops/erf_meta.h' 2025-07-17T06:38:00.4878780Z adding 'torch/include/ATen/ops/erf_meta_dispatch.h' 2025-07-17T06:38:00.4879630Z adding 'torch/include/ATen/ops/erf_mps_dispatch.h' 2025-07-17T06:38:00.4880480Z adding 'torch/include/ATen/ops/erf_native.h' 2025-07-17T06:38:00.4881450Z adding 'torch/include/ATen/ops/erf_ops.h' 2025-07-17T06:38:00.4882430Z adding 'torch/include/ATen/ops/erfc.h' 2025-07-17T06:38:00.4883450Z adding 'torch/include/ATen/ops/erfc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.4884190Z adding 'torch/include/ATen/ops/erfc_cpu_dispatch.h' 2025-07-17T06:38:00.4885040Z adding 'torch/include/ATen/ops/erfc_cuda_dispatch.h' 2025-07-17T06:38:00.4886010Z adding 'torch/include/ATen/ops/erfc_meta.h' 2025-07-17T06:38:00.4886850Z adding 'torch/include/ATen/ops/erfc_meta_dispatch.h' 2025-07-17T06:38:00.4887650Z adding 'torch/include/ATen/ops/erfc_mps_dispatch.h' 2025-07-17T06:38:00.4888530Z adding 'torch/include/ATen/ops/erfc_native.h' 2025-07-17T06:38:00.4889620Z adding 'torch/include/ATen/ops/erfc_ops.h' 2025-07-17T06:38:00.4890520Z adding 'torch/include/ATen/ops/erfinv.h' 2025-07-17T06:38:00.4891510Z adding 'torch/include/ATen/ops/erfinv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.4892290Z adding 'torch/include/ATen/ops/erfinv_cpu_dispatch.h' 2025-07-17T06:38:00.4893270Z adding 'torch/include/ATen/ops/erfinv_cuda_dispatch.h' 2025-07-17T06:38:00.4894120Z adding 'torch/include/ATen/ops/erfinv_meta.h' 2025-07-17T06:38:00.4895080Z adding 'torch/include/ATen/ops/erfinv_meta_dispatch.h' 2025-07-17T06:38:00.4895930Z adding 'torch/include/ATen/ops/erfinv_mps_dispatch.h' 2025-07-17T06:38:00.4896940Z adding 'torch/include/ATen/ops/erfinv_native.h' 2025-07-17T06:38:00.4897940Z adding 'torch/include/ATen/ops/erfinv_ops.h' 2025-07-17T06:38:00.4898810Z adding 'torch/include/ATen/ops/exp.h' 2025-07-17T06:38:00.4899690Z adding 'torch/include/ATen/ops/exp2.h' 2025-07-17T06:38:00.4900840Z adding 'torch/include/ATen/ops/exp2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.4901720Z adding 'torch/include/ATen/ops/exp2_cpu_dispatch.h' 2025-07-17T06:38:00.4902540Z adding 'torch/include/ATen/ops/exp2_cuda_dispatch.h' 2025-07-17T06:38:00.4903400Z adding 'torch/include/ATen/ops/exp2_meta.h' 2025-07-17T06:38:00.4904400Z adding 'torch/include/ATen/ops/exp2_meta_dispatch.h' 2025-07-17T06:38:00.4905290Z adding 'torch/include/ATen/ops/exp2_mps_dispatch.h' 2025-07-17T06:38:00.4906360Z adding 'torch/include/ATen/ops/exp2_native.h' 2025-07-17T06:38:00.4907380Z adding 'torch/include/ATen/ops/exp2_ops.h' 2025-07-17T06:38:00.4908440Z adding 'torch/include/ATen/ops/exp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.4909250Z adding 'torch/include/ATen/ops/exp_cpu_dispatch.h' 2025-07-17T06:38:00.4910090Z adding 'torch/include/ATen/ops/exp_cuda_dispatch.h' 2025-07-17T06:38:00.4911000Z adding 'torch/include/ATen/ops/exp_meta.h' 2025-07-17T06:38:00.4912010Z adding 'torch/include/ATen/ops/exp_meta_dispatch.h' 2025-07-17T06:38:00.4912850Z adding 'torch/include/ATen/ops/exp_mps_dispatch.h' 2025-07-17T06:38:00.4913720Z adding 'torch/include/ATen/ops/exp_native.h' 2025-07-17T06:38:00.4914770Z adding 'torch/include/ATen/ops/exp_ops.h' 2025-07-17T06:38:00.4915800Z adding 'torch/include/ATen/ops/expand.h' 2025-07-17T06:38:00.4916640Z adding 'torch/include/ATen/ops/expand_as.h' 2025-07-17T06:38:00.4917660Z adding 'torch/include/ATen/ops/expand_as_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4918440Z adding 'torch/include/ATen/ops/expand_as_native.h' 2025-07-17T06:38:00.4919500Z adding 'torch/include/ATen/ops/expand_as_ops.h' 2025-07-17T06:38:00.4920450Z adding 'torch/include/ATen/ops/expand_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4921470Z adding 'torch/include/ATen/ops/expand_copy.h' 2025-07-17T06:38:00.4922640Z adding 'torch/include/ATen/ops/expand_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4923660Z adding 'torch/include/ATen/ops/expand_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.4924410Z adding 'torch/include/ATen/ops/expand_copy_native.h' 2025-07-17T06:38:00.4925380Z adding 'torch/include/ATen/ops/expand_copy_ops.h' 2025-07-17T06:38:00.4926250Z adding 'torch/include/ATen/ops/expand_native.h' 2025-07-17T06:38:00.4927300Z adding 'torch/include/ATen/ops/expand_ops.h' 2025-07-17T06:38:00.4928240Z adding 'torch/include/ATen/ops/expm1.h' 2025-07-17T06:38:00.4929230Z adding 'torch/include/ATen/ops/expm1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.4930020Z adding 'torch/include/ATen/ops/expm1_cpu_dispatch.h' 2025-07-17T06:38:00.4931030Z adding 'torch/include/ATen/ops/expm1_cuda_dispatch.h' 2025-07-17T06:38:00.4931820Z adding 'torch/include/ATen/ops/expm1_meta.h' 2025-07-17T06:38:00.4932710Z adding 'torch/include/ATen/ops/expm1_meta_dispatch.h' 2025-07-17T06:38:00.4933510Z adding 'torch/include/ATen/ops/expm1_mps_dispatch.h' 2025-07-17T06:38:00.4934510Z adding 'torch/include/ATen/ops/expm1_native.h' 2025-07-17T06:38:00.4935470Z adding 'torch/include/ATen/ops/expm1_ops.h' 2025-07-17T06:38:00.4936400Z adding 'torch/include/ATen/ops/exponential.h' 2025-07-17T06:38:00.4937450Z adding 'torch/include/ATen/ops/exponential_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4938360Z adding 'torch/include/ATen/ops/exponential_cpu_dispatch.h' 2025-07-17T06:38:00.4939190Z adding 'torch/include/ATen/ops/exponential_cuda_dispatch.h' 2025-07-17T06:38:00.4940000Z adding 'torch/include/ATen/ops/exponential_meta_dispatch.h' 2025-07-17T06:38:00.4940790Z adding 'torch/include/ATen/ops/exponential_mps_dispatch.h' 2025-07-17T06:38:00.4941780Z adding 'torch/include/ATen/ops/exponential_native.h' 2025-07-17T06:38:00.4942810Z adding 'torch/include/ATen/ops/exponential_ops.h' 2025-07-17T06:38:00.4944290Z adding 'torch/include/ATen/ops/eye.h' 2025-07-17T06:38:00.4945420Z adding 'torch/include/ATen/ops/eye_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4946460Z adding 'torch/include/ATen/ops/eye_cpu_dispatch.h' 2025-07-17T06:38:00.4947390Z adding 'torch/include/ATen/ops/eye_cuda_dispatch.h' 2025-07-17T06:38:00.4948210Z adding 'torch/include/ATen/ops/eye_meta_dispatch.h' 2025-07-17T06:38:00.4949170Z adding 'torch/include/ATen/ops/eye_mps_dispatch.h' 2025-07-17T06:38:00.4950190Z adding 'torch/include/ATen/ops/eye_native.h' 2025-07-17T06:38:00.4951290Z adding 'torch/include/ATen/ops/eye_ops.h' 2025-07-17T06:38:00.4952440Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine.h' 2025-07-17T06:38:00.4953490Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask.h' 2025-07-17T06:38:00.4954630Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward.h' 2025-07-17T06:38:00.4955650Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4956580Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_native.h' 2025-07-17T06:38:00.4957480Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_ops.h' 2025-07-17T06:38:00.4958600Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4959420Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cpu_dispatch.h' 2025-07-17T06:38:00.4960270Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cuda_dispatch.h' 2025-07-17T06:38:00.4961140Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_native.h' 2025-07-17T06:38:00.4962260Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_ops.h' 2025-07-17T06:38:00.4963230Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4964010Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_native.h' 2025-07-17T06:38:00.4964950Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_ops.h' 2025-07-17T06:38:00.4965970Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine.h' 2025-07-17T06:38:00.4966960Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask.h' 2025-07-17T06:38:00.4967870Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward.h' 2025-07-17T06:38:00.4968940Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4969800Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_native.h' 2025-07-17T06:38:00.4970760Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_ops.h' 2025-07-17T06:38:00.4971770Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.4972570Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cpu_dispatch.h' 2025-07-17T06:38:00.4973590Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cuda_dispatch.h' 2025-07-17T06:38:00.4974430Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_native.h' 2025-07-17T06:38:00.4975430Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_ops.h' 2025-07-17T06:38:00.4976390Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4977310Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_native.h' 2025-07-17T06:38:00.4983110Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_ops.h' 2025-07-17T06:38:00.4983350Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight.h' 2025-07-17T06:38:00.4983570Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4983720Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation.h' 2025-07-17T06:38:00.4984000Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4984170Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_native.h' 2025-07-17T06:38:00.4984340Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_ops.h' 2025-07-17T06:38:00.4984480Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_native.h' 2025-07-17T06:38:00.4985460Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_ops.h' 2025-07-17T06:38:00.4986300Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight.h' 2025-07-17T06:38:00.4987310Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4988240Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation.h' 2025-07-17T06:38:00.4989240Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4990040Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_native.h' 2025-07-17T06:38:00.4991030Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_ops.h' 2025-07-17T06:38:00.4991970Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_native.h' 2025-07-17T06:38:00.4993030Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_ops.h' 2025-07-17T06:38:00.4993930Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight.h' 2025-07-17T06:38:00.4994900Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4995780Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_native.h' 2025-07-17T06:38:00.4996740Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_ops.h' 2025-07-17T06:38:00.4997590Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16.h' 2025-07-17T06:38:00.4998570Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.4999500Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_native.h' 2025-07-17T06:38:00.5000500Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_ops.h' 2025-07-17T06:38:00.5001410Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix.h' 2025-07-17T06:38:00.5002430Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5003350Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_native.h' 2025-07-17T06:38:00.5004300Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_ops.h' 2025-07-17T06:38:00.5005150Z adding 'torch/include/ATen/ops/feature_alpha_dropout.h' 2025-07-17T06:38:00.5006150Z adding 'torch/include/ATen/ops/feature_alpha_dropout_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5007060Z adding 'torch/include/ATen/ops/feature_alpha_dropout_native.h' 2025-07-17T06:38:00.5007980Z adding 'torch/include/ATen/ops/feature_alpha_dropout_ops.h' 2025-07-17T06:38:00.5008810Z adding 'torch/include/ATen/ops/feature_dropout.h' 2025-07-17T06:38:00.5009760Z adding 'torch/include/ATen/ops/feature_dropout_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5010620Z adding 'torch/include/ATen/ops/feature_dropout_native.h' 2025-07-17T06:38:00.5011600Z adding 'torch/include/ATen/ops/feature_dropout_ops.h' 2025-07-17T06:38:00.5012710Z adding 'torch/include/ATen/ops/fft_fft.h' 2025-07-17T06:38:00.5013850Z adding 'torch/include/ATen/ops/fft_fft2.h' 2025-07-17T06:38:00.5015040Z adding 'torch/include/ATen/ops/fft_fft2_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5015840Z adding 'torch/include/ATen/ops/fft_fft2_native.h' 2025-07-17T06:38:00.5016830Z adding 'torch/include/ATen/ops/fft_fft2_ops.h' 2025-07-17T06:38:00.5017870Z adding 'torch/include/ATen/ops/fft_fft_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5018780Z adding 'torch/include/ATen/ops/fft_fft_native.h' 2025-07-17T06:38:00.5020790Z adding 'torch/include/ATen/ops/fft_fft_ops.h' 2025-07-17T06:38:00.5022070Z adding 'torch/include/ATen/ops/fft_fftfreq.h' 2025-07-17T06:38:00.5023090Z adding 'torch/include/ATen/ops/fft_fftfreq_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.5023900Z adding 'torch/include/ATen/ops/fft_fftfreq_native.h' 2025-07-17T06:38:00.5024840Z adding 'torch/include/ATen/ops/fft_fftfreq_ops.h' 2025-07-17T06:38:00.5025930Z adding 'torch/include/ATen/ops/fft_fftn.h' 2025-07-17T06:38:00.5026990Z adding 'torch/include/ATen/ops/fft_fftn_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5027770Z adding 'torch/include/ATen/ops/fft_fftn_native.h' 2025-07-17T06:38:00.5029720Z adding 'torch/include/ATen/ops/fft_fftn_ops.h' 2025-07-17T06:38:00.5030290Z adding 'torch/include/ATen/ops/fft_fftshift.h' 2025-07-17T06:38:00.5031210Z adding 'torch/include/ATen/ops/fft_fftshift_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5031950Z adding 'torch/include/ATen/ops/fft_fftshift_native.h' 2025-07-17T06:38:00.5032840Z adding 'torch/include/ATen/ops/fft_fftshift_ops.h' 2025-07-17T06:38:00.5033920Z adding 'torch/include/ATen/ops/fft_hfft.h' 2025-07-17T06:38:00.5035040Z adding 'torch/include/ATen/ops/fft_hfft2.h' 2025-07-17T06:38:00.5036080Z adding 'torch/include/ATen/ops/fft_hfft2_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5036860Z adding 'torch/include/ATen/ops/fft_hfft2_native.h' 2025-07-17T06:38:00.5037820Z adding 'torch/include/ATen/ops/fft_hfft2_ops.h' 2025-07-17T06:38:00.5038830Z adding 'torch/include/ATen/ops/fft_hfft_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5039590Z adding 'torch/include/ATen/ops/fft_hfft_native.h' 2025-07-17T06:38:00.5040530Z adding 'torch/include/ATen/ops/fft_hfft_ops.h' 2025-07-17T06:38:00.5042130Z adding 'torch/include/ATen/ops/fft_hfftn.h' 2025-07-17T06:38:00.5043100Z adding 'torch/include/ATen/ops/fft_hfftn_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5043860Z adding 'torch/include/ATen/ops/fft_hfftn_native.h' 2025-07-17T06:38:00.5044880Z adding 'torch/include/ATen/ops/fft_hfftn_ops.h' 2025-07-17T06:38:00.5045960Z adding 'torch/include/ATen/ops/fft_ifft.h' 2025-07-17T06:38:00.5047050Z adding 'torch/include/ATen/ops/fft_ifft2.h' 2025-07-17T06:38:00.5048100Z adding 'torch/include/ATen/ops/fft_ifft2_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5048870Z adding 'torch/include/ATen/ops/fft_ifft2_native.h' 2025-07-17T06:38:00.5049820Z adding 'torch/include/ATen/ops/fft_ifft2_ops.h' 2025-07-17T06:38:00.5050850Z adding 'torch/include/ATen/ops/fft_ifft_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5051630Z adding 'torch/include/ATen/ops/fft_ifft_native.h' 2025-07-17T06:38:00.5052590Z adding 'torch/include/ATen/ops/fft_ifft_ops.h' 2025-07-17T06:38:00.5053730Z adding 'torch/include/ATen/ops/fft_ifftn.h' 2025-07-17T06:38:00.5054790Z adding 'torch/include/ATen/ops/fft_ifftn_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5055560Z adding 'torch/include/ATen/ops/fft_ifftn_native.h' 2025-07-17T06:38:00.5056560Z adding 'torch/include/ATen/ops/fft_ifftn_ops.h' 2025-07-17T06:38:00.5057470Z adding 'torch/include/ATen/ops/fft_ifftshift.h' 2025-07-17T06:38:00.5058360Z adding 'torch/include/ATen/ops/fft_ifftshift_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5059180Z adding 'torch/include/ATen/ops/fft_ifftshift_native.h' 2025-07-17T06:38:00.5060060Z adding 'torch/include/ATen/ops/fft_ifftshift_ops.h' 2025-07-17T06:38:00.5061100Z adding 'torch/include/ATen/ops/fft_ihfft.h' 2025-07-17T06:38:00.5062210Z adding 'torch/include/ATen/ops/fft_ihfft2.h' 2025-07-17T06:38:00.5063260Z adding 'torch/include/ATen/ops/fft_ihfft2_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5064030Z adding 'torch/include/ATen/ops/fft_ihfft2_native.h' 2025-07-17T06:38:00.5065020Z adding 'torch/include/ATen/ops/fft_ihfft2_ops.h' 2025-07-17T06:38:00.5066070Z adding 'torch/include/ATen/ops/fft_ihfft_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5066840Z adding 'torch/include/ATen/ops/fft_ihfft_native.h' 2025-07-17T06:38:00.5067810Z adding 'torch/include/ATen/ops/fft_ihfft_ops.h' 2025-07-17T06:38:00.5068880Z adding 'torch/include/ATen/ops/fft_ihfftn.h' 2025-07-17T06:38:00.5069930Z adding 'torch/include/ATen/ops/fft_ihfftn_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5070680Z adding 'torch/include/ATen/ops/fft_ihfftn_native.h' 2025-07-17T06:38:00.5071650Z adding 'torch/include/ATen/ops/fft_ihfftn_ops.h' 2025-07-17T06:38:00.5072710Z adding 'torch/include/ATen/ops/fft_irfft.h' 2025-07-17T06:38:00.5073800Z adding 'torch/include/ATen/ops/fft_irfft2.h' 2025-07-17T06:38:00.5074840Z adding 'torch/include/ATen/ops/fft_irfft2_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5075610Z adding 'torch/include/ATen/ops/fft_irfft2_native.h' 2025-07-17T06:38:00.5076590Z adding 'torch/include/ATen/ops/fft_irfft2_ops.h' 2025-07-17T06:38:00.5077580Z adding 'torch/include/ATen/ops/fft_irfft_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5078350Z adding 'torch/include/ATen/ops/fft_irfft_native.h' 2025-07-17T06:38:00.5079300Z adding 'torch/include/ATen/ops/fft_irfft_ops.h' 2025-07-17T06:38:00.5080380Z adding 'torch/include/ATen/ops/fft_irfftn.h' 2025-07-17T06:38:00.5081420Z adding 'torch/include/ATen/ops/fft_irfftn_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5082210Z adding 'torch/include/ATen/ops/fft_irfftn_native.h' 2025-07-17T06:38:00.5083170Z adding 'torch/include/ATen/ops/fft_irfftn_ops.h' 2025-07-17T06:38:00.5084230Z adding 'torch/include/ATen/ops/fft_rfft.h' 2025-07-17T06:38:00.5085330Z adding 'torch/include/ATen/ops/fft_rfft2.h' 2025-07-17T06:38:00.5086360Z adding 'torch/include/ATen/ops/fft_rfft2_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5087140Z adding 'torch/include/ATen/ops/fft_rfft2_native.h' 2025-07-17T06:38:00.5088100Z adding 'torch/include/ATen/ops/fft_rfft2_ops.h' 2025-07-17T06:38:00.5089110Z adding 'torch/include/ATen/ops/fft_rfft_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5089880Z adding 'torch/include/ATen/ops/fft_rfft_native.h' 2025-07-17T06:38:00.5090820Z adding 'torch/include/ATen/ops/fft_rfft_ops.h' 2025-07-17T06:38:00.5091780Z adding 'torch/include/ATen/ops/fft_rfftfreq.h' 2025-07-17T06:38:00.5092790Z adding 'torch/include/ATen/ops/fft_rfftfreq_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.5093550Z adding 'torch/include/ATen/ops/fft_rfftfreq_native.h' 2025-07-17T06:38:00.5094520Z adding 'torch/include/ATen/ops/fft_rfftfreq_ops.h' 2025-07-17T06:38:00.5095600Z adding 'torch/include/ATen/ops/fft_rfftn.h' 2025-07-17T06:38:00.5096630Z adding 'torch/include/ATen/ops/fft_rfftn_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5097420Z adding 'torch/include/ATen/ops/fft_rfftn_native.h' 2025-07-17T06:38:00.5098370Z adding 'torch/include/ATen/ops/fft_rfftn_ops.h' 2025-07-17T06:38:00.5099340Z adding 'torch/include/ATen/ops/fill.h' 2025-07-17T06:38:00.5100350Z adding 'torch/include/ATen/ops/fill_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.5101160Z adding 'torch/include/ATen/ops/fill_cpu_dispatch.h' 2025-07-17T06:38:00.5102020Z adding 'torch/include/ATen/ops/fill_cuda_dispatch.h' 2025-07-17T06:38:00.5102800Z adding 'torch/include/ATen/ops/fill_diagonal.h' 2025-07-17T06:38:00.5103800Z adding 'torch/include/ATen/ops/fill_diagonal_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5104560Z adding 'torch/include/ATen/ops/fill_diagonal_native.h' 2025-07-17T06:38:00.5105450Z adding 'torch/include/ATen/ops/fill_diagonal_ops.h' 2025-07-17T06:38:00.5106280Z adding 'torch/include/ATen/ops/fill_meta_dispatch.h' 2025-07-17T06:38:00.5107070Z adding 'torch/include/ATen/ops/fill_mps_dispatch.h' 2025-07-17T06:38:00.5107960Z adding 'torch/include/ATen/ops/fill_native.h' 2025-07-17T06:38:00.5109060Z adding 'torch/include/ATen/ops/fill_ops.h' 2025-07-17T06:38:00.5109980Z adding 'torch/include/ATen/ops/fix.h' 2025-07-17T06:38:00.5110970Z adding 'torch/include/ATen/ops/fix_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5111740Z adding 'torch/include/ATen/ops/fix_native.h' 2025-07-17T06:38:00.5112690Z adding 'torch/include/ATen/ops/fix_ops.h' 2025-07-17T06:38:00.5113630Z adding 'torch/include/ATen/ops/flatten.h' 2025-07-17T06:38:00.5114640Z adding 'torch/include/ATen/ops/flatten_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5115460Z adding 'torch/include/ATen/ops/flatten_dense_tensors.h' 2025-07-17T06:38:00.5116410Z adding 'torch/include/ATen/ops/flatten_dense_tensors_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5117180Z adding 'torch/include/ATen/ops/flatten_dense_tensors_native.h' 2025-07-17T06:38:00.5118070Z adding 'torch/include/ATen/ops/flatten_dense_tensors_ops.h' 2025-07-17T06:38:00.5118890Z adding 'torch/include/ATen/ops/flatten_native.h' 2025-07-17T06:38:00.5119950Z adding 'torch/include/ATen/ops/flatten_ops.h' 2025-07-17T06:38:00.5120830Z adding 'torch/include/ATen/ops/flip.h' 2025-07-17T06:38:00.5121850Z adding 'torch/include/ATen/ops/flip_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.5122620Z adding 'torch/include/ATen/ops/flip_cpu_dispatch.h' 2025-07-17T06:38:00.5123430Z adding 'torch/include/ATen/ops/flip_cuda_dispatch.h' 2025-07-17T06:38:00.5124220Z adding 'torch/include/ATen/ops/flip_mps_dispatch.h' 2025-07-17T06:38:00.5125040Z adding 'torch/include/ATen/ops/flip_native.h' 2025-07-17T06:38:00.5125970Z adding 'torch/include/ATen/ops/flip_ops.h' 2025-07-17T06:38:00.5126820Z adding 'torch/include/ATen/ops/fliplr.h' 2025-07-17T06:38:00.5127760Z adding 'torch/include/ATen/ops/fliplr_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5128490Z adding 'torch/include/ATen/ops/fliplr_native.h' 2025-07-17T06:38:00.5129370Z adding 'torch/include/ATen/ops/fliplr_ops.h' 2025-07-17T06:38:00.5130170Z adding 'torch/include/ATen/ops/flipud.h' 2025-07-17T06:38:00.5131100Z adding 'torch/include/ATen/ops/flipud_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5131830Z adding 'torch/include/ATen/ops/flipud_native.h' 2025-07-17T06:38:00.5132690Z adding 'torch/include/ATen/ops/flipud_ops.h' 2025-07-17T06:38:00.5133670Z adding 'torch/include/ATen/ops/float_power.h' 2025-07-17T06:38:00.5134690Z adding 'torch/include/ATen/ops/float_power_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5135490Z adding 'torch/include/ATen/ops/float_power_native.h' 2025-07-17T06:38:00.5136650Z adding 'torch/include/ATen/ops/float_power_ops.h' 2025-07-17T06:38:00.5137520Z adding 'torch/include/ATen/ops/floor.h' 2025-07-17T06:38:00.5138510Z adding 'torch/include/ATen/ops/floor_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5139240Z adding 'torch/include/ATen/ops/floor_cpu_dispatch.h' 2025-07-17T06:38:00.5140090Z adding 'torch/include/ATen/ops/floor_cuda_dispatch.h' 2025-07-17T06:38:00.5140980Z adding 'torch/include/ATen/ops/floor_divide.h' 2025-07-17T06:38:00.5141950Z adding 'torch/include/ATen/ops/floor_divide_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.5142750Z adding 'torch/include/ATen/ops/floor_divide_cpu_dispatch.h' 2025-07-17T06:38:00.5143570Z adding 'torch/include/ATen/ops/floor_divide_cuda_dispatch.h' 2025-07-17T06:38:00.5144440Z adding 'torch/include/ATen/ops/floor_divide_meta_dispatch.h' 2025-07-17T06:38:00.5145250Z adding 'torch/include/ATen/ops/floor_divide_mps_dispatch.h' 2025-07-17T06:38:00.5146090Z adding 'torch/include/ATen/ops/floor_divide_native.h' 2025-07-17T06:38:00.5147190Z adding 'torch/include/ATen/ops/floor_divide_ops.h' 2025-07-17T06:38:00.5148040Z adding 'torch/include/ATen/ops/floor_meta.h' 2025-07-17T06:38:00.5148920Z adding 'torch/include/ATen/ops/floor_meta_dispatch.h' 2025-07-17T06:38:00.5149720Z adding 'torch/include/ATen/ops/floor_mps_dispatch.h' 2025-07-17T06:38:00.5150570Z adding 'torch/include/ATen/ops/floor_native.h' 2025-07-17T06:38:00.5151530Z adding 'torch/include/ATen/ops/floor_ops.h' 2025-07-17T06:38:00.5152430Z adding 'torch/include/ATen/ops/fmax.h' 2025-07-17T06:38:00.5153430Z adding 'torch/include/ATen/ops/fmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5154170Z adding 'torch/include/ATen/ops/fmax_cpu_dispatch.h' 2025-07-17T06:38:00.5154980Z adding 'torch/include/ATen/ops/fmax_cuda_dispatch.h' 2025-07-17T06:38:00.5155780Z adding 'torch/include/ATen/ops/fmax_meta.h' 2025-07-17T06:38:00.5156610Z adding 'torch/include/ATen/ops/fmax_meta_dispatch.h' 2025-07-17T06:38:00.5157410Z adding 'torch/include/ATen/ops/fmax_mps_dispatch.h' 2025-07-17T06:38:00.5158210Z adding 'torch/include/ATen/ops/fmax_native.h' 2025-07-17T06:38:00.5159120Z adding 'torch/include/ATen/ops/fmax_ops.h' 2025-07-17T06:38:00.5159990Z adding 'torch/include/ATen/ops/fmin.h' 2025-07-17T06:38:00.5160980Z adding 'torch/include/ATen/ops/fmin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5161690Z adding 'torch/include/ATen/ops/fmin_cpu_dispatch.h' 2025-07-17T06:38:00.5162510Z adding 'torch/include/ATen/ops/fmin_cuda_dispatch.h' 2025-07-17T06:38:00.5163330Z adding 'torch/include/ATen/ops/fmin_meta.h' 2025-07-17T06:38:00.5164180Z adding 'torch/include/ATen/ops/fmin_meta_dispatch.h' 2025-07-17T06:38:00.5164940Z adding 'torch/include/ATen/ops/fmin_mps_dispatch.h' 2025-07-17T06:38:00.5165760Z adding 'torch/include/ATen/ops/fmin_native.h' 2025-07-17T06:38:00.5166670Z adding 'torch/include/ATen/ops/fmin_ops.h' 2025-07-17T06:38:00.5167600Z adding 'torch/include/ATen/ops/fmod.h' 2025-07-17T06:38:00.5168590Z adding 'torch/include/ATen/ops/fmod_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.5169470Z adding 'torch/include/ATen/ops/fmod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5170220Z adding 'torch/include/ATen/ops/fmod_cpu_dispatch.h' 2025-07-17T06:38:00.5171040Z adding 'torch/include/ATen/ops/fmod_cuda_dispatch.h' 2025-07-17T06:38:00.5171850Z adding 'torch/include/ATen/ops/fmod_meta.h' 2025-07-17T06:38:00.5172690Z adding 'torch/include/ATen/ops/fmod_meta_dispatch.h' 2025-07-17T06:38:00.5173480Z adding 'torch/include/ATen/ops/fmod_mps_dispatch.h' 2025-07-17T06:38:00.5174350Z adding 'torch/include/ATen/ops/fmod_native.h' 2025-07-17T06:38:00.5175430Z adding 'torch/include/ATen/ops/fmod_ops.h' 2025-07-17T06:38:00.5176330Z adding 'torch/include/ATen/ops/frac.h' 2025-07-17T06:38:00.5177300Z adding 'torch/include/ATen/ops/frac_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5178050Z adding 'torch/include/ATen/ops/frac_cpu_dispatch.h' 2025-07-17T06:38:00.5178870Z adding 'torch/include/ATen/ops/frac_cuda_dispatch.h' 2025-07-17T06:38:00.5179680Z adding 'torch/include/ATen/ops/frac_meta.h' 2025-07-17T06:38:00.5180500Z adding 'torch/include/ATen/ops/frac_meta_dispatch.h' 2025-07-17T06:38:00.5181290Z adding 'torch/include/ATen/ops/frac_mps_dispatch.h' 2025-07-17T06:38:00.5182130Z adding 'torch/include/ATen/ops/frac_native.h' 2025-07-17T06:38:00.5183080Z adding 'torch/include/ATen/ops/frac_ops.h' 2025-07-17T06:38:00.5184080Z adding 'torch/include/ATen/ops/fractional_max_pool2d.h' 2025-07-17T06:38:00.5185070Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward.h' 2025-07-17T06:38:00.5186090Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5186910Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_cpu_dispatch.h' 2025-07-17T06:38:00.5187730Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_cuda_dispatch.h' 2025-07-17T06:38:00.5188560Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_meta.h' 2025-07-17T06:38:00.5189420Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_meta_dispatch.h' 2025-07-17T06:38:00.5190300Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_native.h' 2025-07-17T06:38:00.5191280Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_ops.h' 2025-07-17T06:38:00.5192300Z adding 'torch/include/ATen/ops/fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5193080Z adding 'torch/include/ATen/ops/fractional_max_pool2d_cpu_dispatch.h' 2025-07-17T06:38:00.5193930Z adding 'torch/include/ATen/ops/fractional_max_pool2d_cuda_dispatch.h' 2025-07-17T06:38:00.5194780Z adding 'torch/include/ATen/ops/fractional_max_pool2d_meta.h' 2025-07-17T06:38:00.5195660Z adding 'torch/include/ATen/ops/fractional_max_pool2d_meta_dispatch.h' 2025-07-17T06:38:00.5196520Z adding 'torch/include/ATen/ops/fractional_max_pool2d_native.h' 2025-07-17T06:38:00.5197520Z adding 'torch/include/ATen/ops/fractional_max_pool2d_ops.h' 2025-07-17T06:38:00.5198470Z adding 'torch/include/ATen/ops/fractional_max_pool3d.h' 2025-07-17T06:38:00.5199460Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward.h' 2025-07-17T06:38:00.5200390Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_cpu_dispatch.h' 2025-07-17T06:38:00.5201260Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_cuda_dispatch.h' 2025-07-17T06:38:00.5202140Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_native.h' 2025-07-17T06:38:00.5203140Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_ops.h' 2025-07-17T06:38:00.5204180Z adding 'torch/include/ATen/ops/fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5204930Z adding 'torch/include/ATen/ops/fractional_max_pool3d_cpu_dispatch.h' 2025-07-17T06:38:00.5205750Z adding 'torch/include/ATen/ops/fractional_max_pool3d_cuda_dispatch.h' 2025-07-17T06:38:00.5207540Z adding 'torch/include/ATen/ops/fractional_max_pool3d_meta.h' 2025-07-17T06:38:00.5208230Z adding 'torch/include/ATen/ops/fractional_max_pool3d_meta_dispatch.h' 2025-07-17T06:38:00.5209140Z adding 'torch/include/ATen/ops/fractional_max_pool3d_native.h' 2025-07-17T06:38:00.5210130Z adding 'torch/include/ATen/ops/fractional_max_pool3d_ops.h' 2025-07-17T06:38:00.5210990Z adding 'torch/include/ATen/ops/frexp.h' 2025-07-17T06:38:00.5212010Z adding 'torch/include/ATen/ops/frexp_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.5212810Z adding 'torch/include/ATen/ops/frexp_cpu_dispatch.h' 2025-07-17T06:38:00.5213640Z adding 'torch/include/ATen/ops/frexp_cuda_dispatch.h' 2025-07-17T06:38:00.5214460Z adding 'torch/include/ATen/ops/frexp_native.h' 2025-07-17T06:38:00.5215420Z adding 'torch/include/ATen/ops/frexp_ops.h' 2025-07-17T06:38:00.5216350Z adding 'torch/include/ATen/ops/frobenius_norm.h' 2025-07-17T06:38:00.5217350Z adding 'torch/include/ATen/ops/frobenius_norm_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5218120Z adding 'torch/include/ATen/ops/frobenius_norm_native.h' 2025-07-17T06:38:00.5219060Z adding 'torch/include/ATen/ops/frobenius_norm_ops.h' 2025-07-17T06:38:00.5220310Z adding 'torch/include/ATen/ops/from_blob.h' 2025-07-17T06:38:00.5221330Z adding 'torch/include/ATen/ops/from_file.h' 2025-07-17T06:38:00.5222330Z adding 'torch/include/ATen/ops/from_file_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.5223170Z adding 'torch/include/ATen/ops/from_file_cpu_dispatch.h' 2025-07-17T06:38:00.5224050Z adding 'torch/include/ATen/ops/from_file_native.h' 2025-07-17T06:38:00.5225080Z adding 'torch/include/ATen/ops/from_file_ops.h' 2025-07-17T06:38:00.5226410Z adding 'torch/include/ATen/ops/full.h' 2025-07-17T06:38:00.5227500Z adding 'torch/include/ATen/ops/full_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.5228460Z adding 'torch/include/ATen/ops/full_like.h' 2025-07-17T06:38:00.5229470Z adding 'torch/include/ATen/ops/full_like_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.5230260Z adding 'torch/include/ATen/ops/full_like_native.h' 2025-07-17T06:38:00.5231290Z adding 'torch/include/ATen/ops/full_like_ops.h' 2025-07-17T06:38:00.5232180Z adding 'torch/include/ATen/ops/full_native.h' 2025-07-17T06:38:00.5233260Z adding 'torch/include/ATen/ops/full_ops.h' 2025-07-17T06:38:00.5234310Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant.h' 2025-07-17T06:38:00.5235330Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5236130Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_native.h' 2025-07-17T06:38:00.5237110Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_ops.h' 2025-07-17T06:38:00.5238020Z adding 'torch/include/ATen/ops/gather.h' 2025-07-17T06:38:00.5238890Z adding 'torch/include/ATen/ops/gather_backward.h' 2025-07-17T06:38:00.5239870Z adding 'torch/include/ATen/ops/gather_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5240640Z adding 'torch/include/ATen/ops/gather_backward_native.h' 2025-07-17T06:38:00.5241560Z adding 'torch/include/ATen/ops/gather_backward_ops.h' 2025-07-17T06:38:00.5242540Z adding 'torch/include/ATen/ops/gather_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5243380Z adding 'torch/include/ATen/ops/gather_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5244190Z adding 'torch/include/ATen/ops/gather_cpu_dispatch.h' 2025-07-17T06:38:00.5245010Z adding 'torch/include/ATen/ops/gather_cuda_dispatch.h' 2025-07-17T06:38:00.5245870Z adding 'torch/include/ATen/ops/gather_meta.h' 2025-07-17T06:38:00.5246720Z adding 'torch/include/ATen/ops/gather_meta_dispatch.h' 2025-07-17T06:38:00.5247540Z adding 'torch/include/ATen/ops/gather_mps_dispatch.h' 2025-07-17T06:38:00.5248390Z adding 'torch/include/ATen/ops/gather_native.h' 2025-07-17T06:38:00.5249440Z adding 'torch/include/ATen/ops/gather_ops.h' 2025-07-17T06:38:00.5250310Z adding 'torch/include/ATen/ops/gcd.h' 2025-07-17T06:38:00.5251300Z adding 'torch/include/ATen/ops/gcd_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5252400Z adding 'torch/include/ATen/ops/gcd_cpu_dispatch.h' 2025-07-17T06:38:00.5253220Z adding 'torch/include/ATen/ops/gcd_cuda_dispatch.h' 2025-07-17T06:38:00.5254040Z adding 'torch/include/ATen/ops/gcd_meta.h' 2025-07-17T06:38:00.5254920Z adding 'torch/include/ATen/ops/gcd_meta_dispatch.h' 2025-07-17T06:38:00.5255750Z adding 'torch/include/ATen/ops/gcd_native.h' 2025-07-17T06:38:00.5256690Z adding 'torch/include/ATen/ops/gcd_ops.h' 2025-07-17T06:38:00.5257640Z adding 'torch/include/ATen/ops/ge.h' 2025-07-17T06:38:00.5258630Z adding 'torch/include/ATen/ops/ge_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5259380Z adding 'torch/include/ATen/ops/ge_cpu_dispatch.h' 2025-07-17T06:38:00.5260230Z adding 'torch/include/ATen/ops/ge_cuda_dispatch.h' 2025-07-17T06:38:00.5261090Z adding 'torch/include/ATen/ops/ge_meta.h' 2025-07-17T06:38:00.5261950Z adding 'torch/include/ATen/ops/ge_meta_dispatch.h' 2025-07-17T06:38:00.5262800Z adding 'torch/include/ATen/ops/ge_mps_dispatch.h' 2025-07-17T06:38:00.5263700Z adding 'torch/include/ATen/ops/ge_native.h' 2025-07-17T06:38:00.5264780Z adding 'torch/include/ATen/ops/ge_ops.h' 2025-07-17T06:38:00.5265700Z adding 'torch/include/ATen/ops/gelu.h' 2025-07-17T06:38:00.5266650Z adding 'torch/include/ATen/ops/gelu_backward.h' 2025-07-17T06:38:00.5267710Z adding 'torch/include/ATen/ops/gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5268500Z adding 'torch/include/ATen/ops/gelu_backward_cpu_dispatch.h' 2025-07-17T06:38:00.5269320Z adding 'torch/include/ATen/ops/gelu_backward_cuda_dispatch.h' 2025-07-17T06:38:00.5270180Z adding 'torch/include/ATen/ops/gelu_backward_meta.h' 2025-07-17T06:38:00.5271030Z adding 'torch/include/ATen/ops/gelu_backward_meta_dispatch.h' 2025-07-17T06:38:00.5271860Z adding 'torch/include/ATen/ops/gelu_backward_mps_dispatch.h' 2025-07-17T06:38:00.5272730Z adding 'torch/include/ATen/ops/gelu_backward_native.h' 2025-07-17T06:38:00.5273690Z adding 'torch/include/ATen/ops/gelu_backward_ops.h' 2025-07-17T06:38:00.5274660Z adding 'torch/include/ATen/ops/gelu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5275420Z adding 'torch/include/ATen/ops/gelu_cpu_dispatch.h' 2025-07-17T06:38:00.5276250Z adding 'torch/include/ATen/ops/gelu_cuda_dispatch.h' 2025-07-17T06:38:00.5277080Z adding 'torch/include/ATen/ops/gelu_meta.h' 2025-07-17T06:38:00.5277910Z adding 'torch/include/ATen/ops/gelu_meta_dispatch.h' 2025-07-17T06:38:00.5278710Z adding 'torch/include/ATen/ops/gelu_mps_dispatch.h' 2025-07-17T06:38:00.5279590Z adding 'torch/include/ATen/ops/gelu_native.h' 2025-07-17T06:38:00.5280560Z adding 'torch/include/ATen/ops/gelu_ops.h' 2025-07-17T06:38:00.5281460Z adding 'torch/include/ATen/ops/geometric.h' 2025-07-17T06:38:00.5282470Z adding 'torch/include/ATen/ops/geometric_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.5283260Z adding 'torch/include/ATen/ops/geometric_cpu_dispatch.h' 2025-07-17T06:38:00.5284080Z adding 'torch/include/ATen/ops/geometric_cuda_dispatch.h' 2025-07-17T06:38:00.5284900Z adding 'torch/include/ATen/ops/geometric_meta_dispatch.h' 2025-07-17T06:38:00.5285730Z adding 'torch/include/ATen/ops/geometric_native.h' 2025-07-17T06:38:00.5286720Z adding 'torch/include/ATen/ops/geometric_ops.h' 2025-07-17T06:38:00.5287620Z adding 'torch/include/ATen/ops/geqrf.h' 2025-07-17T06:38:00.5288510Z adding 'torch/include/ATen/ops/geqrf_cpu_dispatch.h' 2025-07-17T06:38:00.5289330Z adding 'torch/include/ATen/ops/geqrf_cuda_dispatch.h' 2025-07-17T06:38:00.5290140Z adding 'torch/include/ATen/ops/geqrf_native.h' 2025-07-17T06:38:00.5291140Z adding 'torch/include/ATen/ops/geqrf_ops.h' 2025-07-17T06:38:00.5291970Z adding 'torch/include/ATen/ops/ger.h' 2025-07-17T06:38:00.5292940Z adding 'torch/include/ATen/ops/ger_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5293690Z adding 'torch/include/ATen/ops/ger_native.h' 2025-07-17T06:38:00.5294610Z adding 'torch/include/ATen/ops/ger_ops.h' 2025-07-17T06:38:00.5295480Z adding 'torch/include/ATen/ops/glu.h' 2025-07-17T06:38:00.5296390Z adding 'torch/include/ATen/ops/glu_backward.h' 2025-07-17T06:38:00.5297320Z adding 'torch/include/ATen/ops/glu_backward_cpu_dispatch.h' 2025-07-17T06:38:00.5298150Z adding 'torch/include/ATen/ops/glu_backward_cuda_dispatch.h' 2025-07-17T06:38:00.5299040Z adding 'torch/include/ATen/ops/glu_backward_jvp.h' 2025-07-17T06:38:00.5300040Z adding 'torch/include/ATen/ops/glu_backward_jvp_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.5300820Z adding 'torch/include/ATen/ops/glu_backward_jvp_cpu_dispatch.h' 2025-07-17T06:38:00.5301640Z adding 'torch/include/ATen/ops/glu_backward_jvp_cuda_dispatch.h' 2025-07-17T06:38:00.5302480Z adding 'torch/include/ATen/ops/glu_backward_jvp_native.h' 2025-07-17T06:38:00.5303450Z adding 'torch/include/ATen/ops/glu_backward_jvp_ops.h' 2025-07-17T06:38:00.5304320Z adding 'torch/include/ATen/ops/glu_backward_mps_dispatch.h' 2025-07-17T06:38:00.5305190Z adding 'torch/include/ATen/ops/glu_backward_native.h' 2025-07-17T06:38:00.5306120Z adding 'torch/include/ATen/ops/glu_backward_ops.h' 2025-07-17T06:38:00.5307100Z adding 'torch/include/ATen/ops/glu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5307860Z adding 'torch/include/ATen/ops/glu_cpu_dispatch.h' 2025-07-17T06:38:00.5308670Z adding 'torch/include/ATen/ops/glu_cuda_dispatch.h' 2025-07-17T06:38:00.5309560Z adding 'torch/include/ATen/ops/glu_jvp.h' 2025-07-17T06:38:00.5310530Z adding 'torch/include/ATen/ops/glu_jvp_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.5311340Z adding 'torch/include/ATen/ops/glu_jvp_cpu_dispatch.h' 2025-07-17T06:38:00.5312160Z adding 'torch/include/ATen/ops/glu_jvp_cuda_dispatch.h' 2025-07-17T06:38:00.5312990Z adding 'torch/include/ATen/ops/glu_jvp_native.h' 2025-07-17T06:38:00.5313970Z adding 'torch/include/ATen/ops/glu_jvp_ops.h' 2025-07-17T06:38:00.5314830Z adding 'torch/include/ATen/ops/glu_meta.h' 2025-07-17T06:38:00.5315670Z adding 'torch/include/ATen/ops/glu_meta_dispatch.h' 2025-07-17T06:38:00.5316470Z adding 'torch/include/ATen/ops/glu_mps_dispatch.h' 2025-07-17T06:38:00.5317290Z adding 'torch/include/ATen/ops/glu_native.h' 2025-07-17T06:38:00.5318220Z adding 'torch/include/ATen/ops/glu_ops.h' 2025-07-17T06:38:00.5319270Z adding 'torch/include/ATen/ops/gradient.h' 2025-07-17T06:38:00.5320310Z adding 'torch/include/ATen/ops/gradient_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5321140Z adding 'torch/include/ATen/ops/gradient_native.h' 2025-07-17T06:38:00.5322360Z adding 'torch/include/ATen/ops/gradient_ops.h' 2025-07-17T06:38:00.5323380Z adding 'torch/include/ATen/ops/greater.h' 2025-07-17T06:38:00.5324420Z adding 'torch/include/ATen/ops/greater_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5325300Z adding 'torch/include/ATen/ops/greater_equal.h' 2025-07-17T06:38:00.5326300Z adding 'torch/include/ATen/ops/greater_equal_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5327100Z adding 'torch/include/ATen/ops/greater_equal_native.h' 2025-07-17T06:38:00.5328200Z adding 'torch/include/ATen/ops/greater_equal_ops.h' 2025-07-17T06:38:00.5329050Z adding 'torch/include/ATen/ops/greater_native.h' 2025-07-17T06:38:00.5330150Z adding 'torch/include/ATen/ops/greater_ops.h' 2025-07-17T06:38:00.5331040Z adding 'torch/include/ATen/ops/grid_sampler.h' 2025-07-17T06:38:00.5331960Z adding 'torch/include/ATen/ops/grid_sampler_2d.h' 2025-07-17T06:38:00.5332990Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward.h' 2025-07-17T06:38:00.5334020Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.5334850Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_cpu_dispatch.h' 2025-07-17T06:38:00.5335730Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_cuda_dispatch.h' 2025-07-17T06:38:00.5336560Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_native.h' 2025-07-17T06:38:00.5337600Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_ops.h' 2025-07-17T06:38:00.5338550Z adding 'torch/include/ATen/ops/grid_sampler_2d_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.5339360Z adding 'torch/include/ATen/ops/grid_sampler_2d_cpu_dispatch.h' 2025-07-17T06:38:00.5340180Z adding 'torch/include/ATen/ops/grid_sampler_2d_cuda_dispatch.h' 2025-07-17T06:38:00.5340990Z adding 'torch/include/ATen/ops/grid_sampler_2d_mps_dispatch.h' 2025-07-17T06:38:00.5341850Z adding 'torch/include/ATen/ops/grid_sampler_2d_native.h' 2025-07-17T06:38:00.5342830Z adding 'torch/include/ATen/ops/grid_sampler_2d_ops.h' 2025-07-17T06:38:00.5343740Z adding 'torch/include/ATen/ops/grid_sampler_3d.h' 2025-07-17T06:38:00.5344750Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward.h' 2025-07-17T06:38:00.5345790Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.5346630Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_cpu_dispatch.h' 2025-07-17T06:38:00.5347460Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_cuda_dispatch.h' 2025-07-17T06:38:00.5348320Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_native.h' 2025-07-17T06:38:00.5349350Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_ops.h' 2025-07-17T06:38:00.5350300Z adding 'torch/include/ATen/ops/grid_sampler_3d_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.5351080Z adding 'torch/include/ATen/ops/grid_sampler_3d_cpu_dispatch.h' 2025-07-17T06:38:00.5351900Z adding 'torch/include/ATen/ops/grid_sampler_3d_cuda_dispatch.h' 2025-07-17T06:38:00.5352730Z adding 'torch/include/ATen/ops/grid_sampler_3d_native.h' 2025-07-17T06:38:00.5353720Z adding 'torch/include/ATen/ops/grid_sampler_3d_ops.h' 2025-07-17T06:38:00.5354670Z adding 'torch/include/ATen/ops/grid_sampler_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5355440Z adding 'torch/include/ATen/ops/grid_sampler_native.h' 2025-07-17T06:38:00.5356390Z adding 'torch/include/ATen/ops/grid_sampler_ops.h' 2025-07-17T06:38:00.5357220Z adding 'torch/include/ATen/ops/group_norm.h' 2025-07-17T06:38:00.5358190Z adding 'torch/include/ATen/ops/group_norm_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5358960Z adding 'torch/include/ATen/ops/group_norm_native.h' 2025-07-17T06:38:00.5359900Z adding 'torch/include/ATen/ops/group_norm_ops.h' 2025-07-17T06:38:00.5360840Z adding 'torch/include/ATen/ops/gru.h' 2025-07-17T06:38:00.5361720Z adding 'torch/include/ATen/ops/gru_cell.h' 2025-07-17T06:38:00.5362690Z adding 'torch/include/ATen/ops/gru_cell_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5363430Z adding 'torch/include/ATen/ops/gru_cell_native.h' 2025-07-17T06:38:00.5364340Z adding 'torch/include/ATen/ops/gru_cell_ops.h' 2025-07-17T06:38:00.5365300Z adding 'torch/include/ATen/ops/gru_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5366090Z adding 'torch/include/ATen/ops/gru_native.h' 2025-07-17T06:38:00.5367120Z adding 'torch/include/ATen/ops/gru_ops.h' 2025-07-17T06:38:00.5368060Z adding 'torch/include/ATen/ops/gt.h' 2025-07-17T06:38:00.5369040Z adding 'torch/include/ATen/ops/gt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5369820Z adding 'torch/include/ATen/ops/gt_cpu_dispatch.h' 2025-07-17T06:38:00.5370670Z adding 'torch/include/ATen/ops/gt_cuda_dispatch.h' 2025-07-17T06:38:00.5371500Z adding 'torch/include/ATen/ops/gt_meta.h' 2025-07-17T06:38:00.5372380Z adding 'torch/include/ATen/ops/gt_meta_dispatch.h' 2025-07-17T06:38:00.5373200Z adding 'torch/include/ATen/ops/gt_mps_dispatch.h' 2025-07-17T06:38:00.5374120Z adding 'torch/include/ATen/ops/gt_native.h' 2025-07-17T06:38:00.5375220Z adding 'torch/include/ATen/ops/gt_ops.h' 2025-07-17T06:38:00.5376510Z adding 'torch/include/ATen/ops/hamming_window.h' 2025-07-17T06:38:00.5377680Z adding 'torch/include/ATen/ops/hamming_window_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.5378530Z adding 'torch/include/ATen/ops/hamming_window_native.h' 2025-07-17T06:38:00.5379780Z adding 'torch/include/ATen/ops/hamming_window_ops.h' 2025-07-17T06:38:00.5380840Z adding 'torch/include/ATen/ops/hann_window.h' 2025-07-17T06:38:00.5381890Z adding 'torch/include/ATen/ops/hann_window_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.5382660Z adding 'torch/include/ATen/ops/hann_window_native.h' 2025-07-17T06:38:00.5383730Z adding 'torch/include/ATen/ops/hann_window_ops.h' 2025-07-17T06:38:00.5384610Z adding 'torch/include/ATen/ops/hardshrink.h' 2025-07-17T06:38:00.5385530Z adding 'torch/include/ATen/ops/hardshrink_backward.h' 2025-07-17T06:38:00.5386600Z adding 'torch/include/ATen/ops/hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5387370Z adding 'torch/include/ATen/ops/hardshrink_backward_cpu_dispatch.h' 2025-07-17T06:38:00.5388220Z adding 'torch/include/ATen/ops/hardshrink_backward_cuda_dispatch.h' 2025-07-17T06:38:00.5389060Z adding 'torch/include/ATen/ops/hardshrink_backward_meta.h' 2025-07-17T06:38:00.5389910Z adding 'torch/include/ATen/ops/hardshrink_backward_meta_dispatch.h' 2025-07-17T06:38:00.5390700Z adding 'torch/include/ATen/ops/hardshrink_backward_mps_dispatch.h' 2025-07-17T06:38:00.5391550Z adding 'torch/include/ATen/ops/hardshrink_backward_native.h' 2025-07-17T06:38:00.5392490Z adding 'torch/include/ATen/ops/hardshrink_backward_ops.h' 2025-07-17T06:38:00.5393470Z adding 'torch/include/ATen/ops/hardshrink_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5394230Z adding 'torch/include/ATen/ops/hardshrink_cpu_dispatch.h' 2025-07-17T06:38:00.5395070Z adding 'torch/include/ATen/ops/hardshrink_cuda_dispatch.h' 2025-07-17T06:38:00.5395870Z adding 'torch/include/ATen/ops/hardshrink_meta.h' 2025-07-17T06:38:00.5396710Z adding 'torch/include/ATen/ops/hardshrink_meta_dispatch.h' 2025-07-17T06:38:00.5397530Z adding 'torch/include/ATen/ops/hardshrink_mps_dispatch.h' 2025-07-17T06:38:00.5398330Z adding 'torch/include/ATen/ops/hardshrink_native.h' 2025-07-17T06:38:00.5399260Z adding 'torch/include/ATen/ops/hardshrink_ops.h' 2025-07-17T06:38:00.5400170Z adding 'torch/include/ATen/ops/hardsigmoid.h' 2025-07-17T06:38:00.5401040Z adding 'torch/include/ATen/ops/hardsigmoid_backward.h' 2025-07-17T06:38:00.5402050Z adding 'torch/include/ATen/ops/hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5402800Z adding 'torch/include/ATen/ops/hardsigmoid_backward_cpu_dispatch.h' 2025-07-17T06:38:00.5403620Z adding 'torch/include/ATen/ops/hardsigmoid_backward_cuda_dispatch.h' 2025-07-17T06:38:00.5404410Z adding 'torch/include/ATen/ops/hardsigmoid_backward_meta.h' 2025-07-17T06:38:00.5405270Z adding 'torch/include/ATen/ops/hardsigmoid_backward_meta_dispatch.h' 2025-07-17T06:38:00.5406070Z adding 'torch/include/ATen/ops/hardsigmoid_backward_mps_dispatch.h' 2025-07-17T06:38:00.5406870Z adding 'torch/include/ATen/ops/hardsigmoid_backward_native.h' 2025-07-17T06:38:00.5407800Z adding 'torch/include/ATen/ops/hardsigmoid_backward_ops.h' 2025-07-17T06:38:00.5408830Z adding 'torch/include/ATen/ops/hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5409560Z adding 'torch/include/ATen/ops/hardsigmoid_cpu_dispatch.h' 2025-07-17T06:38:00.5410380Z adding 'torch/include/ATen/ops/hardsigmoid_cuda_dispatch.h' 2025-07-17T06:38:00.5411200Z adding 'torch/include/ATen/ops/hardsigmoid_meta.h' 2025-07-17T06:38:00.5412040Z adding 'torch/include/ATen/ops/hardsigmoid_meta_dispatch.h' 2025-07-17T06:38:00.5412840Z adding 'torch/include/ATen/ops/hardsigmoid_mps_dispatch.h' 2025-07-17T06:38:00.5413680Z adding 'torch/include/ATen/ops/hardsigmoid_native.h' 2025-07-17T06:38:00.5414640Z adding 'torch/include/ATen/ops/hardsigmoid_ops.h' 2025-07-17T06:38:00.5415520Z adding 'torch/include/ATen/ops/hardswish.h' 2025-07-17T06:38:00.5416420Z adding 'torch/include/ATen/ops/hardswish_backward.h' 2025-07-17T06:38:00.5417410Z adding 'torch/include/ATen/ops/hardswish_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.5418180Z adding 'torch/include/ATen/ops/hardswish_backward_cpu_dispatch.h' 2025-07-17T06:38:00.5418990Z adding 'torch/include/ATen/ops/hardswish_backward_cuda_dispatch.h' 2025-07-17T06:38:00.5419760Z adding 'torch/include/ATen/ops/hardswish_backward_mps_dispatch.h' 2025-07-17T06:38:00.5420580Z adding 'torch/include/ATen/ops/hardswish_backward_native.h' 2025-07-17T06:38:00.5421510Z adding 'torch/include/ATen/ops/hardswish_backward_ops.h' 2025-07-17T06:38:00.5422350Z adding 'torch/include/ATen/ops/hardswish_cpu_dispatch.h' 2025-07-17T06:38:00.5423150Z adding 'torch/include/ATen/ops/hardswish_cuda_dispatch.h' 2025-07-17T06:38:00.5423980Z adding 'torch/include/ATen/ops/hardswish_meta_dispatch.h' 2025-07-17T06:38:00.5424800Z adding 'torch/include/ATen/ops/hardswish_mps_dispatch.h' 2025-07-17T06:38:00.5425600Z adding 'torch/include/ATen/ops/hardswish_native.h' 2025-07-17T06:38:00.5426550Z adding 'torch/include/ATen/ops/hardswish_ops.h' 2025-07-17T06:38:00.5427460Z adding 'torch/include/ATen/ops/hardtanh.h' 2025-07-17T06:38:00.5428380Z adding 'torch/include/ATen/ops/hardtanh_backward.h' 2025-07-17T06:38:00.5429290Z adding 'torch/include/ATen/ops/hardtanh_backward_cpu_dispatch.h' 2025-07-17T06:38:00.5430140Z adding 'torch/include/ATen/ops/hardtanh_backward_cuda_dispatch.h' 2025-07-17T06:38:00.5430970Z adding 'torch/include/ATen/ops/hardtanh_backward_mps_dispatch.h' 2025-07-17T06:38:00.5431810Z adding 'torch/include/ATen/ops/hardtanh_backward_native.h' 2025-07-17T06:38:00.5432770Z adding 'torch/include/ATen/ops/hardtanh_backward_ops.h' 2025-07-17T06:38:00.5433660Z adding 'torch/include/ATen/ops/hardtanh_cpu_dispatch.h' 2025-07-17T06:38:00.5434470Z adding 'torch/include/ATen/ops/hardtanh_cuda_dispatch.h' 2025-07-17T06:38:00.5435310Z adding 'torch/include/ATen/ops/hardtanh_meta_dispatch.h' 2025-07-17T06:38:00.5436130Z adding 'torch/include/ATen/ops/hardtanh_mps_dispatch.h' 2025-07-17T06:38:00.5437000Z adding 'torch/include/ATen/ops/hardtanh_native.h' 2025-07-17T06:38:00.5437990Z adding 'torch/include/ATen/ops/hardtanh_ops.h' 2025-07-17T06:38:00.5438860Z adding 'torch/include/ATen/ops/heaviside.h' 2025-07-17T06:38:00.5439870Z adding 'torch/include/ATen/ops/heaviside_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5440600Z adding 'torch/include/ATen/ops/heaviside_cpu_dispatch.h' 2025-07-17T06:38:00.5441440Z adding 'torch/include/ATen/ops/heaviside_cuda_dispatch.h' 2025-07-17T06:38:00.5442270Z adding 'torch/include/ATen/ops/heaviside_meta.h' 2025-07-17T06:38:00.5443130Z adding 'torch/include/ATen/ops/heaviside_meta_dispatch.h' 2025-07-17T06:38:00.5443940Z adding 'torch/include/ATen/ops/heaviside_native.h' 2025-07-17T06:38:00.5444920Z adding 'torch/include/ATen/ops/heaviside_ops.h' 2025-07-17T06:38:00.5445800Z adding 'torch/include/ATen/ops/hinge_embedding_loss.h' 2025-07-17T06:38:00.5446760Z adding 'torch/include/ATen/ops/hinge_embedding_loss_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5447520Z adding 'torch/include/ATen/ops/hinge_embedding_loss_native.h' 2025-07-17T06:38:00.5448430Z adding 'torch/include/ATen/ops/hinge_embedding_loss_ops.h' 2025-07-17T06:38:00.5449290Z adding 'torch/include/ATen/ops/histc.h' 2025-07-17T06:38:00.5450190Z adding 'torch/include/ATen/ops/histc_cpu_dispatch.h' 2025-07-17T06:38:00.5451020Z adding 'torch/include/ATen/ops/histc_cuda_dispatch.h' 2025-07-17T06:38:00.5451830Z adding 'torch/include/ATen/ops/histc_mps_dispatch.h' 2025-07-17T06:38:00.5452690Z adding 'torch/include/ATen/ops/histc_native.h' 2025-07-17T06:38:00.5453620Z adding 'torch/include/ATen/ops/histc_ops.h' 2025-07-17T06:38:00.5454680Z adding 'torch/include/ATen/ops/histogram.h' 2025-07-17T06:38:00.5455650Z adding 'torch/include/ATen/ops/histogram_cpu_dispatch.h' 2025-07-17T06:38:00.5456530Z adding 'torch/include/ATen/ops/histogram_mps_dispatch.h' 2025-07-17T06:38:00.5457740Z adding 'torch/include/ATen/ops/histogram_native.h' 2025-07-17T06:38:00.5458850Z adding 'torch/include/ATen/ops/histogram_ops.h' 2025-07-17T06:38:00.5459850Z adding 'torch/include/ATen/ops/histogramdd.h' 2025-07-17T06:38:00.5460840Z adding 'torch/include/ATen/ops/histogramdd_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5461640Z adding 'torch/include/ATen/ops/histogramdd_native.h' 2025-07-17T06:38:00.5462700Z adding 'torch/include/ATen/ops/histogramdd_ops.h' 2025-07-17T06:38:00.5463600Z adding 'torch/include/ATen/ops/hsplit.h' 2025-07-17T06:38:00.5464570Z adding 'torch/include/ATen/ops/hsplit_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5465320Z adding 'torch/include/ATen/ops/hsplit_native.h' 2025-07-17T06:38:00.5466260Z adding 'torch/include/ATen/ops/hsplit_ops.h' 2025-07-17T06:38:00.5467150Z adding 'torch/include/ATen/ops/hspmm.h' 2025-07-17T06:38:00.5467990Z adding 'torch/include/ATen/ops/hspmm_native.h' 2025-07-17T06:38:00.5468950Z adding 'torch/include/ATen/ops/hspmm_ops.h' 2025-07-17T06:38:00.5469820Z adding 'torch/include/ATen/ops/hstack.h' 2025-07-17T06:38:00.5470800Z adding 'torch/include/ATen/ops/hstack_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5471560Z adding 'torch/include/ATen/ops/hstack_native.h' 2025-07-17T06:38:00.5472490Z adding 'torch/include/ATen/ops/hstack_ops.h' 2025-07-17T06:38:00.5473400Z adding 'torch/include/ATen/ops/huber_loss.h' 2025-07-17T06:38:00.5474360Z adding 'torch/include/ATen/ops/huber_loss_backward.h' 2025-07-17T06:38:00.5475340Z adding 'torch/include/ATen/ops/huber_loss_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.5476170Z adding 'torch/include/ATen/ops/huber_loss_backward_cpu_dispatch.h' 2025-07-17T06:38:00.5477020Z adding 'torch/include/ATen/ops/huber_loss_backward_cuda_dispatch.h' 2025-07-17T06:38:00.5477850Z adding 'torch/include/ATen/ops/huber_loss_backward_mps_dispatch.h' 2025-07-17T06:38:00.5478670Z adding 'torch/include/ATen/ops/huber_loss_backward_native.h' 2025-07-17T06:38:00.5479650Z adding 'torch/include/ATen/ops/huber_loss_backward_ops.h' 2025-07-17T06:38:00.5480520Z adding 'torch/include/ATen/ops/huber_loss_cpu_dispatch.h' 2025-07-17T06:38:00.5481460Z adding 'torch/include/ATen/ops/huber_loss_cuda_dispatch.h' 2025-07-17T06:38:00.5482230Z adding 'torch/include/ATen/ops/huber_loss_mps_dispatch.h' 2025-07-17T06:38:00.5483090Z adding 'torch/include/ATen/ops/huber_loss_native.h' 2025-07-17T06:38:00.5484020Z adding 'torch/include/ATen/ops/huber_loss_ops.h' 2025-07-17T06:38:00.5484880Z adding 'torch/include/ATen/ops/hypot.h' 2025-07-17T06:38:00.5485880Z adding 'torch/include/ATen/ops/hypot_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5486660Z adding 'torch/include/ATen/ops/hypot_cpu_dispatch.h' 2025-07-17T06:38:00.5487480Z adding 'torch/include/ATen/ops/hypot_cuda_dispatch.h' 2025-07-17T06:38:00.5488290Z adding 'torch/include/ATen/ops/hypot_meta.h' 2025-07-17T06:38:00.5494270Z adding 'torch/include/ATen/ops/hypot_meta_dispatch.h' 2025-07-17T06:38:00.5494500Z adding 'torch/include/ATen/ops/hypot_mps_dispatch.h' 2025-07-17T06:38:00.5494640Z adding 'torch/include/ATen/ops/hypot_native.h' 2025-07-17T06:38:00.5494720Z adding 'torch/include/ATen/ops/hypot_ops.h' 2025-07-17T06:38:00.5494790Z adding 'torch/include/ATen/ops/i0.h' 2025-07-17T06:38:00.5494980Z adding 'torch/include/ATen/ops/i0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5495060Z adding 'torch/include/ATen/ops/i0_cpu_dispatch.h' 2025-07-17T06:38:00.5495180Z adding 'torch/include/ATen/ops/i0_cuda_dispatch.h' 2025-07-17T06:38:00.5495910Z adding 'torch/include/ATen/ops/i0_meta.h' 2025-07-17T06:38:00.5496750Z adding 'torch/include/ATen/ops/i0_meta_dispatch.h' 2025-07-17T06:38:00.5497530Z adding 'torch/include/ATen/ops/i0_mps_dispatch.h' 2025-07-17T06:38:00.5498380Z adding 'torch/include/ATen/ops/i0_native.h' 2025-07-17T06:38:00.5499340Z adding 'torch/include/ATen/ops/i0_ops.h' 2025-07-17T06:38:00.5500200Z adding 'torch/include/ATen/ops/igamma.h' 2025-07-17T06:38:00.5501220Z adding 'torch/include/ATen/ops/igamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5501970Z adding 'torch/include/ATen/ops/igamma_cpu_dispatch.h' 2025-07-17T06:38:00.5502850Z adding 'torch/include/ATen/ops/igamma_cuda_dispatch.h' 2025-07-17T06:38:00.5503640Z adding 'torch/include/ATen/ops/igamma_meta.h' 2025-07-17T06:38:00.5504460Z adding 'torch/include/ATen/ops/igamma_meta_dispatch.h' 2025-07-17T06:38:00.5505270Z adding 'torch/include/ATen/ops/igamma_native.h' 2025-07-17T06:38:00.5506240Z adding 'torch/include/ATen/ops/igamma_ops.h' 2025-07-17T06:38:00.5507130Z adding 'torch/include/ATen/ops/igammac.h' 2025-07-17T06:38:00.5508110Z adding 'torch/include/ATen/ops/igammac_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5508860Z adding 'torch/include/ATen/ops/igammac_cpu_dispatch.h' 2025-07-17T06:38:00.5509650Z adding 'torch/include/ATen/ops/igammac_cuda_dispatch.h' 2025-07-17T06:38:00.5510470Z adding 'torch/include/ATen/ops/igammac_meta.h' 2025-07-17T06:38:00.5511290Z adding 'torch/include/ATen/ops/igammac_meta_dispatch.h' 2025-07-17T06:38:00.5512090Z adding 'torch/include/ATen/ops/igammac_native.h' 2025-07-17T06:38:00.5513050Z adding 'torch/include/ATen/ops/igammac_ops.h' 2025-07-17T06:38:00.5513960Z adding 'torch/include/ATen/ops/im2col.h' 2025-07-17T06:38:00.5514860Z adding 'torch/include/ATen/ops/im2col_cpu_dispatch.h' 2025-07-17T06:38:00.5515690Z adding 'torch/include/ATen/ops/im2col_cuda_dispatch.h' 2025-07-17T06:38:00.5516520Z adding 'torch/include/ATen/ops/im2col_mps_dispatch.h' 2025-07-17T06:38:00.5517380Z adding 'torch/include/ATen/ops/im2col_native.h' 2025-07-17T06:38:00.5518330Z adding 'torch/include/ATen/ops/im2col_ops.h' 2025-07-17T06:38:00.5519180Z adding 'torch/include/ATen/ops/imag.h' 2025-07-17T06:38:00.5520100Z adding 'torch/include/ATen/ops/imag_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5520840Z adding 'torch/include/ATen/ops/imag_native.h' 2025-07-17T06:38:00.5521720Z adding 'torch/include/ATen/ops/imag_ops.h' 2025-07-17T06:38:00.5522600Z adding 'torch/include/ATen/ops/index.h' 2025-07-17T06:38:00.5523540Z adding 'torch/include/ATen/ops/index_add.h' 2025-07-17T06:38:00.5524570Z adding 'torch/include/ATen/ops/index_add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5525410Z adding 'torch/include/ATen/ops/index_add_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5526280Z adding 'torch/include/ATen/ops/index_add_cpu_dispatch.h' 2025-07-17T06:38:00.5527090Z adding 'torch/include/ATen/ops/index_add_cuda_dispatch.h' 2025-07-17T06:38:00.5527980Z adding 'torch/include/ATen/ops/index_add_meta.h' 2025-07-17T06:38:00.5528850Z adding 'torch/include/ATen/ops/index_add_meta_dispatch.h' 2025-07-17T06:38:00.5529670Z adding 'torch/include/ATen/ops/index_add_mps_dispatch.h' 2025-07-17T06:38:00.5530540Z adding 'torch/include/ATen/ops/index_add_native.h' 2025-07-17T06:38:00.5531610Z adding 'torch/include/ATen/ops/index_add_ops.h' 2025-07-17T06:38:00.5532590Z adding 'torch/include/ATen/ops/index_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5533400Z adding 'torch/include/ATen/ops/index_copy.h' 2025-07-17T06:38:00.5534400Z adding 'torch/include/ATen/ops/index_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5535230Z adding 'torch/include/ATen/ops/index_copy_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5536030Z adding 'torch/include/ATen/ops/index_copy_cpu_dispatch.h' 2025-07-17T06:38:00.5536890Z adding 'torch/include/ATen/ops/index_copy_cuda_dispatch.h' 2025-07-17T06:38:00.5537780Z adding 'torch/include/ATen/ops/index_copy_meta.h' 2025-07-17T06:38:00.5538630Z adding 'torch/include/ATen/ops/index_copy_meta_dispatch.h' 2025-07-17T06:38:00.5539440Z adding 'torch/include/ATen/ops/index_copy_mps_dispatch.h' 2025-07-17T06:38:00.5540310Z adding 'torch/include/ATen/ops/index_copy_native.h' 2025-07-17T06:38:00.5541380Z adding 'torch/include/ATen/ops/index_copy_ops.h' 2025-07-17T06:38:00.5542280Z adding 'torch/include/ATen/ops/index_cpu_dispatch.h' 2025-07-17T06:38:00.5543110Z adding 'torch/include/ATen/ops/index_cuda_dispatch.h' 2025-07-17T06:38:00.5544110Z adding 'torch/include/ATen/ops/index_fill.h' 2025-07-17T06:38:00.5545170Z adding 'torch/include/ATen/ops/index_fill_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.5546010Z adding 'torch/include/ATen/ops/index_fill_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5546800Z adding 'torch/include/ATen/ops/index_fill_cpu_dispatch.h' 2025-07-17T06:38:00.5547620Z adding 'torch/include/ATen/ops/index_fill_cuda_dispatch.h' 2025-07-17T06:38:00.5548450Z adding 'torch/include/ATen/ops/index_fill_meta_dispatch.h' 2025-07-17T06:38:00.5549220Z adding 'torch/include/ATen/ops/index_fill_mps_dispatch.h' 2025-07-17T06:38:00.5550120Z adding 'torch/include/ATen/ops/index_fill_native.h' 2025-07-17T06:38:00.5551530Z adding 'torch/include/ATen/ops/index_fill_ops.h' 2025-07-17T06:38:00.5552590Z adding 'torch/include/ATen/ops/index_meta.h' 2025-07-17T06:38:00.5553450Z adding 'torch/include/ATen/ops/index_meta_dispatch.h' 2025-07-17T06:38:00.5554260Z adding 'torch/include/ATen/ops/index_mps_dispatch.h' 2025-07-17T06:38:00.5555110Z adding 'torch/include/ATen/ops/index_native.h' 2025-07-17T06:38:00.5556060Z adding 'torch/include/ATen/ops/index_ops.h' 2025-07-17T06:38:00.5557010Z adding 'torch/include/ATen/ops/index_put.h' 2025-07-17T06:38:00.5557980Z adding 'torch/include/ATen/ops/index_put_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.5558750Z adding 'torch/include/ATen/ops/index_put_native.h' 2025-07-17T06:38:00.5559770Z adding 'torch/include/ATen/ops/index_put_ops.h' 2025-07-17T06:38:00.5560700Z adding 'torch/include/ATen/ops/index_reduce.h' 2025-07-17T06:38:00.5561720Z adding 'torch/include/ATen/ops/index_reduce_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5562500Z adding 'torch/include/ATen/ops/index_reduce_cpu_dispatch.h' 2025-07-17T06:38:00.5563360Z adding 'torch/include/ATen/ops/index_reduce_cuda_dispatch.h' 2025-07-17T06:38:00.5564250Z adding 'torch/include/ATen/ops/index_reduce_meta.h' 2025-07-17T06:38:00.5565130Z adding 'torch/include/ATen/ops/index_reduce_meta_dispatch.h' 2025-07-17T06:38:00.5565960Z adding 'torch/include/ATen/ops/index_reduce_native.h' 2025-07-17T06:38:00.5566970Z adding 'torch/include/ATen/ops/index_reduce_ops.h' 2025-07-17T06:38:00.5567910Z adding 'torch/include/ATen/ops/index_select.h' 2025-07-17T06:38:00.5568910Z adding 'torch/include/ATen/ops/index_select_backward.h' 2025-07-17T06:38:00.5569840Z adding 'torch/include/ATen/ops/index_select_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5570610Z adding 'torch/include/ATen/ops/index_select_backward_native.h' 2025-07-17T06:38:00.5571530Z adding 'torch/include/ATen/ops/index_select_backward_ops.h' 2025-07-17T06:38:00.5572480Z adding 'torch/include/ATen/ops/index_select_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5573280Z adding 'torch/include/ATen/ops/index_select_cpu_dispatch.h' 2025-07-17T06:38:00.5574110Z adding 'torch/include/ATen/ops/index_select_cuda_dispatch.h' 2025-07-17T06:38:00.5574920Z adding 'torch/include/ATen/ops/index_select_mps_dispatch.h' 2025-07-17T06:38:00.5575820Z adding 'torch/include/ATen/ops/index_select_native.h' 2025-07-17T06:38:00.5576840Z adding 'torch/include/ATen/ops/index_select_ops.h' 2025-07-17T06:38:00.5577660Z adding 'torch/include/ATen/ops/indices.h' 2025-07-17T06:38:00.5578610Z adding 'torch/include/ATen/ops/indices_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.5579390Z adding 'torch/include/ATen/ops/indices_copy.h' 2025-07-17T06:38:00.5580360Z adding 'torch/include/ATen/ops/indices_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.5581270Z adding 'torch/include/ATen/ops/indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5581960Z adding 'torch/include/ATen/ops/indices_copy_native.h' 2025-07-17T06:38:00.5582880Z adding 'torch/include/ATen/ops/indices_copy_ops.h' 2025-07-17T06:38:00.5583710Z adding 'torch/include/ATen/ops/indices_native.h' 2025-07-17T06:38:00.5584580Z adding 'torch/include/ATen/ops/indices_ops.h' 2025-07-17T06:38:00.5585510Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward.h' 2025-07-17T06:38:00.5586490Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5587220Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_native.h' 2025-07-17T06:38:00.5588100Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_ops.h' 2025-07-17T06:38:00.5588890Z adding 'torch/include/ATen/ops/inner.h' 2025-07-17T06:38:00.5589840Z adding 'torch/include/ATen/ops/inner_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5590600Z adding 'torch/include/ATen/ops/inner_native.h' 2025-07-17T06:38:00.5591510Z adding 'torch/include/ATen/ops/inner_ops.h' 2025-07-17T06:38:00.5592400Z adding 'torch/include/ATen/ops/instance_norm.h' 2025-07-17T06:38:00.5593360Z adding 'torch/include/ATen/ops/instance_norm_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5594110Z adding 'torch/include/ATen/ops/instance_norm_native.h' 2025-07-17T06:38:00.5595060Z adding 'torch/include/ATen/ops/instance_norm_ops.h' 2025-07-17T06:38:00.5595910Z adding 'torch/include/ATen/ops/int_repr.h' 2025-07-17T06:38:00.5596840Z adding 'torch/include/ATen/ops/int_repr_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.5597580Z adding 'torch/include/ATen/ops/int_repr_native.h' 2025-07-17T06:38:00.5598480Z adding 'torch/include/ATen/ops/int_repr_ops.h' 2025-07-17T06:38:00.5599350Z adding 'torch/include/ATen/ops/inverse.h' 2025-07-17T06:38:00.5600290Z adding 'torch/include/ATen/ops/inverse_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5601030Z adding 'torch/include/ATen/ops/inverse_native.h' 2025-07-17T06:38:00.5601940Z adding 'torch/include/ATen/ops/inverse_ops.h' 2025-07-17T06:38:00.5602740Z adding 'torch/include/ATen/ops/is_coalesced.h' 2025-07-17T06:38:00.5603670Z adding 'torch/include/ATen/ops/is_coalesced_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.5604420Z adding 'torch/include/ATen/ops/is_coalesced_native.h' 2025-07-17T06:38:00.5605280Z adding 'torch/include/ATen/ops/is_coalesced_ops.h' 2025-07-17T06:38:00.5606130Z adding 'torch/include/ATen/ops/is_complex.h' 2025-07-17T06:38:00.5607070Z adding 'torch/include/ATen/ops/is_complex_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5607800Z adding 'torch/include/ATen/ops/is_complex_native.h' 2025-07-17T06:38:00.5608690Z adding 'torch/include/ATen/ops/is_complex_ops.h' 2025-07-17T06:38:00.5609480Z adding 'torch/include/ATen/ops/is_conj.h' 2025-07-17T06:38:00.5610410Z adding 'torch/include/ATen/ops/is_conj_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5611140Z adding 'torch/include/ATen/ops/is_conj_native.h' 2025-07-17T06:38:00.5612020Z adding 'torch/include/ATen/ops/is_conj_ops.h' 2025-07-17T06:38:00.5612870Z adding 'torch/include/ATen/ops/is_distributed.h' 2025-07-17T06:38:00.5613810Z adding 'torch/include/ATen/ops/is_distributed_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5614570Z adding 'torch/include/ATen/ops/is_distributed_native.h' 2025-07-17T06:38:00.5615450Z adding 'torch/include/ATen/ops/is_distributed_ops.h' 2025-07-17T06:38:00.5616250Z adding 'torch/include/ATen/ops/is_floating_point.h' 2025-07-17T06:38:00.5617190Z adding 'torch/include/ATen/ops/is_floating_point_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5617920Z adding 'torch/include/ATen/ops/is_floating_point_native.h' 2025-07-17T06:38:00.5618770Z adding 'torch/include/ATen/ops/is_floating_point_ops.h' 2025-07-17T06:38:00.5619570Z adding 'torch/include/ATen/ops/is_inference.h' 2025-07-17T06:38:00.5620500Z adding 'torch/include/ATen/ops/is_inference_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5621240Z adding 'torch/include/ATen/ops/is_inference_native.h' 2025-07-17T06:38:00.5622090Z adding 'torch/include/ATen/ops/is_inference_ops.h' 2025-07-17T06:38:00.5622890Z adding 'torch/include/ATen/ops/is_leaf.h' 2025-07-17T06:38:00.5623800Z adding 'torch/include/ATen/ops/is_leaf_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5624520Z adding 'torch/include/ATen/ops/is_leaf_native.h' 2025-07-17T06:38:00.5625400Z adding 'torch/include/ATen/ops/is_leaf_ops.h' 2025-07-17T06:38:00.5626270Z adding 'torch/include/ATen/ops/is_neg.h' 2025-07-17T06:38:00.5627160Z adding 'torch/include/ATen/ops/is_neg_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5627890Z adding 'torch/include/ATen/ops/is_neg_native.h' 2025-07-17T06:38:00.5628770Z adding 'torch/include/ATen/ops/is_neg_ops.h' 2025-07-17T06:38:00.5629570Z adding 'torch/include/ATen/ops/is_nonzero.h' 2025-07-17T06:38:00.5630510Z adding 'torch/include/ATen/ops/is_nonzero_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5631230Z adding 'torch/include/ATen/ops/is_nonzero_native.h' 2025-07-17T06:38:00.5632080Z adding 'torch/include/ATen/ops/is_nonzero_ops.h' 2025-07-17T06:38:00.5632870Z adding 'torch/include/ATen/ops/is_pinned.h' 2025-07-17T06:38:00.5633830Z adding 'torch/include/ATen/ops/is_pinned_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.5634580Z adding 'torch/include/ATen/ops/is_pinned_native.h' 2025-07-17T06:38:00.5635460Z adding 'torch/include/ATen/ops/is_pinned_ops.h' 2025-07-17T06:38:00.5636320Z adding 'torch/include/ATen/ops/is_same_size.h' 2025-07-17T06:38:00.5637290Z adding 'torch/include/ATen/ops/is_same_size_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.5638080Z adding 'torch/include/ATen/ops/is_same_size_native.h' 2025-07-17T06:38:00.5639040Z adding 'torch/include/ATen/ops/is_same_size_ops.h' 2025-07-17T06:38:00.5639840Z adding 'torch/include/ATen/ops/is_set_to.h' 2025-07-17T06:38:00.5640700Z adding 'torch/include/ATen/ops/is_set_to_cpu_dispatch.h' 2025-07-17T06:38:00.5641520Z adding 'torch/include/ATen/ops/is_set_to_cuda_dispatch.h' 2025-07-17T06:38:00.5642320Z adding 'torch/include/ATen/ops/is_set_to_mps_dispatch.h' 2025-07-17T06:38:00.5643120Z adding 'torch/include/ATen/ops/is_set_to_native.h' 2025-07-17T06:38:00.5643990Z adding 'torch/include/ATen/ops/is_set_to_ops.h' 2025-07-17T06:38:00.5644810Z adding 'torch/include/ATen/ops/is_signed.h' 2025-07-17T06:38:00.5645730Z adding 'torch/include/ATen/ops/is_signed_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5646450Z adding 'torch/include/ATen/ops/is_signed_native.h' 2025-07-17T06:38:00.5647300Z adding 'torch/include/ATen/ops/is_signed_ops.h' 2025-07-17T06:38:00.5648130Z adding 'torch/include/ATen/ops/is_vulkan_available.h' 2025-07-17T06:38:00.5649100Z adding 'torch/include/ATen/ops/is_vulkan_available_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5649820Z adding 'torch/include/ATen/ops/is_vulkan_available_native.h' 2025-07-17T06:38:00.5650660Z adding 'torch/include/ATen/ops/is_vulkan_available_ops.h' 2025-07-17T06:38:00.5651490Z adding 'torch/include/ATen/ops/isclose.h' 2025-07-17T06:38:00.5652450Z adding 'torch/include/ATen/ops/isclose_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5653190Z adding 'torch/include/ATen/ops/isclose_native.h' 2025-07-17T06:38:00.5654100Z adding 'torch/include/ATen/ops/isclose_ops.h' 2025-07-17T06:38:00.5654920Z adding 'torch/include/ATen/ops/isfinite.h' 2025-07-17T06:38:00.5655850Z adding 'torch/include/ATen/ops/isfinite_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5656570Z adding 'torch/include/ATen/ops/isfinite_native.h' 2025-07-17T06:38:00.5657420Z adding 'torch/include/ATen/ops/isfinite_ops.h' 2025-07-17T06:38:00.5659020Z adding 'torch/include/ATen/ops/isin.h' 2025-07-17T06:38:00.5659810Z adding 'torch/include/ATen/ops/isin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5660610Z adding 'torch/include/ATen/ops/isin_cpu_dispatch.h' 2025-07-17T06:38:00.5661520Z adding 'torch/include/ATen/ops/isin_cuda_dispatch.h' 2025-07-17T06:38:00.5662350Z adding 'torch/include/ATen/ops/isin_meta.h' 2025-07-17T06:38:00.5663290Z adding 'torch/include/ATen/ops/isin_meta_dispatch.h' 2025-07-17T06:38:00.5664150Z adding 'torch/include/ATen/ops/isin_mps_dispatch.h' 2025-07-17T06:38:00.5665020Z adding 'torch/include/ATen/ops/isin_native.h' 2025-07-17T06:38:00.5666140Z adding 'torch/include/ATen/ops/isin_ops.h' 2025-07-17T06:38:00.5667020Z adding 'torch/include/ATen/ops/isinf.h' 2025-07-17T06:38:00.5667970Z adding 'torch/include/ATen/ops/isinf_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.5668750Z adding 'torch/include/ATen/ops/isinf_native.h' 2025-07-17T06:38:00.5669630Z adding 'torch/include/ATen/ops/isinf_ops.h' 2025-07-17T06:38:00.5670470Z adding 'torch/include/ATen/ops/isnan.h' 2025-07-17T06:38:00.5671430Z adding 'torch/include/ATen/ops/isnan_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.5672180Z adding 'torch/include/ATen/ops/isnan_cpu_dispatch.h' 2025-07-17T06:38:00.5673000Z adding 'torch/include/ATen/ops/isnan_cuda_dispatch.h' 2025-07-17T06:38:00.5673810Z adding 'torch/include/ATen/ops/isnan_mps_dispatch.h' 2025-07-17T06:38:00.5674650Z adding 'torch/include/ATen/ops/isnan_native.h' 2025-07-17T06:38:00.5675580Z adding 'torch/include/ATen/ops/isnan_ops.h' 2025-07-17T06:38:00.5676500Z adding 'torch/include/ATen/ops/isneginf.h' 2025-07-17T06:38:00.5677480Z adding 'torch/include/ATen/ops/isneginf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5678250Z adding 'torch/include/ATen/ops/isneginf_cpu_dispatch.h' 2025-07-17T06:38:00.5679030Z adding 'torch/include/ATen/ops/isneginf_cuda_dispatch.h' 2025-07-17T06:38:00.5679840Z adding 'torch/include/ATen/ops/isneginf_meta.h' 2025-07-17T06:38:00.5680680Z adding 'torch/include/ATen/ops/isneginf_meta_dispatch.h' 2025-07-17T06:38:00.5681470Z adding 'torch/include/ATen/ops/isneginf_mps_dispatch.h' 2025-07-17T06:38:00.5682320Z adding 'torch/include/ATen/ops/isneginf_native.h' 2025-07-17T06:38:00.5683220Z adding 'torch/include/ATen/ops/isneginf_ops.h' 2025-07-17T06:38:00.5684090Z adding 'torch/include/ATen/ops/isposinf.h' 2025-07-17T06:38:00.5685040Z adding 'torch/include/ATen/ops/isposinf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5685740Z adding 'torch/include/ATen/ops/isposinf_cpu_dispatch.h' 2025-07-17T06:38:00.5686520Z adding 'torch/include/ATen/ops/isposinf_cuda_dispatch.h' 2025-07-17T06:38:00.5687320Z adding 'torch/include/ATen/ops/isposinf_meta.h' 2025-07-17T06:38:00.5688140Z adding 'torch/include/ATen/ops/isposinf_meta_dispatch.h' 2025-07-17T06:38:00.5688910Z adding 'torch/include/ATen/ops/isposinf_mps_dispatch.h' 2025-07-17T06:38:00.5689760Z adding 'torch/include/ATen/ops/isposinf_native.h' 2025-07-17T06:38:00.5690660Z adding 'torch/include/ATen/ops/isposinf_ops.h' 2025-07-17T06:38:00.5691520Z adding 'torch/include/ATen/ops/isreal.h' 2025-07-17T06:38:00.5692440Z adding 'torch/include/ATen/ops/isreal_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5693160Z adding 'torch/include/ATen/ops/isreal_native.h' 2025-07-17T06:38:00.5694080Z adding 'torch/include/ATen/ops/isreal_ops.h' 2025-07-17T06:38:00.5694960Z adding 'torch/include/ATen/ops/istft.h' 2025-07-17T06:38:00.5695940Z adding 'torch/include/ATen/ops/istft_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5696720Z adding 'torch/include/ATen/ops/istft_native.h' 2025-07-17T06:38:00.5697640Z adding 'torch/include/ATen/ops/istft_ops.h' 2025-07-17T06:38:00.5698450Z adding 'torch/include/ATen/ops/item.h' 2025-07-17T06:38:00.5699380Z adding 'torch/include/ATen/ops/item_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5700130Z adding 'torch/include/ATen/ops/item_native.h' 2025-07-17T06:38:00.5700990Z adding 'torch/include/ATen/ops/item_ops.h' 2025-07-17T06:38:00.5702130Z adding 'torch/include/ATen/ops/kaiser_window.h' 2025-07-17T06:38:00.5703210Z adding 'torch/include/ATen/ops/kaiser_window_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.5704030Z adding 'torch/include/ATen/ops/kaiser_window_native.h' 2025-07-17T06:38:00.5705190Z adding 'torch/include/ATen/ops/kaiser_window_ops.h' 2025-07-17T06:38:00.5706100Z adding 'torch/include/ATen/ops/kl_div.h' 2025-07-17T06:38:00.5707010Z adding 'torch/include/ATen/ops/kl_div_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5707780Z adding 'torch/include/ATen/ops/kl_div_native.h' 2025-07-17T06:38:00.5708670Z adding 'torch/include/ATen/ops/kl_div_ops.h' 2025-07-17T06:38:00.5709530Z adding 'torch/include/ATen/ops/kron.h' 2025-07-17T06:38:00.5710470Z adding 'torch/include/ATen/ops/kron_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5711230Z adding 'torch/include/ATen/ops/kron_native.h' 2025-07-17T06:38:00.5712120Z adding 'torch/include/ATen/ops/kron_ops.h' 2025-07-17T06:38:00.5713380Z adding 'torch/include/ATen/ops/kthvalue.h' 2025-07-17T06:38:00.5714390Z adding 'torch/include/ATen/ops/kthvalue_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.5715320Z adding 'torch/include/ATen/ops/kthvalue_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5716130Z adding 'torch/include/ATen/ops/kthvalue_cpu_dispatch.h' 2025-07-17T06:38:00.5717000Z adding 'torch/include/ATen/ops/kthvalue_cuda_dispatch.h' 2025-07-17T06:38:00.5717840Z adding 'torch/include/ATen/ops/kthvalue_native.h' 2025-07-17T06:38:00.5718910Z adding 'torch/include/ATen/ops/kthvalue_ops.h' 2025-07-17T06:38:00.5719760Z adding 'torch/include/ATen/ops/l1_loss.h' 2025-07-17T06:38:00.5720710Z adding 'torch/include/ATen/ops/l1_loss_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5721440Z adding 'torch/include/ATen/ops/l1_loss_native.h' 2025-07-17T06:38:00.5722330Z adding 'torch/include/ATen/ops/l1_loss_ops.h' 2025-07-17T06:38:00.5723280Z adding 'torch/include/ATen/ops/layer_norm.h' 2025-07-17T06:38:00.5724280Z adding 'torch/include/ATen/ops/layer_norm_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5725030Z adding 'torch/include/ATen/ops/layer_norm_native.h' 2025-07-17T06:38:00.5725960Z adding 'torch/include/ATen/ops/layer_norm_ops.h' 2025-07-17T06:38:00.5726850Z adding 'torch/include/ATen/ops/lcm.h' 2025-07-17T06:38:00.5727880Z adding 'torch/include/ATen/ops/lcm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5728720Z adding 'torch/include/ATen/ops/lcm_cpu_dispatch.h' 2025-07-17T06:38:00.5729590Z adding 'torch/include/ATen/ops/lcm_cuda_dispatch.h' 2025-07-17T06:38:00.5730430Z adding 'torch/include/ATen/ops/lcm_meta.h' 2025-07-17T06:38:00.5731340Z adding 'torch/include/ATen/ops/lcm_meta_dispatch.h' 2025-07-17T06:38:00.5732140Z adding 'torch/include/ATen/ops/lcm_native.h' 2025-07-17T06:38:00.5733090Z adding 'torch/include/ATen/ops/lcm_ops.h' 2025-07-17T06:38:00.5734010Z adding 'torch/include/ATen/ops/ldexp.h' 2025-07-17T06:38:00.5735110Z adding 'torch/include/ATen/ops/ldexp_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5735940Z adding 'torch/include/ATen/ops/ldexp_native.h' 2025-07-17T06:38:00.5736880Z adding 'torch/include/ATen/ops/ldexp_ops.h' 2025-07-17T06:38:00.5737790Z adding 'torch/include/ATen/ops/le.h' 2025-07-17T06:38:00.5738780Z adding 'torch/include/ATen/ops/le_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5739570Z adding 'torch/include/ATen/ops/le_cpu_dispatch.h' 2025-07-17T06:38:00.5740460Z adding 'torch/include/ATen/ops/le_cuda_dispatch.h' 2025-07-17T06:38:00.5741260Z adding 'torch/include/ATen/ops/le_meta.h' 2025-07-17T06:38:00.5742110Z adding 'torch/include/ATen/ops/le_meta_dispatch.h' 2025-07-17T06:38:00.5742930Z adding 'torch/include/ATen/ops/le_mps_dispatch.h' 2025-07-17T06:38:00.5743830Z adding 'torch/include/ATen/ops/le_native.h' 2025-07-17T06:38:00.5744910Z adding 'torch/include/ATen/ops/le_ops.h' 2025-07-17T06:38:00.5745830Z adding 'torch/include/ATen/ops/leaky_relu.h' 2025-07-17T06:38:00.5746790Z adding 'torch/include/ATen/ops/leaky_relu_backward.h' 2025-07-17T06:38:00.5747790Z adding 'torch/include/ATen/ops/leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5748580Z adding 'torch/include/ATen/ops/leaky_relu_backward_cpu_dispatch.h' 2025-07-17T06:38:00.5749430Z adding 'torch/include/ATen/ops/leaky_relu_backward_cuda_dispatch.h' 2025-07-17T06:38:00.5750270Z adding 'torch/include/ATen/ops/leaky_relu_backward_meta.h' 2025-07-17T06:38:00.5751120Z adding 'torch/include/ATen/ops/leaky_relu_backward_meta_dispatch.h' 2025-07-17T06:38:00.5751950Z adding 'torch/include/ATen/ops/leaky_relu_backward_mps_dispatch.h' 2025-07-17T06:38:00.5752780Z adding 'torch/include/ATen/ops/leaky_relu_backward_native.h' 2025-07-17T06:38:00.5753750Z adding 'torch/include/ATen/ops/leaky_relu_backward_ops.h' 2025-07-17T06:38:00.5754760Z adding 'torch/include/ATen/ops/leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5755510Z adding 'torch/include/ATen/ops/leaky_relu_cpu_dispatch.h' 2025-07-17T06:38:00.5756330Z adding 'torch/include/ATen/ops/leaky_relu_cuda_dispatch.h' 2025-07-17T06:38:00.5757160Z adding 'torch/include/ATen/ops/leaky_relu_meta.h' 2025-07-17T06:38:00.5758000Z adding 'torch/include/ATen/ops/leaky_relu_meta_dispatch.h' 2025-07-17T06:38:00.5758810Z adding 'torch/include/ATen/ops/leaky_relu_mps_dispatch.h' 2025-07-17T06:38:00.5759650Z adding 'torch/include/ATen/ops/leaky_relu_native.h' 2025-07-17T06:38:00.5760650Z adding 'torch/include/ATen/ops/leaky_relu_ops.h' 2025-07-17T06:38:00.5761590Z adding 'torch/include/ATen/ops/lerp.h' 2025-07-17T06:38:00.5762610Z adding 'torch/include/ATen/ops/lerp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5763380Z adding 'torch/include/ATen/ops/lerp_cpu_dispatch.h' 2025-07-17T06:38:00.5764230Z adding 'torch/include/ATen/ops/lerp_cuda_dispatch.h' 2025-07-17T06:38:00.5765080Z adding 'torch/include/ATen/ops/lerp_meta.h' 2025-07-17T06:38:00.5765960Z adding 'torch/include/ATen/ops/lerp_meta_dispatch.h' 2025-07-17T06:38:00.5766790Z adding 'torch/include/ATen/ops/lerp_mps_dispatch.h' 2025-07-17T06:38:00.5767650Z adding 'torch/include/ATen/ops/lerp_native.h' 2025-07-17T06:38:00.5768780Z adding 'torch/include/ATen/ops/lerp_ops.h' 2025-07-17T06:38:00.5769710Z adding 'torch/include/ATen/ops/less.h' 2025-07-17T06:38:00.5770720Z adding 'torch/include/ATen/ops/less_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5771670Z adding 'torch/include/ATen/ops/less_equal.h' 2025-07-17T06:38:00.5772650Z adding 'torch/include/ATen/ops/less_equal_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5773440Z adding 'torch/include/ATen/ops/less_equal_native.h' 2025-07-17T06:38:00.5774520Z adding 'torch/include/ATen/ops/less_equal_ops.h' 2025-07-17T06:38:00.5775360Z adding 'torch/include/ATen/ops/less_native.h' 2025-07-17T06:38:00.5776480Z adding 'torch/include/ATen/ops/less_ops.h' 2025-07-17T06:38:00.5777360Z adding 'torch/include/ATen/ops/lgamma.h' 2025-07-17T06:38:00.5778360Z adding 'torch/include/ATen/ops/lgamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5779110Z adding 'torch/include/ATen/ops/lgamma_cpu_dispatch.h' 2025-07-17T06:38:00.5779910Z adding 'torch/include/ATen/ops/lgamma_cuda_dispatch.h' 2025-07-17T06:38:00.5780720Z adding 'torch/include/ATen/ops/lgamma_meta.h' 2025-07-17T06:38:00.5781680Z adding 'torch/include/ATen/ops/lgamma_meta_dispatch.h' 2025-07-17T06:38:00.5782530Z adding 'torch/include/ATen/ops/lgamma_mps_dispatch.h' 2025-07-17T06:38:00.5783360Z adding 'torch/include/ATen/ops/lgamma_native.h' 2025-07-17T06:38:00.5784310Z adding 'torch/include/ATen/ops/lgamma_ops.h' 2025-07-17T06:38:00.5785160Z adding 'torch/include/ATen/ops/lift.h' 2025-07-17T06:38:00.5786140Z adding 'torch/include/ATen/ops/lift_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.5786910Z adding 'torch/include/ATen/ops/lift_fresh.h' 2025-07-17T06:38:00.5787860Z adding 'torch/include/ATen/ops/lift_fresh_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.5788630Z adding 'torch/include/ATen/ops/lift_fresh_copy.h' 2025-07-17T06:38:00.5789580Z adding 'torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.5790480Z adding 'torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5791190Z adding 'torch/include/ATen/ops/lift_fresh_copy_native.h' 2025-07-17T06:38:00.5792110Z adding 'torch/include/ATen/ops/lift_fresh_copy_ops.h' 2025-07-17T06:38:00.5792910Z adding 'torch/include/ATen/ops/lift_fresh_native.h' 2025-07-17T06:38:00.5793790Z adding 'torch/include/ATen/ops/lift_fresh_ops.h' 2025-07-17T06:38:00.5794600Z adding 'torch/include/ATen/ops/lift_native.h' 2025-07-17T06:38:00.5795500Z adding 'torch/include/ATen/ops/lift_ops.h' 2025-07-17T06:38:00.5796390Z adding 'torch/include/ATen/ops/linalg_cholesky.h' 2025-07-17T06:38:00.5797370Z adding 'torch/include/ATen/ops/linalg_cholesky_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5798220Z adding 'torch/include/ATen/ops/linalg_cholesky_ex.h' 2025-07-17T06:38:00.5799210Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5800010Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_cpu_dispatch.h' 2025-07-17T06:38:00.5800840Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_cuda_dispatch.h' 2025-07-17T06:38:00.5801650Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_meta.h' 2025-07-17T06:38:00.5802520Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_meta_dispatch.h' 2025-07-17T06:38:00.5803330Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_mps_dispatch.h' 2025-07-17T06:38:00.5804170Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_native.h' 2025-07-17T06:38:00.5805120Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_ops.h' 2025-07-17T06:38:00.5805970Z adding 'torch/include/ATen/ops/linalg_cholesky_native.h' 2025-07-17T06:38:00.5806880Z adding 'torch/include/ATen/ops/linalg_cholesky_ops.h' 2025-07-17T06:38:00.5807830Z adding 'torch/include/ATen/ops/linalg_cond.h' 2025-07-17T06:38:00.5808850Z adding 'torch/include/ATen/ops/linalg_cond_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5809620Z adding 'torch/include/ATen/ops/linalg_cond_native.h' 2025-07-17T06:38:00.5810620Z adding 'torch/include/ATen/ops/linalg_cond_ops.h' 2025-07-17T06:38:00.5811580Z adding 'torch/include/ATen/ops/linalg_cross.h' 2025-07-17T06:38:00.5812540Z adding 'torch/include/ATen/ops/linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5813300Z adding 'torch/include/ATen/ops/linalg_cross_cpu_dispatch.h' 2025-07-17T06:38:00.5814200Z adding 'torch/include/ATen/ops/linalg_cross_cuda_dispatch.h' 2025-07-17T06:38:00.5814990Z adding 'torch/include/ATen/ops/linalg_cross_meta.h' 2025-07-17T06:38:00.5815840Z adding 'torch/include/ATen/ops/linalg_cross_meta_dispatch.h' 2025-07-17T06:38:00.5816650Z adding 'torch/include/ATen/ops/linalg_cross_mps_dispatch.h' 2025-07-17T06:38:00.5817470Z adding 'torch/include/ATen/ops/linalg_cross_native.h' 2025-07-17T06:38:00.5818410Z adding 'torch/include/ATen/ops/linalg_cross_ops.h' 2025-07-17T06:38:00.5819290Z adding 'torch/include/ATen/ops/linalg_det.h' 2025-07-17T06:38:00.5820250Z adding 'torch/include/ATen/ops/linalg_det_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5820980Z adding 'torch/include/ATen/ops/linalg_det_native.h' 2025-07-17T06:38:00.5821920Z adding 'torch/include/ATen/ops/linalg_det_ops.h' 2025-07-17T06:38:00.5822790Z adding 'torch/include/ATen/ops/linalg_diagonal.h' 2025-07-17T06:38:00.5823740Z adding 'torch/include/ATen/ops/linalg_diagonal_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5824480Z adding 'torch/include/ATen/ops/linalg_diagonal_native.h' 2025-07-17T06:38:00.5825380Z adding 'torch/include/ATen/ops/linalg_diagonal_ops.h' 2025-07-17T06:38:00.5826280Z adding 'torch/include/ATen/ops/linalg_eig.h' 2025-07-17T06:38:00.5827140Z adding 'torch/include/ATen/ops/linalg_eig_cpu_dispatch.h' 2025-07-17T06:38:00.5827950Z adding 'torch/include/ATen/ops/linalg_eig_cuda_dispatch.h' 2025-07-17T06:38:00.5828810Z adding 'torch/include/ATen/ops/linalg_eig_native.h' 2025-07-17T06:38:00.5829750Z adding 'torch/include/ATen/ops/linalg_eig_ops.h' 2025-07-17T06:38:00.5830660Z adding 'torch/include/ATen/ops/linalg_eigh.h' 2025-07-17T06:38:00.5831670Z adding 'torch/include/ATen/ops/linalg_eigh_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5832450Z adding 'torch/include/ATen/ops/linalg_eigh_native.h' 2025-07-17T06:38:00.5833390Z adding 'torch/include/ATen/ops/linalg_eigh_ops.h' 2025-07-17T06:38:00.5834270Z adding 'torch/include/ATen/ops/linalg_eigvals.h' 2025-07-17T06:38:00.5835200Z adding 'torch/include/ATen/ops/linalg_eigvals_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5835980Z adding 'torch/include/ATen/ops/linalg_eigvals_cpu_dispatch.h' 2025-07-17T06:38:00.5836780Z adding 'torch/include/ATen/ops/linalg_eigvals_cuda_dispatch.h' 2025-07-17T06:38:00.5837590Z adding 'torch/include/ATen/ops/linalg_eigvals_native.h' 2025-07-17T06:38:00.5838520Z adding 'torch/include/ATen/ops/linalg_eigvals_ops.h' 2025-07-17T06:38:00.5839350Z adding 'torch/include/ATen/ops/linalg_eigvalsh.h' 2025-07-17T06:38:00.5840310Z adding 'torch/include/ATen/ops/linalg_eigvalsh_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5841070Z adding 'torch/include/ATen/ops/linalg_eigvalsh_native.h' 2025-07-17T06:38:00.5841990Z adding 'torch/include/ATen/ops/linalg_eigvalsh_ops.h' 2025-07-17T06:38:00.5842930Z adding 'torch/include/ATen/ops/linalg_householder_product.h' 2025-07-17T06:38:00.5843830Z adding 'torch/include/ATen/ops/linalg_householder_product_cpu_dispatch.h' 2025-07-17T06:38:00.5844650Z adding 'torch/include/ATen/ops/linalg_householder_product_cuda_dispatch.h' 2025-07-17T06:38:00.5845470Z adding 'torch/include/ATen/ops/linalg_householder_product_native.h' 2025-07-17T06:38:00.5846370Z adding 'torch/include/ATen/ops/linalg_householder_product_ops.h' 2025-07-17T06:38:00.5847190Z adding 'torch/include/ATen/ops/linalg_inv.h' 2025-07-17T06:38:00.5848140Z adding 'torch/include/ATen/ops/linalg_inv_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5848950Z adding 'torch/include/ATen/ops/linalg_inv_ex.h' 2025-07-17T06:38:00.5849940Z adding 'torch/include/ATen/ops/linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5850760Z adding 'torch/include/ATen/ops/linalg_inv_ex_cpu_dispatch.h' 2025-07-17T06:38:00.5851610Z adding 'torch/include/ATen/ops/linalg_inv_ex_cuda_dispatch.h' 2025-07-17T06:38:00.5852400Z adding 'torch/include/ATen/ops/linalg_inv_ex_meta.h' 2025-07-17T06:38:00.5853250Z adding 'torch/include/ATen/ops/linalg_inv_ex_meta_dispatch.h' 2025-07-17T06:38:00.5854040Z adding 'torch/include/ATen/ops/linalg_inv_ex_mps_dispatch.h' 2025-07-17T06:38:00.5854880Z adding 'torch/include/ATen/ops/linalg_inv_ex_native.h' 2025-07-17T06:38:00.5855830Z adding 'torch/include/ATen/ops/linalg_inv_ex_ops.h' 2025-07-17T06:38:00.5856630Z adding 'torch/include/ATen/ops/linalg_inv_native.h' 2025-07-17T06:38:00.5857550Z adding 'torch/include/ATen/ops/linalg_inv_ops.h' 2025-07-17T06:38:00.5858470Z adding 'torch/include/ATen/ops/linalg_ldl_factor.h' 2025-07-17T06:38:00.5859500Z adding 'torch/include/ATen/ops/linalg_ldl_factor_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5860300Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex.h' 2025-07-17T06:38:00.5861300Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5862410Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_cpu_dispatch.h' 2025-07-17T06:38:00.5863260Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_cuda_dispatch.h' 2025-07-17T06:38:00.5864070Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_meta.h' 2025-07-17T06:38:00.5864930Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_meta_dispatch.h' 2025-07-17T06:38:00.5865760Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_native.h' 2025-07-17T06:38:00.5866740Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_ops.h' 2025-07-17T06:38:00.5867590Z adding 'torch/include/ATen/ops/linalg_ldl_factor_native.h' 2025-07-17T06:38:00.5868520Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ops.h' 2025-07-17T06:38:00.5869410Z adding 'torch/include/ATen/ops/linalg_ldl_solve.h' 2025-07-17T06:38:00.5870440Z adding 'torch/include/ATen/ops/linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5871200Z adding 'torch/include/ATen/ops/linalg_ldl_solve_cpu_dispatch.h' 2025-07-17T06:38:00.5872050Z adding 'torch/include/ATen/ops/linalg_ldl_solve_cuda_dispatch.h' 2025-07-17T06:38:00.5872850Z adding 'torch/include/ATen/ops/linalg_ldl_solve_meta.h' 2025-07-17T06:38:00.5873710Z adding 'torch/include/ATen/ops/linalg_ldl_solve_meta_dispatch.h' 2025-07-17T06:38:00.5874530Z adding 'torch/include/ATen/ops/linalg_ldl_solve_native.h' 2025-07-17T06:38:00.5875480Z adding 'torch/include/ATen/ops/linalg_ldl_solve_ops.h' 2025-07-17T06:38:00.5876460Z adding 'torch/include/ATen/ops/linalg_lstsq.h' 2025-07-17T06:38:00.5877450Z adding 'torch/include/ATen/ops/linalg_lstsq_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.5878250Z adding 'torch/include/ATen/ops/linalg_lstsq_cpu_dispatch.h' 2025-07-17T06:38:00.5879080Z adding 'torch/include/ATen/ops/linalg_lstsq_cuda_dispatch.h' 2025-07-17T06:38:00.5879940Z adding 'torch/include/ATen/ops/linalg_lstsq_native.h' 2025-07-17T06:38:00.5880940Z adding 'torch/include/ATen/ops/linalg_lstsq_ops.h' 2025-07-17T06:38:00.5881850Z adding 'torch/include/ATen/ops/linalg_lu.h' 2025-07-17T06:38:00.5882850Z adding 'torch/include/ATen/ops/linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5883600Z adding 'torch/include/ATen/ops/linalg_lu_cpu_dispatch.h' 2025-07-17T06:38:00.5884430Z adding 'torch/include/ATen/ops/linalg_lu_cuda_dispatch.h' 2025-07-17T06:38:00.5885300Z adding 'torch/include/ATen/ops/linalg_lu_factor.h' 2025-07-17T06:38:00.5886270Z adding 'torch/include/ATen/ops/linalg_lu_factor_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5887140Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex.h' 2025-07-17T06:38:00.5888130Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5888910Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_cpu_dispatch.h' 2025-07-17T06:38:00.5889760Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_cuda_dispatch.h' 2025-07-17T06:38:00.5890570Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_meta.h' 2025-07-17T06:38:00.5891450Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_meta_dispatch.h' 2025-07-17T06:38:00.5892260Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_mps_dispatch.h' 2025-07-17T06:38:00.5893100Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_native.h' 2025-07-17T06:38:00.5894120Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_ops.h' 2025-07-17T06:38:00.5894990Z adding 'torch/include/ATen/ops/linalg_lu_factor_mps_dispatch.h' 2025-07-17T06:38:00.5895830Z adding 'torch/include/ATen/ops/linalg_lu_factor_native.h' 2025-07-17T06:38:00.5896780Z adding 'torch/include/ATen/ops/linalg_lu_factor_ops.h' 2025-07-17T06:38:00.5897610Z adding 'torch/include/ATen/ops/linalg_lu_meta.h' 2025-07-17T06:38:00.5898480Z adding 'torch/include/ATen/ops/linalg_lu_meta_dispatch.h' 2025-07-17T06:38:00.5899260Z adding 'torch/include/ATen/ops/linalg_lu_native.h' 2025-07-17T06:38:00.5900210Z adding 'torch/include/ATen/ops/linalg_lu_ops.h' 2025-07-17T06:38:00.5901140Z adding 'torch/include/ATen/ops/linalg_lu_solve.h' 2025-07-17T06:38:00.5902120Z adding 'torch/include/ATen/ops/linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5902890Z adding 'torch/include/ATen/ops/linalg_lu_solve_cpu_dispatch.h' 2025-07-17T06:38:00.5903740Z adding 'torch/include/ATen/ops/linalg_lu_solve_cuda_dispatch.h' 2025-07-17T06:38:00.5904540Z adding 'torch/include/ATen/ops/linalg_lu_solve_meta.h' 2025-07-17T06:38:00.5905390Z adding 'torch/include/ATen/ops/linalg_lu_solve_meta_dispatch.h' 2025-07-17T06:38:00.5906210Z adding 'torch/include/ATen/ops/linalg_lu_solve_native.h' 2025-07-17T06:38:00.5907170Z adding 'torch/include/ATen/ops/linalg_lu_solve_ops.h' 2025-07-17T06:38:00.5908040Z adding 'torch/include/ATen/ops/linalg_matmul.h' 2025-07-17T06:38:00.5909000Z adding 'torch/include/ATen/ops/linalg_matmul_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5909760Z adding 'torch/include/ATen/ops/linalg_matmul_native.h' 2025-07-17T06:38:00.5910680Z adding 'torch/include/ATen/ops/linalg_matmul_ops.h' 2025-07-17T06:38:00.5911550Z adding 'torch/include/ATen/ops/linalg_matrix_exp.h' 2025-07-17T06:38:00.5912550Z adding 'torch/include/ATen/ops/linalg_matrix_exp_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.5913330Z adding 'torch/include/ATen/ops/linalg_matrix_exp_cpu_dispatch.h' 2025-07-17T06:38:00.5914140Z adding 'torch/include/ATen/ops/linalg_matrix_exp_cuda_dispatch.h' 2025-07-17T06:38:00.5914940Z adding 'torch/include/ATen/ops/linalg_matrix_exp_native.h' 2025-07-17T06:38:00.5915870Z adding 'torch/include/ATen/ops/linalg_matrix_exp_ops.h' 2025-07-17T06:38:00.5916910Z adding 'torch/include/ATen/ops/linalg_matrix_norm.h' 2025-07-17T06:38:00.5917940Z adding 'torch/include/ATen/ops/linalg_matrix_norm_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5918750Z adding 'torch/include/ATen/ops/linalg_matrix_norm_native.h' 2025-07-17T06:38:00.5919830Z adding 'torch/include/ATen/ops/linalg_matrix_norm_ops.h' 2025-07-17T06:38:00.5920720Z adding 'torch/include/ATen/ops/linalg_matrix_power.h' 2025-07-17T06:38:00.5921680Z adding 'torch/include/ATen/ops/linalg_matrix_power_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5922450Z adding 'torch/include/ATen/ops/linalg_matrix_power_native.h' 2025-07-17T06:38:00.5923370Z adding 'torch/include/ATen/ops/linalg_matrix_power_ops.h' 2025-07-17T06:38:00.5924500Z adding 'torch/include/ATen/ops/linalg_matrix_rank.h' 2025-07-17T06:38:00.5925580Z adding 'torch/include/ATen/ops/linalg_matrix_rank_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5926410Z adding 'torch/include/ATen/ops/linalg_matrix_rank_native.h' 2025-07-17T06:38:00.5927670Z adding 'torch/include/ATen/ops/linalg_matrix_rank_ops.h' 2025-07-17T06:38:00.5928570Z adding 'torch/include/ATen/ops/linalg_multi_dot.h' 2025-07-17T06:38:00.5929550Z adding 'torch/include/ATen/ops/linalg_multi_dot_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5930300Z adding 'torch/include/ATen/ops/linalg_multi_dot_native.h' 2025-07-17T06:38:00.5931210Z adding 'torch/include/ATen/ops/linalg_multi_dot_ops.h' 2025-07-17T06:38:00.5932210Z adding 'torch/include/ATen/ops/linalg_norm.h' 2025-07-17T06:38:00.5933260Z adding 'torch/include/ATen/ops/linalg_norm_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5934080Z adding 'torch/include/ATen/ops/linalg_norm_native.h' 2025-07-17T06:38:00.5935140Z adding 'torch/include/ATen/ops/linalg_norm_ops.h' 2025-07-17T06:38:00.5936250Z adding 'torch/include/ATen/ops/linalg_pinv.h' 2025-07-17T06:38:00.5937230Z adding 'torch/include/ATen/ops/linalg_pinv_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.5938150Z adding 'torch/include/ATen/ops/linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5939020Z adding 'torch/include/ATen/ops/linalg_pinv_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5939860Z adding 'torch/include/ATen/ops/linalg_pinv_native.h' 2025-07-17T06:38:00.5941060Z adding 'torch/include/ATen/ops/linalg_pinv_ops.h' 2025-07-17T06:38:00.5941990Z adding 'torch/include/ATen/ops/linalg_qr.h' 2025-07-17T06:38:00.5942990Z adding 'torch/include/ATen/ops/linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5943760Z adding 'torch/include/ATen/ops/linalg_qr_cpu_dispatch.h' 2025-07-17T06:38:00.5944600Z adding 'torch/include/ATen/ops/linalg_qr_cuda_dispatch.h' 2025-07-17T06:38:00.5945420Z adding 'torch/include/ATen/ops/linalg_qr_meta.h' 2025-07-17T06:38:00.5946290Z adding 'torch/include/ATen/ops/linalg_qr_meta_dispatch.h' 2025-07-17T06:38:00.5947090Z adding 'torch/include/ATen/ops/linalg_qr_native.h' 2025-07-17T06:38:00.5948050Z adding 'torch/include/ATen/ops/linalg_qr_ops.h' 2025-07-17T06:38:00.5948940Z adding 'torch/include/ATen/ops/linalg_slogdet.h' 2025-07-17T06:38:00.5949930Z adding 'torch/include/ATen/ops/linalg_slogdet_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5950680Z adding 'torch/include/ATen/ops/linalg_slogdet_native.h' 2025-07-17T06:38:00.5951670Z adding 'torch/include/ATen/ops/linalg_slogdet_ops.h' 2025-07-17T06:38:00.5952540Z adding 'torch/include/ATen/ops/linalg_solve.h' 2025-07-17T06:38:00.5953510Z adding 'torch/include/ATen/ops/linalg_solve_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5954360Z adding 'torch/include/ATen/ops/linalg_solve_ex.h' 2025-07-17T06:38:00.5955350Z adding 'torch/include/ATen/ops/linalg_solve_ex_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5956130Z adding 'torch/include/ATen/ops/linalg_solve_ex_native.h' 2025-07-17T06:38:00.5957120Z adding 'torch/include/ATen/ops/linalg_solve_ex_ops.h' 2025-07-17T06:38:00.5957950Z adding 'torch/include/ATen/ops/linalg_solve_native.h' 2025-07-17T06:38:00.5958920Z adding 'torch/include/ATen/ops/linalg_solve_ops.h' 2025-07-17T06:38:00.5959820Z adding 'torch/include/ATen/ops/linalg_solve_triangular.h' 2025-07-17T06:38:00.5960760Z adding 'torch/include/ATen/ops/linalg_solve_triangular_cpu_dispatch.h' 2025-07-17T06:38:00.5961590Z adding 'torch/include/ATen/ops/linalg_solve_triangular_cuda_dispatch.h' 2025-07-17T06:38:00.5962420Z adding 'torch/include/ATen/ops/linalg_solve_triangular_mps_dispatch.h' 2025-07-17T06:38:00.5963270Z adding 'torch/include/ATen/ops/linalg_solve_triangular_native.h' 2025-07-17T06:38:00.5964200Z adding 'torch/include/ATen/ops/linalg_solve_triangular_ops.h' 2025-07-17T06:38:00.5965100Z adding 'torch/include/ATen/ops/linalg_svd.h' 2025-07-17T06:38:00.5966090Z adding 'torch/include/ATen/ops/linalg_svd_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5966860Z adding 'torch/include/ATen/ops/linalg_svd_native.h' 2025-07-17T06:38:00.5967830Z adding 'torch/include/ATen/ops/linalg_svd_ops.h' 2025-07-17T06:38:00.5968730Z adding 'torch/include/ATen/ops/linalg_svdvals.h' 2025-07-17T06:38:00.5969690Z adding 'torch/include/ATen/ops/linalg_svdvals_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5970460Z adding 'torch/include/ATen/ops/linalg_svdvals_native.h' 2025-07-17T06:38:00.5971380Z adding 'torch/include/ATen/ops/linalg_svdvals_ops.h' 2025-07-17T06:38:00.5972240Z adding 'torch/include/ATen/ops/linalg_tensorinv.h' 2025-07-17T06:38:00.5973210Z adding 'torch/include/ATen/ops/linalg_tensorinv_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5973980Z adding 'torch/include/ATen/ops/linalg_tensorinv_native.h' 2025-07-17T06:38:00.5974900Z adding 'torch/include/ATen/ops/linalg_tensorinv_ops.h' 2025-07-17T06:38:00.5975810Z adding 'torch/include/ATen/ops/linalg_tensorsolve.h' 2025-07-17T06:38:00.5976800Z adding 'torch/include/ATen/ops/linalg_tensorsolve_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5977560Z adding 'torch/include/ATen/ops/linalg_tensorsolve_native.h' 2025-07-17T06:38:00.5978520Z adding 'torch/include/ATen/ops/linalg_tensorsolve_ops.h' 2025-07-17T06:38:00.5979420Z adding 'torch/include/ATen/ops/linalg_vander.h' 2025-07-17T06:38:00.5980410Z adding 'torch/include/ATen/ops/linalg_vander_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5981140Z adding 'torch/include/ATen/ops/linalg_vander_native.h' 2025-07-17T06:38:00.5982080Z adding 'torch/include/ATen/ops/linalg_vander_ops.h' 2025-07-17T06:38:00.5983000Z adding 'torch/include/ATen/ops/linalg_vecdot.h' 2025-07-17T06:38:00.5988400Z adding 'torch/include/ATen/ops/linalg_vecdot_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.5988630Z adding 'torch/include/ATen/ops/linalg_vecdot_native.h' 2025-07-17T06:38:00.5988720Z adding 'torch/include/ATen/ops/linalg_vecdot_ops.h' 2025-07-17T06:38:00.5989700Z adding 'torch/include/ATen/ops/linalg_vector_norm.h' 2025-07-17T06:38:00.5989940Z adding 'torch/include/ATen/ops/linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.5990060Z adding 'torch/include/ATen/ops/linalg_vector_norm_cpu_dispatch.h' 2025-07-17T06:38:00.5990190Z adding 'torch/include/ATen/ops/linalg_vector_norm_cuda_dispatch.h' 2025-07-17T06:38:00.5990290Z adding 'torch/include/ATen/ops/linalg_vector_norm_meta.h' 2025-07-17T06:38:00.5991510Z adding 'torch/include/ATen/ops/linalg_vector_norm_meta_dispatch.h' 2025-07-17T06:38:00.5992410Z adding 'torch/include/ATen/ops/linalg_vector_norm_mps_dispatch.h' 2025-07-17T06:38:00.5993430Z adding 'torch/include/ATen/ops/linalg_vector_norm_native.h' 2025-07-17T06:38:00.5995510Z adding 'torch/include/ATen/ops/linalg_vector_norm_ops.h' 2025-07-17T06:38:00.5996300Z adding 'torch/include/ATen/ops/linear.h' 2025-07-17T06:38:00.5997340Z adding 'torch/include/ATen/ops/linear_backward.h' 2025-07-17T06:38:00.5998350Z adding 'torch/include/ATen/ops/linear_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.5999410Z adding 'torch/include/ATen/ops/linear_backward_mps_dispatch.h' 2025-07-17T06:38:00.6000290Z adding 'torch/include/ATen/ops/linear_backward_native.h' 2025-07-17T06:38:00.6001370Z adding 'torch/include/ATen/ops/linear_backward_ops.h' 2025-07-17T06:38:00.6002310Z adding 'torch/include/ATen/ops/linear_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6003400Z adding 'torch/include/ATen/ops/linear_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6004230Z adding 'torch/include/ATen/ops/linear_mps_dispatch.h' 2025-07-17T06:38:00.6005110Z adding 'torch/include/ATen/ops/linear_native.h' 2025-07-17T06:38:00.6006070Z adding 'torch/include/ATen/ops/linear_ops.h' 2025-07-17T06:38:00.6007800Z adding 'torch/include/ATen/ops/linspace.h' 2025-07-17T06:38:00.6008760Z adding 'torch/include/ATen/ops/linspace_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6009630Z adding 'torch/include/ATen/ops/linspace_cpu_dispatch.h' 2025-07-17T06:38:00.6010450Z adding 'torch/include/ATen/ops/linspace_cuda_dispatch.h' 2025-07-17T06:38:00.6011510Z adding 'torch/include/ATen/ops/linspace_meta_dispatch.h' 2025-07-17T06:38:00.6012340Z adding 'torch/include/ATen/ops/linspace_mps_dispatch.h' 2025-07-17T06:38:00.6013280Z adding 'torch/include/ATen/ops/linspace_native.h' 2025-07-17T06:38:00.6014650Z adding 'torch/include/ATen/ops/linspace_ops.h' 2025-07-17T06:38:00.6015770Z adding 'torch/include/ATen/ops/log.h' 2025-07-17T06:38:00.6016690Z adding 'torch/include/ATen/ops/log10.h' 2025-07-17T06:38:00.6017700Z adding 'torch/include/ATen/ops/log10_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.6018470Z adding 'torch/include/ATen/ops/log10_cpu_dispatch.h' 2025-07-17T06:38:00.6019520Z adding 'torch/include/ATen/ops/log10_cuda_dispatch.h' 2025-07-17T06:38:00.6020370Z adding 'torch/include/ATen/ops/log10_meta.h' 2025-07-17T06:38:00.6021240Z adding 'torch/include/ATen/ops/log10_meta_dispatch.h' 2025-07-17T06:38:00.6022080Z adding 'torch/include/ATen/ops/log10_mps_dispatch.h' 2025-07-17T06:38:00.6023120Z adding 'torch/include/ATen/ops/log10_native.h' 2025-07-17T06:38:00.6024120Z adding 'torch/include/ATen/ops/log10_ops.h' 2025-07-17T06:38:00.6024990Z adding 'torch/include/ATen/ops/log1p.h' 2025-07-17T06:38:00.6026000Z adding 'torch/include/ATen/ops/log1p_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.6026960Z adding 'torch/include/ATen/ops/log1p_cpu_dispatch.h' 2025-07-17T06:38:00.6027840Z adding 'torch/include/ATen/ops/log1p_cuda_dispatch.h' 2025-07-17T06:38:00.6028660Z adding 'torch/include/ATen/ops/log1p_meta.h' 2025-07-17T06:38:00.6029470Z adding 'torch/include/ATen/ops/log1p_meta_dispatch.h' 2025-07-17T06:38:00.6030490Z adding 'torch/include/ATen/ops/log1p_mps_dispatch.h' 2025-07-17T06:38:00.6031370Z adding 'torch/include/ATen/ops/log1p_native.h' 2025-07-17T06:38:00.6032330Z adding 'torch/include/ATen/ops/log1p_ops.h' 2025-07-17T06:38:00.6033230Z adding 'torch/include/ATen/ops/log2.h' 2025-07-17T06:38:00.6034420Z adding 'torch/include/ATen/ops/log2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.6035200Z adding 'torch/include/ATen/ops/log2_cpu_dispatch.h' 2025-07-17T06:38:00.6036040Z adding 'torch/include/ATen/ops/log2_cuda_dispatch.h' 2025-07-17T06:38:00.6036900Z adding 'torch/include/ATen/ops/log2_meta.h' 2025-07-17T06:38:00.6037960Z adding 'torch/include/ATen/ops/log2_meta_dispatch.h' 2025-07-17T06:38:00.6038820Z adding 'torch/include/ATen/ops/log2_mps_dispatch.h' 2025-07-17T06:38:00.6039680Z adding 'torch/include/ATen/ops/log2_native.h' 2025-07-17T06:38:00.6040640Z adding 'torch/include/ATen/ops/log2_ops.h' 2025-07-17T06:38:00.6041820Z adding 'torch/include/ATen/ops/log_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.6042570Z adding 'torch/include/ATen/ops/log_cpu_dispatch.h' 2025-07-17T06:38:00.6043380Z adding 'torch/include/ATen/ops/log_cuda_dispatch.h' 2025-07-17T06:38:00.6044190Z adding 'torch/include/ATen/ops/log_meta.h' 2025-07-17T06:38:00.6045250Z adding 'torch/include/ATen/ops/log_meta_dispatch.h' 2025-07-17T06:38:00.6046070Z adding 'torch/include/ATen/ops/log_mps_dispatch.h' 2025-07-17T06:38:00.6046980Z adding 'torch/include/ATen/ops/log_native.h' 2025-07-17T06:38:00.6047940Z adding 'torch/include/ATen/ops/log_normal.h' 2025-07-17T06:38:00.6049130Z adding 'torch/include/ATen/ops/log_normal_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6049940Z adding 'torch/include/ATen/ops/log_normal_cpu_dispatch.h' 2025-07-17T06:38:00.6050790Z adding 'torch/include/ATen/ops/log_normal_cuda_dispatch.h' 2025-07-17T06:38:00.6051590Z adding 'torch/include/ATen/ops/log_normal_meta_dispatch.h' 2025-07-17T06:38:00.6052650Z adding 'torch/include/ATen/ops/log_normal_native.h' 2025-07-17T06:38:00.6053700Z adding 'torch/include/ATen/ops/log_normal_ops.h' 2025-07-17T06:38:00.6054750Z adding 'torch/include/ATen/ops/log_ops.h' 2025-07-17T06:38:00.6055630Z adding 'torch/include/ATen/ops/log_sigmoid.h' 2025-07-17T06:38:00.6056840Z adding 'torch/include/ATen/ops/log_sigmoid_backward.h' 2025-07-17T06:38:00.6057780Z adding 'torch/include/ATen/ops/log_sigmoid_backward_cpu_dispatch.h' 2025-07-17T06:38:00.6058630Z adding 'torch/include/ATen/ops/log_sigmoid_backward_cuda_dispatch.h' 2025-07-17T06:38:00.6059440Z adding 'torch/include/ATen/ops/log_sigmoid_backward_mps_dispatch.h' 2025-07-17T06:38:00.6060500Z adding 'torch/include/ATen/ops/log_sigmoid_backward_native.h' 2025-07-17T06:38:00.6061490Z adding 'torch/include/ATen/ops/log_sigmoid_backward_ops.h' 2025-07-17T06:38:00.6062440Z adding 'torch/include/ATen/ops/log_sigmoid_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6063270Z adding 'torch/include/ATen/ops/log_sigmoid_forward.h' 2025-07-17T06:38:00.6064400Z adding 'torch/include/ATen/ops/log_sigmoid_forward_cpu_dispatch.h' 2025-07-17T06:38:00.6065240Z adding 'torch/include/ATen/ops/log_sigmoid_forward_cuda_dispatch.h' 2025-07-17T06:38:00.6066080Z adding 'torch/include/ATen/ops/log_sigmoid_forward_mps_dispatch.h' 2025-07-17T06:38:00.6066930Z adding 'torch/include/ATen/ops/log_sigmoid_forward_native.h' 2025-07-17T06:38:00.6068110Z adding 'torch/include/ATen/ops/log_sigmoid_forward_ops.h' 2025-07-17T06:38:00.6068960Z adding 'torch/include/ATen/ops/log_sigmoid_native.h' 2025-07-17T06:38:00.6069940Z adding 'torch/include/ATen/ops/log_sigmoid_ops.h' 2025-07-17T06:38:00.6070840Z adding 'torch/include/ATen/ops/log_softmax.h' 2025-07-17T06:38:00.6072020Z adding 'torch/include/ATen/ops/log_softmax_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6072960Z adding 'torch/include/ATen/ops/log_softmax_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6073730Z adding 'torch/include/ATen/ops/log_softmax_native.h' 2025-07-17T06:38:00.6074730Z adding 'torch/include/ATen/ops/log_softmax_ops.h' 2025-07-17T06:38:00.6076370Z adding 'torch/include/ATen/ops/logaddexp.h' 2025-07-17T06:38:00.6077060Z adding 'torch/include/ATen/ops/logaddexp2.h' 2025-07-17T06:38:00.6078080Z adding 'torch/include/ATen/ops/logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.6078860Z adding 'torch/include/ATen/ops/logaddexp2_cpu_dispatch.h' 2025-07-17T06:38:00.6079940Z adding 'torch/include/ATen/ops/logaddexp2_cuda_dispatch.h' 2025-07-17T06:38:00.6080780Z adding 'torch/include/ATen/ops/logaddexp2_meta.h' 2025-07-17T06:38:00.6081630Z adding 'torch/include/ATen/ops/logaddexp2_meta_dispatch.h' 2025-07-17T06:38:00.6082460Z adding 'torch/include/ATen/ops/logaddexp2_mps_dispatch.h' 2025-07-17T06:38:00.6083480Z adding 'torch/include/ATen/ops/logaddexp2_native.h' 2025-07-17T06:38:00.6084440Z adding 'torch/include/ATen/ops/logaddexp2_ops.h' 2025-07-17T06:38:00.6085430Z adding 'torch/include/ATen/ops/logaddexp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.6086170Z adding 'torch/include/ATen/ops/logaddexp_cpu_dispatch.h' 2025-07-17T06:38:00.6087180Z adding 'torch/include/ATen/ops/logaddexp_cuda_dispatch.h' 2025-07-17T06:38:00.6088020Z adding 'torch/include/ATen/ops/logaddexp_meta.h' 2025-07-17T06:38:00.6088870Z adding 'torch/include/ATen/ops/logaddexp_meta_dispatch.h' 2025-07-17T06:38:00.6089680Z adding 'torch/include/ATen/ops/logaddexp_mps_dispatch.h' 2025-07-17T06:38:00.6090750Z adding 'torch/include/ATen/ops/logaddexp_native.h' 2025-07-17T06:38:00.6091720Z adding 'torch/include/ATen/ops/logaddexp_ops.h' 2025-07-17T06:38:00.6092740Z adding 'torch/include/ATen/ops/logcumsumexp.h' 2025-07-17T06:38:00.6093660Z adding 'torch/include/ATen/ops/logcumsumexp_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6094750Z adding 'torch/include/ATen/ops/logcumsumexp_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6095500Z adding 'torch/include/ATen/ops/logcumsumexp_native.h' 2025-07-17T06:38:00.6096550Z adding 'torch/include/ATen/ops/logcumsumexp_ops.h' 2025-07-17T06:38:00.6097420Z adding 'torch/include/ATen/ops/logdet.h' 2025-07-17T06:38:00.6098560Z adding 'torch/include/ATen/ops/logdet_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6099340Z adding 'torch/include/ATen/ops/logdet_native.h' 2025-07-17T06:38:00.6100280Z adding 'torch/include/ATen/ops/logdet_ops.h' 2025-07-17T06:38:00.6101160Z adding 'torch/include/ATen/ops/logical_and.h' 2025-07-17T06:38:00.6102330Z adding 'torch/include/ATen/ops/logical_and_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6103120Z adding 'torch/include/ATen/ops/logical_and_cpu_dispatch.h' 2025-07-17T06:38:00.6103940Z adding 'torch/include/ATen/ops/logical_and_cuda_dispatch.h' 2025-07-17T06:38:00.6104740Z adding 'torch/include/ATen/ops/logical_and_mps_dispatch.h' 2025-07-17T06:38:00.6105780Z adding 'torch/include/ATen/ops/logical_and_native.h' 2025-07-17T06:38:00.6106780Z adding 'torch/include/ATen/ops/logical_and_ops.h' 2025-07-17T06:38:00.6107650Z adding 'torch/include/ATen/ops/logical_not.h' 2025-07-17T06:38:00.6108610Z adding 'torch/include/ATen/ops/logical_not_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6109580Z adding 'torch/include/ATen/ops/logical_not_cpu_dispatch.h' 2025-07-17T06:38:00.6110450Z adding 'torch/include/ATen/ops/logical_not_cuda_dispatch.h' 2025-07-17T06:38:00.6111260Z adding 'torch/include/ATen/ops/logical_not_mps_dispatch.h' 2025-07-17T06:38:00.6112080Z adding 'torch/include/ATen/ops/logical_not_native.h' 2025-07-17T06:38:00.6113260Z adding 'torch/include/ATen/ops/logical_not_ops.h' 2025-07-17T06:38:00.6114180Z adding 'torch/include/ATen/ops/logical_or.h' 2025-07-17T06:38:00.6115160Z adding 'torch/include/ATen/ops/logical_or_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6115960Z adding 'torch/include/ATen/ops/logical_or_cpu_dispatch.h' 2025-07-17T06:38:00.6116950Z adding 'torch/include/ATen/ops/logical_or_cuda_dispatch.h' 2025-07-17T06:38:00.6117750Z adding 'torch/include/ATen/ops/logical_or_mps_dispatch.h' 2025-07-17T06:38:00.6118570Z adding 'torch/include/ATen/ops/logical_or_native.h' 2025-07-17T06:38:00.6119550Z adding 'torch/include/ATen/ops/logical_or_ops.h' 2025-07-17T06:38:00.6120650Z adding 'torch/include/ATen/ops/logical_xor.h' 2025-07-17T06:38:00.6121610Z adding 'torch/include/ATen/ops/logical_xor_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6122390Z adding 'torch/include/ATen/ops/logical_xor_cpu_dispatch.h' 2025-07-17T06:38:00.6123200Z adding 'torch/include/ATen/ops/logical_xor_cuda_dispatch.h' 2025-07-17T06:38:00.6124200Z adding 'torch/include/ATen/ops/logical_xor_mps_dispatch.h' 2025-07-17T06:38:00.6125060Z adding 'torch/include/ATen/ops/logical_xor_native.h' 2025-07-17T06:38:00.6126020Z adding 'torch/include/ATen/ops/logical_xor_ops.h' 2025-07-17T06:38:00.6126920Z adding 'torch/include/ATen/ops/logit.h' 2025-07-17T06:38:00.6128080Z adding 'torch/include/ATen/ops/logit_backward.h' 2025-07-17T06:38:00.6129110Z adding 'torch/include/ATen/ops/logit_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.6129880Z adding 'torch/include/ATen/ops/logit_backward_cpu_dispatch.h' 2025-07-17T06:38:00.6130760Z adding 'torch/include/ATen/ops/logit_backward_cuda_dispatch.h' 2025-07-17T06:38:00.6131800Z adding 'torch/include/ATen/ops/logit_backward_meta.h' 2025-07-17T06:38:00.6132690Z adding 'torch/include/ATen/ops/logit_backward_meta_dispatch.h' 2025-07-17T06:38:00.6133510Z adding 'torch/include/ATen/ops/logit_backward_mps_dispatch.h' 2025-07-17T06:38:00.6134360Z adding 'torch/include/ATen/ops/logit_backward_native.h' 2025-07-17T06:38:00.6135540Z adding 'torch/include/ATen/ops/logit_backward_ops.h' 2025-07-17T06:38:00.6136450Z adding 'torch/include/ATen/ops/logit_cpu_dispatch.h' 2025-07-17T06:38:00.6137260Z adding 'torch/include/ATen/ops/logit_cuda_dispatch.h' 2025-07-17T06:38:00.6138110Z adding 'torch/include/ATen/ops/logit_meta_dispatch.h' 2025-07-17T06:38:00.6139170Z adding 'torch/include/ATen/ops/logit_mps_dispatch.h' 2025-07-17T06:38:00.6140050Z adding 'torch/include/ATen/ops/logit_native.h' 2025-07-17T06:38:00.6140990Z adding 'torch/include/ATen/ops/logit_ops.h' 2025-07-17T06:38:00.6142330Z adding 'torch/include/ATen/ops/logspace.h' 2025-07-17T06:38:00.6144390Z adding 'torch/include/ATen/ops/logspace_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6145080Z adding 'torch/include/ATen/ops/logspace_cpu_dispatch.h' 2025-07-17T06:38:00.6146060Z adding 'torch/include/ATen/ops/logspace_cuda_dispatch.h' 2025-07-17T06:38:00.6146940Z adding 'torch/include/ATen/ops/logspace_meta_dispatch.h' 2025-07-17T06:38:00.6147950Z adding 'torch/include/ATen/ops/logspace_native.h' 2025-07-17T06:38:00.6149550Z adding 'torch/include/ATen/ops/logspace_ops.h' 2025-07-17T06:38:00.6150440Z adding 'torch/include/ATen/ops/logsumexp.h' 2025-07-17T06:38:00.6151450Z adding 'torch/include/ATen/ops/logsumexp_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6152430Z adding 'torch/include/ATen/ops/logsumexp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.6153270Z adding 'torch/include/ATen/ops/logsumexp_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6154060Z adding 'torch/include/ATen/ops/logsumexp_native.h' 2025-07-17T06:38:00.6155120Z adding 'torch/include/ATen/ops/logsumexp_ops.h' 2025-07-17T06:38:00.6156100Z adding 'torch/include/ATen/ops/lshift.h' 2025-07-17T06:38:00.6157090Z adding 'torch/include/ATen/ops/lshift_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6157950Z adding 'torch/include/ATen/ops/lshift_cpu_dispatch.h' 2025-07-17T06:38:00.6158760Z adding 'torch/include/ATen/ops/lshift_cuda_dispatch.h' 2025-07-17T06:38:00.6159680Z adding 'torch/include/ATen/ops/lshift_meta_dispatch.h' 2025-07-17T06:38:00.6160510Z adding 'torch/include/ATen/ops/lshift_mps_dispatch.h' 2025-07-17T06:38:00.6161360Z adding 'torch/include/ATen/ops/lshift_native.h' 2025-07-17T06:38:00.6162560Z adding 'torch/include/ATen/ops/lshift_ops.h' 2025-07-17T06:38:00.6163480Z adding 'torch/include/ATen/ops/lstm.h' 2025-07-17T06:38:00.6164420Z adding 'torch/include/ATen/ops/lstm_cell.h' 2025-07-17T06:38:00.6165400Z adding 'torch/include/ATen/ops/lstm_cell_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6166180Z adding 'torch/include/ATen/ops/lstm_cell_native.h' 2025-07-17T06:38:00.6167140Z adding 'torch/include/ATen/ops/lstm_cell_ops.h' 2025-07-17T06:38:00.6168160Z adding 'torch/include/ATen/ops/lstm_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6169150Z adding 'torch/include/ATen/ops/lstm_mps_backward.h' 2025-07-17T06:38:00.6170230Z adding 'torch/include/ATen/ops/lstm_mps_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6171110Z adding 'torch/include/ATen/ops/lstm_mps_backward_mps_dispatch.h' 2025-07-17T06:38:00.6172010Z adding 'torch/include/ATen/ops/lstm_mps_backward_native.h' 2025-07-17T06:38:00.6173170Z adding 'torch/include/ATen/ops/lstm_mps_backward_ops.h' 2025-07-17T06:38:00.6174030Z adding 'torch/include/ATen/ops/lstm_native.h' 2025-07-17T06:38:00.6175060Z adding 'torch/include/ATen/ops/lstm_ops.h' 2025-07-17T06:38:00.6176000Z adding 'torch/include/ATen/ops/lt.h' 2025-07-17T06:38:00.6177020Z adding 'torch/include/ATen/ops/lt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.6177810Z adding 'torch/include/ATen/ops/lt_cpu_dispatch.h' 2025-07-17T06:38:00.6178640Z adding 'torch/include/ATen/ops/lt_cuda_dispatch.h' 2025-07-17T06:38:00.6179510Z adding 'torch/include/ATen/ops/lt_meta.h' 2025-07-17T06:38:00.6180360Z adding 'torch/include/ATen/ops/lt_meta_dispatch.h' 2025-07-17T06:38:00.6181220Z adding 'torch/include/ATen/ops/lt_mps_dispatch.h' 2025-07-17T06:38:00.6182110Z adding 'torch/include/ATen/ops/lt_native.h' 2025-07-17T06:38:00.6183250Z adding 'torch/include/ATen/ops/lt_ops.h' 2025-07-17T06:38:00.6184130Z adding 'torch/include/ATen/ops/lu_solve.h' 2025-07-17T06:38:00.6185100Z adding 'torch/include/ATen/ops/lu_solve_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6185860Z adding 'torch/include/ATen/ops/lu_solve_native.h' 2025-07-17T06:38:00.6186810Z adding 'torch/include/ATen/ops/lu_solve_ops.h' 2025-07-17T06:38:00.6187790Z adding 'torch/include/ATen/ops/lu_unpack.h' 2025-07-17T06:38:00.6188800Z adding 'torch/include/ATen/ops/lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.6189600Z adding 'torch/include/ATen/ops/lu_unpack_cpu_dispatch.h' 2025-07-17T06:38:00.6190460Z adding 'torch/include/ATen/ops/lu_unpack_cuda_dispatch.h' 2025-07-17T06:38:00.6191280Z adding 'torch/include/ATen/ops/lu_unpack_meta.h' 2025-07-17T06:38:00.6192150Z adding 'torch/include/ATen/ops/lu_unpack_meta_dispatch.h' 2025-07-17T06:38:00.6193010Z adding 'torch/include/ATen/ops/lu_unpack_mps_dispatch.h' 2025-07-17T06:38:00.6193860Z adding 'torch/include/ATen/ops/lu_unpack_native.h' 2025-07-17T06:38:00.6194830Z adding 'torch/include/ATen/ops/lu_unpack_ops.h' 2025-07-17T06:38:00.6195660Z adding 'torch/include/ATen/ops/mH.h' 2025-07-17T06:38:00.6196620Z adding 'torch/include/ATen/ops/mH_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6197370Z adding 'torch/include/ATen/ops/mH_native.h' 2025-07-17T06:38:00.6198250Z adding 'torch/include/ATen/ops/mH_ops.h' 2025-07-17T06:38:00.6199070Z adding 'torch/include/ATen/ops/mT.h' 2025-07-17T06:38:00.6200000Z adding 'torch/include/ATen/ops/mT_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6200720Z adding 'torch/include/ATen/ops/mT_native.h' 2025-07-17T06:38:00.6201640Z adding 'torch/include/ATen/ops/mT_ops.h' 2025-07-17T06:38:00.6202560Z adding 'torch/include/ATen/ops/margin_ranking_loss.h' 2025-07-17T06:38:00.6203540Z adding 'torch/include/ATen/ops/margin_ranking_loss_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6204310Z adding 'torch/include/ATen/ops/margin_ranking_loss_native.h' 2025-07-17T06:38:00.6205230Z adding 'torch/include/ATen/ops/margin_ranking_loss_ops.h' 2025-07-17T06:38:00.6206200Z adding 'torch/include/ATen/ops/masked_fill.h' 2025-07-17T06:38:00.6207280Z adding 'torch/include/ATen/ops/masked_fill_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6208010Z adding 'torch/include/ATen/ops/masked_fill_cpu_dispatch.h' 2025-07-17T06:38:00.6208830Z adding 'torch/include/ATen/ops/masked_fill_cuda_dispatch.h' 2025-07-17T06:38:00.6209630Z adding 'torch/include/ATen/ops/masked_fill_meta_dispatch.h' 2025-07-17T06:38:00.6210420Z adding 'torch/include/ATen/ops/masked_fill_mps_dispatch.h' 2025-07-17T06:38:00.6211340Z adding 'torch/include/ATen/ops/masked_fill_native.h' 2025-07-17T06:38:00.6212510Z adding 'torch/include/ATen/ops/masked_fill_ops.h' 2025-07-17T06:38:00.6213430Z adding 'torch/include/ATen/ops/masked_scatter.h' 2025-07-17T06:38:00.6214370Z adding 'torch/include/ATen/ops/masked_scatter_backward.h' 2025-07-17T06:38:00.6215360Z adding 'torch/include/ATen/ops/masked_scatter_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6216120Z adding 'torch/include/ATen/ops/masked_scatter_backward_native.h' 2025-07-17T06:38:00.6217060Z adding 'torch/include/ATen/ops/masked_scatter_backward_ops.h' 2025-07-17T06:38:00.6218030Z adding 'torch/include/ATen/ops/masked_scatter_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6218860Z adding 'torch/include/ATen/ops/masked_scatter_cpu_dispatch.h' 2025-07-17T06:38:00.6219770Z adding 'torch/include/ATen/ops/masked_scatter_cuda_dispatch.h' 2025-07-17T06:38:00.6220590Z adding 'torch/include/ATen/ops/masked_scatter_meta_dispatch.h' 2025-07-17T06:38:00.6221470Z adding 'torch/include/ATen/ops/masked_scatter_mps_dispatch.h' 2025-07-17T06:38:00.6222330Z adding 'torch/include/ATen/ops/masked_scatter_native.h' 2025-07-17T06:38:00.6223350Z adding 'torch/include/ATen/ops/masked_scatter_ops.h' 2025-07-17T06:38:00.6224250Z adding 'torch/include/ATen/ops/masked_select.h' 2025-07-17T06:38:00.6225160Z adding 'torch/include/ATen/ops/masked_select_backward.h' 2025-07-17T06:38:00.6226130Z adding 'torch/include/ATen/ops/masked_select_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6226890Z adding 'torch/include/ATen/ops/masked_select_backward_native.h' 2025-07-17T06:38:00.6227800Z adding 'torch/include/ATen/ops/masked_select_backward_ops.h' 2025-07-17T06:38:00.6228680Z adding 'torch/include/ATen/ops/masked_select_cpu_dispatch.h' 2025-07-17T06:38:00.6229500Z adding 'torch/include/ATen/ops/masked_select_cuda_dispatch.h' 2025-07-17T06:38:00.6230340Z adding 'torch/include/ATen/ops/masked_select_mps_dispatch.h' 2025-07-17T06:38:00.6231190Z adding 'torch/include/ATen/ops/masked_select_native.h' 2025-07-17T06:38:00.6232150Z adding 'torch/include/ATen/ops/masked_select_ops.h' 2025-07-17T06:38:00.6233010Z adding 'torch/include/ATen/ops/matmul.h' 2025-07-17T06:38:00.6233970Z adding 'torch/include/ATen/ops/matmul_backward.h' 2025-07-17T06:38:00.6234980Z adding 'torch/include/ATen/ops/matmul_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6235800Z adding 'torch/include/ATen/ops/matmul_backward_native.h' 2025-07-17T06:38:00.6236810Z adding 'torch/include/ATen/ops/matmul_backward_ops.h' 2025-07-17T06:38:00.6237770Z adding 'torch/include/ATen/ops/matmul_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6238550Z adding 'torch/include/ATen/ops/matmul_native.h' 2025-07-17T06:38:00.6239490Z adding 'torch/include/ATen/ops/matmul_ops.h' 2025-07-17T06:38:00.6240320Z adding 'torch/include/ATen/ops/matrix_H.h' 2025-07-17T06:38:00.6241270Z adding 'torch/include/ATen/ops/matrix_H_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6242030Z adding 'torch/include/ATen/ops/matrix_H_native.h' 2025-07-17T06:38:00.6242940Z adding 'torch/include/ATen/ops/matrix_H_ops.h' 2025-07-17T06:38:00.6243790Z adding 'torch/include/ATen/ops/matrix_exp.h' 2025-07-17T06:38:00.6244690Z adding 'torch/include/ATen/ops/matrix_exp_backward.h' 2025-07-17T06:38:00.6245680Z adding 'torch/include/ATen/ops/matrix_exp_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6246460Z adding 'torch/include/ATen/ops/matrix_exp_backward_native.h' 2025-07-17T06:38:00.6247390Z adding 'torch/include/ATen/ops/matrix_exp_backward_ops.h' 2025-07-17T06:38:00.6248370Z adding 'torch/include/ATen/ops/matrix_exp_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6249120Z adding 'torch/include/ATen/ops/matrix_exp_native.h' 2025-07-17T06:38:00.6250000Z adding 'torch/include/ATen/ops/matrix_exp_ops.h' 2025-07-17T06:38:00.6250870Z adding 'torch/include/ATen/ops/matrix_power.h' 2025-07-17T06:38:00.6251850Z adding 'torch/include/ATen/ops/matrix_power_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6252610Z adding 'torch/include/ATen/ops/matrix_power_native.h' 2025-07-17T06:38:00.6253560Z adding 'torch/include/ATen/ops/matrix_power_ops.h' 2025-07-17T06:38:00.6254630Z adding 'torch/include/ATen/ops/max.h' 2025-07-17T06:38:00.6255660Z adding 'torch/include/ATen/ops/max_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.6256590Z adding 'torch/include/ATen/ops/max_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6257480Z adding 'torch/include/ATen/ops/max_cpu_dispatch.h' 2025-07-17T06:38:00.6258410Z adding 'torch/include/ATen/ops/max_cuda_dispatch.h' 2025-07-17T06:38:00.6259300Z adding 'torch/include/ATen/ops/max_meta.h' 2025-07-17T06:38:00.6260200Z adding 'torch/include/ATen/ops/max_meta_dispatch.h' 2025-07-17T06:38:00.6261060Z adding 'torch/include/ATen/ops/max_mps_dispatch.h' 2025-07-17T06:38:00.6261970Z adding 'torch/include/ATen/ops/max_native.h' 2025-07-17T06:38:00.6263200Z adding 'torch/include/ATen/ops/max_ops.h' 2025-07-17T06:38:00.6264100Z adding 'torch/include/ATen/ops/max_pool1d.h' 2025-07-17T06:38:00.6265070Z adding 'torch/include/ATen/ops/max_pool1d_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6265840Z adding 'torch/include/ATen/ops/max_pool1d_native.h' 2025-07-17T06:38:00.6266760Z adding 'torch/include/ATen/ops/max_pool1d_ops.h' 2025-07-17T06:38:00.6267700Z adding 'torch/include/ATen/ops/max_pool1d_with_indices.h' 2025-07-17T06:38:00.6268740Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6269580Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_native.h' 2025-07-17T06:38:00.6270580Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_ops.h' 2025-07-17T06:38:00.6271440Z adding 'torch/include/ATen/ops/max_pool2d.h' 2025-07-17T06:38:00.6272430Z adding 'torch/include/ATen/ops/max_pool2d_backward.h' 2025-07-17T06:38:00.6273480Z adding 'torch/include/ATen/ops/max_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6274320Z adding 'torch/include/ATen/ops/max_pool2d_backward_mps_dispatch.h' 2025-07-17T06:38:00.6275210Z adding 'torch/include/ATen/ops/max_pool2d_backward_native.h' 2025-07-17T06:38:00.6276230Z adding 'torch/include/ATen/ops/max_pool2d_backward_ops.h' 2025-07-17T06:38:00.6277170Z adding 'torch/include/ATen/ops/max_pool2d_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6277980Z adding 'torch/include/ATen/ops/max_pool2d_mps_dispatch.h' 2025-07-17T06:38:00.6278870Z adding 'torch/include/ATen/ops/max_pool2d_native.h' 2025-07-17T06:38:00.6279900Z adding 'torch/include/ATen/ops/max_pool2d_ops.h' 2025-07-17T06:38:00.6280940Z adding 'torch/include/ATen/ops/max_pool2d_with_indices.h' 2025-07-17T06:38:00.6282030Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward.h' 2025-07-17T06:38:00.6283090Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.6284000Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_cpu_dispatch.h' 2025-07-17T06:38:00.6284950Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_cuda_dispatch.h' 2025-07-17T06:38:00.6285830Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_meta.h' 2025-07-17T06:38:00.6286730Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_meta_dispatch.h' 2025-07-17T06:38:00.6287580Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_mps_dispatch.h' 2025-07-17T06:38:00.6288470Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_native.h' 2025-07-17T06:38:00.6289930Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_ops.h' 2025-07-17T06:38:00.6290960Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.6291810Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_cpu_dispatch.h' 2025-07-17T06:38:00.6292750Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_cuda_dispatch.h' 2025-07-17T06:38:00.6293610Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_meta.h' 2025-07-17T06:38:00.6294530Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_meta_dispatch.h' 2025-07-17T06:38:00.6295410Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_mps_dispatch.h' 2025-07-17T06:38:00.6296350Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_native.h' 2025-07-17T06:38:00.6297410Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_ops.h' 2025-07-17T06:38:00.6298320Z adding 'torch/include/ATen/ops/max_pool3d.h' 2025-07-17T06:38:00.6299350Z adding 'torch/include/ATen/ops/max_pool3d_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6300150Z adding 'torch/include/ATen/ops/max_pool3d_native.h' 2025-07-17T06:38:00.6301130Z adding 'torch/include/ATen/ops/max_pool3d_ops.h' 2025-07-17T06:38:00.6302200Z adding 'torch/include/ATen/ops/max_pool3d_with_indices.h' 2025-07-17T06:38:00.6303290Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward.h' 2025-07-17T06:38:00.6304350Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_cpu_dispatch.h' 2025-07-17T06:38:00.6305240Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_cuda_dispatch.h' 2025-07-17T06:38:00.6306130Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_mps_dispatch.h' 2025-07-17T06:38:00.6307040Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_native.h' 2025-07-17T06:38:00.6308100Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_ops.h' 2025-07-17T06:38:00.6309000Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_cpu_dispatch.h' 2025-07-17T06:38:00.6309870Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_cuda_dispatch.h' 2025-07-17T06:38:00.6310720Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_mps_dispatch.h' 2025-07-17T06:38:00.6311610Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_native.h' 2025-07-17T06:38:00.6312670Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_ops.h' 2025-07-17T06:38:00.6313830Z adding 'torch/include/ATen/ops/max_unpool2d.h' 2025-07-17T06:38:00.6314830Z adding 'torch/include/ATen/ops/max_unpool2d_cpu_dispatch.h' 2025-07-17T06:38:00.6315760Z adding 'torch/include/ATen/ops/max_unpool2d_cuda_dispatch.h' 2025-07-17T06:38:00.6316660Z adding 'torch/include/ATen/ops/max_unpool2d_native.h' 2025-07-17T06:38:00.6317600Z adding 'torch/include/ATen/ops/max_unpool2d_ops.h' 2025-07-17T06:38:00.6318740Z adding 'torch/include/ATen/ops/max_unpool3d.h' 2025-07-17T06:38:00.6319720Z adding 'torch/include/ATen/ops/max_unpool3d_cpu_dispatch.h' 2025-07-17T06:38:00.6320640Z adding 'torch/include/ATen/ops/max_unpool3d_cuda_dispatch.h' 2025-07-17T06:38:00.6321520Z adding 'torch/include/ATen/ops/max_unpool3d_native.h' 2025-07-17T06:38:00.6322540Z adding 'torch/include/ATen/ops/max_unpool3d_ops.h' 2025-07-17T06:38:00.6323460Z adding 'torch/include/ATen/ops/maximum.h' 2025-07-17T06:38:00.6324500Z adding 'torch/include/ATen/ops/maximum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.6325310Z adding 'torch/include/ATen/ops/maximum_cpu_dispatch.h' 2025-07-17T06:38:00.6326230Z adding 'torch/include/ATen/ops/maximum_cuda_dispatch.h' 2025-07-17T06:38:00.6327090Z adding 'torch/include/ATen/ops/maximum_meta.h' 2025-07-17T06:38:00.6327940Z adding 'torch/include/ATen/ops/maximum_meta_dispatch.h' 2025-07-17T06:38:00.6328740Z adding 'torch/include/ATen/ops/maximum_mps_dispatch.h' 2025-07-17T06:38:00.6329580Z adding 'torch/include/ATen/ops/maximum_native.h' 2025-07-17T06:38:00.6330530Z adding 'torch/include/ATen/ops/maximum_ops.h' 2025-07-17T06:38:00.6331570Z adding 'torch/include/ATen/ops/mean.h' 2025-07-17T06:38:00.6332640Z adding 'torch/include/ATen/ops/mean_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6333470Z adding 'torch/include/ATen/ops/mean_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.6334330Z adding 'torch/include/ATen/ops/mean_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6335150Z adding 'torch/include/ATen/ops/mean_cpu_dispatch.h' 2025-07-17T06:38:00.6336010Z adding 'torch/include/ATen/ops/mean_cuda_dispatch.h' 2025-07-17T06:38:00.6336890Z adding 'torch/include/ATen/ops/mean_meta.h' 2025-07-17T06:38:00.6337820Z adding 'torch/include/ATen/ops/mean_meta_dispatch.h' 2025-07-17T06:38:00.6338670Z adding 'torch/include/ATen/ops/mean_mps_dispatch.h' 2025-07-17T06:38:00.6339630Z adding 'torch/include/ATen/ops/mean_native.h' 2025-07-17T06:38:00.6340820Z adding 'torch/include/ATen/ops/mean_ops.h' 2025-07-17T06:38:00.6341840Z adding 'torch/include/ATen/ops/median.h' 2025-07-17T06:38:00.6342860Z adding 'torch/include/ATen/ops/median_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6343770Z adding 'torch/include/ATen/ops/median_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6344670Z adding 'torch/include/ATen/ops/median_cpu_dispatch.h' 2025-07-17T06:38:00.6345540Z adding 'torch/include/ATen/ops/median_cuda_dispatch.h' 2025-07-17T06:38:00.6346390Z adding 'torch/include/ATen/ops/median_mps_dispatch.h' 2025-07-17T06:38:00.6347360Z adding 'torch/include/ATen/ops/median_native.h' 2025-07-17T06:38:00.6348510Z adding 'torch/include/ATen/ops/median_ops.h' 2025-07-17T06:38:00.6349400Z adding 'torch/include/ATen/ops/meshgrid.h' 2025-07-17T06:38:00.6350420Z adding 'torch/include/ATen/ops/meshgrid_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6351200Z adding 'torch/include/ATen/ops/meshgrid_native.h' 2025-07-17T06:38:00.6352150Z adding 'torch/include/ATen/ops/meshgrid_ops.h' 2025-07-17T06:38:00.6353290Z adding 'torch/include/ATen/ops/min.h' 2025-07-17T06:38:00.6354290Z adding 'torch/include/ATen/ops/min_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.6355180Z adding 'torch/include/ATen/ops/min_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6356000Z adding 'torch/include/ATen/ops/min_cpu_dispatch.h' 2025-07-17T06:38:00.6356910Z adding 'torch/include/ATen/ops/min_cuda_dispatch.h' 2025-07-17T06:38:00.6357800Z adding 'torch/include/ATen/ops/min_meta.h' 2025-07-17T06:38:00.6358720Z adding 'torch/include/ATen/ops/min_meta_dispatch.h' 2025-07-17T06:38:00.6359570Z adding 'torch/include/ATen/ops/min_mps_dispatch.h' 2025-07-17T06:38:00.6360520Z adding 'torch/include/ATen/ops/min_native.h' 2025-07-17T06:38:00.6361760Z adding 'torch/include/ATen/ops/min_ops.h' 2025-07-17T06:38:00.6362660Z adding 'torch/include/ATen/ops/minimum.h' 2025-07-17T06:38:00.6363680Z adding 'torch/include/ATen/ops/minimum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.6364460Z adding 'torch/include/ATen/ops/minimum_cpu_dispatch.h' 2025-07-17T06:38:00.6365320Z adding 'torch/include/ATen/ops/minimum_cuda_dispatch.h' 2025-07-17T06:38:00.6366180Z adding 'torch/include/ATen/ops/minimum_meta.h' 2025-07-17T06:38:00.6367040Z adding 'torch/include/ATen/ops/minimum_meta_dispatch.h' 2025-07-17T06:38:00.6367900Z adding 'torch/include/ATen/ops/minimum_mps_dispatch.h' 2025-07-17T06:38:00.6368780Z adding 'torch/include/ATen/ops/minimum_native.h' 2025-07-17T06:38:00.6369720Z adding 'torch/include/ATen/ops/minimum_ops.h' 2025-07-17T06:38:00.6370750Z adding 'torch/include/ATen/ops/miopen_batch_norm.h' 2025-07-17T06:38:00.6371760Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward.h' 2025-07-17T06:38:00.6372840Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6373700Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_cuda_dispatch.h' 2025-07-17T06:38:00.6374610Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_native.h' 2025-07-17T06:38:00.6375670Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_ops.h' 2025-07-17T06:38:00.6376720Z adding 'torch/include/ATen/ops/miopen_batch_norm_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6377540Z adding 'torch/include/ATen/ops/miopen_batch_norm_cuda_dispatch.h' 2025-07-17T06:38:00.6378430Z adding 'torch/include/ATen/ops/miopen_batch_norm_native.h' 2025-07-17T06:38:00.6379570Z adding 'torch/include/ATen/ops/miopen_batch_norm_ops.h' 2025-07-17T06:38:00.6380920Z adding 'torch/include/ATen/ops/miopen_convolution.h' 2025-07-17T06:38:00.6382010Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu.h' 2025-07-17T06:38:00.6383030Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_cuda_dispatch.h' 2025-07-17T06:38:00.6383910Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_native.h' 2025-07-17T06:38:00.6384860Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_ops.h' 2025-07-17T06:38:00.6385900Z adding 'torch/include/ATen/ops/miopen_convolution_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6386730Z adding 'torch/include/ATen/ops/miopen_convolution_cuda_dispatch.h' 2025-07-17T06:38:00.6387620Z adding 'torch/include/ATen/ops/miopen_convolution_native.h' 2025-07-17T06:38:00.6388650Z adding 'torch/include/ATen/ops/miopen_convolution_ops.h' 2025-07-17T06:38:00.6389620Z adding 'torch/include/ATen/ops/miopen_convolution_relu.h' 2025-07-17T06:38:00.6390650Z adding 'torch/include/ATen/ops/miopen_convolution_relu_cuda_dispatch.h' 2025-07-17T06:38:00.6391540Z adding 'torch/include/ATen/ops/miopen_convolution_relu_native.h' 2025-07-17T06:38:00.6392560Z adding 'torch/include/ATen/ops/miopen_convolution_relu_ops.h' 2025-07-17T06:38:00.6393870Z adding 'torch/include/ATen/ops/miopen_convolution_transpose.h' 2025-07-17T06:38:00.6395030Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6395940Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_cuda_dispatch.h' 2025-07-17T06:38:00.6396790Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_native.h' 2025-07-17T06:38:00.6397870Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_ops.h' 2025-07-17T06:38:00.6399090Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution.h' 2025-07-17T06:38:00.6400210Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6401060Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_cuda_dispatch.h' 2025-07-17T06:38:00.6401980Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_native.h' 2025-07-17T06:38:00.6403130Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_ops.h' 2025-07-17T06:38:00.6404230Z adding 'torch/include/ATen/ops/miopen_rnn.h' 2025-07-17T06:38:00.6405450Z adding 'torch/include/ATen/ops/miopen_rnn_backward.h' 2025-07-17T06:38:00.6406560Z adding 'torch/include/ATen/ops/miopen_rnn_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6407480Z adding 'torch/include/ATen/ops/miopen_rnn_backward_cuda_dispatch.h' 2025-07-17T06:38:00.6408460Z adding 'torch/include/ATen/ops/miopen_rnn_backward_native.h' 2025-07-17T06:38:00.6409740Z adding 'torch/include/ATen/ops/miopen_rnn_backward_ops.h' 2025-07-17T06:38:00.6410770Z adding 'torch/include/ATen/ops/miopen_rnn_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6411640Z adding 'torch/include/ATen/ops/miopen_rnn_cuda_dispatch.h' 2025-07-17T06:38:00.6412570Z adding 'torch/include/ATen/ops/miopen_rnn_native.h' 2025-07-17T06:38:00.6413830Z adding 'torch/include/ATen/ops/miopen_rnn_ops.h' 2025-07-17T06:38:00.6414790Z adding 'torch/include/ATen/ops/mish.h' 2025-07-17T06:38:00.6415720Z adding 'torch/include/ATen/ops/mish_backward.h' 2025-07-17T06:38:00.6416710Z adding 'torch/include/ATen/ops/mish_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6417510Z adding 'torch/include/ATen/ops/mish_backward_cpu_dispatch.h' 2025-07-17T06:38:00.6418320Z adding 'torch/include/ATen/ops/mish_backward_cuda_dispatch.h' 2025-07-17T06:38:00.6419120Z adding 'torch/include/ATen/ops/mish_backward_mps_dispatch.h' 2025-07-17T06:38:00.6419950Z adding 'torch/include/ATen/ops/mish_backward_native.h' 2025-07-17T06:38:00.6420870Z adding 'torch/include/ATen/ops/mish_backward_ops.h' 2025-07-17T06:38:00.6421810Z adding 'torch/include/ATen/ops/mish_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.6422570Z adding 'torch/include/ATen/ops/mish_cpu_dispatch.h' 2025-07-17T06:38:00.6423390Z adding 'torch/include/ATen/ops/mish_cuda_dispatch.h' 2025-07-17T06:38:00.6424200Z adding 'torch/include/ATen/ops/mish_meta.h' 2025-07-17T06:38:00.6425070Z adding 'torch/include/ATen/ops/mish_meta_dispatch.h' 2025-07-17T06:38:00.6425930Z adding 'torch/include/ATen/ops/mish_mps_dispatch.h' 2025-07-17T06:38:00.6426790Z adding 'torch/include/ATen/ops/mish_native.h' 2025-07-17T06:38:00.6427780Z adding 'torch/include/ATen/ops/mish_ops.h' 2025-07-17T06:38:00.6428790Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d.h' 2025-07-17T06:38:00.6429780Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward.h' 2025-07-17T06:38:00.6430790Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6431590Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_native.h' 2025-07-17T06:38:00.6432620Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_ops.h' 2025-07-17T06:38:00.6433480Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_native.h' 2025-07-17T06:38:00.6434500Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_ops.h' 2025-07-17T06:38:00.6435690Z adding 'torch/include/ATen/ops/mkldnn_convolution.h' 2025-07-17T06:38:00.6436790Z adding 'torch/include/ATen/ops/mkldnn_convolution_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6437660Z adding 'torch/include/ATen/ops/mkldnn_convolution_native.h' 2025-07-17T06:38:00.6438690Z adding 'torch/include/ATen/ops/mkldnn_convolution_ops.h' 2025-07-17T06:38:00.6439610Z adding 'torch/include/ATen/ops/mkldnn_linear.h' 2025-07-17T06:38:00.6440580Z adding 'torch/include/ATen/ops/mkldnn_linear_backward.h' 2025-07-17T06:38:00.6441600Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6442490Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input.h' 2025-07-17T06:38:00.6443480Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6444240Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_native.h' 2025-07-17T06:38:00.6445200Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_ops.h' 2025-07-17T06:38:00.6446070Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_native.h' 2025-07-17T06:38:00.6447080Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_ops.h' 2025-07-17T06:38:00.6448040Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights.h' 2025-07-17T06:38:00.6449030Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6449800Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_native.h' 2025-07-17T06:38:00.6450790Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_ops.h' 2025-07-17T06:38:00.6451710Z adding 'torch/include/ATen/ops/mkldnn_linear_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6452460Z adding 'torch/include/ATen/ops/mkldnn_linear_native.h' 2025-07-17T06:38:00.6453430Z adding 'torch/include/ATen/ops/mkldnn_linear_ops.h' 2025-07-17T06:38:00.6454420Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d.h' 2025-07-17T06:38:00.6455450Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward.h' 2025-07-17T06:38:00.6456510Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6457310Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_native.h' 2025-07-17T06:38:00.6458310Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_ops.h' 2025-07-17T06:38:00.6459260Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6460060Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_native.h' 2025-07-17T06:38:00.6461010Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_ops.h' 2025-07-17T06:38:00.6461940Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d.h' 2025-07-17T06:38:00.6462910Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward.h' 2025-07-17T06:38:00.6463930Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6464710Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_native.h' 2025-07-17T06:38:00.6465720Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_ops.h' 2025-07-17T06:38:00.6466660Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6467440Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_native.h' 2025-07-17T06:38:00.6468410Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_ops.h' 2025-07-17T06:38:00.6469680Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight.h' 2025-07-17T06:38:00.6470750Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6471530Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_native.h' 2025-07-17T06:38:00.6472560Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_ops.h' 2025-07-17T06:38:00.6473930Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight.h' 2025-07-17T06:38:00.6475100Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6475890Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_native.h' 2025-07-17T06:38:00.6476910Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_ops.h' 2025-07-17T06:38:00.6477970Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer.h' 2025-07-17T06:38:00.6479270Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward.h' 2025-07-17T06:38:00.6480340Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6481240Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_cpu_dispatch.h' 2025-07-17T06:38:00.6482180Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_native.h' 2025-07-17T06:38:00.6483450Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_ops.h' 2025-07-17T06:38:00.6484530Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6485380Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_cpu_dispatch.h' 2025-07-17T06:38:00.6486290Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_native.h' 2025-07-17T06:38:00.6487430Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_ops.h' 2025-07-17T06:38:00.6488380Z adding 'torch/include/ATen/ops/mm.h' 2025-07-17T06:38:00.6489360Z adding 'torch/include/ATen/ops/mm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.6490180Z adding 'torch/include/ATen/ops/mm_cpu_dispatch.h' 2025-07-17T06:38:00.6491030Z adding 'torch/include/ATen/ops/mm_cuda_dispatch.h' 2025-07-17T06:38:00.6491890Z adding 'torch/include/ATen/ops/mm_meta.h' 2025-07-17T06:38:00.6492790Z adding 'torch/include/ATen/ops/mm_meta_dispatch.h' 2025-07-17T06:38:00.6493630Z adding 'torch/include/ATen/ops/mm_mps_dispatch.h' 2025-07-17T06:38:00.6494620Z adding 'torch/include/ATen/ops/mm_native.h' 2025-07-17T06:38:00.6495630Z adding 'torch/include/ATen/ops/mm_ops.h' 2025-07-17T06:38:00.6496710Z adding 'torch/include/ATen/ops/mode.h' 2025-07-17T06:38:00.6497690Z adding 'torch/include/ATen/ops/mode_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6498630Z adding 'torch/include/ATen/ops/mode_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6499440Z adding 'torch/include/ATen/ops/mode_cpu_dispatch.h' 2025-07-17T06:38:00.6500350Z adding 'torch/include/ATen/ops/mode_cuda_dispatch.h' 2025-07-17T06:38:00.6501200Z adding 'torch/include/ATen/ops/mode_native.h' 2025-07-17T06:38:00.6502270Z adding 'torch/include/ATen/ops/mode_ops.h' 2025-07-17T06:38:00.6503200Z adding 'torch/include/ATen/ops/moveaxis.h' 2025-07-17T06:38:00.6504230Z adding 'torch/include/ATen/ops/moveaxis_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6505060Z adding 'torch/include/ATen/ops/moveaxis_native.h' 2025-07-17T06:38:00.6506030Z adding 'torch/include/ATen/ops/moveaxis_ops.h' 2025-07-17T06:38:00.6506900Z adding 'torch/include/ATen/ops/movedim.h' 2025-07-17T06:38:00.6507870Z adding 'torch/include/ATen/ops/movedim_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6508620Z adding 'torch/include/ATen/ops/movedim_native.h' 2025-07-17T06:38:00.6509600Z adding 'torch/include/ATen/ops/movedim_ops.h' 2025-07-17T06:38:00.6511630Z adding 'torch/include/ATen/ops/mps_convolution_backward.h' 2025-07-17T06:38:00.6512450Z adding 'torch/include/ATen/ops/mps_convolution_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6513330Z adding 'torch/include/ATen/ops/mps_convolution_backward_mps_dispatch.h' 2025-07-17T06:38:00.6514250Z adding 'torch/include/ATen/ops/mps_convolution_backward_native.h' 2025-07-17T06:38:00.6520260Z adding 'torch/include/ATen/ops/mps_convolution_backward_ops.h' 2025-07-17T06:38:00.6520520Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward.h' 2025-07-17T06:38:00.6520810Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6520980Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_mps_dispatch.h' 2025-07-17T06:38:00.6521130Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_native.h' 2025-07-17T06:38:00.6521270Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_ops.h' 2025-07-17T06:38:00.6521580Z adding 'torch/include/ATen/ops/mse_loss.h' 2025-07-17T06:38:00.6522520Z adding 'torch/include/ATen/ops/mse_loss_backward.h' 2025-07-17T06:38:00.6523450Z adding 'torch/include/ATen/ops/mse_loss_backward_cpu_dispatch.h' 2025-07-17T06:38:00.6524340Z adding 'torch/include/ATen/ops/mse_loss_backward_cuda_dispatch.h' 2025-07-17T06:38:00.6525140Z adding 'torch/include/ATen/ops/mse_loss_backward_mps_dispatch.h' 2025-07-17T06:38:00.6525990Z adding 'torch/include/ATen/ops/mse_loss_backward_native.h' 2025-07-17T06:38:00.6526960Z adding 'torch/include/ATen/ops/mse_loss_backward_ops.h' 2025-07-17T06:38:00.6527950Z adding 'torch/include/ATen/ops/mse_loss_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.6528720Z adding 'torch/include/ATen/ops/mse_loss_cpu_dispatch.h' 2025-07-17T06:38:00.6529560Z adding 'torch/include/ATen/ops/mse_loss_cuda_dispatch.h' 2025-07-17T06:38:00.6530440Z adding 'torch/include/ATen/ops/mse_loss_meta.h' 2025-07-17T06:38:00.6531310Z adding 'torch/include/ATen/ops/mse_loss_meta_dispatch.h' 2025-07-17T06:38:00.6532130Z adding 'torch/include/ATen/ops/mse_loss_mps_dispatch.h' 2025-07-17T06:38:00.6532990Z adding 'torch/include/ATen/ops/mse_loss_native.h' 2025-07-17T06:38:00.6533950Z adding 'torch/include/ATen/ops/mse_loss_ops.h' 2025-07-17T06:38:00.6534860Z adding 'torch/include/ATen/ops/msort.h' 2025-07-17T06:38:00.6535880Z adding 'torch/include/ATen/ops/msort_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6536680Z adding 'torch/include/ATen/ops/msort_native.h' 2025-07-17T06:38:00.6537650Z adding 'torch/include/ATen/ops/msort_ops.h' 2025-07-17T06:38:00.6538570Z adding 'torch/include/ATen/ops/mul.h' 2025-07-17T06:38:00.6539570Z adding 'torch/include/ATen/ops/mul_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6540520Z adding 'torch/include/ATen/ops/mul_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.6541330Z adding 'torch/include/ATen/ops/mul_cpu_dispatch.h' 2025-07-17T06:38:00.6542190Z adding 'torch/include/ATen/ops/mul_cuda_dispatch.h' 2025-07-17T06:38:00.6543020Z adding 'torch/include/ATen/ops/mul_meta.h' 2025-07-17T06:38:00.6543840Z adding 'torch/include/ATen/ops/mul_meta_dispatch.h' 2025-07-17T06:38:00.6544660Z adding 'torch/include/ATen/ops/mul_mps_dispatch.h' 2025-07-17T06:38:00.6545640Z adding 'torch/include/ATen/ops/mul_native.h' 2025-07-17T06:38:00.6546730Z adding 'torch/include/ATen/ops/mul_ops.h' 2025-07-17T06:38:00.6547750Z adding 'torch/include/ATen/ops/multi_margin_loss.h' 2025-07-17T06:38:00.6548730Z adding 'torch/include/ATen/ops/multi_margin_loss_backward.h' 2025-07-17T06:38:00.6549690Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_cpu_dispatch.h' 2025-07-17T06:38:00.6550560Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_cuda_dispatch.h' 2025-07-17T06:38:00.6551500Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_native.h' 2025-07-17T06:38:00.6552500Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_ops.h' 2025-07-17T06:38:00.6553420Z adding 'torch/include/ATen/ops/multi_margin_loss_cpu_dispatch.h' 2025-07-17T06:38:00.6554290Z adding 'torch/include/ATen/ops/multi_margin_loss_cuda_dispatch.h' 2025-07-17T06:38:00.6555150Z adding 'torch/include/ATen/ops/multi_margin_loss_native.h' 2025-07-17T06:38:00.6556180Z adding 'torch/include/ATen/ops/multi_margin_loss_ops.h' 2025-07-17T06:38:00.6557080Z adding 'torch/include/ATen/ops/multilabel_margin_loss.h' 2025-07-17T06:38:00.6558040Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward.h' 2025-07-17T06:38:00.6558990Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_cpu_dispatch.h' 2025-07-17T06:38:00.6559850Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_cuda_dispatch.h' 2025-07-17T06:38:00.6560760Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_native.h' 2025-07-17T06:38:00.6561740Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_ops.h' 2025-07-17T06:38:00.6562730Z adding 'torch/include/ATen/ops/multilabel_margin_loss_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6563570Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward.h' 2025-07-17T06:38:00.6564520Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_cpu_dispatch.h' 2025-07-17T06:38:00.6565420Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_cuda_dispatch.h' 2025-07-17T06:38:00.6566290Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_native.h' 2025-07-17T06:38:00.6567330Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_ops.h' 2025-07-17T06:38:00.6568200Z adding 'torch/include/ATen/ops/multilabel_margin_loss_native.h' 2025-07-17T06:38:00.6569140Z adding 'torch/include/ATen/ops/multilabel_margin_loss_ops.h' 2025-07-17T06:38:00.6570220Z adding 'torch/include/ATen/ops/multinomial.h' 2025-07-17T06:38:00.6571230Z adding 'torch/include/ATen/ops/multinomial_cpu_dispatch.h' 2025-07-17T06:38:00.6572160Z adding 'torch/include/ATen/ops/multinomial_cuda_dispatch.h' 2025-07-17T06:38:00.6573050Z adding 'torch/include/ATen/ops/multinomial_mps_dispatch.h' 2025-07-17T06:38:00.6573910Z adding 'torch/include/ATen/ops/multinomial_native.h' 2025-07-17T06:38:00.6574910Z adding 'torch/include/ATen/ops/multinomial_ops.h' 2025-07-17T06:38:00.6575820Z adding 'torch/include/ATen/ops/multiply.h' 2025-07-17T06:38:00.6576820Z adding 'torch/include/ATen/ops/multiply_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6577610Z adding 'torch/include/ATen/ops/multiply_native.h' 2025-07-17T06:38:00.6578660Z adding 'torch/include/ATen/ops/multiply_ops.h' 2025-07-17T06:38:00.6579570Z adding 'torch/include/ATen/ops/mv.h' 2025-07-17T06:38:00.6580540Z adding 'torch/include/ATen/ops/mv_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6581320Z adding 'torch/include/ATen/ops/mv_native.h' 2025-07-17T06:38:00.6582280Z adding 'torch/include/ATen/ops/mv_ops.h' 2025-07-17T06:38:00.6583180Z adding 'torch/include/ATen/ops/mvlgamma.h' 2025-07-17T06:38:00.6584200Z adding 'torch/include/ATen/ops/mvlgamma_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6585050Z adding 'torch/include/ATen/ops/mvlgamma_cpu_dispatch.h' 2025-07-17T06:38:00.6585890Z adding 'torch/include/ATen/ops/mvlgamma_cuda_dispatch.h' 2025-07-17T06:38:00.6586730Z adding 'torch/include/ATen/ops/mvlgamma_native.h' 2025-07-17T06:38:00.6587750Z adding 'torch/include/ATen/ops/mvlgamma_ops.h' 2025-07-17T06:38:00.6588720Z adding 'torch/include/ATen/ops/nan_to_num.h' 2025-07-17T06:38:00.6589780Z adding 'torch/include/ATen/ops/nan_to_num_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6590570Z adding 'torch/include/ATen/ops/nan_to_num_cpu_dispatch.h' 2025-07-17T06:38:00.6591460Z adding 'torch/include/ATen/ops/nan_to_num_cuda_dispatch.h' 2025-07-17T06:38:00.6592350Z adding 'torch/include/ATen/ops/nan_to_num_mps_dispatch.h' 2025-07-17T06:38:00.6593220Z adding 'torch/include/ATen/ops/nan_to_num_native.h' 2025-07-17T06:38:00.6594250Z adding 'torch/include/ATen/ops/nan_to_num_ops.h' 2025-07-17T06:38:00.6595200Z adding 'torch/include/ATen/ops/nanmean.h' 2025-07-17T06:38:00.6596210Z adding 'torch/include/ATen/ops/nanmean_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6596970Z adding 'torch/include/ATen/ops/nanmean_native.h' 2025-07-17T06:38:00.6597940Z adding 'torch/include/ATen/ops/nanmean_ops.h' 2025-07-17T06:38:00.6598980Z adding 'torch/include/ATen/ops/nanmedian.h' 2025-07-17T06:38:00.6599990Z adding 'torch/include/ATen/ops/nanmedian_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6600930Z adding 'torch/include/ATen/ops/nanmedian_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6601820Z adding 'torch/include/ATen/ops/nanmedian_cpu_dispatch.h' 2025-07-17T06:38:00.6602690Z adding 'torch/include/ATen/ops/nanmedian_cuda_dispatch.h' 2025-07-17T06:38:00.6603520Z adding 'torch/include/ATen/ops/nanmedian_mps_dispatch.h' 2025-07-17T06:38:00.6604440Z adding 'torch/include/ATen/ops/nanmedian_native.h' 2025-07-17T06:38:00.6605610Z adding 'torch/include/ATen/ops/nanmedian_ops.h' 2025-07-17T06:38:00.6606640Z adding 'torch/include/ATen/ops/nanquantile.h' 2025-07-17T06:38:00.6607700Z adding 'torch/include/ATen/ops/nanquantile_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6608510Z adding 'torch/include/ATen/ops/nanquantile_native.h' 2025-07-17T06:38:00.6609580Z adding 'torch/include/ATen/ops/nanquantile_ops.h' 2025-07-17T06:38:00.6610580Z adding 'torch/include/ATen/ops/nansum.h' 2025-07-17T06:38:00.6611530Z adding 'torch/include/ATen/ops/nansum_cpu_dispatch.h' 2025-07-17T06:38:00.6612350Z adding 'torch/include/ATen/ops/nansum_cuda_dispatch.h' 2025-07-17T06:38:00.6613240Z adding 'torch/include/ATen/ops/nansum_mps_dispatch.h' 2025-07-17T06:38:00.6614180Z adding 'torch/include/ATen/ops/nansum_native.h' 2025-07-17T06:38:00.6615200Z adding 'torch/include/ATen/ops/nansum_ops.h' 2025-07-17T06:38:00.6616200Z adding 'torch/include/ATen/ops/narrow.h' 2025-07-17T06:38:00.6617160Z adding 'torch/include/ATen/ops/narrow_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6618130Z adding 'torch/include/ATen/ops/narrow_copy.h' 2025-07-17T06:38:00.6619160Z adding 'torch/include/ATen/ops/narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.6619960Z adding 'torch/include/ATen/ops/narrow_copy_cpu_dispatch.h' 2025-07-17T06:38:00.6620810Z adding 'torch/include/ATen/ops/narrow_copy_native.h' 2025-07-17T06:38:00.6621770Z adding 'torch/include/ATen/ops/narrow_copy_ops.h' 2025-07-17T06:38:00.6622780Z adding 'torch/include/ATen/ops/narrow_native.h' 2025-07-17T06:38:00.6623780Z adding 'torch/include/ATen/ops/narrow_ops.h' 2025-07-17T06:38:00.6624890Z adding 'torch/include/ATen/ops/native_batch_norm.h' 2025-07-17T06:38:00.6625990Z adding 'torch/include/ATen/ops/native_batch_norm_backward.h' 2025-07-17T06:38:00.6627080Z adding 'torch/include/ATen/ops/native_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6627910Z adding 'torch/include/ATen/ops/native_batch_norm_backward_cpu_dispatch.h' 2025-07-17T06:38:00.6628770Z adding 'torch/include/ATen/ops/native_batch_norm_backward_cuda_dispatch.h' 2025-07-17T06:38:00.6629680Z adding 'torch/include/ATen/ops/native_batch_norm_backward_mps_dispatch.h' 2025-07-17T06:38:00.6630690Z adding 'torch/include/ATen/ops/native_batch_norm_backward_native.h' 2025-07-17T06:38:00.6631880Z adding 'torch/include/ATen/ops/native_batch_norm_backward_ops.h' 2025-07-17T06:38:00.6632860Z adding 'torch/include/ATen/ops/native_batch_norm_cpu_dispatch.h' 2025-07-17T06:38:00.6633740Z adding 'torch/include/ATen/ops/native_batch_norm_cuda_dispatch.h' 2025-07-17T06:38:00.6634630Z adding 'torch/include/ATen/ops/native_batch_norm_mps_dispatch.h' 2025-07-17T06:38:00.6635560Z adding 'torch/include/ATen/ops/native_batch_norm_native.h' 2025-07-17T06:38:00.6636620Z adding 'torch/include/ATen/ops/native_batch_norm_ops.h' 2025-07-17T06:38:00.6637570Z adding 'torch/include/ATen/ops/native_channel_shuffle.h' 2025-07-17T06:38:00.6638560Z adding 'torch/include/ATen/ops/native_channel_shuffle_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6639350Z adding 'torch/include/ATen/ops/native_channel_shuffle_cpu_dispatch.h' 2025-07-17T06:38:00.6640180Z adding 'torch/include/ATen/ops/native_channel_shuffle_native.h' 2025-07-17T06:38:00.6641090Z adding 'torch/include/ATen/ops/native_channel_shuffle_ops.h' 2025-07-17T06:38:00.6641990Z adding 'torch/include/ATen/ops/native_dropout.h' 2025-07-17T06:38:00.6642910Z adding 'torch/include/ATen/ops/native_dropout_backward.h' 2025-07-17T06:38:00.6643910Z adding 'torch/include/ATen/ops/native_dropout_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6644810Z adding 'torch/include/ATen/ops/native_dropout_backward_cpu_dispatch.h' 2025-07-17T06:38:00.6645640Z adding 'torch/include/ATen/ops/native_dropout_backward_cuda_dispatch.h' 2025-07-17T06:38:00.6646450Z adding 'torch/include/ATen/ops/native_dropout_backward_native.h' 2025-07-17T06:38:00.6647400Z adding 'torch/include/ATen/ops/native_dropout_backward_ops.h' 2025-07-17T06:38:00.6648330Z adding 'torch/include/ATen/ops/native_dropout_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6649120Z adding 'torch/include/ATen/ops/native_dropout_cpu_dispatch.h' 2025-07-17T06:38:00.6649970Z adding 'torch/include/ATen/ops/native_dropout_cuda_dispatch.h' 2025-07-17T06:38:00.6650800Z adding 'torch/include/ATen/ops/native_dropout_native.h' 2025-07-17T06:38:00.6651780Z adding 'torch/include/ATen/ops/native_dropout_ops.h' 2025-07-17T06:38:00.6653040Z adding 'torch/include/ATen/ops/native_group_norm.h' 2025-07-17T06:38:00.6654380Z adding 'torch/include/ATen/ops/native_group_norm_backward.h' 2025-07-17T06:38:00.6655480Z adding 'torch/include/ATen/ops/native_group_norm_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6656330Z adding 'torch/include/ATen/ops/native_group_norm_backward_cpu_dispatch.h' 2025-07-17T06:38:00.6657180Z adding 'torch/include/ATen/ops/native_group_norm_backward_cuda_dispatch.h' 2025-07-17T06:38:00.6658070Z adding 'torch/include/ATen/ops/native_group_norm_backward_native.h' 2025-07-17T06:38:00.6659160Z adding 'torch/include/ATen/ops/native_group_norm_backward_ops.h' 2025-07-17T06:38:00.6660230Z adding 'torch/include/ATen/ops/native_group_norm_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6661090Z adding 'torch/include/ATen/ops/native_group_norm_cpu_dispatch.h' 2025-07-17T06:38:00.6661950Z adding 'torch/include/ATen/ops/native_group_norm_cuda_dispatch.h' 2025-07-17T06:38:00.6662830Z adding 'torch/include/ATen/ops/native_group_norm_native.h' 2025-07-17T06:38:00.6663870Z adding 'torch/include/ATen/ops/native_group_norm_ops.h' 2025-07-17T06:38:00.6665070Z adding 'torch/include/ATen/ops/native_layer_norm.h' 2025-07-17T06:38:00.6666430Z adding 'torch/include/ATen/ops/native_layer_norm_backward.h' 2025-07-17T06:38:00.6667510Z adding 'torch/include/ATen/ops/native_layer_norm_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6668330Z adding 'torch/include/ATen/ops/native_layer_norm_backward_cpu_dispatch.h' 2025-07-17T06:38:00.6669190Z adding 'torch/include/ATen/ops/native_layer_norm_backward_cuda_dispatch.h' 2025-07-17T06:38:00.6670050Z adding 'torch/include/ATen/ops/native_layer_norm_backward_mps_dispatch.h' 2025-07-17T06:38:00.6670960Z adding 'torch/include/ATen/ops/native_layer_norm_backward_native.h' 2025-07-17T06:38:00.6672030Z adding 'torch/include/ATen/ops/native_layer_norm_backward_ops.h' 2025-07-17T06:38:00.6673090Z adding 'torch/include/ATen/ops/native_layer_norm_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6673900Z adding 'torch/include/ATen/ops/native_layer_norm_cpu_dispatch.h' 2025-07-17T06:38:00.6674780Z adding 'torch/include/ATen/ops/native_layer_norm_cuda_dispatch.h' 2025-07-17T06:38:00.6675600Z adding 'torch/include/ATen/ops/native_layer_norm_mps_dispatch.h' 2025-07-17T06:38:00.6676470Z adding 'torch/include/ATen/ops/native_layer_norm_native.h' 2025-07-17T06:38:00.6677510Z adding 'torch/include/ATen/ops/native_layer_norm_ops.h' 2025-07-17T06:38:00.6678500Z adding 'torch/include/ATen/ops/native_norm.h' 2025-07-17T06:38:00.6679510Z adding 'torch/include/ATen/ops/native_norm_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6680320Z adding 'torch/include/ATen/ops/native_norm_native.h' 2025-07-17T06:38:00.6681360Z adding 'torch/include/ATen/ops/native_norm_ops.h' 2025-07-17T06:38:00.6682290Z adding 'torch/include/ATen/ops/ne.h' 2025-07-17T06:38:00.6683330Z adding 'torch/include/ATen/ops/ne_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.6684230Z adding 'torch/include/ATen/ops/ne_cpu_dispatch.h' 2025-07-17T06:38:00.6685090Z adding 'torch/include/ATen/ops/ne_cuda_dispatch.h' 2025-07-17T06:38:00.6685940Z adding 'torch/include/ATen/ops/ne_meta.h' 2025-07-17T06:38:00.6686810Z adding 'torch/include/ATen/ops/ne_meta_dispatch.h' 2025-07-17T06:38:00.6687620Z adding 'torch/include/ATen/ops/ne_mps_dispatch.h' 2025-07-17T06:38:00.6688540Z adding 'torch/include/ATen/ops/ne_native.h' 2025-07-17T06:38:00.6689620Z adding 'torch/include/ATen/ops/ne_ops.h' 2025-07-17T06:38:00.6690520Z adding 'torch/include/ATen/ops/neg.h' 2025-07-17T06:38:00.6691480Z adding 'torch/include/ATen/ops/neg_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.6692250Z adding 'torch/include/ATen/ops/neg_cpu_dispatch.h' 2025-07-17T06:38:00.6693090Z adding 'torch/include/ATen/ops/neg_cuda_dispatch.h' 2025-07-17T06:38:00.6693920Z adding 'torch/include/ATen/ops/neg_meta.h' 2025-07-17T06:38:00.6694760Z adding 'torch/include/ATen/ops/neg_meta_dispatch.h' 2025-07-17T06:38:00.6695610Z adding 'torch/include/ATen/ops/neg_mps_dispatch.h' 2025-07-17T06:38:00.6696450Z adding 'torch/include/ATen/ops/neg_native.h' 2025-07-17T06:38:00.6697450Z adding 'torch/include/ATen/ops/neg_ops.h' 2025-07-17T06:38:00.6698390Z adding 'torch/include/ATen/ops/negative.h' 2025-07-17T06:38:00.6699390Z adding 'torch/include/ATen/ops/negative_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6700150Z adding 'torch/include/ATen/ops/negative_native.h' 2025-07-17T06:38:00.6701110Z adding 'torch/include/ATen/ops/negative_ops.h' 2025-07-17T06:38:00.6702070Z adding 'torch/include/ATen/ops/nested_to_padded_tensor.h' 2025-07-17T06:38:00.6703040Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6703800Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_native.h' 2025-07-17T06:38:00.6704710Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_ops.h' 2025-07-17T06:38:00.6705770Z adding 'torch/include/ATen/ops/new_empty.h' 2025-07-17T06:38:00.6706810Z adding 'torch/include/ATen/ops/new_empty_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6707580Z adding 'torch/include/ATen/ops/new_empty_native.h' 2025-07-17T06:38:00.6708570Z adding 'torch/include/ATen/ops/new_empty_ops.h' 2025-07-17T06:38:00.6709700Z adding 'torch/include/ATen/ops/new_empty_strided.h' 2025-07-17T06:38:00.6710750Z adding 'torch/include/ATen/ops/new_empty_strided_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6711750Z adding 'torch/include/ATen/ops/new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.6712500Z adding 'torch/include/ATen/ops/new_empty_strided_native.h' 2025-07-17T06:38:00.6713510Z adding 'torch/include/ATen/ops/new_empty_strided_ops.h' 2025-07-17T06:38:00.6714610Z adding 'torch/include/ATen/ops/new_full.h' 2025-07-17T06:38:00.6715710Z adding 'torch/include/ATen/ops/new_full_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6716480Z adding 'torch/include/ATen/ops/new_full_native.h' 2025-07-17T06:38:00.6717510Z adding 'torch/include/ATen/ops/new_full_ops.h' 2025-07-17T06:38:00.6718560Z adding 'torch/include/ATen/ops/new_ones.h' 2025-07-17T06:38:00.6719630Z adding 'torch/include/ATen/ops/new_ones_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6720360Z adding 'torch/include/ATen/ops/new_ones_native.h' 2025-07-17T06:38:00.6721370Z adding 'torch/include/ATen/ops/new_ones_ops.h' 2025-07-17T06:38:00.6722460Z adding 'torch/include/ATen/ops/new_zeros.h' 2025-07-17T06:38:00.6723600Z adding 'torch/include/ATen/ops/new_zeros_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6724540Z adding 'torch/include/ATen/ops/new_zeros_native.h' 2025-07-17T06:38:00.6725540Z adding 'torch/include/ATen/ops/new_zeros_ops.h' 2025-07-17T06:38:00.6726490Z adding 'torch/include/ATen/ops/nextafter.h' 2025-07-17T06:38:00.6727550Z adding 'torch/include/ATen/ops/nextafter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.6728670Z adding 'torch/include/ATen/ops/nextafter_cpu_dispatch.h' 2025-07-17T06:38:00.6729500Z adding 'torch/include/ATen/ops/nextafter_cuda_dispatch.h' 2025-07-17T06:38:00.6730320Z adding 'torch/include/ATen/ops/nextafter_meta.h' 2025-07-17T06:38:00.6731180Z adding 'torch/include/ATen/ops/nextafter_meta_dispatch.h' 2025-07-17T06:38:00.6731990Z adding 'torch/include/ATen/ops/nextafter_mps_dispatch.h' 2025-07-17T06:38:00.6732800Z adding 'torch/include/ATen/ops/nextafter_native.h' 2025-07-17T06:38:00.6733790Z adding 'torch/include/ATen/ops/nextafter_ops.h' 2025-07-17T06:38:00.6734890Z adding 'torch/include/ATen/ops/nll_loss.h' 2025-07-17T06:38:00.6736010Z adding 'torch/include/ATen/ops/nll_loss2d.h' 2025-07-17T06:38:00.6737200Z adding 'torch/include/ATen/ops/nll_loss2d_backward.h' 2025-07-17T06:38:00.6738230Z adding 'torch/include/ATen/ops/nll_loss2d_backward_cpu_dispatch.h' 2025-07-17T06:38:00.6739120Z adding 'torch/include/ATen/ops/nll_loss2d_backward_cuda_dispatch.h' 2025-07-17T06:38:00.6740000Z adding 'torch/include/ATen/ops/nll_loss2d_backward_mps_dispatch.h' 2025-07-17T06:38:00.6740930Z adding 'torch/include/ATen/ops/nll_loss2d_backward_native.h' 2025-07-17T06:38:00.6741920Z adding 'torch/include/ATen/ops/nll_loss2d_backward_ops.h' 2025-07-17T06:38:00.6742930Z adding 'torch/include/ATen/ops/nll_loss2d_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6744010Z adding 'torch/include/ATen/ops/nll_loss2d_forward.h' 2025-07-17T06:38:00.6745030Z adding 'torch/include/ATen/ops/nll_loss2d_forward_cpu_dispatch.h' 2025-07-17T06:38:00.6745980Z adding 'torch/include/ATen/ops/nll_loss2d_forward_cuda_dispatch.h' 2025-07-17T06:38:00.6746880Z adding 'torch/include/ATen/ops/nll_loss2d_forward_mps_dispatch.h' 2025-07-17T06:38:00.6747840Z adding 'torch/include/ATen/ops/nll_loss2d_forward_native.h' 2025-07-17T06:38:00.6748870Z adding 'torch/include/ATen/ops/nll_loss2d_forward_ops.h' 2025-07-17T06:38:00.6749790Z adding 'torch/include/ATen/ops/nll_loss2d_native.h' 2025-07-17T06:38:00.6750790Z adding 'torch/include/ATen/ops/nll_loss2d_ops.h' 2025-07-17T06:38:00.6752010Z adding 'torch/include/ATen/ops/nll_loss_backward.h' 2025-07-17T06:38:00.6753140Z adding 'torch/include/ATen/ops/nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.6753970Z adding 'torch/include/ATen/ops/nll_loss_backward_cpu_dispatch.h' 2025-07-17T06:38:00.6754860Z adding 'torch/include/ATen/ops/nll_loss_backward_cuda_dispatch.h' 2025-07-17T06:38:00.6755710Z adding 'torch/include/ATen/ops/nll_loss_backward_meta.h' 2025-07-17T06:38:00.6756620Z adding 'torch/include/ATen/ops/nll_loss_backward_meta_dispatch.h' 2025-07-17T06:38:00.6757510Z adding 'torch/include/ATen/ops/nll_loss_backward_mps_dispatch.h' 2025-07-17T06:38:00.6758460Z adding 'torch/include/ATen/ops/nll_loss_backward_native.h' 2025-07-17T06:38:00.6759470Z adding 'torch/include/ATen/ops/nll_loss_backward_ops.h' 2025-07-17T06:38:00.6760500Z adding 'torch/include/ATen/ops/nll_loss_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6761560Z adding 'torch/include/ATen/ops/nll_loss_forward.h' 2025-07-17T06:38:00.6762610Z adding 'torch/include/ATen/ops/nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.6763420Z adding 'torch/include/ATen/ops/nll_loss_forward_cpu_dispatch.h' 2025-07-17T06:38:00.6764330Z adding 'torch/include/ATen/ops/nll_loss_forward_cuda_dispatch.h' 2025-07-17T06:38:00.6765140Z adding 'torch/include/ATen/ops/nll_loss_forward_meta.h' 2025-07-17T06:38:00.6766050Z adding 'torch/include/ATen/ops/nll_loss_forward_meta_dispatch.h' 2025-07-17T06:38:00.6766900Z adding 'torch/include/ATen/ops/nll_loss_forward_mps_dispatch.h' 2025-07-17T06:38:00.6767780Z adding 'torch/include/ATen/ops/nll_loss_forward_native.h' 2025-07-17T06:38:00.6768780Z adding 'torch/include/ATen/ops/nll_loss_forward_ops.h' 2025-07-17T06:38:00.6769630Z adding 'torch/include/ATen/ops/nll_loss_native.h' 2025-07-17T06:38:00.6770560Z adding 'torch/include/ATen/ops/nll_loss_nd.h' 2025-07-17T06:38:00.6771560Z adding 'torch/include/ATen/ops/nll_loss_nd_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6772320Z adding 'torch/include/ATen/ops/nll_loss_nd_native.h' 2025-07-17T06:38:00.6773230Z adding 'torch/include/ATen/ops/nll_loss_nd_ops.h' 2025-07-17T06:38:00.6774220Z adding 'torch/include/ATen/ops/nll_loss_ops.h' 2025-07-17T06:38:00.6775110Z adding 'torch/include/ATen/ops/nonzero.h' 2025-07-17T06:38:00.6775990Z adding 'torch/include/ATen/ops/nonzero_cpu_dispatch.h' 2025-07-17T06:38:00.6776800Z adding 'torch/include/ATen/ops/nonzero_cuda_dispatch.h' 2025-07-17T06:38:00.6777590Z adding 'torch/include/ATen/ops/nonzero_mps_dispatch.h' 2025-07-17T06:38:00.6778420Z adding 'torch/include/ATen/ops/nonzero_native.h' 2025-07-17T06:38:00.6779260Z adding 'torch/include/ATen/ops/nonzero_numpy.h' 2025-07-17T06:38:00.6780210Z adding 'torch/include/ATen/ops/nonzero_numpy_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6780930Z adding 'torch/include/ATen/ops/nonzero_numpy_native.h' 2025-07-17T06:38:00.6781820Z adding 'torch/include/ATen/ops/nonzero_numpy_ops.h' 2025-07-17T06:38:00.6782710Z adding 'torch/include/ATen/ops/nonzero_ops.h' 2025-07-17T06:38:00.6783770Z adding 'torch/include/ATen/ops/nonzero_static.h' 2025-07-17T06:38:00.6784710Z adding 'torch/include/ATen/ops/nonzero_static_cpu_dispatch.h' 2025-07-17T06:38:00.6785570Z adding 'torch/include/ATen/ops/nonzero_static_cuda_dispatch.h' 2025-07-17T06:38:00.6786430Z adding 'torch/include/ATen/ops/nonzero_static_native.h' 2025-07-17T06:38:00.6787350Z adding 'torch/include/ATen/ops/nonzero_static_ops.h' 2025-07-17T06:38:00.6788540Z adding 'torch/include/ATen/ops/norm.h' 2025-07-17T06:38:00.6789550Z adding 'torch/include/ATen/ops/norm_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6790490Z adding 'torch/include/ATen/ops/norm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.6791370Z adding 'torch/include/ATen/ops/norm_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6792250Z adding 'torch/include/ATen/ops/norm_cpu_dispatch.h' 2025-07-17T06:38:00.6793090Z adding 'torch/include/ATen/ops/norm_cuda_dispatch.h' 2025-07-17T06:38:00.6793940Z adding 'torch/include/ATen/ops/norm_except_dim.h' 2025-07-17T06:38:00.6794900Z adding 'torch/include/ATen/ops/norm_except_dim_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6795730Z adding 'torch/include/ATen/ops/norm_except_dim_native.h' 2025-07-17T06:38:00.6796630Z adding 'torch/include/ATen/ops/norm_except_dim_ops.h' 2025-07-17T06:38:00.6797470Z adding 'torch/include/ATen/ops/norm_meta.h' 2025-07-17T06:38:00.6798380Z adding 'torch/include/ATen/ops/norm_meta_dispatch.h' 2025-07-17T06:38:00.6799210Z adding 'torch/include/ATen/ops/norm_mps_dispatch.h' 2025-07-17T06:38:00.6800220Z adding 'torch/include/ATen/ops/norm_native.h' 2025-07-17T06:38:00.6801820Z adding 'torch/include/ATen/ops/norm_ops.h' 2025-07-17T06:38:00.6804120Z adding 'torch/include/ATen/ops/normal.h' 2025-07-17T06:38:00.6805160Z adding 'torch/include/ATen/ops/normal_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6806190Z adding 'torch/include/ATen/ops/normal_cpu_dispatch.h' 2025-07-17T06:38:00.6808320Z adding 'torch/include/ATen/ops/normal_cuda_dispatch.h' 2025-07-17T06:38:00.6808940Z adding 'torch/include/ATen/ops/normal_meta_dispatch.h' 2025-07-17T06:38:00.6809840Z adding 'torch/include/ATen/ops/normal_mps_dispatch.h' 2025-07-17T06:38:00.6810950Z adding 'torch/include/ATen/ops/normal_native.h' 2025-07-17T06:38:00.6812920Z adding 'torch/include/ATen/ops/normal_ops.h' 2025-07-17T06:38:00.6813640Z adding 'torch/include/ATen/ops/not_equal.h' 2025-07-17T06:38:00.6815780Z adding 'torch/include/ATen/ops/not_equal_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6816330Z adding 'torch/include/ATen/ops/not_equal_native.h' 2025-07-17T06:38:00.6817680Z adding 'torch/include/ATen/ops/not_equal_ops.h' 2025-07-17T06:38:00.6818670Z adding 'torch/include/ATen/ops/nuclear_norm.h' 2025-07-17T06:38:00.6819710Z adding 'torch/include/ATen/ops/nuclear_norm_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6820510Z adding 'torch/include/ATen/ops/nuclear_norm_native.h' 2025-07-17T06:38:00.6821740Z adding 'torch/include/ATen/ops/nuclear_norm_ops.h' 2025-07-17T06:38:00.6822600Z adding 'torch/include/ATen/ops/numpy_T.h' 2025-07-17T06:38:00.6823600Z adding 'torch/include/ATen/ops/numpy_T_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6824370Z adding 'torch/include/ATen/ops/numpy_T_native.h' 2025-07-17T06:38:00.6825480Z adding 'torch/include/ATen/ops/numpy_T_ops.h' 2025-07-17T06:38:00.6826380Z adding 'torch/include/ATen/ops/one_hot.h' 2025-07-17T06:38:00.6827370Z adding 'torch/include/ATen/ops/one_hot_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6828110Z adding 'torch/include/ATen/ops/one_hot_native.h' 2025-07-17T06:38:00.6829260Z adding 'torch/include/ATen/ops/one_hot_ops.h' 2025-07-17T06:38:00.6830550Z adding 'torch/include/ATen/ops/ones.h' 2025-07-17T06:38:00.6831720Z adding 'torch/include/ATen/ops/ones_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6832650Z adding 'torch/include/ATen/ops/ones_like.h' 2025-07-17T06:38:00.6833880Z adding 'torch/include/ATen/ops/ones_like_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6834730Z adding 'torch/include/ATen/ops/ones_like_native.h' 2025-07-17T06:38:00.6835710Z adding 'torch/include/ATen/ops/ones_like_ops.h' 2025-07-17T06:38:00.6836580Z adding 'torch/include/ATen/ops/ones_native.h' 2025-07-17T06:38:00.6837860Z adding 'torch/include/ATen/ops/ones_ops.h' 2025-07-17T06:38:00.6838790Z adding 'torch/include/ATen/ops/or.h' 2025-07-17T06:38:00.6839810Z adding 'torch/include/ATen/ops/or_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6840600Z adding 'torch/include/ATen/ops/or_native.h' 2025-07-17T06:38:00.6841820Z adding 'torch/include/ATen/ops/or_ops.h' 2025-07-17T06:38:00.6842740Z adding 'torch/include/ATen/ops/orgqr.h' 2025-07-17T06:38:00.6843730Z adding 'torch/include/ATen/ops/orgqr_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6844520Z adding 'torch/include/ATen/ops/orgqr_native.h' 2025-07-17T06:38:00.6845650Z adding 'torch/include/ATen/ops/orgqr_ops.h' 2025-07-17T06:38:00.6846640Z adding 'torch/include/ATen/ops/ormqr.h' 2025-07-17T06:38:00.6847570Z adding 'torch/include/ATen/ops/ormqr_cpu_dispatch.h' 2025-07-17T06:38:00.6848450Z adding 'torch/include/ATen/ops/ormqr_cuda_dispatch.h' 2025-07-17T06:38:00.6849470Z adding 'torch/include/ATen/ops/ormqr_native.h' 2025-07-17T06:38:00.6850450Z adding 'torch/include/ATen/ops/ormqr_ops.h' 2025-07-17T06:38:00.6851360Z adding 'torch/include/ATen/ops/outer.h' 2025-07-17T06:38:00.6852340Z adding 'torch/include/ATen/ops/outer_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6853290Z adding 'torch/include/ATen/ops/outer_native.h' 2025-07-17T06:38:00.6854240Z adding 'torch/include/ATen/ops/outer_ops.h' 2025-07-17T06:38:00.6855060Z adding 'torch/include/ATen/ops/output_nr.h' 2025-07-17T06:38:00.6856030Z adding 'torch/include/ATen/ops/output_nr_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6856980Z adding 'torch/include/ATen/ops/output_nr_native.h' 2025-07-17T06:38:00.6857910Z adding 'torch/include/ATen/ops/output_nr_ops.h' 2025-07-17T06:38:00.6858820Z adding 'torch/include/ATen/ops/pad.h' 2025-07-17T06:38:00.6859810Z adding 'torch/include/ATen/ops/pad_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6860780Z adding 'torch/include/ATen/ops/pad_native.h' 2025-07-17T06:38:00.6861740Z adding 'torch/include/ATen/ops/pad_ops.h' 2025-07-17T06:38:00.6862620Z adding 'torch/include/ATen/ops/pad_sequence.h' 2025-07-17T06:38:00.6863600Z adding 'torch/include/ATen/ops/pad_sequence_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6864630Z adding 'torch/include/ATen/ops/pad_sequence_native.h' 2025-07-17T06:38:00.6865610Z adding 'torch/include/ATen/ops/pad_sequence_ops.h' 2025-07-17T06:38:00.6866510Z adding 'torch/include/ATen/ops/pairwise_distance.h' 2025-07-17T06:38:00.6867530Z adding 'torch/include/ATen/ops/pairwise_distance_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6868460Z adding 'torch/include/ATen/ops/pairwise_distance_native.h' 2025-07-17T06:38:00.6869380Z adding 'torch/include/ATen/ops/pairwise_distance_ops.h' 2025-07-17T06:38:00.6870210Z adding 'torch/include/ATen/ops/pdist.h' 2025-07-17T06:38:00.6871160Z adding 'torch/include/ATen/ops/pdist_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6872120Z adding 'torch/include/ATen/ops/pdist_native.h' 2025-07-17T06:38:00.6873020Z adding 'torch/include/ATen/ops/pdist_ops.h' 2025-07-17T06:38:00.6873860Z adding 'torch/include/ATen/ops/permute.h' 2025-07-17T06:38:00.6874830Z adding 'torch/include/ATen/ops/permute_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6875790Z adding 'torch/include/ATen/ops/permute_copy.h' 2025-07-17T06:38:00.6876800Z adding 'torch/include/ATen/ops/permute_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6877710Z adding 'torch/include/ATen/ops/permute_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.6878440Z adding 'torch/include/ATen/ops/permute_copy_native.h' 2025-07-17T06:38:00.6879580Z adding 'torch/include/ATen/ops/permute_copy_ops.h' 2025-07-17T06:38:00.6880450Z adding 'torch/include/ATen/ops/permute_mps_dispatch.h' 2025-07-17T06:38:00.6881340Z adding 'torch/include/ATen/ops/permute_native.h' 2025-07-17T06:38:00.6882190Z adding 'torch/include/ATen/ops/permute_ops.h' 2025-07-17T06:38:00.6883180Z adding 'torch/include/ATen/ops/pin_memory.h' 2025-07-17T06:38:00.6884180Z adding 'torch/include/ATen/ops/pin_memory_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6884920Z adding 'torch/include/ATen/ops/pin_memory_native.h' 2025-07-17T06:38:00.6885810Z adding 'torch/include/ATen/ops/pin_memory_ops.h' 2025-07-17T06:38:00.6886830Z adding 'torch/include/ATen/ops/pinverse.h' 2025-07-17T06:38:00.6887810Z adding 'torch/include/ATen/ops/pinverse_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6888550Z adding 'torch/include/ATen/ops/pinverse_native.h' 2025-07-17T06:38:00.6889460Z adding 'torch/include/ATen/ops/pinverse_ops.h' 2025-07-17T06:38:00.6890540Z adding 'torch/include/ATen/ops/pixel_shuffle.h' 2025-07-17T06:38:00.6891530Z adding 'torch/include/ATen/ops/pixel_shuffle_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6892460Z adding 'torch/include/ATen/ops/pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.6893200Z adding 'torch/include/ATen/ops/pixel_shuffle_cpu_dispatch.h' 2025-07-17T06:38:00.6894220Z adding 'torch/include/ATen/ops/pixel_shuffle_mps_dispatch.h' 2025-07-17T06:38:00.6895070Z adding 'torch/include/ATen/ops/pixel_shuffle_native.h' 2025-07-17T06:38:00.6896020Z adding 'torch/include/ATen/ops/pixel_shuffle_ops.h' 2025-07-17T06:38:00.6896930Z adding 'torch/include/ATen/ops/pixel_unshuffle.h' 2025-07-17T06:38:00.6898100Z adding 'torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6899020Z adding 'torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.6899760Z adding 'torch/include/ATen/ops/pixel_unshuffle_cpu_dispatch.h' 2025-07-17T06:38:00.6900590Z adding 'torch/include/ATen/ops/pixel_unshuffle_mps_dispatch.h' 2025-07-17T06:38:00.6901610Z adding 'torch/include/ATen/ops/pixel_unshuffle_native.h' 2025-07-17T06:38:00.6902600Z adding 'torch/include/ATen/ops/pixel_unshuffle_ops.h' 2025-07-17T06:38:00.6903460Z adding 'torch/include/ATen/ops/poisson.h' 2025-07-17T06:38:00.6904460Z adding 'torch/include/ATen/ops/poisson_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6905420Z adding 'torch/include/ATen/ops/poisson_cpu_dispatch.h' 2025-07-17T06:38:00.6906240Z adding 'torch/include/ATen/ops/poisson_cuda_dispatch.h' 2025-07-17T06:38:00.6907120Z adding 'torch/include/ATen/ops/poisson_native.h' 2025-07-17T06:38:00.6908010Z adding 'torch/include/ATen/ops/poisson_nll_loss.h' 2025-07-17T06:38:00.6909170Z adding 'torch/include/ATen/ops/poisson_nll_loss_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6909950Z adding 'torch/include/ATen/ops/poisson_nll_loss_native.h' 2025-07-17T06:38:00.6910890Z adding 'torch/include/ATen/ops/poisson_nll_loss_ops.h' 2025-07-17T06:38:00.6911820Z adding 'torch/include/ATen/ops/poisson_ops.h' 2025-07-17T06:38:00.6912940Z adding 'torch/include/ATen/ops/polar.h' 2025-07-17T06:38:00.6913960Z adding 'torch/include/ATen/ops/polar_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6914800Z adding 'torch/include/ATen/ops/polar_cpu_dispatch.h' 2025-07-17T06:38:00.6915620Z adding 'torch/include/ATen/ops/polar_cuda_dispatch.h' 2025-07-17T06:38:00.6916610Z adding 'torch/include/ATen/ops/polar_mps_dispatch.h' 2025-07-17T06:38:00.6917440Z adding 'torch/include/ATen/ops/polar_native.h' 2025-07-17T06:38:00.6918560Z adding 'torch/include/ATen/ops/polar_ops.h' 2025-07-17T06:38:00.6919440Z adding 'torch/include/ATen/ops/polygamma.h' 2025-07-17T06:38:00.6920570Z adding 'torch/include/ATen/ops/polygamma_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6921470Z adding 'torch/include/ATen/ops/polygamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.6922220Z adding 'torch/include/ATen/ops/polygamma_cpu_dispatch.h' 2025-07-17T06:38:00.6923030Z adding 'torch/include/ATen/ops/polygamma_cuda_dispatch.h' 2025-07-17T06:38:00.6924060Z adding 'torch/include/ATen/ops/polygamma_meta.h' 2025-07-17T06:38:00.6924900Z adding 'torch/include/ATen/ops/polygamma_meta_dispatch.h' 2025-07-17T06:38:00.6925710Z adding 'torch/include/ATen/ops/polygamma_mps_dispatch.h' 2025-07-17T06:38:00.6926560Z adding 'torch/include/ATen/ops/polygamma_native.h' 2025-07-17T06:38:00.6927710Z adding 'torch/include/ATen/ops/polygamma_ops.h' 2025-07-17T06:38:00.6928570Z adding 'torch/include/ATen/ops/positive.h' 2025-07-17T06:38:00.6929540Z adding 'torch/include/ATen/ops/positive_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6930270Z adding 'torch/include/ATen/ops/positive_native.h' 2025-07-17T06:38:00.6931330Z adding 'torch/include/ATen/ops/positive_ops.h' 2025-07-17T06:38:00.6932320Z adding 'torch/include/ATen/ops/pow.h' 2025-07-17T06:38:00.6933350Z adding 'torch/include/ATen/ops/pow_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.6934160Z adding 'torch/include/ATen/ops/pow_cpu_dispatch.h' 2025-07-17T06:38:00.6935200Z adding 'torch/include/ATen/ops/pow_cuda_dispatch.h' 2025-07-17T06:38:00.6936090Z adding 'torch/include/ATen/ops/pow_meta.h' 2025-07-17T06:38:00.6936960Z adding 'torch/include/ATen/ops/pow_meta_dispatch.h' 2025-07-17T06:38:00.6937790Z adding 'torch/include/ATen/ops/pow_mps_dispatch.h' 2025-07-17T06:38:00.6938900Z adding 'torch/include/ATen/ops/pow_native.h' 2025-07-17T06:38:00.6940090Z adding 'torch/include/ATen/ops/pow_ops.h' 2025-07-17T06:38:00.6940950Z adding 'torch/include/ATen/ops/prelu.h' 2025-07-17T06:38:00.6941900Z adding 'torch/include/ATen/ops/prelu_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6942830Z adding 'torch/include/ATen/ops/prelu_native.h' 2025-07-17T06:38:00.6943710Z adding 'torch/include/ATen/ops/prelu_ops.h' 2025-07-17T06:38:00.6944730Z adding 'torch/include/ATen/ops/prod.h' 2025-07-17T06:38:00.6945710Z adding 'torch/include/ATen/ops/prod_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6946800Z adding 'torch/include/ATen/ops/prod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.6947650Z adding 'torch/include/ATen/ops/prod_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6948480Z adding 'torch/include/ATen/ops/prod_cpu_dispatch.h' 2025-07-17T06:38:00.6949340Z adding 'torch/include/ATen/ops/prod_cuda_dispatch.h' 2025-07-17T06:38:00.6950710Z adding 'torch/include/ATen/ops/prod_meta.h' 2025-07-17T06:38:00.6951720Z adding 'torch/include/ATen/ops/prod_meta_dispatch.h' 2025-07-17T06:38:00.6952540Z adding 'torch/include/ATen/ops/prod_mps_dispatch.h' 2025-07-17T06:38:00.6953430Z adding 'torch/include/ATen/ops/prod_native.h' 2025-07-17T06:38:00.6954760Z adding 'torch/include/ATen/ops/prod_ops.h' 2025-07-17T06:38:00.6955620Z adding 'torch/include/ATen/ops/promote_types.h' 2025-07-17T06:38:00.6956580Z adding 'torch/include/ATen/ops/promote_types_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6957330Z adding 'torch/include/ATen/ops/promote_types_native.h' 2025-07-17T06:38:00.6958410Z adding 'torch/include/ATen/ops/promote_types_ops.h' 2025-07-17T06:38:00.6959280Z adding 'torch/include/ATen/ops/put.h' 2025-07-17T06:38:00.6960250Z adding 'torch/include/ATen/ops/put_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6961030Z adding 'torch/include/ATen/ops/put_cpu_dispatch.h' 2025-07-17T06:38:00.6962030Z adding 'torch/include/ATen/ops/put_cuda_dispatch.h' 2025-07-17T06:38:00.6962900Z adding 'torch/include/ATen/ops/put_meta_dispatch.h' 2025-07-17T06:38:00.6963730Z adding 'torch/include/ATen/ops/put_native.h' 2025-07-17T06:38:00.6964720Z adding 'torch/include/ATen/ops/put_ops.h' 2025-07-17T06:38:00.6965770Z adding 'torch/include/ATen/ops/q_per_channel_axis.h' 2025-07-17T06:38:00.6966640Z adding 'torch/include/ATen/ops/q_per_channel_axis_native.h' 2025-07-17T06:38:00.6967530Z adding 'torch/include/ATen/ops/q_per_channel_axis_ops.h' 2025-07-17T06:38:00.6968400Z adding 'torch/include/ATen/ops/q_per_channel_scales.h' 2025-07-17T06:38:00.6969550Z adding 'torch/include/ATen/ops/q_per_channel_scales_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6970330Z adding 'torch/include/ATen/ops/q_per_channel_scales_native.h' 2025-07-17T06:38:00.6971250Z adding 'torch/include/ATen/ops/q_per_channel_scales_ops.h' 2025-07-17T06:38:00.6972130Z adding 'torch/include/ATen/ops/q_per_channel_zero_points.h' 2025-07-17T06:38:00.6973280Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6974040Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_native.h' 2025-07-17T06:38:00.6974950Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_ops.h' 2025-07-17T06:38:00.6975740Z adding 'torch/include/ATen/ops/q_scale.h' 2025-07-17T06:38:00.6976750Z adding 'torch/include/ATen/ops/q_scale_native.h' 2025-07-17T06:38:00.6977640Z adding 'torch/include/ATen/ops/q_scale_ops.h' 2025-07-17T06:38:00.6978480Z adding 'torch/include/ATen/ops/q_zero_point.h' 2025-07-17T06:38:00.6979330Z adding 'torch/include/ATen/ops/q_zero_point_native.h' 2025-07-17T06:38:00.6980400Z adding 'torch/include/ATen/ops/q_zero_point_ops.h' 2025-07-17T06:38:00.6981320Z adding 'torch/include/ATen/ops/qr.h' 2025-07-17T06:38:00.6982250Z adding 'torch/include/ATen/ops/qr_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6983020Z adding 'torch/include/ATen/ops/qr_native.h' 2025-07-17T06:38:00.6984160Z adding 'torch/include/ATen/ops/qr_ops.h' 2025-07-17T06:38:00.6985010Z adding 'torch/include/ATen/ops/qscheme.h' 2025-07-17T06:38:00.6985830Z adding 'torch/include/ATen/ops/qscheme_native.h' 2025-07-17T06:38:00.6986700Z adding 'torch/include/ATen/ops/qscheme_ops.h' 2025-07-17T06:38:00.6987880Z adding 'torch/include/ATen/ops/quantile.h' 2025-07-17T06:38:00.6988940Z adding 'torch/include/ATen/ops/quantile_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.6989740Z adding 'torch/include/ATen/ops/quantile_native.h' 2025-07-17T06:38:00.6990850Z adding 'torch/include/ATen/ops/quantile_ops.h' 2025-07-17T06:38:00.6991960Z adding 'torch/include/ATen/ops/quantize_per_channel.h' 2025-07-17T06:38:00.6992990Z adding 'torch/include/ATen/ops/quantize_per_channel_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6993790Z adding 'torch/include/ATen/ops/quantize_per_channel_cpu_dispatch.h' 2025-07-17T06:38:00.6994620Z adding 'torch/include/ATen/ops/quantize_per_channel_cuda_dispatch.h' 2025-07-17T06:38:00.6995690Z adding 'torch/include/ATen/ops/quantize_per_channel_native.h' 2025-07-17T06:38:00.6996650Z adding 'torch/include/ATen/ops/quantize_per_channel_ops.h' 2025-07-17T06:38:00.6997700Z adding 'torch/include/ATen/ops/quantize_per_tensor.h' 2025-07-17T06:38:00.6998770Z adding 'torch/include/ATen/ops/quantize_per_tensor_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.6999780Z adding 'torch/include/ATen/ops/quantize_per_tensor_cpu_dispatch.h' 2025-07-17T06:38:00.7000680Z adding 'torch/include/ATen/ops/quantize_per_tensor_cuda_dispatch.h' 2025-07-17T06:38:00.7001560Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic.h' 2025-07-17T06:38:00.7002540Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7003520Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_cpu_dispatch.h' 2025-07-17T06:38:00.7009150Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_cuda_dispatch.h' 2025-07-17T06:38:00.7009530Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_native.h' 2025-07-17T06:38:00.7009890Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_ops.h' 2025-07-17T06:38:00.7010180Z adding 'torch/include/ATen/ops/quantize_per_tensor_native.h' 2025-07-17T06:38:00.7010460Z adding 'torch/include/ATen/ops/quantize_per_tensor_ops.h' 2025-07-17T06:38:00.7010720Z adding 'torch/include/ATen/ops/quantized_batch_norm.h' 2025-07-17T06:38:00.7011080Z adding 'torch/include/ATen/ops/quantized_batch_norm_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7011450Z adding 'torch/include/ATen/ops/quantized_batch_norm_native.h' 2025-07-17T06:38:00.7012290Z adding 'torch/include/ATen/ops/quantized_batch_norm_ops.h' 2025-07-17T06:38:00.7013220Z adding 'torch/include/ATen/ops/quantized_gru_cell.h' 2025-07-17T06:38:00.7014270Z adding 'torch/include/ATen/ops/quantized_gru_cell_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7015210Z adding 'torch/include/ATen/ops/quantized_gru_cell_native.h' 2025-07-17T06:38:00.7016210Z adding 'torch/include/ATen/ops/quantized_gru_cell_ops.h' 2025-07-17T06:38:00.7017130Z adding 'torch/include/ATen/ops/quantized_lstm_cell.h' 2025-07-17T06:38:00.7018140Z adding 'torch/include/ATen/ops/quantized_lstm_cell_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7019110Z adding 'torch/include/ATen/ops/quantized_lstm_cell_native.h' 2025-07-17T06:38:00.7020110Z adding 'torch/include/ATen/ops/quantized_lstm_cell_ops.h' 2025-07-17T06:38:00.7021070Z adding 'torch/include/ATen/ops/quantized_max_pool1d.h' 2025-07-17T06:38:00.7022070Z adding 'torch/include/ATen/ops/quantized_max_pool1d_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7023030Z adding 'torch/include/ATen/ops/quantized_max_pool1d_native.h' 2025-07-17T06:38:00.7024030Z adding 'torch/include/ATen/ops/quantized_max_pool1d_ops.h' 2025-07-17T06:38:00.7024990Z adding 'torch/include/ATen/ops/quantized_max_pool2d.h' 2025-07-17T06:38:00.7025980Z adding 'torch/include/ATen/ops/quantized_max_pool2d_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7026950Z adding 'torch/include/ATen/ops/quantized_max_pool2d_native.h' 2025-07-17T06:38:00.7027950Z adding 'torch/include/ATen/ops/quantized_max_pool2d_ops.h' 2025-07-17T06:38:00.7028880Z adding 'torch/include/ATen/ops/quantized_max_pool3d.h' 2025-07-17T06:38:00.7029870Z adding 'torch/include/ATen/ops/quantized_max_pool3d_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7030850Z adding 'torch/include/ATen/ops/quantized_max_pool3d_native.h' 2025-07-17T06:38:00.7031820Z adding 'torch/include/ATen/ops/quantized_max_pool3d_ops.h' 2025-07-17T06:38:00.7032740Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell.h' 2025-07-17T06:38:00.7033730Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7034700Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_native.h' 2025-07-17T06:38:00.7035670Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_ops.h' 2025-07-17T06:38:00.7036620Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell.h' 2025-07-17T06:38:00.7037570Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7038520Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_native.h' 2025-07-17T06:38:00.7039520Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_ops.h' 2025-07-17T06:38:00.7040370Z adding 'torch/include/ATen/ops/rad2deg.h' 2025-07-17T06:38:00.7041350Z adding 'torch/include/ATen/ops/rad2deg_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7042310Z adding 'torch/include/ATen/ops/rad2deg_native.h' 2025-07-17T06:38:00.7043280Z adding 'torch/include/ATen/ops/rad2deg_ops.h' 2025-07-17T06:38:00.7045340Z adding 'torch/include/ATen/ops/rand.h' 2025-07-17T06:38:00.7046640Z adding 'torch/include/ATen/ops/rand_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7047770Z adding 'torch/include/ATen/ops/rand_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7048700Z adding 'torch/include/ATen/ops/rand_like.h' 2025-07-17T06:38:00.7049750Z adding 'torch/include/ATen/ops/rand_like_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7050550Z adding 'torch/include/ATen/ops/rand_like_native.h' 2025-07-17T06:38:00.7051760Z adding 'torch/include/ATen/ops/rand_like_ops.h' 2025-07-17T06:38:00.7052710Z adding 'torch/include/ATen/ops/rand_native.h' 2025-07-17T06:38:00.7054020Z adding 'torch/include/ATen/ops/rand_ops.h' 2025-07-17T06:38:00.7056130Z adding 'torch/include/ATen/ops/randint.h' 2025-07-17T06:38:00.7057690Z adding 'torch/include/ATen/ops/randint_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7059340Z adding 'torch/include/ATen/ops/randint_like.h' 2025-07-17T06:38:00.7060610Z adding 'torch/include/ATen/ops/randint_like_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7061500Z adding 'torch/include/ATen/ops/randint_like_native.h' 2025-07-17T06:38:00.7062900Z adding 'torch/include/ATen/ops/randint_like_ops.h' 2025-07-17T06:38:00.7063830Z adding 'torch/include/ATen/ops/randint_native.h' 2025-07-17T06:38:00.7065090Z adding 'torch/include/ATen/ops/randint_ops.h' 2025-07-17T06:38:00.7067430Z adding 'torch/include/ATen/ops/randn.h' 2025-07-17T06:38:00.7068580Z adding 'torch/include/ATen/ops/randn_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7069510Z adding 'torch/include/ATen/ops/randn_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7070460Z adding 'torch/include/ATen/ops/randn_like.h' 2025-07-17T06:38:00.7071450Z adding 'torch/include/ATen/ops/randn_like_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7072590Z adding 'torch/include/ATen/ops/randn_like_compositeimplicitautogradnestedtensor_dispatch.h' 2025-07-17T06:38:00.7073340Z adding 'torch/include/ATen/ops/randn_like_native.h' 2025-07-17T06:38:00.7074340Z adding 'torch/include/ATen/ops/randn_like_ops.h' 2025-07-17T06:38:00.7075260Z adding 'torch/include/ATen/ops/randn_native.h' 2025-07-17T06:38:00.7076730Z adding 'torch/include/ATen/ops/randn_ops.h' 2025-07-17T06:38:00.7077760Z adding 'torch/include/ATen/ops/random.h' 2025-07-17T06:38:00.7078790Z adding 'torch/include/ATen/ops/random_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7079610Z adding 'torch/include/ATen/ops/random_cpu_dispatch.h' 2025-07-17T06:38:00.7080630Z adding 'torch/include/ATen/ops/random_cuda_dispatch.h' 2025-07-17T06:38:00.7081490Z adding 'torch/include/ATen/ops/random_meta_dispatch.h' 2025-07-17T06:38:00.7082310Z adding 'torch/include/ATen/ops/random_mps_dispatch.h' 2025-07-17T06:38:00.7083250Z adding 'torch/include/ATen/ops/random_native.h' 2025-07-17T06:38:00.7084690Z adding 'torch/include/ATen/ops/random_ops.h' 2025-07-17T06:38:00.7086110Z adding 'torch/include/ATen/ops/randperm.h' 2025-07-17T06:38:00.7087200Z adding 'torch/include/ATen/ops/randperm_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7088030Z adding 'torch/include/ATen/ops/randperm_cpu_dispatch.h' 2025-07-17T06:38:00.7089070Z adding 'torch/include/ATen/ops/randperm_cuda_dispatch.h' 2025-07-17T06:38:00.7089910Z adding 'torch/include/ATen/ops/randperm_mps_dispatch.h' 2025-07-17T06:38:00.7090810Z adding 'torch/include/ATen/ops/randperm_native.h' 2025-07-17T06:38:00.7091850Z adding 'torch/include/ATen/ops/randperm_ops.h' 2025-07-17T06:38:00.7093070Z adding 'torch/include/ATen/ops/range.h' 2025-07-17T06:38:00.7094120Z adding 'torch/include/ATen/ops/range_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7094920Z adding 'torch/include/ATen/ops/range_cpu_dispatch.h' 2025-07-17T06:38:00.7095730Z adding 'torch/include/ATen/ops/range_cuda_dispatch.h' 2025-07-17T06:38:00.7096730Z adding 'torch/include/ATen/ops/range_meta_dispatch.h' 2025-07-17T06:38:00.7097550Z adding 'torch/include/ATen/ops/range_mps_dispatch.h' 2025-07-17T06:38:00.7098430Z adding 'torch/include/ATen/ops/range_native.h' 2025-07-17T06:38:00.7099510Z adding 'torch/include/ATen/ops/range_ops.h' 2025-07-17T06:38:00.7100560Z adding 'torch/include/ATen/ops/ravel.h' 2025-07-17T06:38:00.7101520Z adding 'torch/include/ATen/ops/ravel_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7102260Z adding 'torch/include/ATen/ops/ravel_native.h' 2025-07-17T06:38:00.7103140Z adding 'torch/include/ATen/ops/ravel_ops.h' 2025-07-17T06:38:00.7104160Z adding 'torch/include/ATen/ops/real.h' 2025-07-17T06:38:00.7105090Z adding 'torch/include/ATen/ops/real_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7105850Z adding 'torch/include/ATen/ops/real_native.h' 2025-07-17T06:38:00.7106730Z adding 'torch/include/ATen/ops/real_ops.h' 2025-07-17T06:38:00.7107800Z adding 'torch/include/ATen/ops/reciprocal.h' 2025-07-17T06:38:00.7108830Z adding 'torch/include/ATen/ops/reciprocal_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7109570Z adding 'torch/include/ATen/ops/reciprocal_cpu_dispatch.h' 2025-07-17T06:38:00.7110400Z adding 'torch/include/ATen/ops/reciprocal_cuda_dispatch.h' 2025-07-17T06:38:00.7111430Z adding 'torch/include/ATen/ops/reciprocal_meta.h' 2025-07-17T06:38:00.7112270Z adding 'torch/include/ATen/ops/reciprocal_meta_dispatch.h' 2025-07-17T06:38:00.7113080Z adding 'torch/include/ATen/ops/reciprocal_mps_dispatch.h' 2025-07-17T06:38:00.7113920Z adding 'torch/include/ATen/ops/reciprocal_native.h' 2025-07-17T06:38:00.7115070Z adding 'torch/include/ATen/ops/reciprocal_ops.h' 2025-07-17T06:38:00.7115920Z adding 'torch/include/ATen/ops/record_stream.h' 2025-07-17T06:38:00.7116800Z adding 'torch/include/ATen/ops/record_stream_cuda_dispatch.h' 2025-07-17T06:38:00.7117610Z adding 'torch/include/ATen/ops/record_stream_native.h' 2025-07-17T06:38:00.7118690Z adding 'torch/include/ATen/ops/record_stream_ops.h' 2025-07-17T06:38:00.7119520Z adding 'torch/include/ATen/ops/refine_names.h' 2025-07-17T06:38:00.7120470Z adding 'torch/include/ATen/ops/refine_names_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7121230Z adding 'torch/include/ATen/ops/refine_names_native.h' 2025-07-17T06:38:00.7122310Z adding 'torch/include/ATen/ops/refine_names_ops.h' 2025-07-17T06:38:00.7123370Z adding 'torch/include/ATen/ops/reflection_pad1d.h' 2025-07-17T06:38:00.7124520Z adding 'torch/include/ATen/ops/reflection_pad1d_backward.h' 2025-07-17T06:38:00.7125580Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7126570Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_cpu_dispatch.h' 2025-07-17T06:38:00.7127460Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_cuda_dispatch.h' 2025-07-17T06:38:00.7128290Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_meta.h' 2025-07-17T06:38:00.7129180Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_meta_dispatch.h' 2025-07-17T06:38:00.7130210Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_mps_dispatch.h' 2025-07-17T06:38:00.7131100Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_native.h' 2025-07-17T06:38:00.7132060Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_ops.h' 2025-07-17T06:38:00.7133070Z adding 'torch/include/ATen/ops/reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7134060Z adding 'torch/include/ATen/ops/reflection_pad1d_cpu_dispatch.h' 2025-07-17T06:38:00.7134900Z adding 'torch/include/ATen/ops/reflection_pad1d_cuda_dispatch.h' 2025-07-17T06:38:00.7135730Z adding 'torch/include/ATen/ops/reflection_pad1d_meta.h' 2025-07-17T06:38:00.7136580Z adding 'torch/include/ATen/ops/reflection_pad1d_meta_dispatch.h' 2025-07-17T06:38:00.7137600Z adding 'torch/include/ATen/ops/reflection_pad1d_mps_dispatch.h' 2025-07-17T06:38:00.7138490Z adding 'torch/include/ATen/ops/reflection_pad1d_native.h' 2025-07-17T06:38:00.7139430Z adding 'torch/include/ATen/ops/reflection_pad1d_ops.h' 2025-07-17T06:38:00.7140480Z adding 'torch/include/ATen/ops/reflection_pad2d.h' 2025-07-17T06:38:00.7141790Z adding 'torch/include/ATen/ops/reflection_pad2d_backward.h' 2025-07-17T06:38:00.7142750Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_cpu_dispatch.h' 2025-07-17T06:38:00.7143610Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_cuda_dispatch.h' 2025-07-17T06:38:00.7144460Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_mps_dispatch.h' 2025-07-17T06:38:00.7145510Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_native.h' 2025-07-17T06:38:00.7146490Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_ops.h' 2025-07-17T06:38:00.7147370Z adding 'torch/include/ATen/ops/reflection_pad2d_cpu_dispatch.h' 2025-07-17T06:38:00.7148210Z adding 'torch/include/ATen/ops/reflection_pad2d_cuda_dispatch.h' 2025-07-17T06:38:00.7149230Z adding 'torch/include/ATen/ops/reflection_pad2d_mps_dispatch.h' 2025-07-17T06:38:00.7150070Z adding 'torch/include/ATen/ops/reflection_pad2d_native.h' 2025-07-17T06:38:00.7151050Z adding 'torch/include/ATen/ops/reflection_pad2d_ops.h' 2025-07-17T06:38:00.7152080Z adding 'torch/include/ATen/ops/reflection_pad3d.h' 2025-07-17T06:38:00.7153430Z adding 'torch/include/ATen/ops/reflection_pad3d_backward.h' 2025-07-17T06:38:00.7154540Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7155340Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_cpu_dispatch.h' 2025-07-17T06:38:00.7156210Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_cuda_dispatch.h' 2025-07-17T06:38:00.7157260Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_meta.h' 2025-07-17T06:38:00.7158140Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_meta_dispatch.h' 2025-07-17T06:38:00.7158990Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_mps_dispatch.h' 2025-07-17T06:38:00.7159850Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_native.h' 2025-07-17T06:38:00.7161040Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_ops.h' 2025-07-17T06:38:00.7162060Z adding 'torch/include/ATen/ops/reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7162800Z adding 'torch/include/ATen/ops/reflection_pad3d_cpu_dispatch.h' 2025-07-17T06:38:00.7163660Z adding 'torch/include/ATen/ops/reflection_pad3d_cuda_dispatch.h' 2025-07-17T06:38:00.7164660Z adding 'torch/include/ATen/ops/reflection_pad3d_meta.h' 2025-07-17T06:38:00.7165540Z adding 'torch/include/ATen/ops/reflection_pad3d_meta_dispatch.h' 2025-07-17T06:38:00.7166410Z adding 'torch/include/ATen/ops/reflection_pad3d_mps_dispatch.h' 2025-07-17T06:38:00.7167260Z adding 'torch/include/ATen/ops/reflection_pad3d_native.h' 2025-07-17T06:38:00.7168390Z adding 'torch/include/ATen/ops/reflection_pad3d_ops.h' 2025-07-17T06:38:00.7169330Z adding 'torch/include/ATen/ops/relu.h' 2025-07-17T06:38:00.7170240Z adding 'torch/include/ATen/ops/relu6.h' 2025-07-17T06:38:00.7171210Z adding 'torch/include/ATen/ops/relu6_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7172180Z adding 'torch/include/ATen/ops/relu6_native.h' 2025-07-17T06:38:00.7173140Z adding 'torch/include/ATen/ops/relu6_ops.h' 2025-07-17T06:38:00.7174130Z adding 'torch/include/ATen/ops/relu_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7174920Z adding 'torch/include/ATen/ops/relu_cpu_dispatch.h' 2025-07-17T06:38:00.7175920Z adding 'torch/include/ATen/ops/relu_cuda_dispatch.h' 2025-07-17T06:38:00.7176830Z adding 'torch/include/ATen/ops/relu_meta_dispatch.h' 2025-07-17T06:38:00.7181140Z adding 'torch/include/ATen/ops/relu_mps_dispatch.h' 2025-07-17T06:38:00.7181850Z adding 'torch/include/ATen/ops/relu_native.h' 2025-07-17T06:38:00.7183040Z adding 'torch/include/ATen/ops/relu_ops.h' 2025-07-17T06:38:00.7184070Z adding 'torch/include/ATen/ops/remainder.h' 2025-07-17T06:38:00.7185110Z adding 'torch/include/ATen/ops/remainder_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7186010Z adding 'torch/include/ATen/ops/remainder_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7187000Z adding 'torch/include/ATen/ops/remainder_cpu_dispatch.h' 2025-07-17T06:38:00.7187860Z adding 'torch/include/ATen/ops/remainder_cuda_dispatch.h' 2025-07-17T06:38:00.7188710Z adding 'torch/include/ATen/ops/remainder_meta.h' 2025-07-17T06:38:00.7189590Z adding 'torch/include/ATen/ops/remainder_meta_dispatch.h' 2025-07-17T06:38:00.7190640Z adding 'torch/include/ATen/ops/remainder_mps_dispatch.h' 2025-07-17T06:38:00.7191530Z adding 'torch/include/ATen/ops/remainder_native.h' 2025-07-17T06:38:00.7192710Z adding 'torch/include/ATen/ops/remainder_ops.h' 2025-07-17T06:38:00.7193600Z adding 'torch/include/ATen/ops/rename.h' 2025-07-17T06:38:00.7194740Z adding 'torch/include/ATen/ops/rename_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7195520Z adding 'torch/include/ATen/ops/rename_native.h' 2025-07-17T06:38:00.7196480Z adding 'torch/include/ATen/ops/rename_ops.h' 2025-07-17T06:38:00.7197400Z adding 'torch/include/ATen/ops/renorm.h' 2025-07-17T06:38:00.7198610Z adding 'torch/include/ATen/ops/renorm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7199400Z adding 'torch/include/ATen/ops/renorm_cpu_dispatch.h' 2025-07-17T06:38:00.7200280Z adding 'torch/include/ATen/ops/renorm_cuda_dispatch.h' 2025-07-17T06:38:00.7201070Z adding 'torch/include/ATen/ops/renorm_meta.h' 2025-07-17T06:38:00.7202120Z adding 'torch/include/ATen/ops/renorm_meta_dispatch.h' 2025-07-17T06:38:00.7202940Z adding 'torch/include/ATen/ops/renorm_mps_dispatch.h' 2025-07-17T06:38:00.7203780Z adding 'torch/include/ATen/ops/renorm_native.h' 2025-07-17T06:38:00.7204780Z adding 'torch/include/ATen/ops/renorm_ops.h' 2025-07-17T06:38:00.7205990Z adding 'torch/include/ATen/ops/repeat.h' 2025-07-17T06:38:00.7207010Z adding 'torch/include/ATen/ops/repeat_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7208240Z adding 'torch/include/ATen/ops/repeat_interleave.h' 2025-07-17T06:38:00.7209260Z adding 'torch/include/ATen/ops/repeat_interleave_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7210370Z adding 'torch/include/ATen/ops/repeat_interleave_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7211200Z adding 'torch/include/ATen/ops/repeat_interleave_cpu_dispatch.h' 2025-07-17T06:38:00.7212030Z adding 'torch/include/ATen/ops/repeat_interleave_cuda_dispatch.h' 2025-07-17T06:38:00.7212860Z adding 'torch/include/ATen/ops/repeat_interleave_mps_dispatch.h' 2025-07-17T06:38:00.7213920Z adding 'torch/include/ATen/ops/repeat_interleave_native.h' 2025-07-17T06:38:00.7215100Z adding 'torch/include/ATen/ops/repeat_interleave_ops.h' 2025-07-17T06:38:00.7215980Z adding 'torch/include/ATen/ops/repeat_mps_dispatch.h' 2025-07-17T06:38:00.7216820Z adding 'torch/include/ATen/ops/repeat_native.h' 2025-07-17T06:38:00.7217980Z adding 'torch/include/ATen/ops/repeat_ops.h' 2025-07-17T06:38:00.7219060Z adding 'torch/include/ATen/ops/replication_pad1d.h' 2025-07-17T06:38:00.7220210Z adding 'torch/include/ATen/ops/replication_pad1d_backward.h' 2025-07-17T06:38:00.7221260Z adding 'torch/include/ATen/ops/replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7222260Z adding 'torch/include/ATen/ops/replication_pad1d_backward_cpu_dispatch.h' 2025-07-17T06:38:00.7223160Z adding 'torch/include/ATen/ops/replication_pad1d_backward_cuda_dispatch.h' 2025-07-17T06:38:00.7223980Z adding 'torch/include/ATen/ops/replication_pad1d_backward_meta.h' 2025-07-17T06:38:00.7224880Z adding 'torch/include/ATen/ops/replication_pad1d_backward_meta_dispatch.h' 2025-07-17T06:38:00.7225880Z adding 'torch/include/ATen/ops/replication_pad1d_backward_mps_dispatch.h' 2025-07-17T06:38:00.7226780Z adding 'torch/include/ATen/ops/replication_pad1d_backward_native.h' 2025-07-17T06:38:00.7227790Z adding 'torch/include/ATen/ops/replication_pad1d_backward_ops.h' 2025-07-17T06:38:00.7228770Z adding 'torch/include/ATen/ops/replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7229740Z adding 'torch/include/ATen/ops/replication_pad1d_cpu_dispatch.h' 2025-07-17T06:38:00.7230640Z adding 'torch/include/ATen/ops/replication_pad1d_cuda_dispatch.h' 2025-07-17T06:38:00.7231490Z adding 'torch/include/ATen/ops/replication_pad1d_meta.h' 2025-07-17T06:38:00.7232380Z adding 'torch/include/ATen/ops/replication_pad1d_meta_dispatch.h' 2025-07-17T06:38:00.7233410Z adding 'torch/include/ATen/ops/replication_pad1d_mps_dispatch.h' 2025-07-17T06:38:00.7234300Z adding 'torch/include/ATen/ops/replication_pad1d_native.h' 2025-07-17T06:38:00.7235240Z adding 'torch/include/ATen/ops/replication_pad1d_ops.h' 2025-07-17T06:38:00.7236300Z adding 'torch/include/ATen/ops/replication_pad2d.h' 2025-07-17T06:38:00.7237630Z adding 'torch/include/ATen/ops/replication_pad2d_backward.h' 2025-07-17T06:38:00.7238640Z adding 'torch/include/ATen/ops/replication_pad2d_backward_cpu_dispatch.h' 2025-07-17T06:38:00.7239500Z adding 'torch/include/ATen/ops/replication_pad2d_backward_cuda_dispatch.h' 2025-07-17T06:38:00.7240390Z adding 'torch/include/ATen/ops/replication_pad2d_backward_mps_dispatch.h' 2025-07-17T06:38:00.7241420Z adding 'torch/include/ATen/ops/replication_pad2d_backward_native.h' 2025-07-17T06:38:00.7242410Z adding 'torch/include/ATen/ops/replication_pad2d_backward_ops.h' 2025-07-17T06:38:00.7243480Z adding 'torch/include/ATen/ops/replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7244220Z adding 'torch/include/ATen/ops/replication_pad2d_cpu_dispatch.h' 2025-07-17T06:38:00.7245270Z adding 'torch/include/ATen/ops/replication_pad2d_cuda_dispatch.h' 2025-07-17T06:38:00.7246130Z adding 'torch/include/ATen/ops/replication_pad2d_meta.h' 2025-07-17T06:38:00.7246990Z adding 'torch/include/ATen/ops/replication_pad2d_meta_dispatch.h' 2025-07-17T06:38:00.7247820Z adding 'torch/include/ATen/ops/replication_pad2d_mps_dispatch.h' 2025-07-17T06:38:00.7248890Z adding 'torch/include/ATen/ops/replication_pad2d_native.h' 2025-07-17T06:38:00.7249870Z adding 'torch/include/ATen/ops/replication_pad2d_ops.h' 2025-07-17T06:38:00.7250910Z adding 'torch/include/ATen/ops/replication_pad3d.h' 2025-07-17T06:38:00.7252040Z adding 'torch/include/ATen/ops/replication_pad3d_backward.h' 2025-07-17T06:38:00.7253170Z adding 'torch/include/ATen/ops/replication_pad3d_backward_cpu_dispatch.h' 2025-07-17T06:38:00.7254060Z adding 'torch/include/ATen/ops/replication_pad3d_backward_cuda_dispatch.h' 2025-07-17T06:38:00.7254930Z adding 'torch/include/ATen/ops/replication_pad3d_backward_mps_dispatch.h' 2025-07-17T06:38:00.7255810Z adding 'torch/include/ATen/ops/replication_pad3d_backward_native.h' 2025-07-17T06:38:00.7256980Z adding 'torch/include/ATen/ops/replication_pad3d_backward_ops.h' 2025-07-17T06:38:00.7257970Z adding 'torch/include/ATen/ops/replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7258730Z adding 'torch/include/ATen/ops/replication_pad3d_cpu_dispatch.h' 2025-07-17T06:38:00.7259570Z adding 'torch/include/ATen/ops/replication_pad3d_cuda_dispatch.h' 2025-07-17T06:38:00.7260610Z adding 'torch/include/ATen/ops/replication_pad3d_meta.h' 2025-07-17T06:38:00.7261470Z adding 'torch/include/ATen/ops/replication_pad3d_meta_dispatch.h' 2025-07-17T06:38:00.7262300Z adding 'torch/include/ATen/ops/replication_pad3d_mps_dispatch.h' 2025-07-17T06:38:00.7263140Z adding 'torch/include/ATen/ops/replication_pad3d_native.h' 2025-07-17T06:38:00.7264270Z adding 'torch/include/ATen/ops/replication_pad3d_ops.h' 2025-07-17T06:38:00.7265120Z adding 'torch/include/ATen/ops/requires_grad.h' 2025-07-17T06:38:00.7266120Z adding 'torch/include/ATen/ops/requires_grad_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7266840Z adding 'torch/include/ATen/ops/requires_grad_native.h' 2025-07-17T06:38:00.7267920Z adding 'torch/include/ATen/ops/requires_grad_ops.h' 2025-07-17T06:38:00.7268840Z adding 'torch/include/ATen/ops/reshape.h' 2025-07-17T06:38:00.7269670Z adding 'torch/include/ATen/ops/reshape_as.h' 2025-07-17T06:38:00.7270670Z adding 'torch/include/ATen/ops/reshape_as_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7271730Z adding 'torch/include/ATen/ops/reshape_as_compositeimplicitautogradnestedtensor_dispatch.h' 2025-07-17T06:38:00.7272450Z adding 'torch/include/ATen/ops/reshape_as_native.h' 2025-07-17T06:38:00.7273350Z adding 'torch/include/ATen/ops/reshape_as_ops.h' 2025-07-17T06:38:00.7274300Z adding 'torch/include/ATen/ops/reshape_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7275370Z adding 'torch/include/ATen/ops/reshape_compositeimplicitautogradnestedtensor_dispatch.h' 2025-07-17T06:38:00.7276090Z adding 'torch/include/ATen/ops/reshape_native.h' 2025-07-17T06:38:00.7276990Z adding 'torch/include/ATen/ops/reshape_ops.h' 2025-07-17T06:38:00.7278090Z adding 'torch/include/ATen/ops/resize.h' 2025-07-17T06:38:00.7279260Z adding 'torch/include/ATen/ops/resize_as.h' 2025-07-17T06:38:00.7280280Z adding 'torch/include/ATen/ops/resize_as_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7281060Z adding 'torch/include/ATen/ops/resize_as_native.h' 2025-07-17T06:38:00.7282120Z adding 'torch/include/ATen/ops/resize_as_ops.h' 2025-07-17T06:38:00.7283240Z adding 'torch/include/ATen/ops/resize_as_sparse.h' 2025-07-17T06:38:00.7284270Z adding 'torch/include/ATen/ops/resize_as_sparse_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7285110Z adding 'torch/include/ATen/ops/resize_as_sparse_meta_dispatch.h' 2025-07-17T06:38:00.7285960Z adding 'torch/include/ATen/ops/resize_as_sparse_native.h' 2025-07-17T06:38:00.7287170Z adding 'torch/include/ATen/ops/resize_as_sparse_ops.h' 2025-07-17T06:38:00.7288200Z adding 'torch/include/ATen/ops/resize_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7289020Z adding 'torch/include/ATen/ops/resize_cpu_dispatch.h' 2025-07-17T06:38:00.7289880Z adding 'torch/include/ATen/ops/resize_cuda_dispatch.h' 2025-07-17T06:38:00.7290960Z adding 'torch/include/ATen/ops/resize_meta_dispatch.h' 2025-07-17T06:38:00.7291830Z adding 'torch/include/ATen/ops/resize_mps_dispatch.h' 2025-07-17T06:38:00.7292740Z adding 'torch/include/ATen/ops/resize_native.h' 2025-07-17T06:38:00.7298150Z adding 'torch/include/ATen/ops/resize_ops.h' 2025-07-17T06:38:00.7298370Z adding 'torch/include/ATen/ops/resolve_conj.h' 2025-07-17T06:38:00.7298690Z adding 'torch/include/ATen/ops/resolve_conj_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7299020Z adding 'torch/include/ATen/ops/resolve_conj_native.h' 2025-07-17T06:38:00.7299270Z adding 'torch/include/ATen/ops/resolve_conj_ops.h' 2025-07-17T06:38:00.7299500Z adding 'torch/include/ATen/ops/resolve_neg.h' 2025-07-17T06:38:00.7299810Z adding 'torch/include/ATen/ops/resolve_neg_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7300150Z adding 'torch/include/ATen/ops/resolve_neg_native.h' 2025-07-17T06:38:00.7301080Z adding 'torch/include/ATen/ops/resolve_neg_ops.h' 2025-07-17T06:38:00.7302220Z adding 'torch/include/ATen/ops/result_type.h' 2025-07-17T06:38:00.7303250Z adding 'torch/include/ATen/ops/result_type_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7304010Z adding 'torch/include/ATen/ops/result_type_native.h' 2025-07-17T06:38:00.7305060Z adding 'torch/include/ATen/ops/result_type_ops.h' 2025-07-17T06:38:00.7306070Z adding 'torch/include/ATen/ops/retain_grad.h' 2025-07-17T06:38:00.7307070Z adding 'torch/include/ATen/ops/retain_grad_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7307880Z adding 'torch/include/ATen/ops/retain_grad_native.h' 2025-07-17T06:38:00.7308770Z adding 'torch/include/ATen/ops/retain_grad_ops.h' 2025-07-17T06:38:00.7309750Z adding 'torch/include/ATen/ops/retains_grad.h' 2025-07-17T06:38:00.7310750Z adding 'torch/include/ATen/ops/retains_grad_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7311460Z adding 'torch/include/ATen/ops/retains_grad_native.h' 2025-07-17T06:38:00.7312340Z adding 'torch/include/ATen/ops/retains_grad_ops.h' 2025-07-17T06:38:00.7313490Z adding 'torch/include/ATen/ops/rms_norm.h' 2025-07-17T06:38:00.7314500Z adding 'torch/include/ATen/ops/rms_norm_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7315270Z adding 'torch/include/ATen/ops/rms_norm_native.h' 2025-07-17T06:38:00.7316190Z adding 'torch/include/ATen/ops/rms_norm_ops.h' 2025-07-17T06:38:00.7317310Z adding 'torch/include/ATen/ops/rnn_relu.h' 2025-07-17T06:38:00.7318230Z adding 'torch/include/ATen/ops/rnn_relu_cell.h' 2025-07-17T06:38:00.7319250Z adding 'torch/include/ATen/ops/rnn_relu_cell_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7320020Z adding 'torch/include/ATen/ops/rnn_relu_cell_native.h' 2025-07-17T06:38:00.7321150Z adding 'torch/include/ATen/ops/rnn_relu_cell_ops.h' 2025-07-17T06:38:00.7322170Z adding 'torch/include/ATen/ops/rnn_relu_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7323010Z adding 'torch/include/ATen/ops/rnn_relu_native.h' 2025-07-17T06:38:00.7324060Z adding 'torch/include/ATen/ops/rnn_relu_ops.h' 2025-07-17T06:38:00.7325210Z adding 'torch/include/ATen/ops/rnn_tanh.h' 2025-07-17T06:38:00.7326090Z adding 'torch/include/ATen/ops/rnn_tanh_cell.h' 2025-07-17T06:38:00.7327070Z adding 'torch/include/ATen/ops/rnn_tanh_cell_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7327840Z adding 'torch/include/ATen/ops/rnn_tanh_cell_native.h' 2025-07-17T06:38:00.7328950Z adding 'torch/include/ATen/ops/rnn_tanh_cell_ops.h' 2025-07-17T06:38:00.7329970Z adding 'torch/include/ATen/ops/rnn_tanh_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7330770Z adding 'torch/include/ATen/ops/rnn_tanh_native.h' 2025-07-17T06:38:00.7331740Z adding 'torch/include/ATen/ops/rnn_tanh_ops.h' 2025-07-17T06:38:00.7332950Z adding 'torch/include/ATen/ops/roll.h' 2025-07-17T06:38:00.7334010Z adding 'torch/include/ATen/ops/roll_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7334810Z adding 'torch/include/ATen/ops/roll_cpu_dispatch.h' 2025-07-17T06:38:00.7335650Z adding 'torch/include/ATen/ops/roll_cuda_dispatch.h' 2025-07-17T06:38:00.7336650Z adding 'torch/include/ATen/ops/roll_mps_dispatch.h' 2025-07-17T06:38:00.7337530Z adding 'torch/include/ATen/ops/roll_native.h' 2025-07-17T06:38:00.7338500Z adding 'torch/include/ATen/ops/roll_ops.h' 2025-07-17T06:38:00.7339400Z adding 'torch/include/ATen/ops/rot90.h' 2025-07-17T06:38:00.7340560Z adding 'torch/include/ATen/ops/rot90_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7341350Z adding 'torch/include/ATen/ops/rot90_native.h' 2025-07-17T06:38:00.7342280Z adding 'torch/include/ATen/ops/rot90_ops.h' 2025-07-17T06:38:00.7343230Z adding 'torch/include/ATen/ops/round.h' 2025-07-17T06:38:00.7344440Z adding 'torch/include/ATen/ops/round_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7345240Z adding 'torch/include/ATen/ops/round_cpu_dispatch.h' 2025-07-17T06:38:00.7346080Z adding 'torch/include/ATen/ops/round_cuda_dispatch.h' 2025-07-17T06:38:00.7346910Z adding 'torch/include/ATen/ops/round_meta.h' 2025-07-17T06:38:00.7347980Z adding 'torch/include/ATen/ops/round_meta_dispatch.h' 2025-07-17T06:38:00.7348830Z adding 'torch/include/ATen/ops/round_mps_dispatch.h' 2025-07-17T06:38:00.7349700Z adding 'torch/include/ATen/ops/round_native.h' 2025-07-17T06:38:00.7350780Z adding 'torch/include/ATen/ops/round_ops.h' 2025-07-17T06:38:00.7351830Z adding 'torch/include/ATen/ops/row_indices.h' 2025-07-17T06:38:00.7352820Z adding 'torch/include/ATen/ops/row_indices_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7353630Z adding 'torch/include/ATen/ops/row_indices_copy.h' 2025-07-17T06:38:00.7354620Z adding 'torch/include/ATen/ops/row_indices_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7355740Z adding 'torch/include/ATen/ops/row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7356450Z adding 'torch/include/ATen/ops/row_indices_copy_native.h' 2025-07-17T06:38:00.7357390Z adding 'torch/include/ATen/ops/row_indices_copy_ops.h' 2025-07-17T06:38:00.7358250Z adding 'torch/include/ATen/ops/row_indices_native.h' 2025-07-17T06:38:00.7359290Z adding 'torch/include/ATen/ops/row_indices_ops.h' 2025-07-17T06:38:00.7360190Z adding 'torch/include/ATen/ops/row_stack.h' 2025-07-17T06:38:00.7361150Z adding 'torch/include/ATen/ops/row_stack_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7361920Z adding 'torch/include/ATen/ops/row_stack_native.h' 2025-07-17T06:38:00.7363070Z adding 'torch/include/ATen/ops/row_stack_ops.h' 2025-07-17T06:38:00.7364010Z adding 'torch/include/ATen/ops/rrelu.h' 2025-07-17T06:38:00.7365000Z adding 'torch/include/ATen/ops/rrelu_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7365800Z adding 'torch/include/ATen/ops/rrelu_native.h' 2025-07-17T06:38:00.7366960Z adding 'torch/include/ATen/ops/rrelu_ops.h' 2025-07-17T06:38:00.7368050Z adding 'torch/include/ATen/ops/rrelu_with_noise.h' 2025-07-17T06:38:00.7369060Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward.h' 2025-07-17T06:38:00.7370100Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7371080Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_native.h' 2025-07-17T06:38:00.7372070Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_ops.h' 2025-07-17T06:38:00.7373060Z adding 'torch/include/ATen/ops/rrelu_with_noise_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7373950Z adding 'torch/include/ATen/ops/rrelu_with_noise_cpu_dispatch.h' 2025-07-17T06:38:00.7375010Z adding 'torch/include/ATen/ops/rrelu_with_noise_cuda_dispatch.h' 2025-07-17T06:38:00.7375940Z adding 'torch/include/ATen/ops/rrelu_with_noise_meta_dispatch.h' 2025-07-17T06:38:00.7376840Z adding 'torch/include/ATen/ops/rrelu_with_noise_native.h' 2025-07-17T06:38:00.7377950Z adding 'torch/include/ATen/ops/rrelu_with_noise_ops.h' 2025-07-17T06:38:00.7379080Z adding 'torch/include/ATen/ops/rshift.h' 2025-07-17T06:38:00.7380060Z adding 'torch/include/ATen/ops/rshift_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7380860Z adding 'torch/include/ATen/ops/rshift_cpu_dispatch.h' 2025-07-17T06:38:00.7381730Z adding 'torch/include/ATen/ops/rshift_cuda_dispatch.h' 2025-07-17T06:38:00.7382810Z adding 'torch/include/ATen/ops/rshift_meta_dispatch.h' 2025-07-17T06:38:00.7383670Z adding 'torch/include/ATen/ops/rshift_mps_dispatch.h' 2025-07-17T06:38:00.7384520Z adding 'torch/include/ATen/ops/rshift_native.h' 2025-07-17T06:38:00.7385650Z adding 'torch/include/ATen/ops/rshift_ops.h' 2025-07-17T06:38:00.7386760Z adding 'torch/include/ATen/ops/rsqrt.h' 2025-07-17T06:38:00.7387770Z adding 'torch/include/ATen/ops/rsqrt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7388530Z adding 'torch/include/ATen/ops/rsqrt_cpu_dispatch.h' 2025-07-17T06:38:00.7389360Z adding 'torch/include/ATen/ops/rsqrt_cuda_dispatch.h' 2025-07-17T06:38:00.7390430Z adding 'torch/include/ATen/ops/rsqrt_meta.h' 2025-07-17T06:38:00.7391240Z adding 'torch/include/ATen/ops/rsqrt_meta_dispatch.h' 2025-07-17T06:38:00.7392050Z adding 'torch/include/ATen/ops/rsqrt_mps_dispatch.h' 2025-07-17T06:38:00.7392890Z adding 'torch/include/ATen/ops/rsqrt_native.h' 2025-07-17T06:38:00.7394050Z adding 'torch/include/ATen/ops/rsqrt_ops.h' 2025-07-17T06:38:00.7395020Z adding 'torch/include/ATen/ops/rsub.h' 2025-07-17T06:38:00.7396020Z adding 'torch/include/ATen/ops/rsub_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7396820Z adding 'torch/include/ATen/ops/rsub_cpu_dispatch.h' 2025-07-17T06:38:00.7397800Z adding 'torch/include/ATen/ops/rsub_cuda_dispatch.h' 2025-07-17T06:38:00.7398620Z adding 'torch/include/ATen/ops/rsub_mps_dispatch.h' 2025-07-17T06:38:00.7399470Z adding 'torch/include/ATen/ops/rsub_native.h' 2025-07-17T06:38:00.7400510Z adding 'torch/include/ATen/ops/rsub_ops.h' 2025-07-17T06:38:00.7402510Z adding 'torch/include/ATen/ops/scalar_tensor.h' 2025-07-17T06:38:00.7403140Z adding 'torch/include/ATen/ops/scalar_tensor_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7403850Z adding 'torch/include/ATen/ops/scalar_tensor_native.h' 2025-07-17T06:38:00.7404830Z adding 'torch/include/ATen/ops/scalar_tensor_ops.h' 2025-07-17T06:38:00.7405990Z adding 'torch/include/ATen/ops/scaled_dot_product_attention.h' 2025-07-17T06:38:00.7407010Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7407780Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_native.h' 2025-07-17T06:38:00.7408730Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_ops.h' 2025-07-17T06:38:00.7410030Z adding 'torch/include/ATen/ops/scatter.h' 2025-07-17T06:38:00.7410970Z adding 'torch/include/ATen/ops/scatter_add.h' 2025-07-17T06:38:00.7412040Z adding 'torch/include/ATen/ops/scatter_add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7412860Z adding 'torch/include/ATen/ops/scatter_add_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7413850Z adding 'torch/include/ATen/ops/scatter_add_cpu_dispatch.h' 2025-07-17T06:38:00.7414710Z adding 'torch/include/ATen/ops/scatter_add_cuda_dispatch.h' 2025-07-17T06:38:00.7415560Z adding 'torch/include/ATen/ops/scatter_add_meta.h' 2025-07-17T06:38:00.7416430Z adding 'torch/include/ATen/ops/scatter_add_meta_dispatch.h' 2025-07-17T06:38:00.7417430Z adding 'torch/include/ATen/ops/scatter_add_mps_dispatch.h' 2025-07-17T06:38:00.7418300Z adding 'torch/include/ATen/ops/scatter_add_native.h' 2025-07-17T06:38:00.7419360Z adding 'torch/include/ATen/ops/scatter_add_ops.h' 2025-07-17T06:38:00.7420440Z adding 'torch/include/ATen/ops/scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7421500Z adding 'torch/include/ATen/ops/scatter_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7422370Z adding 'torch/include/ATen/ops/scatter_cpu_dispatch.h' 2025-07-17T06:38:00.7423310Z adding 'torch/include/ATen/ops/scatter_cuda_dispatch.h' 2025-07-17T06:38:00.7424200Z adding 'torch/include/ATen/ops/scatter_meta.h' 2025-07-17T06:38:00.7425320Z adding 'torch/include/ATen/ops/scatter_meta_dispatch.h' 2025-07-17T06:38:00.7426230Z adding 'torch/include/ATen/ops/scatter_mps_dispatch.h' 2025-07-17T06:38:00.7427190Z adding 'torch/include/ATen/ops/scatter_native.h' 2025-07-17T06:38:00.7428730Z adding 'torch/include/ATen/ops/scatter_ops.h' 2025-07-17T06:38:00.7429880Z adding 'torch/include/ATen/ops/scatter_reduce.h' 2025-07-17T06:38:00.7430930Z adding 'torch/include/ATen/ops/scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7431740Z adding 'torch/include/ATen/ops/scatter_reduce_cpu_dispatch.h' 2025-07-17T06:38:00.7432580Z adding 'torch/include/ATen/ops/scatter_reduce_cuda_dispatch.h' 2025-07-17T06:38:00.7433610Z adding 'torch/include/ATen/ops/scatter_reduce_meta.h' 2025-07-17T06:38:00.7434490Z adding 'torch/include/ATen/ops/scatter_reduce_meta_dispatch.h' 2025-07-17T06:38:00.7435310Z adding 'torch/include/ATen/ops/scatter_reduce_mps_dispatch.h' 2025-07-17T06:38:00.7436160Z adding 'torch/include/ATen/ops/scatter_reduce_native.h' 2025-07-17T06:38:00.7437380Z adding 'torch/include/ATen/ops/scatter_reduce_ops.h' 2025-07-17T06:38:00.7438460Z adding 'torch/include/ATen/ops/searchsorted.h' 2025-07-17T06:38:00.7439450Z adding 'torch/include/ATen/ops/searchsorted_cpu_dispatch.h' 2025-07-17T06:38:00.7440370Z adding 'torch/include/ATen/ops/searchsorted_cuda_dispatch.h' 2025-07-17T06:38:00.7441490Z adding 'torch/include/ATen/ops/searchsorted_mps_dispatch.h' 2025-07-17T06:38:00.7442450Z adding 'torch/include/ATen/ops/searchsorted_native.h' 2025-07-17T06:38:00.7443570Z adding 'torch/include/ATen/ops/searchsorted_ops.h' 2025-07-17T06:38:00.7444580Z adding 'torch/include/ATen/ops/segment_reduce.h' 2025-07-17T06:38:00.7445810Z adding 'torch/include/ATen/ops/segment_reduce_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7446640Z adding 'torch/include/ATen/ops/segment_reduce_cpu_dispatch.h' 2025-07-17T06:38:00.7447510Z adding 'torch/include/ATen/ops/segment_reduce_cuda_dispatch.h' 2025-07-17T06:38:00.7448380Z adding 'torch/include/ATen/ops/segment_reduce_native.h' 2025-07-17T06:38:00.7449570Z adding 'torch/include/ATen/ops/segment_reduce_ops.h' 2025-07-17T06:38:00.7450500Z adding 'torch/include/ATen/ops/select.h' 2025-07-17T06:38:00.7451590Z adding 'torch/include/ATen/ops/select_backward.h' 2025-07-17T06:38:00.7452650Z adding 'torch/include/ATen/ops/select_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7453760Z adding 'torch/include/ATen/ops/select_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7454530Z adding 'torch/include/ATen/ops/select_backward_native.h' 2025-07-17T06:38:00.7455490Z adding 'torch/include/ATen/ops/select_backward_ops.h' 2025-07-17T06:38:00.7456440Z adding 'torch/include/ATen/ops/select_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7457480Z adding 'torch/include/ATen/ops/select_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7458460Z adding 'torch/include/ATen/ops/select_copy.h' 2025-07-17T06:38:00.7459460Z adding 'torch/include/ATen/ops/select_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7460370Z adding 'torch/include/ATen/ops/select_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7461300Z adding 'torch/include/ATen/ops/select_copy_native.h' 2025-07-17T06:38:00.7462270Z adding 'torch/include/ATen/ops/select_copy_ops.h' 2025-07-17T06:38:00.7463120Z adding 'torch/include/ATen/ops/select_native.h' 2025-07-17T06:38:00.7464080Z adding 'torch/include/ATen/ops/select_ops.h' 2025-07-17T06:38:00.7465310Z adding 'torch/include/ATen/ops/select_scatter.h' 2025-07-17T06:38:00.7466330Z adding 'torch/include/ATen/ops/select_scatter_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7467280Z adding 'torch/include/ATen/ops/select_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7468000Z adding 'torch/include/ATen/ops/select_scatter_native.h' 2025-07-17T06:38:00.7469140Z adding 'torch/include/ATen/ops/select_scatter_ops.h' 2025-07-17T06:38:00.7470000Z adding 'torch/include/ATen/ops/selu.h' 2025-07-17T06:38:00.7470960Z adding 'torch/include/ATen/ops/selu_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7471700Z adding 'torch/include/ATen/ops/selu_native.h' 2025-07-17T06:38:00.7472830Z adding 'torch/include/ATen/ops/selu_ops.h' 2025-07-17T06:38:00.7474220Z adding 'torch/include/ATen/ops/set.h' 2025-07-17T06:38:00.7475420Z adding 'torch/include/ATen/ops/set_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7476300Z adding 'torch/include/ATen/ops/set_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7477340Z adding 'torch/include/ATen/ops/set_cpu_dispatch.h' 2025-07-17T06:38:00.7478240Z adding 'torch/include/ATen/ops/set_cuda_dispatch.h' 2025-07-17T06:38:00.7479030Z adding 'torch/include/ATen/ops/set_data.h' 2025-07-17T06:38:00.7480010Z adding 'torch/include/ATen/ops/set_data_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7480940Z adding 'torch/include/ATen/ops/set_data_native.h' 2025-07-17T06:38:00.7481850Z adding 'torch/include/ATen/ops/set_data_ops.h' 2025-07-17T06:38:00.7482720Z adding 'torch/include/ATen/ops/set_meta_dispatch.h' 2025-07-17T06:38:00.7483540Z adding 'torch/include/ATen/ops/set_mps_dispatch.h' 2025-07-17T06:38:00.7484700Z adding 'torch/include/ATen/ops/set_native.h' 2025-07-17T06:38:00.7486310Z adding 'torch/include/ATen/ops/set_ops.h' 2025-07-17T06:38:00.7487080Z adding 'torch/include/ATen/ops/sgn.h' 2025-07-17T06:38:00.7488100Z adding 'torch/include/ATen/ops/sgn_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7489050Z adding 'torch/include/ATen/ops/sgn_cpu_dispatch.h' 2025-07-17T06:38:00.7489880Z adding 'torch/include/ATen/ops/sgn_cuda_dispatch.h' 2025-07-17T06:38:00.7490730Z adding 'torch/include/ATen/ops/sgn_meta.h' 2025-07-17T06:38:00.7491540Z adding 'torch/include/ATen/ops/sgn_meta_dispatch.h' 2025-07-17T06:38:00.7492540Z adding 'torch/include/ATen/ops/sgn_mps_dispatch.h' 2025-07-17T06:38:00.7493470Z adding 'torch/include/ATen/ops/sgn_native.h' 2025-07-17T06:38:00.7494390Z adding 'torch/include/ATen/ops/sgn_ops.h' 2025-07-17T06:38:00.7495290Z adding 'torch/include/ATen/ops/sigmoid.h' 2025-07-17T06:38:00.7496400Z adding 'torch/include/ATen/ops/sigmoid_backward.h' 2025-07-17T06:38:00.7497420Z adding 'torch/include/ATen/ops/sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7498240Z adding 'torch/include/ATen/ops/sigmoid_backward_cpu_dispatch.h' 2025-07-17T06:38:00.7499060Z adding 'torch/include/ATen/ops/sigmoid_backward_cuda_dispatch.h' 2025-07-17T06:38:00.7500090Z adding 'torch/include/ATen/ops/sigmoid_backward_meta.h' 2025-07-17T06:38:00.7500960Z adding 'torch/include/ATen/ops/sigmoid_backward_meta_dispatch.h' 2025-07-17T06:38:00.7501800Z adding 'torch/include/ATen/ops/sigmoid_backward_mps_dispatch.h' 2025-07-17T06:38:00.7502640Z adding 'torch/include/ATen/ops/sigmoid_backward_native.h' 2025-07-17T06:38:00.7503770Z adding 'torch/include/ATen/ops/sigmoid_backward_ops.h' 2025-07-17T06:38:00.7504770Z adding 'torch/include/ATen/ops/sigmoid_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7505500Z adding 'torch/include/ATen/ops/sigmoid_cpu_dispatch.h' 2025-07-17T06:38:00.7506320Z adding 'torch/include/ATen/ops/sigmoid_cuda_dispatch.h' 2025-07-17T06:38:00.7507340Z adding 'torch/include/ATen/ops/sigmoid_meta.h' 2025-07-17T06:38:00.7508200Z adding 'torch/include/ATen/ops/sigmoid_meta_dispatch.h' 2025-07-17T06:38:00.7509030Z adding 'torch/include/ATen/ops/sigmoid_mps_dispatch.h' 2025-07-17T06:38:00.7509910Z adding 'torch/include/ATen/ops/sigmoid_native.h' 2025-07-17T06:38:00.7511090Z adding 'torch/include/ATen/ops/sigmoid_ops.h' 2025-07-17T06:38:00.7511990Z adding 'torch/include/ATen/ops/sign.h' 2025-07-17T06:38:00.7513010Z adding 'torch/include/ATen/ops/sign_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7513730Z adding 'torch/include/ATen/ops/sign_cpu_dispatch.h' 2025-07-17T06:38:00.7514740Z adding 'torch/include/ATen/ops/sign_cuda_dispatch.h' 2025-07-17T06:38:00.7515570Z adding 'torch/include/ATen/ops/sign_meta.h' 2025-07-17T06:38:00.7516400Z adding 'torch/include/ATen/ops/sign_meta_dispatch.h' 2025-07-17T06:38:00.7517190Z adding 'torch/include/ATen/ops/sign_mps_dispatch.h' 2025-07-17T06:38:00.7518220Z adding 'torch/include/ATen/ops/sign_native.h' 2025-07-17T06:38:00.7519210Z adding 'torch/include/ATen/ops/sign_ops.h' 2025-07-17T06:38:00.7520060Z adding 'torch/include/ATen/ops/signbit.h' 2025-07-17T06:38:00.7521050Z adding 'torch/include/ATen/ops/signbit_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7521980Z adding 'torch/include/ATen/ops/signbit_cpu_dispatch.h' 2025-07-17T06:38:00.7522800Z adding 'torch/include/ATen/ops/signbit_cuda_dispatch.h' 2025-07-17T06:38:00.7523620Z adding 'torch/include/ATen/ops/signbit_meta.h' 2025-07-17T06:38:00.7524440Z adding 'torch/include/ATen/ops/signbit_meta_dispatch.h' 2025-07-17T06:38:00.7525420Z adding 'torch/include/ATen/ops/signbit_mps_dispatch.h' 2025-07-17T06:38:00.7526290Z adding 'torch/include/ATen/ops/signbit_native.h' 2025-07-17T06:38:00.7527240Z adding 'torch/include/ATen/ops/signbit_ops.h' 2025-07-17T06:38:00.7528080Z adding 'torch/include/ATen/ops/silu.h' 2025-07-17T06:38:00.7529190Z adding 'torch/include/ATen/ops/silu_backward.h' 2025-07-17T06:38:00.7530210Z adding 'torch/include/ATen/ops/silu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7531030Z adding 'torch/include/ATen/ops/silu_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7531830Z adding 'torch/include/ATen/ops/silu_backward_cpu_dispatch.h' 2025-07-17T06:38:00.7532840Z adding 'torch/include/ATen/ops/silu_backward_cuda_dispatch.h' 2025-07-17T06:38:00.7533680Z adding 'torch/include/ATen/ops/silu_backward_meta.h' 2025-07-17T06:38:00.7534530Z adding 'torch/include/ATen/ops/silu_backward_meta_dispatch.h' 2025-07-17T06:38:00.7535350Z adding 'torch/include/ATen/ops/silu_backward_mps_dispatch.h' 2025-07-17T06:38:00.7536430Z adding 'torch/include/ATen/ops/silu_backward_native.h' 2025-07-17T06:38:00.7537350Z adding 'torch/include/ATen/ops/silu_backward_ops.h' 2025-07-17T06:38:00.7538300Z adding 'torch/include/ATen/ops/silu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7539010Z adding 'torch/include/ATen/ops/silu_cpu_dispatch.h' 2025-07-17T06:38:00.7539990Z adding 'torch/include/ATen/ops/silu_cuda_dispatch.h' 2025-07-17T06:38:00.7540830Z adding 'torch/include/ATen/ops/silu_meta.h' 2025-07-17T06:38:00.7541630Z adding 'torch/include/ATen/ops/silu_meta_dispatch.h' 2025-07-17T06:38:00.7542440Z adding 'torch/include/ATen/ops/silu_mps_dispatch.h' 2025-07-17T06:38:00.7543460Z adding 'torch/include/ATen/ops/silu_native.h' 2025-07-17T06:38:00.7544430Z adding 'torch/include/ATen/ops/silu_ops.h' 2025-07-17T06:38:00.7545320Z adding 'torch/include/ATen/ops/sin.h' 2025-07-17T06:38:00.7546310Z adding 'torch/include/ATen/ops/sin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7547220Z adding 'torch/include/ATen/ops/sin_cpu_dispatch.h' 2025-07-17T06:38:00.7548040Z adding 'torch/include/ATen/ops/sin_cuda_dispatch.h' 2025-07-17T06:38:00.7548860Z adding 'torch/include/ATen/ops/sin_meta.h' 2025-07-17T06:38:00.7549670Z adding 'torch/include/ATen/ops/sin_meta_dispatch.h' 2025-07-17T06:38:00.7550660Z adding 'torch/include/ATen/ops/sin_mps_dispatch.h' 2025-07-17T06:38:00.7551540Z adding 'torch/include/ATen/ops/sin_native.h' 2025-07-17T06:38:00.7552480Z adding 'torch/include/ATen/ops/sin_ops.h' 2025-07-17T06:38:00.7553390Z adding 'torch/include/ATen/ops/sinc.h' 2025-07-17T06:38:00.7554530Z adding 'torch/include/ATen/ops/sinc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7555270Z adding 'torch/include/ATen/ops/sinc_cpu_dispatch.h' 2025-07-17T06:38:00.7556080Z adding 'torch/include/ATen/ops/sinc_cuda_dispatch.h' 2025-07-17T06:38:00.7556950Z adding 'torch/include/ATen/ops/sinc_meta.h' 2025-07-17T06:38:00.7557910Z adding 'torch/include/ATen/ops/sinc_meta_dispatch.h' 2025-07-17T06:38:00.7558720Z adding 'torch/include/ATen/ops/sinc_mps_dispatch.h' 2025-07-17T06:38:00.7559600Z adding 'torch/include/ATen/ops/sinc_native.h' 2025-07-17T06:38:00.7560590Z adding 'torch/include/ATen/ops/sinc_ops.h' 2025-07-17T06:38:00.7561640Z adding 'torch/include/ATen/ops/sinh.h' 2025-07-17T06:38:00.7562640Z adding 'torch/include/ATen/ops/sinh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7563340Z adding 'torch/include/ATen/ops/sinh_cpu_dispatch.h' 2025-07-17T06:38:00.7564140Z adding 'torch/include/ATen/ops/sinh_cuda_dispatch.h' 2025-07-17T06:38:00.7565150Z adding 'torch/include/ATen/ops/sinh_meta.h' 2025-07-17T06:38:00.7565990Z adding 'torch/include/ATen/ops/sinh_meta_dispatch.h' 2025-07-17T06:38:00.7566780Z adding 'torch/include/ATen/ops/sinh_mps_dispatch.h' 2025-07-17T06:38:00.7567630Z adding 'torch/include/ATen/ops/sinh_native.h' 2025-07-17T06:38:00.7568770Z adding 'torch/include/ATen/ops/sinh_ops.h' 2025-07-17T06:38:00.7569640Z adding 'torch/include/ATen/ops/size.h' 2025-07-17T06:38:00.7570610Z adding 'torch/include/ATen/ops/size_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7571370Z adding 'torch/include/ATen/ops/size_native.h' 2025-07-17T06:38:00.7572480Z adding 'torch/include/ATen/ops/size_ops.h' 2025-07-17T06:38:00.7573470Z adding 'torch/include/ATen/ops/slice.h' 2025-07-17T06:38:00.7574630Z adding 'torch/include/ATen/ops/slice_backward.h' 2025-07-17T06:38:00.7575710Z adding 'torch/include/ATen/ops/slice_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7576690Z adding 'torch/include/ATen/ops/slice_backward_native.h' 2025-07-17T06:38:00.7577740Z adding 'torch/include/ATen/ops/slice_backward_ops.h' 2025-07-17T06:38:00.7578690Z adding 'torch/include/ATen/ops/slice_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7579790Z adding 'torch/include/ATen/ops/slice_copy.h' 2025-07-17T06:38:00.7581010Z adding 'torch/include/ATen/ops/slice_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7581950Z adding 'torch/include/ATen/ops/slice_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7582730Z adding 'torch/include/ATen/ops/slice_copy_native.h' 2025-07-17T06:38:00.7583690Z adding 'torch/include/ATen/ops/slice_copy_ops.h' 2025-07-17T06:38:00.7584860Z adding 'torch/include/ATen/ops/slice_inverse.h' 2025-07-17T06:38:00.7585870Z adding 'torch/include/ATen/ops/slice_inverse_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7586640Z adding 'torch/include/ATen/ops/slice_inverse_native.h' 2025-07-17T06:38:00.7587570Z adding 'torch/include/ATen/ops/slice_inverse_ops.h' 2025-07-17T06:38:00.7588600Z adding 'torch/include/ATen/ops/slice_native.h' 2025-07-17T06:38:00.7589540Z adding 'torch/include/ATen/ops/slice_ops.h' 2025-07-17T06:38:00.7590710Z adding 'torch/include/ATen/ops/slice_scatter.h' 2025-07-17T06:38:00.7591770Z adding 'torch/include/ATen/ops/slice_scatter_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7592880Z adding 'torch/include/ATen/ops/slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7593670Z adding 'torch/include/ATen/ops/slice_scatter_native.h' 2025-07-17T06:38:00.7594640Z adding 'torch/include/ATen/ops/slice_scatter_ops.h' 2025-07-17T06:38:00.7595540Z adding 'torch/include/ATen/ops/slogdet.h' 2025-07-17T06:38:00.7596730Z adding 'torch/include/ATen/ops/slogdet_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7597490Z adding 'torch/include/ATen/ops/slogdet_native.h' 2025-07-17T06:38:00.7598470Z adding 'torch/include/ATen/ops/slogdet_ops.h' 2025-07-17T06:38:00.7599650Z adding 'torch/include/ATen/ops/slow_conv3d.h' 2025-07-17T06:38:00.7600950Z adding 'torch/include/ATen/ops/slow_conv3d_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7602050Z adding 'torch/include/ATen/ops/slow_conv3d_forward.h' 2025-07-17T06:38:00.7603060Z adding 'torch/include/ATen/ops/slow_conv3d_forward_cpu_dispatch.h' 2025-07-17T06:38:00.7603940Z adding 'torch/include/ATen/ops/slow_conv3d_forward_native.h' 2025-07-17T06:38:00.7605110Z adding 'torch/include/ATen/ops/slow_conv3d_forward_ops.h' 2025-07-17T06:38:00.7605990Z adding 'torch/include/ATen/ops/slow_conv3d_native.h' 2025-07-17T06:38:00.7606980Z adding 'torch/include/ATen/ops/slow_conv3d_ops.h' 2025-07-17T06:38:00.7608250Z adding 'torch/include/ATen/ops/slow_conv_dilated2d.h' 2025-07-17T06:38:00.7609490Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7610380Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_cpu_dispatch.h' 2025-07-17T06:38:00.7611250Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_cuda_dispatch.h' 2025-07-17T06:38:00.7612100Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_native.h' 2025-07-17T06:38:00.7613300Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_ops.h' 2025-07-17T06:38:00.7614520Z adding 'torch/include/ATen/ops/slow_conv_dilated3d.h' 2025-07-17T06:38:00.7615590Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7616420Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_cpu_dispatch.h' 2025-07-17T06:38:00.7617450Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_cuda_dispatch.h' 2025-07-17T06:38:00.7618310Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_native.h' 2025-07-17T06:38:00.7619310Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_ops.h' 2025-07-17T06:38:00.7620620Z adding 'torch/include/ATen/ops/slow_conv_transpose2d.h' 2025-07-17T06:38:00.7621870Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7622770Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_cpu_dispatch.h' 2025-07-17T06:38:00.7624050Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_cuda_dispatch.h' 2025-07-17T06:38:00.7624930Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_meta.h' 2025-07-17T06:38:00.7626070Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_meta_dispatch.h' 2025-07-17T06:38:00.7626970Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_native.h' 2025-07-17T06:38:00.7628000Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_ops.h' 2025-07-17T06:38:00.7629300Z adding 'torch/include/ATen/ops/slow_conv_transpose3d.h' 2025-07-17T06:38:00.7630490Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_cpu_dispatch.h' 2025-07-17T06:38:00.7631410Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_cuda_dispatch.h' 2025-07-17T06:38:00.7632300Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_native.h' 2025-07-17T06:38:00.7633310Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_ops.h' 2025-07-17T06:38:00.7634310Z adding 'torch/include/ATen/ops/smm.h' 2025-07-17T06:38:00.7635270Z adding 'torch/include/ATen/ops/smm_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7636040Z adding 'torch/include/ATen/ops/smm_native.h' 2025-07-17T06:38:00.7636920Z adding 'torch/include/ATen/ops/smm_ops.h' 2025-07-17T06:38:00.7638030Z adding 'torch/include/ATen/ops/smooth_l1_loss.h' 2025-07-17T06:38:00.7638990Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward.h' 2025-07-17T06:38:00.7639980Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7640800Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_cpu_dispatch.h' 2025-07-17T06:38:00.7641820Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_cuda_dispatch.h' 2025-07-17T06:38:00.7642670Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_mps_dispatch.h' 2025-07-17T06:38:00.7643520Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_native.h' 2025-07-17T06:38:00.7644490Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_ops.h' 2025-07-17T06:38:00.7645650Z adding 'torch/include/ATen/ops/smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7646440Z adding 'torch/include/ATen/ops/smooth_l1_loss_cpu_dispatch.h' 2025-07-17T06:38:00.7647280Z adding 'torch/include/ATen/ops/smooth_l1_loss_cuda_dispatch.h' 2025-07-17T06:38:00.7648160Z adding 'torch/include/ATen/ops/smooth_l1_loss_meta.h' 2025-07-17T06:38:00.7649160Z adding 'torch/include/ATen/ops/smooth_l1_loss_meta_dispatch.h' 2025-07-17T06:38:00.7650020Z adding 'torch/include/ATen/ops/smooth_l1_loss_mps_dispatch.h' 2025-07-17T06:38:00.7650860Z adding 'torch/include/ATen/ops/smooth_l1_loss_native.h' 2025-07-17T06:38:00.7651820Z adding 'torch/include/ATen/ops/smooth_l1_loss_ops.h' 2025-07-17T06:38:00.7652930Z adding 'torch/include/ATen/ops/soft_margin_loss.h' 2025-07-17T06:38:00.7653890Z adding 'torch/include/ATen/ops/soft_margin_loss_backward.h' 2025-07-17T06:38:00.7654880Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7655660Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_native.h' 2025-07-17T06:38:00.7656800Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_ops.h' 2025-07-17T06:38:00.7657770Z adding 'torch/include/ATen/ops/soft_margin_loss_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7658540Z adding 'torch/include/ATen/ops/soft_margin_loss_native.h' 2025-07-17T06:38:00.7659470Z adding 'torch/include/ATen/ops/soft_margin_loss_ops.h' 2025-07-17T06:38:00.7660560Z adding 'torch/include/ATen/ops/softmax.h' 2025-07-17T06:38:00.7661570Z adding 'torch/include/ATen/ops/softmax_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7662440Z adding 'torch/include/ATen/ops/softmax_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7667880Z adding 'torch/include/ATen/ops/softmax_native.h' 2025-07-17T06:38:00.7668090Z adding 'torch/include/ATen/ops/softmax_ops.h' 2025-07-17T06:38:00.7668240Z adding 'torch/include/ATen/ops/softplus.h' 2025-07-17T06:38:00.7668330Z adding 'torch/include/ATen/ops/softplus_backward.h' 2025-07-17T06:38:00.7668560Z adding 'torch/include/ATen/ops/softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7668680Z adding 'torch/include/ATen/ops/softplus_backward_cpu_dispatch.h' 2025-07-17T06:38:00.7668970Z adding 'torch/include/ATen/ops/softplus_backward_cuda_dispatch.h' 2025-07-17T06:38:00.7669790Z adding 'torch/include/ATen/ops/softplus_backward_meta.h' 2025-07-17T06:38:00.7670680Z adding 'torch/include/ATen/ops/softplus_backward_meta_dispatch.h' 2025-07-17T06:38:00.7671660Z adding 'torch/include/ATen/ops/softplus_backward_mps_dispatch.h' 2025-07-17T06:38:00.7672510Z adding 'torch/include/ATen/ops/softplus_backward_native.h' 2025-07-17T06:38:00.7673470Z adding 'torch/include/ATen/ops/softplus_backward_ops.h' 2025-07-17T06:38:00.7674460Z adding 'torch/include/ATen/ops/softplus_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7675420Z adding 'torch/include/ATen/ops/softplus_cpu_dispatch.h' 2025-07-17T06:38:00.7676270Z adding 'torch/include/ATen/ops/softplus_cuda_dispatch.h' 2025-07-17T06:38:00.7677100Z adding 'torch/include/ATen/ops/softplus_meta.h' 2025-07-17T06:38:00.7677950Z adding 'torch/include/ATen/ops/softplus_meta_dispatch.h' 2025-07-17T06:38:00.7678960Z adding 'torch/include/ATen/ops/softplus_mps_dispatch.h' 2025-07-17T06:38:00.7679810Z adding 'torch/include/ATen/ops/softplus_native.h' 2025-07-17T06:38:00.7680760Z adding 'torch/include/ATen/ops/softplus_ops.h' 2025-07-17T06:38:00.7681620Z adding 'torch/include/ATen/ops/softshrink.h' 2025-07-17T06:38:00.7682730Z adding 'torch/include/ATen/ops/softshrink_backward.h' 2025-07-17T06:38:00.7683750Z adding 'torch/include/ATen/ops/softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7684520Z adding 'torch/include/ATen/ops/softshrink_backward_cpu_dispatch.h' 2025-07-17T06:38:00.7685370Z adding 'torch/include/ATen/ops/softshrink_backward_cuda_dispatch.h' 2025-07-17T06:38:00.7686350Z adding 'torch/include/ATen/ops/softshrink_backward_meta.h' 2025-07-17T06:38:00.7687220Z adding 'torch/include/ATen/ops/softshrink_backward_meta_dispatch.h' 2025-07-17T06:38:00.7688020Z adding 'torch/include/ATen/ops/softshrink_backward_mps_dispatch.h' 2025-07-17T06:38:00.7688890Z adding 'torch/include/ATen/ops/softshrink_backward_native.h' 2025-07-17T06:38:00.7690010Z adding 'torch/include/ATen/ops/softshrink_backward_ops.h' 2025-07-17T06:38:00.7691010Z adding 'torch/include/ATen/ops/softshrink_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7691780Z adding 'torch/include/ATen/ops/softshrink_cpu_dispatch.h' 2025-07-17T06:38:00.7692580Z adding 'torch/include/ATen/ops/softshrink_cuda_dispatch.h' 2025-07-17T06:38:00.7693610Z adding 'torch/include/ATen/ops/softshrink_meta.h' 2025-07-17T06:38:00.7694550Z adding 'torch/include/ATen/ops/softshrink_meta_dispatch.h' 2025-07-17T06:38:00.7695300Z adding 'torch/include/ATen/ops/softshrink_mps_dispatch.h' 2025-07-17T06:38:00.7696130Z adding 'torch/include/ATen/ops/softshrink_native.h' 2025-07-17T06:38:00.7697260Z adding 'torch/include/ATen/ops/softshrink_ops.h' 2025-07-17T06:38:00.7698390Z adding 'torch/include/ATen/ops/sort.h' 2025-07-17T06:38:00.7699390Z adding 'torch/include/ATen/ops/sort_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7700300Z adding 'torch/include/ATen/ops/sort_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7701400Z adding 'torch/include/ATen/ops/sort_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7702250Z adding 'torch/include/ATen/ops/sort_cpu_dispatch.h' 2025-07-17T06:38:00.7703110Z adding 'torch/include/ATen/ops/sort_cuda_dispatch.h' 2025-07-17T06:38:00.7703920Z adding 'torch/include/ATen/ops/sort_meta.h' 2025-07-17T06:38:00.7704990Z adding 'torch/include/ATen/ops/sort_meta_dispatch.h' 2025-07-17T06:38:00.7705830Z adding 'torch/include/ATen/ops/sort_mps_dispatch.h' 2025-07-17T06:38:00.7706750Z adding 'torch/include/ATen/ops/sort_native.h' 2025-07-17T06:38:00.7708020Z adding 'torch/include/ATen/ops/sort_ops.h' 2025-07-17T06:38:00.7709270Z adding 'torch/include/ATen/ops/sparse_bsc_tensor.h' 2025-07-17T06:38:00.7710340Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7711130Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_native.h' 2025-07-17T06:38:00.7712160Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_ops.h' 2025-07-17T06:38:00.7713340Z adding 'torch/include/ATen/ops/sparse_bsr_tensor.h' 2025-07-17T06:38:00.7714400Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7715160Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_native.h' 2025-07-17T06:38:00.7716190Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_ops.h' 2025-07-17T06:38:00.7717810Z adding 'torch/include/ATen/ops/sparse_compressed_tensor.h' 2025-07-17T06:38:00.7718800Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7719590Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_native.h' 2025-07-17T06:38:00.7720620Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_ops.h' 2025-07-17T06:38:00.7721910Z adding 'torch/include/ATen/ops/sparse_coo_tensor.h' 2025-07-17T06:38:00.7722920Z adding 'torch/include/ATen/ops/sparse_coo_tensor_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7723860Z adding 'torch/include/ATen/ops/sparse_coo_tensor_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7724660Z adding 'torch/include/ATen/ops/sparse_coo_tensor_native.h' 2025-07-17T06:38:00.7726000Z adding 'torch/include/ATen/ops/sparse_coo_tensor_ops.h' 2025-07-17T06:38:00.7727040Z adding 'torch/include/ATen/ops/sparse_csc_tensor.h' 2025-07-17T06:38:00.7728140Z adding 'torch/include/ATen/ops/sparse_csc_tensor_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7729090Z adding 'torch/include/ATen/ops/sparse_csc_tensor_native.h' 2025-07-17T06:38:00.7730300Z adding 'torch/include/ATen/ops/sparse_csc_tensor_ops.h' 2025-07-17T06:38:00.7731320Z adding 'torch/include/ATen/ops/sparse_csr_tensor.h' 2025-07-17T06:38:00.7732340Z adding 'torch/include/ATen/ops/sparse_csr_tensor_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7733110Z adding 'torch/include/ATen/ops/sparse_csr_tensor_native.h' 2025-07-17T06:38:00.7734390Z adding 'torch/include/ATen/ops/sparse_csr_tensor_ops.h' 2025-07-17T06:38:00.7735190Z adding 'torch/include/ATen/ops/sparse_dim.h' 2025-07-17T06:38:00.7736180Z adding 'torch/include/ATen/ops/sparse_dim_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7736970Z adding 'torch/include/ATen/ops/sparse_dim_native.h' 2025-07-17T06:38:00.7738050Z adding 'torch/include/ATen/ops/sparse_dim_ops.h' 2025-07-17T06:38:00.7738940Z adding 'torch/include/ATen/ops/sparse_mask.h' 2025-07-17T06:38:00.7739920Z adding 'torch/include/ATen/ops/sparse_mask_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7740680Z adding 'torch/include/ATen/ops/sparse_mask_native.h' 2025-07-17T06:38:00.7741820Z adding 'torch/include/ATen/ops/sparse_mask_ops.h' 2025-07-17T06:38:00.7742760Z adding 'torch/include/ATen/ops/sparse_resize.h' 2025-07-17T06:38:00.7743690Z adding 'torch/include/ATen/ops/sparse_resize_and_clear.h' 2025-07-17T06:38:00.7744680Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7745690Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_meta_dispatch.h' 2025-07-17T06:38:00.7746600Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_native.h' 2025-07-17T06:38:00.7747640Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_ops.h' 2025-07-17T06:38:00.7748580Z adding 'torch/include/ATen/ops/sparse_resize_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7749580Z adding 'torch/include/ATen/ops/sparse_resize_meta_dispatch.h' 2025-07-17T06:38:00.7750420Z adding 'torch/include/ATen/ops/sparse_resize_native.h' 2025-07-17T06:38:00.7751500Z adding 'torch/include/ATen/ops/sparse_resize_ops.h' 2025-07-17T06:38:00.7752420Z adding 'torch/include/ATen/ops/sparse_sampled_addmm.h' 2025-07-17T06:38:00.7753510Z adding 'torch/include/ATen/ops/sparse_sampled_addmm_native.h' 2025-07-17T06:38:00.7754490Z adding 'torch/include/ATen/ops/sparse_sampled_addmm_ops.h' 2025-07-17T06:38:00.7755400Z adding 'torch/include/ATen/ops/special_airy_ai.h' 2025-07-17T06:38:00.7756440Z adding 'torch/include/ATen/ops/special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7757430Z adding 'torch/include/ATen/ops/special_airy_ai_cpu_dispatch.h' 2025-07-17T06:38:00.7758370Z adding 'torch/include/ATen/ops/special_airy_ai_cuda_dispatch.h' 2025-07-17T06:38:00.7759220Z adding 'torch/include/ATen/ops/special_airy_ai_meta.h' 2025-07-17T06:38:00.7760110Z adding 'torch/include/ATen/ops/special_airy_ai_meta_dispatch.h' 2025-07-17T06:38:00.7761180Z adding 'torch/include/ATen/ops/special_airy_ai_native.h' 2025-07-17T06:38:00.7762180Z adding 'torch/include/ATen/ops/special_airy_ai_ops.h' 2025-07-17T06:38:00.7763070Z adding 'torch/include/ATen/ops/special_bessel_j0.h' 2025-07-17T06:38:00.7764130Z adding 'torch/include/ATen/ops/special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7765060Z adding 'torch/include/ATen/ops/special_bessel_j0_cpu_dispatch.h' 2025-07-17T06:38:00.7765910Z adding 'torch/include/ATen/ops/special_bessel_j0_cuda_dispatch.h' 2025-07-17T06:38:00.7766730Z adding 'torch/include/ATen/ops/special_bessel_j0_meta.h' 2025-07-17T06:38:00.7767590Z adding 'torch/include/ATen/ops/special_bessel_j0_meta_dispatch.h' 2025-07-17T06:38:00.7768590Z adding 'torch/include/ATen/ops/special_bessel_j0_mps_dispatch.h' 2025-07-17T06:38:00.7769470Z adding 'torch/include/ATen/ops/special_bessel_j0_native.h' 2025-07-17T06:38:00.7770410Z adding 'torch/include/ATen/ops/special_bessel_j0_ops.h' 2025-07-17T06:38:00.7771310Z adding 'torch/include/ATen/ops/special_bessel_j1.h' 2025-07-17T06:38:00.7772500Z adding 'torch/include/ATen/ops/special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7773250Z adding 'torch/include/ATen/ops/special_bessel_j1_cpu_dispatch.h' 2025-07-17T06:38:00.7774060Z adding 'torch/include/ATen/ops/special_bessel_j1_cuda_dispatch.h' 2025-07-17T06:38:00.7774880Z adding 'torch/include/ATen/ops/special_bessel_j1_meta.h' 2025-07-17T06:38:00.7775890Z adding 'torch/include/ATen/ops/special_bessel_j1_meta_dispatch.h' 2025-07-17T06:38:00.7776740Z adding 'torch/include/ATen/ops/special_bessel_j1_mps_dispatch.h' 2025-07-17T06:38:00.7777520Z adding 'torch/include/ATen/ops/special_bessel_j1_native.h' 2025-07-17T06:38:00.7778450Z adding 'torch/include/ATen/ops/special_bessel_j1_ops.h' 2025-07-17T06:38:00.7779490Z adding 'torch/include/ATen/ops/special_bessel_y0.h' 2025-07-17T06:38:00.7780500Z adding 'torch/include/ATen/ops/special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7781250Z adding 'torch/include/ATen/ops/special_bessel_y0_cpu_dispatch.h' 2025-07-17T06:38:00.7782080Z adding 'torch/include/ATen/ops/special_bessel_y0_cuda_dispatch.h' 2025-07-17T06:38:00.7783070Z adding 'torch/include/ATen/ops/special_bessel_y0_meta.h' 2025-07-17T06:38:00.7783940Z adding 'torch/include/ATen/ops/special_bessel_y0_meta_dispatch.h' 2025-07-17T06:38:00.7784730Z adding 'torch/include/ATen/ops/special_bessel_y0_mps_dispatch.h' 2025-07-17T06:38:00.7785540Z adding 'torch/include/ATen/ops/special_bessel_y0_native.h' 2025-07-17T06:38:00.7786640Z adding 'torch/include/ATen/ops/special_bessel_y0_ops.h' 2025-07-17T06:38:00.7787500Z adding 'torch/include/ATen/ops/special_bessel_y1.h' 2025-07-17T06:38:00.7788500Z adding 'torch/include/ATen/ops/special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7789220Z adding 'torch/include/ATen/ops/special_bessel_y1_cpu_dispatch.h' 2025-07-17T06:38:00.7790230Z adding 'torch/include/ATen/ops/special_bessel_y1_cuda_dispatch.h' 2025-07-17T06:38:00.7791040Z adding 'torch/include/ATen/ops/special_bessel_y1_meta.h' 2025-07-17T06:38:00.7791840Z adding 'torch/include/ATen/ops/special_bessel_y1_meta_dispatch.h' 2025-07-17T06:38:00.7792630Z adding 'torch/include/ATen/ops/special_bessel_y1_mps_dispatch.h' 2025-07-17T06:38:00.7793610Z adding 'torch/include/ATen/ops/special_bessel_y1_native.h' 2025-07-17T06:38:00.7794570Z adding 'torch/include/ATen/ops/special_bessel_y1_ops.h' 2025-07-17T06:38:00.7795570Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t.h' 2025-07-17T06:38:00.7796590Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7797720Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7798470Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_cpu_dispatch.h' 2025-07-17T06:38:00.7799290Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_cuda_dispatch.h' 2025-07-17T06:38:00.7800110Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_meta.h' 2025-07-17T06:38:00.7801130Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_meta_dispatch.h' 2025-07-17T06:38:00.7801950Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_mps_dispatch.h' 2025-07-17T06:38:00.7802810Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_native.h' 2025-07-17T06:38:00.7803920Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_ops.h' 2025-07-17T06:38:00.7805100Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u.h' 2025-07-17T06:38:00.7806120Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7807020Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7807740Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_cpu_dispatch.h' 2025-07-17T06:38:00.7808740Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_cuda_dispatch.h' 2025-07-17T06:38:00.7809570Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_meta.h' 2025-07-17T06:38:00.7810410Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_meta_dispatch.h' 2025-07-17T06:38:00.7811200Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_mps_dispatch.h' 2025-07-17T06:38:00.7812250Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_native.h' 2025-07-17T06:38:00.7813420Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_ops.h' 2025-07-17T06:38:00.7814410Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v.h' 2025-07-17T06:38:00.7815390Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7816510Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7817260Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_cpu_dispatch.h' 2025-07-17T06:38:00.7818090Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_cuda_dispatch.h' 2025-07-17T06:38:00.7818910Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_meta.h' 2025-07-17T06:38:00.7819910Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_meta_dispatch.h' 2025-07-17T06:38:00.7820740Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_mps_dispatch.h' 2025-07-17T06:38:00.7821610Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_native.h' 2025-07-17T06:38:00.7822700Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_ops.h' 2025-07-17T06:38:00.7823880Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w.h' 2025-07-17T06:38:00.7824890Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7825770Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7826480Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_cpu_dispatch.h' 2025-07-17T06:38:00.7827470Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_cuda_dispatch.h' 2025-07-17T06:38:00.7828310Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_meta.h' 2025-07-17T06:38:00.7829130Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_meta_dispatch.h' 2025-07-17T06:38:00.7829970Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_mps_dispatch.h' 2025-07-17T06:38:00.7831070Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_native.h' 2025-07-17T06:38:00.7832170Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_ops.h' 2025-07-17T06:38:00.7833050Z adding 'torch/include/ATen/ops/special_digamma.h' 2025-07-17T06:38:00.7834000Z adding 'torch/include/ATen/ops/special_digamma_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7834990Z adding 'torch/include/ATen/ops/special_digamma_native.h' 2025-07-17T06:38:00.7835890Z adding 'torch/include/ATen/ops/special_digamma_ops.h' 2025-07-17T06:38:00.7836790Z adding 'torch/include/ATen/ops/special_entr.h' 2025-07-17T06:38:00.7837780Z adding 'torch/include/ATen/ops/special_entr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7838720Z adding 'torch/include/ATen/ops/special_entr_cpu_dispatch.h' 2025-07-17T06:38:00.7839570Z adding 'torch/include/ATen/ops/special_entr_cuda_dispatch.h' 2025-07-17T06:38:00.7840380Z adding 'torch/include/ATen/ops/special_entr_meta.h' 2025-07-17T06:38:00.7841230Z adding 'torch/include/ATen/ops/special_entr_meta_dispatch.h' 2025-07-17T06:38:00.7842570Z adding 'torch/include/ATen/ops/special_entr_mps_dispatch.h' 2025-07-17T06:38:00.7843390Z adding 'torch/include/ATen/ops/special_entr_native.h' 2025-07-17T06:38:00.7844310Z adding 'torch/include/ATen/ops/special_entr_ops.h' 2025-07-17T06:38:00.7845190Z adding 'torch/include/ATen/ops/special_erf.h' 2025-07-17T06:38:00.7846370Z adding 'torch/include/ATen/ops/special_erf_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7847130Z adding 'torch/include/ATen/ops/special_erf_native.h' 2025-07-17T06:38:00.7848070Z adding 'torch/include/ATen/ops/special_erf_ops.h' 2025-07-17T06:38:00.7848950Z adding 'torch/include/ATen/ops/special_erfc.h' 2025-07-17T06:38:00.7850070Z adding 'torch/include/ATen/ops/special_erfc_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7850830Z adding 'torch/include/ATen/ops/special_erfc_native.h' 2025-07-17T06:38:00.7851740Z adding 'torch/include/ATen/ops/special_erfc_ops.h' 2025-07-17T06:38:00.7852640Z adding 'torch/include/ATen/ops/special_erfcx.h' 2025-07-17T06:38:00.7853800Z adding 'torch/include/ATen/ops/special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7854570Z adding 'torch/include/ATen/ops/special_erfcx_cpu_dispatch.h' 2025-07-17T06:38:00.7855390Z adding 'torch/include/ATen/ops/special_erfcx_cuda_dispatch.h' 2025-07-17T06:38:00.7856190Z adding 'torch/include/ATen/ops/special_erfcx_meta.h' 2025-07-17T06:38:00.7857230Z adding 'torch/include/ATen/ops/special_erfcx_meta_dispatch.h' 2025-07-17T06:38:00.7858070Z adding 'torch/include/ATen/ops/special_erfcx_native.h' 2025-07-17T06:38:00.7858980Z adding 'torch/include/ATen/ops/special_erfcx_ops.h' 2025-07-17T06:38:00.7859860Z adding 'torch/include/ATen/ops/special_erfinv.h' 2025-07-17T06:38:00.7860990Z adding 'torch/include/ATen/ops/special_erfinv_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7861750Z adding 'torch/include/ATen/ops/special_erfinv_native.h' 2025-07-17T06:38:00.7862650Z adding 'torch/include/ATen/ops/special_erfinv_ops.h' 2025-07-17T06:38:00.7863510Z adding 'torch/include/ATen/ops/special_exp2.h' 2025-07-17T06:38:00.7864660Z adding 'torch/include/ATen/ops/special_exp2_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7865410Z adding 'torch/include/ATen/ops/special_exp2_native.h' 2025-07-17T06:38:00.7866330Z adding 'torch/include/ATen/ops/special_exp2_ops.h' 2025-07-17T06:38:00.7867200Z adding 'torch/include/ATen/ops/special_expit.h' 2025-07-17T06:38:00.7868380Z adding 'torch/include/ATen/ops/special_expit_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7869100Z adding 'torch/include/ATen/ops/special_expit_native.h' 2025-07-17T06:38:00.7870010Z adding 'torch/include/ATen/ops/special_expit_ops.h' 2025-07-17T06:38:00.7870850Z adding 'torch/include/ATen/ops/special_expm1.h' 2025-07-17T06:38:00.7871990Z adding 'torch/include/ATen/ops/special_expm1_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7872730Z adding 'torch/include/ATen/ops/special_expm1_native.h' 2025-07-17T06:38:00.7873640Z adding 'torch/include/ATen/ops/special_expm1_ops.h' 2025-07-17T06:38:00.7874540Z adding 'torch/include/ATen/ops/special_gammainc.h' 2025-07-17T06:38:00.7875730Z adding 'torch/include/ATen/ops/special_gammainc_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7876470Z adding 'torch/include/ATen/ops/special_gammainc_native.h' 2025-07-17T06:38:00.7877410Z adding 'torch/include/ATen/ops/special_gammainc_ops.h' 2025-07-17T06:38:00.7878310Z adding 'torch/include/ATen/ops/special_gammaincc.h' 2025-07-17T06:38:00.7879460Z adding 'torch/include/ATen/ops/special_gammaincc_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7880230Z adding 'torch/include/ATen/ops/special_gammaincc_native.h' 2025-07-17T06:38:00.7881190Z adding 'torch/include/ATen/ops/special_gammaincc_ops.h' 2025-07-17T06:38:00.7882040Z adding 'torch/include/ATen/ops/special_gammaln.h' 2025-07-17T06:38:00.7883230Z adding 'torch/include/ATen/ops/special_gammaln_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7884000Z adding 'torch/include/ATen/ops/special_gammaln_native.h' 2025-07-17T06:38:00.7884940Z adding 'torch/include/ATen/ops/special_gammaln_ops.h' 2025-07-17T06:38:00.7886000Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h.h' 2025-07-17T06:38:00.7887270Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7888230Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7889070Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_cpu_dispatch.h' 2025-07-17T06:38:00.7889980Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_cuda_dispatch.h' 2025-07-17T06:38:00.7891110Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_meta.h' 2025-07-17T06:38:00.7892130Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_meta_dispatch.h' 2025-07-17T06:38:00.7893040Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_mps_dispatch.h' 2025-07-17T06:38:00.7894000Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_native.h' 2025-07-17T06:38:00.7895280Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_ops.h' 2025-07-17T06:38:00.7896500Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he.h' 2025-07-17T06:38:00.7897560Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7898510Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7899520Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_cpu_dispatch.h' 2025-07-17T06:38:00.7900400Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_cuda_dispatch.h' 2025-07-17T06:38:00.7901270Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_meta.h' 2025-07-17T06:38:00.7902180Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_meta_dispatch.h' 2025-07-17T06:38:00.7903200Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_mps_dispatch.h' 2025-07-17T06:38:00.7904150Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_native.h' 2025-07-17T06:38:00.7905320Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_ops.h' 2025-07-17T06:38:00.7906190Z adding 'torch/include/ATen/ops/special_i0.h' 2025-07-17T06:38:00.7907380Z adding 'torch/include/ATen/ops/special_i0_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7908170Z adding 'torch/include/ATen/ops/special_i0_native.h' 2025-07-17T06:38:00.7909130Z adding 'torch/include/ATen/ops/special_i0_ops.h' 2025-07-17T06:38:00.7910090Z adding 'torch/include/ATen/ops/special_i0e.h' 2025-07-17T06:38:00.7911380Z adding 'torch/include/ATen/ops/special_i0e_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7912200Z adding 'torch/include/ATen/ops/special_i0e_cpu_dispatch.h' 2025-07-17T06:38:00.7913020Z adding 'torch/include/ATen/ops/special_i0e_cuda_dispatch.h' 2025-07-17T06:38:00.7914010Z adding 'torch/include/ATen/ops/special_i0e_meta.h' 2025-07-17T06:38:00.7915130Z adding 'torch/include/ATen/ops/special_i0e_meta_dispatch.h' 2025-07-17T06:38:00.7915970Z adding 'torch/include/ATen/ops/special_i0e_mps_dispatch.h' 2025-07-17T06:38:00.7916860Z adding 'torch/include/ATen/ops/special_i0e_native.h' 2025-07-17T06:38:00.7917770Z adding 'torch/include/ATen/ops/special_i0e_ops.h' 2025-07-17T06:38:00.7918880Z adding 'torch/include/ATen/ops/special_i1.h' 2025-07-17T06:38:00.7919950Z adding 'torch/include/ATen/ops/special_i1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7920770Z adding 'torch/include/ATen/ops/special_i1_cpu_dispatch.h' 2025-07-17T06:38:00.7921630Z adding 'torch/include/ATen/ops/special_i1_cuda_dispatch.h' 2025-07-17T06:38:00.7922670Z adding 'torch/include/ATen/ops/special_i1_meta.h' 2025-07-17T06:38:00.7923510Z adding 'torch/include/ATen/ops/special_i1_meta_dispatch.h' 2025-07-17T06:38:00.7924320Z adding 'torch/include/ATen/ops/special_i1_mps_dispatch.h' 2025-07-17T06:38:00.7925120Z adding 'torch/include/ATen/ops/special_i1_native.h' 2025-07-17T06:38:00.7926250Z adding 'torch/include/ATen/ops/special_i1_ops.h' 2025-07-17T06:38:00.7927170Z adding 'torch/include/ATen/ops/special_i1e.h' 2025-07-17T06:38:00.7928210Z adding 'torch/include/ATen/ops/special_i1e_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7928970Z adding 'torch/include/ATen/ops/special_i1e_cpu_dispatch.h' 2025-07-17T06:38:00.7930020Z adding 'torch/include/ATen/ops/special_i1e_cuda_dispatch.h' 2025-07-17T06:38:00.7930880Z adding 'torch/include/ATen/ops/special_i1e_meta.h' 2025-07-17T06:38:00.7931910Z adding 'torch/include/ATen/ops/special_i1e_meta_dispatch.h' 2025-07-17T06:38:00.7932760Z adding 'torch/include/ATen/ops/special_i1e_mps_dispatch.h' 2025-07-17T06:38:00.7933800Z adding 'torch/include/ATen/ops/special_i1e_native.h' 2025-07-17T06:38:00.7934790Z adding 'torch/include/ATen/ops/special_i1e_ops.h' 2025-07-17T06:38:00.7935970Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l.h' 2025-07-17T06:38:00.7937170Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7938320Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7939190Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_cpu_dispatch.h' 2025-07-17T06:38:00.7940160Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_cuda_dispatch.h' 2025-07-17T06:38:00.7941050Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_meta.h' 2025-07-17T06:38:00.7942100Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_meta_dispatch.h' 2025-07-17T06:38:00.7943030Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_native.h' 2025-07-17T06:38:00.7944210Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_ops.h' 2025-07-17T06:38:00.7945320Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p.h' 2025-07-17T06:38:00.7946540Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.7947520Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7948430Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_cpu_dispatch.h' 2025-07-17T06:38:00.7949330Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_cuda_dispatch.h' 2025-07-17T06:38:00.7950410Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_meta.h' 2025-07-17T06:38:00.7951330Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_meta_dispatch.h' 2025-07-17T06:38:00.7952380Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_native.h' 2025-07-17T06:38:00.7953660Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_ops.h' 2025-07-17T06:38:00.7954740Z adding 'torch/include/ATen/ops/special_log1p.h' 2025-07-17T06:38:00.7955810Z adding 'torch/include/ATen/ops/special_log1p_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7956660Z adding 'torch/include/ATen/ops/special_log1p_native.h' 2025-07-17T06:38:00.7957650Z adding 'torch/include/ATen/ops/special_log1p_ops.h' 2025-07-17T06:38:00.7958790Z adding 'torch/include/ATen/ops/special_log_ndtr.h' 2025-07-17T06:38:00.7959800Z adding 'torch/include/ATen/ops/special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7960600Z adding 'torch/include/ATen/ops/special_log_ndtr_cpu_dispatch.h' 2025-07-17T06:38:00.7961480Z adding 'torch/include/ATen/ops/special_log_ndtr_cuda_dispatch.h' 2025-07-17T06:38:00.7962580Z adding 'torch/include/ATen/ops/special_log_ndtr_meta.h' 2025-07-17T06:38:00.7963530Z adding 'torch/include/ATen/ops/special_log_ndtr_meta_dispatch.h' 2025-07-17T06:38:00.7964380Z adding 'torch/include/ATen/ops/special_log_ndtr_native.h' 2025-07-17T06:38:00.7965360Z adding 'torch/include/ATen/ops/special_log_ndtr_ops.h' 2025-07-17T06:38:00.7966490Z adding 'torch/include/ATen/ops/special_log_softmax.h' 2025-07-17T06:38:00.7967530Z adding 'torch/include/ATen/ops/special_log_softmax_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7968350Z adding 'torch/include/ATen/ops/special_log_softmax_native.h' 2025-07-17T06:38:00.7969320Z adding 'torch/include/ATen/ops/special_log_softmax_ops.h' 2025-07-17T06:38:00.7970360Z adding 'torch/include/ATen/ops/special_logit.h' 2025-07-17T06:38:00.7971500Z adding 'torch/include/ATen/ops/special_logit_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7972310Z adding 'torch/include/ATen/ops/special_logit_native.h' 2025-07-17T06:38:00.7973410Z adding 'torch/include/ATen/ops/special_logit_ops.h' 2025-07-17T06:38:00.7974570Z adding 'torch/include/ATen/ops/special_logsumexp.h' 2025-07-17T06:38:00.7975670Z adding 'torch/include/ATen/ops/special_logsumexp_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.7976530Z adding 'torch/include/ATen/ops/special_logsumexp_native.h' 2025-07-17T06:38:00.7977510Z adding 'torch/include/ATen/ops/special_logsumexp_ops.h' 2025-07-17T06:38:00.7978620Z adding 'torch/include/ATen/ops/special_modified_bessel_i0.h' 2025-07-17T06:38:00.7979730Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7980500Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_cpu_dispatch.h' 2025-07-17T06:38:00.7981310Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_cuda_dispatch.h' 2025-07-17T06:38:00.7982320Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_meta.h' 2025-07-17T06:38:00.7983170Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_meta_dispatch.h' 2025-07-17T06:38:00.7983950Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_mps_dispatch.h' 2025-07-17T06:38:00.7984800Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_native.h' 2025-07-17T06:38:00.7985900Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_ops.h' 2025-07-17T06:38:00.7986810Z adding 'torch/include/ATen/ops/special_modified_bessel_i1.h' 2025-07-17T06:38:00.7987840Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7988580Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_cpu_dispatch.h' 2025-07-17T06:38:00.7989640Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_cuda_dispatch.h' 2025-07-17T06:38:00.7990470Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_meta.h' 2025-07-17T06:38:00.7991310Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_meta_dispatch.h' 2025-07-17T06:38:00.7992100Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_mps_dispatch.h' 2025-07-17T06:38:00.7993120Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_native.h' 2025-07-17T06:38:00.7994060Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_ops.h' 2025-07-17T06:38:00.7994980Z adding 'torch/include/ATen/ops/special_modified_bessel_k0.h' 2025-07-17T06:38:00.7996040Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.7997000Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_cpu_dispatch.h' 2025-07-17T06:38:00.7997860Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_cuda_dispatch.h' 2025-07-17T06:38:00.7998760Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_meta.h' 2025-07-17T06:38:00.7999630Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_meta_dispatch.h' 2025-07-17T06:38:00.8000630Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_mps_dispatch.h' 2025-07-17T06:38:00.8001500Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_native.h' 2025-07-17T06:38:00.8002430Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_ops.h' 2025-07-17T06:38:00.8003310Z adding 'torch/include/ATen/ops/special_modified_bessel_k1.h' 2025-07-17T06:38:00.8004510Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8005260Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_cpu_dispatch.h' 2025-07-17T06:38:00.8006090Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_cuda_dispatch.h' 2025-07-17T06:38:00.8006930Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_meta.h' 2025-07-17T06:38:00.8007950Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_meta_dispatch.h' 2025-07-17T06:38:00.8008770Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_mps_dispatch.h' 2025-07-17T06:38:00.8009580Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_native.h' 2025-07-17T06:38:00.8010490Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_ops.h' 2025-07-17T06:38:00.8011560Z adding 'torch/include/ATen/ops/special_multigammaln.h' 2025-07-17T06:38:00.8012530Z adding 'torch/include/ATen/ops/special_multigammaln_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8013300Z adding 'torch/include/ATen/ops/special_multigammaln_native.h' 2025-07-17T06:38:00.8014270Z adding 'torch/include/ATen/ops/special_multigammaln_ops.h' 2025-07-17T06:38:00.8015420Z adding 'torch/include/ATen/ops/special_ndtr.h' 2025-07-17T06:38:00.8016410Z adding 'torch/include/ATen/ops/special_ndtr_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8017210Z adding 'torch/include/ATen/ops/special_ndtr_native.h' 2025-07-17T06:38:00.8018150Z adding 'torch/include/ATen/ops/special_ndtr_ops.h' 2025-07-17T06:38:00.8019240Z adding 'torch/include/ATen/ops/special_ndtri.h' 2025-07-17T06:38:00.8020250Z adding 'torch/include/ATen/ops/special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8021010Z adding 'torch/include/ATen/ops/special_ndtri_cpu_dispatch.h' 2025-07-17T06:38:00.8021810Z adding 'torch/include/ATen/ops/special_ndtri_cuda_dispatch.h' 2025-07-17T06:38:00.8022830Z adding 'torch/include/ATen/ops/special_ndtri_meta.h' 2025-07-17T06:38:00.8023730Z adding 'torch/include/ATen/ops/special_ndtri_meta_dispatch.h' 2025-07-17T06:38:00.8024570Z adding 'torch/include/ATen/ops/special_ndtri_native.h' 2025-07-17T06:38:00.8025530Z adding 'torch/include/ATen/ops/special_ndtri_ops.h' 2025-07-17T06:38:00.8026600Z adding 'torch/include/ATen/ops/special_polygamma.h' 2025-07-17T06:38:00.8027620Z adding 'torch/include/ATen/ops/special_polygamma_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8028400Z adding 'torch/include/ATen/ops/special_polygamma_native.h' 2025-07-17T06:38:00.8029300Z adding 'torch/include/ATen/ops/special_polygamma_ops.h' 2025-07-17T06:38:00.8030340Z adding 'torch/include/ATen/ops/special_psi.h' 2025-07-17T06:38:00.8031310Z adding 'torch/include/ATen/ops/special_psi_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8032050Z adding 'torch/include/ATen/ops/special_psi_native.h' 2025-07-17T06:38:00.8032980Z adding 'torch/include/ATen/ops/special_psi_ops.h' 2025-07-17T06:38:00.8034050Z adding 'torch/include/ATen/ops/special_round.h' 2025-07-17T06:38:00.8035040Z adding 'torch/include/ATen/ops/special_round_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8035790Z adding 'torch/include/ATen/ops/special_round_native.h' 2025-07-17T06:38:00.8036730Z adding 'torch/include/ATen/ops/special_round_ops.h' 2025-07-17T06:38:00.8037860Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0.h' 2025-07-17T06:38:00.8038920Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8039670Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_cpu_dispatch.h' 2025-07-17T06:38:00.8040540Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_cuda_dispatch.h' 2025-07-17T06:38:00.8041550Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta.h' 2025-07-17T06:38:00.8042440Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta_dispatch.h' 2025-07-17T06:38:00.8043290Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_mps_dispatch.h' 2025-07-17T06:38:00.8044150Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_native.h' 2025-07-17T06:38:00.8045290Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_ops.h' 2025-07-17T06:38:00.8046200Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1.h' 2025-07-17T06:38:00.8047190Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8047920Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_cpu_dispatch.h' 2025-07-17T06:38:00.8048920Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_cuda_dispatch.h' 2025-07-17T06:38:00.8049760Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta.h' 2025-07-17T06:38:00.8050610Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta_dispatch.h' 2025-07-17T06:38:00.8051400Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_mps_dispatch.h' 2025-07-17T06:38:00.8052430Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_native.h' 2025-07-17T06:38:00.8053390Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_ops.h' 2025-07-17T06:38:00.8054450Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t.h' 2025-07-17T06:38:00.8055440Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8056530Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8057320Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cpu_dispatch.h' 2025-07-17T06:38:00.8058150Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cuda_dispatch.h' 2025-07-17T06:38:00.8058970Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta.h' 2025-07-17T06:38:00.8060020Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta_dispatch.h' 2025-07-17T06:38:00.8060840Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_mps_dispatch.h' 2025-07-17T06:38:00.8062050Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_native.h' 2025-07-17T06:38:00.8063160Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_ops.h' 2025-07-17T06:38:00.8064380Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u.h' 2025-07-17T06:38:00.8065420Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8066350Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8067100Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cpu_dispatch.h' 2025-07-17T06:38:00.8068160Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cuda_dispatch.h' 2025-07-17T06:38:00.8068990Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta.h' 2025-07-17T06:38:00.8069860Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta_dispatch.h' 2025-07-17T06:38:00.8070670Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_mps_dispatch.h' 2025-07-17T06:38:00.8071720Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_native.h' 2025-07-17T06:38:00.8072840Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_ops.h' 2025-07-17T06:38:00.8073830Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v.h' 2025-07-17T06:38:00.8074820Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8075910Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8076780Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cpu_dispatch.h' 2025-07-17T06:38:00.8077610Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cuda_dispatch.h' 2025-07-17T06:38:00.8078420Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta.h' 2025-07-17T06:38:00.8079440Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta_dispatch.h' 2025-07-17T06:38:00.8080280Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_mps_dispatch.h' 2025-07-17T06:38:00.8081140Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_native.h' 2025-07-17T06:38:00.8082240Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_ops.h' 2025-07-17T06:38:00.8083450Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w.h' 2025-07-17T06:38:00.8084460Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8085380Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8086090Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cpu_dispatch.h' 2025-07-17T06:38:00.8087130Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cuda_dispatch.h' 2025-07-17T06:38:00.8087940Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta.h' 2025-07-17T06:38:00.8088760Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta_dispatch.h' 2025-07-17T06:38:00.8089600Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_mps_dispatch.h' 2025-07-17T06:38:00.8090680Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_native.h' 2025-07-17T06:38:00.8091770Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_ops.h' 2025-07-17T06:38:00.8092600Z adding 'torch/include/ATen/ops/special_sinc.h' 2025-07-17T06:38:00.8093540Z adding 'torch/include/ATen/ops/special_sinc_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8094480Z adding 'torch/include/ATen/ops/special_sinc_native.h' 2025-07-17T06:38:00.8095440Z adding 'torch/include/ATen/ops/special_sinc_ops.h' 2025-07-17T06:38:00.8096320Z adding 'torch/include/ATen/ops/special_softmax.h' 2025-07-17T06:38:00.8097290Z adding 'torch/include/ATen/ops/special_softmax_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8098260Z adding 'torch/include/ATen/ops/special_softmax_native.h' 2025-07-17T06:38:00.8099190Z adding 'torch/include/ATen/ops/special_softmax_ops.h' 2025-07-17T06:38:00.8100110Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0.h' 2025-07-17T06:38:00.8101120Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8102070Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_cpu_dispatch.h' 2025-07-17T06:38:00.8102910Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_cuda_dispatch.h' 2025-07-17T06:38:00.8103730Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_meta.h' 2025-07-17T06:38:00.8104570Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_meta_dispatch.h' 2025-07-17T06:38:00.8105550Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_mps_dispatch.h' 2025-07-17T06:38:00.8106390Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_native.h' 2025-07-17T06:38:00.8107330Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_ops.h' 2025-07-17T06:38:00.8108340Z adding 'torch/include/ATen/ops/special_xlog1py.h' 2025-07-17T06:38:00.8109500Z adding 'torch/include/ATen/ops/special_xlog1py_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8110440Z adding 'torch/include/ATen/ops/special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8111190Z adding 'torch/include/ATen/ops/special_xlog1py_cpu_dispatch.h' 2025-07-17T06:38:00.8112020Z adding 'torch/include/ATen/ops/special_xlog1py_cuda_dispatch.h' 2025-07-17T06:38:00.8113050Z adding 'torch/include/ATen/ops/special_xlog1py_meta.h' 2025-07-17T06:38:00.8113900Z adding 'torch/include/ATen/ops/special_xlog1py_meta_dispatch.h' 2025-07-17T06:38:00.8114720Z adding 'torch/include/ATen/ops/special_xlog1py_mps_dispatch.h' 2025-07-17T06:38:00.8115580Z adding 'torch/include/ATen/ops/special_xlog1py_native.h' 2025-07-17T06:38:00.8116880Z adding 'torch/include/ATen/ops/special_xlog1py_ops.h' 2025-07-17T06:38:00.8118870Z adding 'torch/include/ATen/ops/special_xlogy.h' 2025-07-17T06:38:00.8119720Z adding 'torch/include/ATen/ops/special_xlogy_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8120660Z adding 'torch/include/ATen/ops/special_xlogy_native.h' 2025-07-17T06:38:00.8121910Z adding 'torch/include/ATen/ops/special_xlogy_ops.h' 2025-07-17T06:38:00.8122930Z adding 'torch/include/ATen/ops/special_zeta.h' 2025-07-17T06:38:00.8124010Z adding 'torch/include/ATen/ops/special_zeta_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8124970Z adding 'torch/include/ATen/ops/special_zeta_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8125770Z adding 'torch/include/ATen/ops/special_zeta_cpu_dispatch.h' 2025-07-17T06:38:00.8126630Z adding 'torch/include/ATen/ops/special_zeta_cuda_dispatch.h' 2025-07-17T06:38:00.8127490Z adding 'torch/include/ATen/ops/special_zeta_meta.h' 2025-07-17T06:38:00.8128380Z adding 'torch/include/ATen/ops/special_zeta_meta_dispatch.h' 2025-07-17T06:38:00.8129160Z adding 'torch/include/ATen/ops/special_zeta_mps_dispatch.h' 2025-07-17T06:38:00.8130040Z adding 'torch/include/ATen/ops/special_zeta_native.h' 2025-07-17T06:38:00.8131170Z adding 'torch/include/ATen/ops/special_zeta_ops.h' 2025-07-17T06:38:00.8132190Z adding 'torch/include/ATen/ops/split.h' 2025-07-17T06:38:00.8133210Z adding 'torch/include/ATen/ops/split_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8134080Z adding 'torch/include/ATen/ops/split_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8135070Z adding 'torch/include/ATen/ops/split_copy.h' 2025-07-17T06:38:00.8136110Z adding 'torch/include/ATen/ops/split_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8137060Z adding 'torch/include/ATen/ops/split_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8137810Z adding 'torch/include/ATen/ops/split_copy_native.h' 2025-07-17T06:38:00.8138820Z adding 'torch/include/ATen/ops/split_copy_ops.h' 2025-07-17T06:38:00.8139670Z adding 'torch/include/ATen/ops/split_native.h' 2025-07-17T06:38:00.8140670Z adding 'torch/include/ATen/ops/split_ops.h' 2025-07-17T06:38:00.8141650Z adding 'torch/include/ATen/ops/split_with_sizes.h' 2025-07-17T06:38:00.8142670Z adding 'torch/include/ATen/ops/split_with_sizes_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8143660Z adding 'torch/include/ATen/ops/split_with_sizes_copy.h' 2025-07-17T06:38:00.8144950Z adding 'torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8145930Z adding 'torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8146750Z adding 'torch/include/ATen/ops/split_with_sizes_copy_cuda_dispatch.h' 2025-07-17T06:38:00.8147620Z adding 'torch/include/ATen/ops/split_with_sizes_copy_native.h' 2025-07-17T06:38:00.8148620Z adding 'torch/include/ATen/ops/split_with_sizes_copy_ops.h' 2025-07-17T06:38:00.8149480Z adding 'torch/include/ATen/ops/split_with_sizes_native.h' 2025-07-17T06:38:00.8150410Z adding 'torch/include/ATen/ops/split_with_sizes_ops.h' 2025-07-17T06:38:00.8151320Z adding 'torch/include/ATen/ops/sqrt.h' 2025-07-17T06:38:00.8152330Z adding 'torch/include/ATen/ops/sqrt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8153080Z adding 'torch/include/ATen/ops/sqrt_cpu_dispatch.h' 2025-07-17T06:38:00.8153930Z adding 'torch/include/ATen/ops/sqrt_cuda_dispatch.h' 2025-07-17T06:38:00.8154760Z adding 'torch/include/ATen/ops/sqrt_meta.h' 2025-07-17T06:38:00.8155620Z adding 'torch/include/ATen/ops/sqrt_meta_dispatch.h' 2025-07-17T06:38:00.8156440Z adding 'torch/include/ATen/ops/sqrt_mps_dispatch.h' 2025-07-17T06:38:00.8157320Z adding 'torch/include/ATen/ops/sqrt_native.h' 2025-07-17T06:38:00.8158280Z adding 'torch/include/ATen/ops/sqrt_ops.h' 2025-07-17T06:38:00.8159180Z adding 'torch/include/ATen/ops/square.h' 2025-07-17T06:38:00.8160160Z adding 'torch/include/ATen/ops/square_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8160940Z adding 'torch/include/ATen/ops/square_native.h' 2025-07-17T06:38:00.8161890Z adding 'torch/include/ATen/ops/square_ops.h' 2025-07-17T06:38:00.8162810Z adding 'torch/include/ATen/ops/squeeze.h' 2025-07-17T06:38:00.8163820Z adding 'torch/include/ATen/ops/squeeze_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8164700Z adding 'torch/include/ATen/ops/squeeze_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8165620Z adding 'torch/include/ATen/ops/squeeze_copy.h' 2025-07-17T06:38:00.8166620Z adding 'torch/include/ATen/ops/squeeze_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8167560Z adding 'torch/include/ATen/ops/squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8168330Z adding 'torch/include/ATen/ops/squeeze_copy_native.h' 2025-07-17T06:38:00.8169400Z adding 'torch/include/ATen/ops/squeeze_copy_ops.h' 2025-07-17T06:38:00.8170320Z adding 'torch/include/ATen/ops/squeeze_native.h' 2025-07-17T06:38:00.8171500Z adding 'torch/include/ATen/ops/squeeze_ops.h' 2025-07-17T06:38:00.8172410Z adding 'torch/include/ATen/ops/sspaddmm.h' 2025-07-17T06:38:00.8173420Z adding 'torch/include/ATen/ops/sspaddmm_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8174240Z adding 'torch/include/ATen/ops/sspaddmm_cpu_dispatch.h' 2025-07-17T06:38:00.8175060Z adding 'torch/include/ATen/ops/sspaddmm_cuda_dispatch.h' 2025-07-17T06:38:00.8175920Z adding 'torch/include/ATen/ops/sspaddmm_native.h' 2025-07-17T06:38:00.8176910Z adding 'torch/include/ATen/ops/sspaddmm_ops.h' 2025-07-17T06:38:00.8177820Z adding 'torch/include/ATen/ops/stack.h' 2025-07-17T06:38:00.8178780Z adding 'torch/include/ATen/ops/stack_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8179560Z adding 'torch/include/ATen/ops/stack_native.h' 2025-07-17T06:38:00.8180520Z adding 'torch/include/ATen/ops/stack_ops.h' 2025-07-17T06:38:00.8181650Z adding 'torch/include/ATen/ops/std.h' 2025-07-17T06:38:00.8182730Z adding 'torch/include/ATen/ops/std_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8183590Z adding 'torch/include/ATen/ops/std_cpu_dispatch.h' 2025-07-17T06:38:00.8184460Z adding 'torch/include/ATen/ops/std_cuda_dispatch.h' 2025-07-17T06:38:00.8185480Z adding 'torch/include/ATen/ops/std_mean.h' 2025-07-17T06:38:00.8186520Z adding 'torch/include/ATen/ops/std_mean_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8187420Z adding 'torch/include/ATen/ops/std_mean_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8188240Z adding 'torch/include/ATen/ops/std_mean_cpu_dispatch.h' 2025-07-17T06:38:00.8189090Z adding 'torch/include/ATen/ops/std_mean_cuda_dispatch.h' 2025-07-17T06:38:00.8189950Z adding 'torch/include/ATen/ops/std_mean_mps_dispatch.h' 2025-07-17T06:38:00.8190860Z adding 'torch/include/ATen/ops/std_mean_native.h' 2025-07-17T06:38:00.8192110Z adding 'torch/include/ATen/ops/std_mean_ops.h' 2025-07-17T06:38:00.8192960Z adding 'torch/include/ATen/ops/std_mps_dispatch.h' 2025-07-17T06:38:00.8198420Z adding 'torch/include/ATen/ops/std_native.h' 2025-07-17T06:38:00.8198610Z adding 'torch/include/ATen/ops/std_ops.h' 2025-07-17T06:38:00.8198720Z adding 'torch/include/ATen/ops/stft.h' 2025-07-17T06:38:00.8198900Z adding 'torch/include/ATen/ops/stft_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8198980Z adding 'torch/include/ATen/ops/stft_native.h' 2025-07-17T06:38:00.8199050Z adding 'torch/include/ATen/ops/stft_ops.h' 2025-07-17T06:38:00.8199890Z adding 'torch/include/ATen/ops/stride.h' 2025-07-17T06:38:00.8200870Z adding 'torch/include/ATen/ops/stride_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8201630Z adding 'torch/include/ATen/ops/stride_native.h' 2025-07-17T06:38:00.8202570Z adding 'torch/include/ATen/ops/stride_ops.h' 2025-07-17T06:38:00.8203550Z adding 'torch/include/ATen/ops/sub.h' 2025-07-17T06:38:00.8204570Z adding 'torch/include/ATen/ops/sub_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8205490Z adding 'torch/include/ATen/ops/sub_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8206350Z adding 'torch/include/ATen/ops/sub_cpu_dispatch.h' 2025-07-17T06:38:00.8207230Z adding 'torch/include/ATen/ops/sub_cuda_dispatch.h' 2025-07-17T06:38:00.8208080Z adding 'torch/include/ATen/ops/sub_meta.h' 2025-07-17T06:38:00.8208950Z adding 'torch/include/ATen/ops/sub_meta_dispatch.h' 2025-07-17T06:38:00.8209800Z adding 'torch/include/ATen/ops/sub_mps_dispatch.h' 2025-07-17T06:38:00.8210720Z adding 'torch/include/ATen/ops/sub_native.h' 2025-07-17T06:38:00.8211860Z adding 'torch/include/ATen/ops/sub_ops.h' 2025-07-17T06:38:00.8212830Z adding 'torch/include/ATen/ops/subtract.h' 2025-07-17T06:38:00.8213820Z adding 'torch/include/ATen/ops/subtract_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8214610Z adding 'torch/include/ATen/ops/subtract_native.h' 2025-07-17T06:38:00.8215690Z adding 'torch/include/ATen/ops/subtract_ops.h' 2025-07-17T06:38:00.8216750Z adding 'torch/include/ATen/ops/sum.h' 2025-07-17T06:38:00.8217800Z adding 'torch/include/ATen/ops/sum_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8218680Z adding 'torch/include/ATen/ops/sum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8219550Z adding 'torch/include/ATen/ops/sum_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8220380Z adding 'torch/include/ATen/ops/sum_cpu_dispatch.h' 2025-07-17T06:38:00.8221200Z adding 'torch/include/ATen/ops/sum_cuda_dispatch.h' 2025-07-17T06:38:00.8222060Z adding 'torch/include/ATen/ops/sum_meta.h' 2025-07-17T06:38:00.8222910Z adding 'torch/include/ATen/ops/sum_meta_dispatch.h' 2025-07-17T06:38:00.8223720Z adding 'torch/include/ATen/ops/sum_mps_dispatch.h' 2025-07-17T06:38:00.8224700Z adding 'torch/include/ATen/ops/sum_native.h' 2025-07-17T06:38:00.8225870Z adding 'torch/include/ATen/ops/sum_ops.h' 2025-07-17T06:38:00.8226800Z adding 'torch/include/ATen/ops/sum_to_size.h' 2025-07-17T06:38:00.8227760Z adding 'torch/include/ATen/ops/sum_to_size_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8228520Z adding 'torch/include/ATen/ops/sum_to_size_native.h' 2025-07-17T06:38:00.8229440Z adding 'torch/include/ATen/ops/sum_to_size_ops.h' 2025-07-17T06:38:00.8230380Z adding 'torch/include/ATen/ops/svd.h' 2025-07-17T06:38:00.8231370Z adding 'torch/include/ATen/ops/svd_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8232180Z adding 'torch/include/ATen/ops/svd_native.h' 2025-07-17T06:38:00.8233150Z adding 'torch/include/ATen/ops/svd_ops.h' 2025-07-17T06:38:00.8234020Z adding 'torch/include/ATen/ops/swapaxes.h' 2025-07-17T06:38:00.8235020Z adding 'torch/include/ATen/ops/swapaxes_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8235780Z adding 'torch/include/ATen/ops/swapaxes_native.h' 2025-07-17T06:38:00.8236740Z adding 'torch/include/ATen/ops/swapaxes_ops.h' 2025-07-17T06:38:00.8237600Z adding 'torch/include/ATen/ops/swapdims.h' 2025-07-17T06:38:00.8238560Z adding 'torch/include/ATen/ops/swapdims_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8239320Z adding 'torch/include/ATen/ops/swapdims_native.h' 2025-07-17T06:38:00.8240290Z adding 'torch/include/ATen/ops/swapdims_ops.h' 2025-07-17T06:38:00.8241200Z adding 'torch/include/ATen/ops/sym_constrain_range.h' 2025-07-17T06:38:00.8242210Z adding 'torch/include/ATen/ops/sym_constrain_range_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8243000Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size.h' 2025-07-17T06:38:00.8243980Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8244750Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_native.h' 2025-07-17T06:38:00.8245670Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_ops.h' 2025-07-17T06:38:00.8246500Z adding 'torch/include/ATen/ops/sym_constrain_range_native.h' 2025-07-17T06:38:00.8247400Z adding 'torch/include/ATen/ops/sym_constrain_range_ops.h' 2025-07-17T06:38:00.8248210Z adding 'torch/include/ATen/ops/sym_numel.h' 2025-07-17T06:38:00.8249180Z adding 'torch/include/ATen/ops/sym_numel_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8249920Z adding 'torch/include/ATen/ops/sym_numel_native.h' 2025-07-17T06:38:00.8250800Z adding 'torch/include/ATen/ops/sym_numel_ops.h' 2025-07-17T06:38:00.8251660Z adding 'torch/include/ATen/ops/sym_size.h' 2025-07-17T06:38:00.8252640Z adding 'torch/include/ATen/ops/sym_size_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8253430Z adding 'torch/include/ATen/ops/sym_size_native.h' 2025-07-17T06:38:00.8254320Z adding 'torch/include/ATen/ops/sym_size_ops.h' 2025-07-17T06:38:00.8255170Z adding 'torch/include/ATen/ops/sym_storage_offset.h' 2025-07-17T06:38:00.8256110Z adding 'torch/include/ATen/ops/sym_storage_offset_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8256850Z adding 'torch/include/ATen/ops/sym_storage_offset_native.h' 2025-07-17T06:38:00.8257720Z adding 'torch/include/ATen/ops/sym_storage_offset_ops.h' 2025-07-17T06:38:00.8258540Z adding 'torch/include/ATen/ops/sym_stride.h' 2025-07-17T06:38:00.8259530Z adding 'torch/include/ATen/ops/sym_stride_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8260260Z adding 'torch/include/ATen/ops/sym_stride_native.h' 2025-07-17T06:38:00.8261160Z adding 'torch/include/ATen/ops/sym_stride_ops.h' 2025-07-17T06:38:00.8262000Z adding 'torch/include/ATen/ops/t.h' 2025-07-17T06:38:00.8262940Z adding 'torch/include/ATen/ops/t_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8263750Z adding 'torch/include/ATen/ops/t_copy.h' 2025-07-17T06:38:00.8264700Z adding 'torch/include/ATen/ops/t_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8265590Z adding 'torch/include/ATen/ops/t_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8266320Z adding 'torch/include/ATen/ops/t_copy_native.h' 2025-07-17T06:38:00.8267240Z adding 'torch/include/ATen/ops/t_copy_ops.h' 2025-07-17T06:38:00.8268060Z adding 'torch/include/ATen/ops/t_native.h' 2025-07-17T06:38:00.8268960Z adding 'torch/include/ATen/ops/t_ops.h' 2025-07-17T06:38:00.8269850Z adding 'torch/include/ATen/ops/take.h' 2025-07-17T06:38:00.8270760Z adding 'torch/include/ATen/ops/take_along_dim.h' 2025-07-17T06:38:00.8271750Z adding 'torch/include/ATen/ops/take_along_dim_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8272540Z adding 'torch/include/ATen/ops/take_along_dim_native.h' 2025-07-17T06:38:00.8273510Z adding 'torch/include/ATen/ops/take_along_dim_ops.h' 2025-07-17T06:38:00.8274400Z adding 'torch/include/ATen/ops/take_cpu_dispatch.h' 2025-07-17T06:38:00.8275220Z adding 'torch/include/ATen/ops/take_cuda_dispatch.h' 2025-07-17T06:38:00.8276380Z adding 'torch/include/ATen/ops/take_native.h' 2025-07-17T06:38:00.8277310Z adding 'torch/include/ATen/ops/take_ops.h' 2025-07-17T06:38:00.8278190Z adding 'torch/include/ATen/ops/tan.h' 2025-07-17T06:38:00.8279200Z adding 'torch/include/ATen/ops/tan_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8279950Z adding 'torch/include/ATen/ops/tan_cpu_dispatch.h' 2025-07-17T06:38:00.8280780Z adding 'torch/include/ATen/ops/tan_cuda_dispatch.h' 2025-07-17T06:38:00.8281600Z adding 'torch/include/ATen/ops/tan_meta.h' 2025-07-17T06:38:00.8282450Z adding 'torch/include/ATen/ops/tan_meta_dispatch.h' 2025-07-17T06:38:00.8283300Z adding 'torch/include/ATen/ops/tan_mps_dispatch.h' 2025-07-17T06:38:00.8284120Z adding 'torch/include/ATen/ops/tan_native.h' 2025-07-17T06:38:00.8285070Z adding 'torch/include/ATen/ops/tan_ops.h' 2025-07-17T06:38:00.8285960Z adding 'torch/include/ATen/ops/tanh.h' 2025-07-17T06:38:00.8286920Z adding 'torch/include/ATen/ops/tanh_backward.h' 2025-07-17T06:38:00.8287880Z adding 'torch/include/ATen/ops/tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8288640Z adding 'torch/include/ATen/ops/tanh_backward_cpu_dispatch.h' 2025-07-17T06:38:00.8289510Z adding 'torch/include/ATen/ops/tanh_backward_cuda_dispatch.h' 2025-07-17T06:38:00.8290300Z adding 'torch/include/ATen/ops/tanh_backward_meta.h' 2025-07-17T06:38:00.8291170Z adding 'torch/include/ATen/ops/tanh_backward_meta_dispatch.h' 2025-07-17T06:38:00.8292020Z adding 'torch/include/ATen/ops/tanh_backward_mps_dispatch.h' 2025-07-17T06:38:00.8292870Z adding 'torch/include/ATen/ops/tanh_backward_native.h' 2025-07-17T06:38:00.8293840Z adding 'torch/include/ATen/ops/tanh_backward_ops.h' 2025-07-17T06:38:00.8294820Z adding 'torch/include/ATen/ops/tanh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8295590Z adding 'torch/include/ATen/ops/tanh_cpu_dispatch.h' 2025-07-17T06:38:00.8296380Z adding 'torch/include/ATen/ops/tanh_cuda_dispatch.h' 2025-07-17T06:38:00.8297200Z adding 'torch/include/ATen/ops/tanh_meta.h' 2025-07-17T06:38:00.8298030Z adding 'torch/include/ATen/ops/tanh_meta_dispatch.h' 2025-07-17T06:38:00.8298840Z adding 'torch/include/ATen/ops/tanh_mps_dispatch.h' 2025-07-17T06:38:00.8299710Z adding 'torch/include/ATen/ops/tanh_native.h' 2025-07-17T06:38:00.8300680Z adding 'torch/include/ATen/ops/tanh_ops.h' 2025-07-17T06:38:00.8301680Z adding 'torch/include/ATen/ops/tensor.h' 2025-07-17T06:38:00.8302720Z adding 'torch/include/ATen/ops/tensor_split.h' 2025-07-17T06:38:00.8303790Z adding 'torch/include/ATen/ops/tensor_split_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8304540Z adding 'torch/include/ATen/ops/tensor_split_native.h' 2025-07-17T06:38:00.8305550Z adding 'torch/include/ATen/ops/tensor_split_ops.h' 2025-07-17T06:38:00.8306500Z adding 'torch/include/ATen/ops/tensordot.h' 2025-07-17T06:38:00.8307490Z adding 'torch/include/ATen/ops/tensordot_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8308250Z adding 'torch/include/ATen/ops/tensordot_native.h' 2025-07-17T06:38:00.8309220Z adding 'torch/include/ATen/ops/tensordot_ops.h' 2025-07-17T06:38:00.8310420Z adding 'torch/include/ATen/ops/thnn_conv2d.h' 2025-07-17T06:38:00.8311490Z adding 'torch/include/ATen/ops/thnn_conv2d_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8312270Z adding 'torch/include/ATen/ops/thnn_conv2d_native.h' 2025-07-17T06:38:00.8313240Z adding 'torch/include/ATen/ops/thnn_conv2d_ops.h' 2025-07-17T06:38:00.8314150Z adding 'torch/include/ATen/ops/threshold.h' 2025-07-17T06:38:00.8315070Z adding 'torch/include/ATen/ops/threshold_backward.h' 2025-07-17T06:38:00.8316110Z adding 'torch/include/ATen/ops/threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8316900Z adding 'torch/include/ATen/ops/threshold_backward_cpu_dispatch.h' 2025-07-17T06:38:00.8317760Z adding 'torch/include/ATen/ops/threshold_backward_cuda_dispatch.h' 2025-07-17T06:38:00.8318580Z adding 'torch/include/ATen/ops/threshold_backward_meta.h' 2025-07-17T06:38:00.8319430Z adding 'torch/include/ATen/ops/threshold_backward_meta_dispatch.h' 2025-07-17T06:38:00.8320290Z adding 'torch/include/ATen/ops/threshold_backward_mps_dispatch.h' 2025-07-17T06:38:00.8321210Z adding 'torch/include/ATen/ops/threshold_backward_native.h' 2025-07-17T06:38:00.8322190Z adding 'torch/include/ATen/ops/threshold_backward_ops.h' 2025-07-17T06:38:00.8323190Z adding 'torch/include/ATen/ops/threshold_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8323960Z adding 'torch/include/ATen/ops/threshold_cpu_dispatch.h' 2025-07-17T06:38:00.8324800Z adding 'torch/include/ATen/ops/threshold_cuda_dispatch.h' 2025-07-17T06:38:00.8325640Z adding 'torch/include/ATen/ops/threshold_meta.h' 2025-07-17T06:38:00.8326520Z adding 'torch/include/ATen/ops/threshold_meta_dispatch.h' 2025-07-17T06:38:00.8327340Z adding 'torch/include/ATen/ops/threshold_mps_dispatch.h' 2025-07-17T06:38:00.8328220Z adding 'torch/include/ATen/ops/threshold_native.h' 2025-07-17T06:38:00.8329240Z adding 'torch/include/ATen/ops/threshold_ops.h' 2025-07-17T06:38:00.8330140Z adding 'torch/include/ATen/ops/tile.h' 2025-07-17T06:38:00.8331090Z adding 'torch/include/ATen/ops/tile_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8331840Z adding 'torch/include/ATen/ops/tile_native.h' 2025-07-17T06:38:00.8332740Z adding 'torch/include/ATen/ops/tile_ops.h' 2025-07-17T06:38:00.8333580Z adding 'torch/include/ATen/ops/to.h' 2025-07-17T06:38:00.8334590Z adding 'torch/include/ATen/ops/to_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8335340Z adding 'torch/include/ATen/ops/to_dense.h' 2025-07-17T06:38:00.8336230Z adding 'torch/include/ATen/ops/to_dense_backward.h' 2025-07-17T06:38:00.8337200Z adding 'torch/include/ATen/ops/to_dense_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8337970Z adding 'torch/include/ATen/ops/to_dense_backward_native.h' 2025-07-17T06:38:00.8338910Z adding 'torch/include/ATen/ops/to_dense_backward_ops.h' 2025-07-17T06:38:00.8339820Z adding 'torch/include/ATen/ops/to_dense_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8340580Z adding 'torch/include/ATen/ops/to_dense_native.h' 2025-07-17T06:38:00.8341480Z adding 'torch/include/ATen/ops/to_dense_ops.h' 2025-07-17T06:38:00.8342380Z adding 'torch/include/ATen/ops/to_mkldnn.h' 2025-07-17T06:38:00.8343240Z adding 'torch/include/ATen/ops/to_mkldnn_backward.h' 2025-07-17T06:38:00.8344210Z adding 'torch/include/ATen/ops/to_mkldnn_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8344980Z adding 'torch/include/ATen/ops/to_mkldnn_backward_native.h' 2025-07-17T06:38:00.8345830Z adding 'torch/include/ATen/ops/to_mkldnn_backward_ops.h' 2025-07-17T06:38:00.8346820Z adding 'torch/include/ATen/ops/to_mkldnn_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8347610Z adding 'torch/include/ATen/ops/to_mkldnn_cpu_dispatch.h' 2025-07-17T06:38:00.8348430Z adding 'torch/include/ATen/ops/to_mkldnn_native.h' 2025-07-17T06:38:00.8349410Z adding 'torch/include/ATen/ops/to_mkldnn_ops.h' 2025-07-17T06:38:00.8350310Z adding 'torch/include/ATen/ops/to_native.h' 2025-07-17T06:38:00.8351450Z adding 'torch/include/ATen/ops/to_ops.h' 2025-07-17T06:38:00.8352560Z adding 'torch/include/ATen/ops/to_padded_tensor.h' 2025-07-17T06:38:00.8353570Z adding 'torch/include/ATen/ops/to_padded_tensor_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8354360Z adding 'torch/include/ATen/ops/to_padded_tensor_native.h' 2025-07-17T06:38:00.8355340Z adding 'torch/include/ATen/ops/to_padded_tensor_ops.h' 2025-07-17T06:38:00.8356140Z adding 'torch/include/ATen/ops/to_sparse.h' 2025-07-17T06:38:00.8356960Z adding 'torch/include/ATen/ops/to_sparse_bsc.h' 2025-07-17T06:38:00.8357920Z adding 'torch/include/ATen/ops/to_sparse_bsc_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8358660Z adding 'torch/include/ATen/ops/to_sparse_bsc_native.h' 2025-07-17T06:38:00.8359550Z adding 'torch/include/ATen/ops/to_sparse_bsc_ops.h' 2025-07-17T06:38:00.8360330Z adding 'torch/include/ATen/ops/to_sparse_bsr.h' 2025-07-17T06:38:00.8361270Z adding 'torch/include/ATen/ops/to_sparse_bsr_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8362020Z adding 'torch/include/ATen/ops/to_sparse_bsr_native.h' 2025-07-17T06:38:00.8362880Z adding 'torch/include/ATen/ops/to_sparse_bsr_ops.h' 2025-07-17T06:38:00.8363850Z adding 'torch/include/ATen/ops/to_sparse_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8364560Z adding 'torch/include/ATen/ops/to_sparse_csc.h' 2025-07-17T06:38:00.8365520Z adding 'torch/include/ATen/ops/to_sparse_csc_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8366290Z adding 'torch/include/ATen/ops/to_sparse_csc_native.h' 2025-07-17T06:38:00.8367170Z adding 'torch/include/ATen/ops/to_sparse_csc_ops.h' 2025-07-17T06:38:00.8368010Z adding 'torch/include/ATen/ops/to_sparse_csr.h' 2025-07-17T06:38:00.8368910Z adding 'torch/include/ATen/ops/to_sparse_csr_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8369670Z adding 'torch/include/ATen/ops/to_sparse_csr_native.h' 2025-07-17T06:38:00.8370510Z adding 'torch/include/ATen/ops/to_sparse_csr_ops.h' 2025-07-17T06:38:00.8371360Z adding 'torch/include/ATen/ops/to_sparse_native.h' 2025-07-17T06:38:00.8372330Z adding 'torch/include/ATen/ops/to_sparse_ops.h' 2025-07-17T06:38:00.8373410Z adding 'torch/include/ATen/ops/topk.h' 2025-07-17T06:38:00.8374470Z adding 'torch/include/ATen/ops/topk_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8375300Z adding 'torch/include/ATen/ops/topk_cpu_dispatch.h' 2025-07-17T06:38:00.8376160Z adding 'torch/include/ATen/ops/topk_cuda_dispatch.h' 2025-07-17T06:38:00.8377000Z adding 'torch/include/ATen/ops/topk_meta.h' 2025-07-17T06:38:00.8377920Z adding 'torch/include/ATen/ops/topk_meta_dispatch.h' 2025-07-17T06:38:00.8378790Z adding 'torch/include/ATen/ops/topk_mps_dispatch.h' 2025-07-17T06:38:00.8379690Z adding 'torch/include/ATen/ops/topk_native.h' 2025-07-17T06:38:00.8380660Z adding 'torch/include/ATen/ops/topk_ops.h' 2025-07-17T06:38:00.8381530Z adding 'torch/include/ATen/ops/trace.h' 2025-07-17T06:38:00.8382490Z adding 'torch/include/ATen/ops/trace_backward.h' 2025-07-17T06:38:00.8383460Z adding 'torch/include/ATen/ops/trace_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8384220Z adding 'torch/include/ATen/ops/trace_backward_native.h' 2025-07-17T06:38:00.8385100Z adding 'torch/include/ATen/ops/trace_backward_ops.h' 2025-07-17T06:38:00.8386040Z adding 'torch/include/ATen/ops/trace_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8386840Z adding 'torch/include/ATen/ops/trace_cpu_dispatch.h' 2025-07-17T06:38:00.8387700Z adding 'torch/include/ATen/ops/trace_cuda_dispatch.h' 2025-07-17T06:38:00.8388470Z adding 'torch/include/ATen/ops/trace_mps_dispatch.h' 2025-07-17T06:38:00.8389290Z adding 'torch/include/ATen/ops/trace_native.h' 2025-07-17T06:38:00.8390240Z adding 'torch/include/ATen/ops/trace_ops.h' 2025-07-17T06:38:00.8391100Z adding 'torch/include/ATen/ops/transpose.h' 2025-07-17T06:38:00.8392050Z adding 'torch/include/ATen/ops/transpose_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8392920Z adding 'torch/include/ATen/ops/transpose_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8393740Z adding 'torch/include/ATen/ops/transpose_copy.h' 2025-07-17T06:38:00.8394680Z adding 'torch/include/ATen/ops/transpose_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8395580Z adding 'torch/include/ATen/ops/transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8396310Z adding 'torch/include/ATen/ops/transpose_copy_native.h' 2025-07-17T06:38:00.8397240Z adding 'torch/include/ATen/ops/transpose_copy_ops.h' 2025-07-17T06:38:00.8398080Z adding 'torch/include/ATen/ops/transpose_native.h' 2025-07-17T06:38:00.8399070Z adding 'torch/include/ATen/ops/transpose_ops.h' 2025-07-17T06:38:00.8399940Z adding 'torch/include/ATen/ops/trapezoid.h' 2025-07-17T06:38:00.8400890Z adding 'torch/include/ATen/ops/trapezoid_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8401640Z adding 'torch/include/ATen/ops/trapezoid_native.h' 2025-07-17T06:38:00.8402580Z adding 'torch/include/ATen/ops/trapezoid_ops.h' 2025-07-17T06:38:00.8403450Z adding 'torch/include/ATen/ops/trapz.h' 2025-07-17T06:38:00.8404410Z adding 'torch/include/ATen/ops/trapz_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8405160Z adding 'torch/include/ATen/ops/trapz_native.h' 2025-07-17T06:38:00.8406090Z adding 'torch/include/ATen/ops/trapz_ops.h' 2025-07-17T06:38:00.8407040Z adding 'torch/include/ATen/ops/triangular_solve.h' 2025-07-17T06:38:00.8408090Z adding 'torch/include/ATen/ops/triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8408880Z adding 'torch/include/ATen/ops/triangular_solve_cpu_dispatch.h' 2025-07-17T06:38:00.8409770Z adding 'torch/include/ATen/ops/triangular_solve_cuda_dispatch.h' 2025-07-17T06:38:00.8410570Z adding 'torch/include/ATen/ops/triangular_solve_meta.h' 2025-07-17T06:38:00.8411440Z adding 'torch/include/ATen/ops/triangular_solve_meta_dispatch.h' 2025-07-17T06:38:00.8412260Z adding 'torch/include/ATen/ops/triangular_solve_mps_dispatch.h' 2025-07-17T06:38:00.8413150Z adding 'torch/include/ATen/ops/triangular_solve_native.h' 2025-07-17T06:38:00.8414130Z adding 'torch/include/ATen/ops/triangular_solve_ops.h' 2025-07-17T06:38:00.8414990Z adding 'torch/include/ATen/ops/tril.h' 2025-07-17T06:38:00.8415990Z adding 'torch/include/ATen/ops/tril_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8416770Z adding 'torch/include/ATen/ops/tril_cpu_dispatch.h' 2025-07-17T06:38:00.8417620Z adding 'torch/include/ATen/ops/tril_cuda_dispatch.h' 2025-07-17T06:38:00.8418610Z adding 'torch/include/ATen/ops/tril_indices.h' 2025-07-17T06:38:00.8419560Z adding 'torch/include/ATen/ops/tril_indices_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8420400Z adding 'torch/include/ATen/ops/tril_indices_cpu_dispatch.h' 2025-07-17T06:38:00.8421250Z adding 'torch/include/ATen/ops/tril_indices_cuda_dispatch.h' 2025-07-17T06:38:00.8422080Z adding 'torch/include/ATen/ops/tril_indices_mps_dispatch.h' 2025-07-17T06:38:00.8422960Z adding 'torch/include/ATen/ops/tril_indices_native.h' 2025-07-17T06:38:00.8423980Z adding 'torch/include/ATen/ops/tril_indices_ops.h' 2025-07-17T06:38:00.8424810Z adding 'torch/include/ATen/ops/tril_meta.h' 2025-07-17T06:38:00.8425700Z adding 'torch/include/ATen/ops/tril_meta_dispatch.h' 2025-07-17T06:38:00.8426530Z adding 'torch/include/ATen/ops/tril_mps_dispatch.h' 2025-07-17T06:38:00.8427390Z adding 'torch/include/ATen/ops/tril_native.h' 2025-07-17T06:38:00.8428380Z adding 'torch/include/ATen/ops/tril_ops.h' 2025-07-17T06:38:00.8429390Z adding 'torch/include/ATen/ops/triplet_margin_loss.h' 2025-07-17T06:38:00.8430370Z adding 'torch/include/ATen/ops/triplet_margin_loss_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8431150Z adding 'torch/include/ATen/ops/triplet_margin_loss_native.h' 2025-07-17T06:38:00.8432090Z adding 'torch/include/ATen/ops/triplet_margin_loss_ops.h' 2025-07-17T06:38:00.8432970Z adding 'torch/include/ATen/ops/triu.h' 2025-07-17T06:38:00.8433980Z adding 'torch/include/ATen/ops/triu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8434770Z adding 'torch/include/ATen/ops/triu_cpu_dispatch.h' 2025-07-17T06:38:00.8435610Z adding 'torch/include/ATen/ops/triu_cuda_dispatch.h' 2025-07-17T06:38:00.8436620Z adding 'torch/include/ATen/ops/triu_indices.h' 2025-07-17T06:38:00.8437590Z adding 'torch/include/ATen/ops/triu_indices_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8438400Z adding 'torch/include/ATen/ops/triu_indices_cpu_dispatch.h' 2025-07-17T06:38:00.8439250Z adding 'torch/include/ATen/ops/triu_indices_cuda_dispatch.h' 2025-07-17T06:38:00.8440090Z adding 'torch/include/ATen/ops/triu_indices_mps_dispatch.h' 2025-07-17T06:38:00.8440930Z adding 'torch/include/ATen/ops/triu_indices_native.h' 2025-07-17T06:38:00.8441930Z adding 'torch/include/ATen/ops/triu_indices_ops.h' 2025-07-17T06:38:00.8442740Z adding 'torch/include/ATen/ops/triu_meta.h' 2025-07-17T06:38:00.8443600Z adding 'torch/include/ATen/ops/triu_meta_dispatch.h' 2025-07-17T06:38:00.8444390Z adding 'torch/include/ATen/ops/triu_mps_dispatch.h' 2025-07-17T06:38:00.8445240Z adding 'torch/include/ATen/ops/triu_native.h' 2025-07-17T06:38:00.8446200Z adding 'torch/include/ATen/ops/triu_ops.h' 2025-07-17T06:38:00.8447110Z adding 'torch/include/ATen/ops/true_divide.h' 2025-07-17T06:38:00.8448100Z adding 'torch/include/ATen/ops/true_divide_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8448880Z adding 'torch/include/ATen/ops/true_divide_native.h' 2025-07-17T06:38:00.8449940Z adding 'torch/include/ATen/ops/true_divide_ops.h' 2025-07-17T06:38:00.8450820Z adding 'torch/include/ATen/ops/trunc.h' 2025-07-17T06:38:00.8451820Z adding 'torch/include/ATen/ops/trunc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8452610Z adding 'torch/include/ATen/ops/trunc_cpu_dispatch.h' 2025-07-17T06:38:00.8453420Z adding 'torch/include/ATen/ops/trunc_cuda_dispatch.h' 2025-07-17T06:38:00.8454230Z adding 'torch/include/ATen/ops/trunc_meta.h' 2025-07-17T06:38:00.8455100Z adding 'torch/include/ATen/ops/trunc_meta_dispatch.h' 2025-07-17T06:38:00.8455920Z adding 'torch/include/ATen/ops/trunc_mps_dispatch.h' 2025-07-17T06:38:00.8456780Z adding 'torch/include/ATen/ops/trunc_native.h' 2025-07-17T06:38:00.8457730Z adding 'torch/include/ATen/ops/trunc_ops.h' 2025-07-17T06:38:00.8458570Z adding 'torch/include/ATen/ops/type_as.h' 2025-07-17T06:38:00.8459530Z adding 'torch/include/ATen/ops/type_as_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8460260Z adding 'torch/include/ATen/ops/type_as_native.h' 2025-07-17T06:38:00.8461170Z adding 'torch/include/ATen/ops/type_as_ops.h' 2025-07-17T06:38:00.8462030Z adding 'torch/include/ATen/ops/unbind.h' 2025-07-17T06:38:00.8463000Z adding 'torch/include/ATen/ops/unbind_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8463920Z adding 'torch/include/ATen/ops/unbind_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8464740Z adding 'torch/include/ATen/ops/unbind_copy.h' 2025-07-17T06:38:00.8465720Z adding 'torch/include/ATen/ops/unbind_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8466680Z adding 'torch/include/ATen/ops/unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8467370Z adding 'torch/include/ATen/ops/unbind_copy_native.h' 2025-07-17T06:38:00.8468320Z adding 'torch/include/ATen/ops/unbind_copy_ops.h' 2025-07-17T06:38:00.8469160Z adding 'torch/include/ATen/ops/unbind_native.h' 2025-07-17T06:38:00.8470100Z adding 'torch/include/ATen/ops/unbind_ops.h' 2025-07-17T06:38:00.8471090Z adding 'torch/include/ATen/ops/unflatten.h' 2025-07-17T06:38:00.8472130Z adding 'torch/include/ATen/ops/unflatten_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8472940Z adding 'torch/include/ATen/ops/unflatten_dense_tensors.h' 2025-07-17T06:38:00.8473930Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8474670Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_native.h' 2025-07-17T06:38:00.8475570Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_ops.h' 2025-07-17T06:38:00.8476390Z adding 'torch/include/ATen/ops/unflatten_native.h' 2025-07-17T06:38:00.8477360Z adding 'torch/include/ATen/ops/unflatten_ops.h' 2025-07-17T06:38:00.8478180Z adding 'torch/include/ATen/ops/unfold.h' 2025-07-17T06:38:00.8479270Z adding 'torch/include/ATen/ops/unfold_backward.h' 2025-07-17T06:38:00.8480300Z adding 'torch/include/ATen/ops/unfold_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8481490Z adding 'torch/include/ATen/ops/unfold_backward_cpu_dispatch.h' 2025-07-17T06:38:00.8482340Z adding 'torch/include/ATen/ops/unfold_backward_cuda_dispatch.h' 2025-07-17T06:38:00.8483170Z adding 'torch/include/ATen/ops/unfold_backward_mps_dispatch.h' 2025-07-17T06:38:00.8484030Z adding 'torch/include/ATen/ops/unfold_backward_native.h' 2025-07-17T06:38:00.8484980Z adding 'torch/include/ATen/ops/unfold_backward_ops.h' 2025-07-17T06:38:00.8485880Z adding 'torch/include/ATen/ops/unfold_copy.h' 2025-07-17T06:38:00.8486880Z adding 'torch/include/ATen/ops/unfold_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8487800Z adding 'torch/include/ATen/ops/unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8488550Z adding 'torch/include/ATen/ops/unfold_copy_native.h' 2025-07-17T06:38:00.8489500Z adding 'torch/include/ATen/ops/unfold_copy_ops.h' 2025-07-17T06:38:00.8490370Z adding 'torch/include/ATen/ops/unfold_cpu_dispatch.h' 2025-07-17T06:38:00.8491170Z adding 'torch/include/ATen/ops/unfold_cuda_dispatch.h' 2025-07-17T06:38:00.8492000Z adding 'torch/include/ATen/ops/unfold_meta_dispatch.h' 2025-07-17T06:38:00.8492800Z adding 'torch/include/ATen/ops/unfold_mps_dispatch.h' 2025-07-17T06:38:00.8493650Z adding 'torch/include/ATen/ops/unfold_native.h' 2025-07-17T06:38:00.8494620Z adding 'torch/include/ATen/ops/unfold_ops.h' 2025-07-17T06:38:00.8495510Z adding 'torch/include/ATen/ops/uniform.h' 2025-07-17T06:38:00.8496560Z adding 'torch/include/ATen/ops/uniform_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8497380Z adding 'torch/include/ATen/ops/uniform_cpu_dispatch.h' 2025-07-17T06:38:00.8498230Z adding 'torch/include/ATen/ops/uniform_cuda_dispatch.h' 2025-07-17T06:38:00.8499040Z adding 'torch/include/ATen/ops/uniform_meta_dispatch.h' 2025-07-17T06:38:00.8499850Z adding 'torch/include/ATen/ops/uniform_mps_dispatch.h' 2025-07-17T06:38:00.8500730Z adding 'torch/include/ATen/ops/uniform_native.h' 2025-07-17T06:38:00.8501750Z adding 'torch/include/ATen/ops/uniform_ops.h' 2025-07-17T06:38:00.8502750Z adding 'torch/include/ATen/ops/unique_consecutive.h' 2025-07-17T06:38:00.8503810Z adding 'torch/include/ATen/ops/unique_consecutive_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8504660Z adding 'torch/include/ATen/ops/unique_consecutive_cpu_dispatch.h' 2025-07-17T06:38:00.8505550Z adding 'torch/include/ATen/ops/unique_consecutive_cuda_dispatch.h' 2025-07-17T06:38:00.8506380Z adding 'torch/include/ATen/ops/unique_consecutive_mps_dispatch.h' 2025-07-17T06:38:00.8507270Z adding 'torch/include/ATen/ops/unique_consecutive_native.h' 2025-07-17T06:38:00.8508290Z adding 'torch/include/ATen/ops/unique_consecutive_ops.h' 2025-07-17T06:38:00.8509230Z adding 'torch/include/ATen/ops/unique_dim.h' 2025-07-17T06:38:00.8510230Z adding 'torch/include/ATen/ops/unique_dim_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8511140Z adding 'torch/include/ATen/ops/unique_dim_consecutive.h' 2025-07-17T06:38:00.8512140Z adding 'torch/include/ATen/ops/unique_dim_consecutive_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8512970Z adding 'torch/include/ATen/ops/unique_dim_consecutive_cpu_dispatch.h' 2025-07-17T06:38:00.8513790Z adding 'torch/include/ATen/ops/unique_dim_consecutive_cuda_dispatch.h' 2025-07-17T06:38:00.8514600Z adding 'torch/include/ATen/ops/unique_dim_consecutive_mps_dispatch.h' 2025-07-17T06:38:00.8515470Z adding 'torch/include/ATen/ops/unique_dim_consecutive_native.h' 2025-07-17T06:38:00.8516460Z adding 'torch/include/ATen/ops/unique_dim_consecutive_ops.h' 2025-07-17T06:38:00.8517360Z adding 'torch/include/ATen/ops/unique_dim_cpu_dispatch.h' 2025-07-17T06:38:00.8518190Z adding 'torch/include/ATen/ops/unique_dim_cuda_dispatch.h' 2025-07-17T06:38:00.8519060Z adding 'torch/include/ATen/ops/unique_dim_native.h' 2025-07-17T06:38:00.8520050Z adding 'torch/include/ATen/ops/unique_dim_ops.h' 2025-07-17T06:38:00.8520930Z adding 'torch/include/ATen/ops/unsafe_chunk.h' 2025-07-17T06:38:00.8521890Z adding 'torch/include/ATen/ops/unsafe_chunk_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8522630Z adding 'torch/include/ATen/ops/unsafe_chunk_native.h' 2025-07-17T06:38:00.8523540Z adding 'torch/include/ATen/ops/unsafe_chunk_ops.h' 2025-07-17T06:38:00.8524560Z adding 'torch/include/ATen/ops/unsafe_split.h' 2025-07-17T06:38:00.8525600Z adding 'torch/include/ATen/ops/unsafe_split_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8526370Z adding 'torch/include/ATen/ops/unsafe_split_native.h' 2025-07-17T06:38:00.8527380Z adding 'torch/include/ATen/ops/unsafe_split_ops.h' 2025-07-17T06:38:00.8528470Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes.h' 2025-07-17T06:38:00.8529510Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8530280Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_native.h' 2025-07-17T06:38:00.8531240Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_ops.h' 2025-07-17T06:38:00.8532100Z adding 'torch/include/ATen/ops/unsqueeze.h' 2025-07-17T06:38:00.8533060Z adding 'torch/include/ATen/ops/unsqueeze_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8533860Z adding 'torch/include/ATen/ops/unsqueeze_copy.h' 2025-07-17T06:38:00.8534850Z adding 'torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8535830Z adding 'torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8536510Z adding 'torch/include/ATen/ops/unsqueeze_copy_native.h' 2025-07-17T06:38:00.8537440Z adding 'torch/include/ATen/ops/unsqueeze_copy_ops.h' 2025-07-17T06:38:00.8538280Z adding 'torch/include/ATen/ops/unsqueeze_native.h' 2025-07-17T06:38:00.8539230Z adding 'torch/include/ATen/ops/unsqueeze_ops.h' 2025-07-17T06:38:00.8540490Z adding 'torch/include/ATen/ops/upsample_bicubic2d.h' 2025-07-17T06:38:00.8541780Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward.h' 2025-07-17T06:38:00.8542870Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8543740Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_cpu_dispatch.h' 2025-07-17T06:38:00.8544670Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_cuda_dispatch.h' 2025-07-17T06:38:00.8545550Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_meta.h' 2025-07-17T06:38:00.8546490Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_meta_dispatch.h' 2025-07-17T06:38:00.8547400Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_mps_dispatch.h' 2025-07-17T06:38:00.8548280Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_native.h' 2025-07-17T06:38:00.8549270Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_ops.h' 2025-07-17T06:38:00.8550290Z adding 'torch/include/ATen/ops/upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8551140Z adding 'torch/include/ATen/ops/upsample_bicubic2d_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8552000Z adding 'torch/include/ATen/ops/upsample_bicubic2d_cpu_dispatch.h' 2025-07-17T06:38:00.8552940Z adding 'torch/include/ATen/ops/upsample_bicubic2d_cuda_dispatch.h' 2025-07-17T06:38:00.8553770Z adding 'torch/include/ATen/ops/upsample_bicubic2d_meta.h' 2025-07-17T06:38:00.8554660Z adding 'torch/include/ATen/ops/upsample_bicubic2d_meta_dispatch.h' 2025-07-17T06:38:00.8555530Z adding 'torch/include/ATen/ops/upsample_bicubic2d_mps_dispatch.h' 2025-07-17T06:38:00.8556410Z adding 'torch/include/ATen/ops/upsample_bicubic2d_native.h' 2025-07-17T06:38:00.8557470Z adding 'torch/include/ATen/ops/upsample_bicubic2d_ops.h' 2025-07-17T06:38:00.8559090Z adding 'torch/include/ATen/ops/upsample_bilinear2d.h' 2025-07-17T06:38:00.8560220Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward.h' 2025-07-17T06:38:00.8561280Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8562130Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_cpu_dispatch.h' 2025-07-17T06:38:00.8563040Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_cuda_dispatch.h' 2025-07-17T06:38:00.8563900Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_meta.h' 2025-07-17T06:38:00.8564820Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_meta_dispatch.h' 2025-07-17T06:38:00.8565710Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_mps_dispatch.h' 2025-07-17T06:38:00.8566590Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_native.h' 2025-07-17T06:38:00.8567610Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_ops.h' 2025-07-17T06:38:00.8568580Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8569520Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8570350Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8571200Z adding 'torch/include/ATen/ops/upsample_bilinear2d_cpu_dispatch.h' 2025-07-17T06:38:00.8572090Z adding 'torch/include/ATen/ops/upsample_bilinear2d_cuda_dispatch.h' 2025-07-17T06:38:00.8572960Z adding 'torch/include/ATen/ops/upsample_bilinear2d_meta.h' 2025-07-17T06:38:00.8573920Z adding 'torch/include/ATen/ops/upsample_bilinear2d_meta_dispatch.h' 2025-07-17T06:38:00.8574770Z adding 'torch/include/ATen/ops/upsample_bilinear2d_mps_dispatch.h' 2025-07-17T06:38:00.8575710Z adding 'torch/include/ATen/ops/upsample_bilinear2d_native.h' 2025-07-17T06:38:00.8576860Z adding 'torch/include/ATen/ops/upsample_bilinear2d_ops.h' 2025-07-17T06:38:00.8578100Z adding 'torch/include/ATen/ops/upsample_linear1d.h' 2025-07-17T06:38:00.8579300Z adding 'torch/include/ATen/ops/upsample_linear1d_backward.h' 2025-07-17T06:38:00.8580400Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8581260Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_cpu_dispatch.h' 2025-07-17T06:38:00.8582130Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_cuda_dispatch.h' 2025-07-17T06:38:00.8582980Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_meta.h' 2025-07-17T06:38:00.8583860Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_meta_dispatch.h' 2025-07-17T06:38:00.8584710Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_mps_dispatch.h' 2025-07-17T06:38:00.8585610Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_native.h' 2025-07-17T06:38:00.8586610Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_ops.h' 2025-07-17T06:38:00.8587610Z adding 'torch/include/ATen/ops/upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8588430Z adding 'torch/include/ATen/ops/upsample_linear1d_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8589300Z adding 'torch/include/ATen/ops/upsample_linear1d_cpu_dispatch.h' 2025-07-17T06:38:00.8590150Z adding 'torch/include/ATen/ops/upsample_linear1d_cuda_dispatch.h' 2025-07-17T06:38:00.8591020Z adding 'torch/include/ATen/ops/upsample_linear1d_meta.h' 2025-07-17T06:38:00.8591930Z adding 'torch/include/ATen/ops/upsample_linear1d_meta_dispatch.h' 2025-07-17T06:38:00.8592760Z adding 'torch/include/ATen/ops/upsample_linear1d_mps_dispatch.h' 2025-07-17T06:38:00.8593660Z adding 'torch/include/ATen/ops/upsample_linear1d_native.h' 2025-07-17T06:38:00.8594690Z adding 'torch/include/ATen/ops/upsample_linear1d_ops.h' 2025-07-17T06:38:00.8595870Z adding 'torch/include/ATen/ops/upsample_nearest1d.h' 2025-07-17T06:38:00.8597060Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward.h' 2025-07-17T06:38:00.8598150Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8598960Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_cpu_dispatch.h' 2025-07-17T06:38:00.8599870Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_cuda_dispatch.h' 2025-07-17T06:38:00.8600730Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_meta.h' 2025-07-17T06:38:00.8601680Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_meta_dispatch.h' 2025-07-17T06:38:00.8602570Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_mps_dispatch.h' 2025-07-17T06:38:00.8603500Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_native.h' 2025-07-17T06:38:00.8604510Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_ops.h' 2025-07-17T06:38:00.8605560Z adding 'torch/include/ATen/ops/upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8606430Z adding 'torch/include/ATen/ops/upsample_nearest1d_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8607300Z adding 'torch/include/ATen/ops/upsample_nearest1d_cpu_dispatch.h' 2025-07-17T06:38:00.8608190Z adding 'torch/include/ATen/ops/upsample_nearest1d_cuda_dispatch.h' 2025-07-17T06:38:00.8609080Z adding 'torch/include/ATen/ops/upsample_nearest1d_meta.h' 2025-07-17T06:38:00.8609980Z adding 'torch/include/ATen/ops/upsample_nearest1d_meta_dispatch.h' 2025-07-17T06:38:00.8610830Z adding 'torch/include/ATen/ops/upsample_nearest1d_mps_dispatch.h' 2025-07-17T06:38:00.8611770Z adding 'torch/include/ATen/ops/upsample_nearest1d_native.h' 2025-07-17T06:38:00.8612810Z adding 'torch/include/ATen/ops/upsample_nearest1d_ops.h' 2025-07-17T06:38:00.8614460Z adding 'torch/include/ATen/ops/upsample_nearest2d.h' 2025-07-17T06:38:00.8615530Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward.h' 2025-07-17T06:38:00.8616650Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8617510Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_cpu_dispatch.h' 2025-07-17T06:38:00.8618460Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_cuda_dispatch.h' 2025-07-17T06:38:00.8619370Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_meta.h' 2025-07-17T06:38:00.8620370Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_meta_dispatch.h' 2025-07-17T06:38:00.8621280Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_mps_dispatch.h' 2025-07-17T06:38:00.8622180Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_native.h' 2025-07-17T06:38:00.8623180Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_ops.h' 2025-07-17T06:38:00.8624150Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8625070Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8625910Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8626760Z adding 'torch/include/ATen/ops/upsample_nearest2d_cpu_dispatch.h' 2025-07-17T06:38:00.8627630Z adding 'torch/include/ATen/ops/upsample_nearest2d_cuda_dispatch.h' 2025-07-17T06:38:00.8628560Z adding 'torch/include/ATen/ops/upsample_nearest2d_meta.h' 2025-07-17T06:38:00.8629470Z adding 'torch/include/ATen/ops/upsample_nearest2d_meta_dispatch.h' 2025-07-17T06:38:00.8630340Z adding 'torch/include/ATen/ops/upsample_nearest2d_mps_dispatch.h' 2025-07-17T06:38:00.8631320Z adding 'torch/include/ATen/ops/upsample_nearest2d_native.h' 2025-07-17T06:38:00.8632380Z adding 'torch/include/ATen/ops/upsample_nearest2d_ops.h' 2025-07-17T06:38:00.8633630Z adding 'torch/include/ATen/ops/upsample_nearest3d.h' 2025-07-17T06:38:00.8634930Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward.h' 2025-07-17T06:38:00.8636020Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8636900Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_cpu_dispatch.h' 2025-07-17T06:38:00.8637840Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_cuda_dispatch.h' 2025-07-17T06:38:00.8638690Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_meta.h' 2025-07-17T06:38:00.8639710Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_meta_dispatch.h' 2025-07-17T06:38:00.8640600Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_mps_dispatch.h' 2025-07-17T06:38:00.8641500Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_native.h' 2025-07-17T06:38:00.8642540Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_ops.h' 2025-07-17T06:38:00.8643560Z adding 'torch/include/ATen/ops/upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8644360Z adding 'torch/include/ATen/ops/upsample_nearest3d_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8645250Z adding 'torch/include/ATen/ops/upsample_nearest3d_cpu_dispatch.h' 2025-07-17T06:38:00.8646160Z adding 'torch/include/ATen/ops/upsample_nearest3d_cuda_dispatch.h' 2025-07-17T06:38:00.8646980Z adding 'torch/include/ATen/ops/upsample_nearest3d_meta.h' 2025-07-17T06:38:00.8647880Z adding 'torch/include/ATen/ops/upsample_nearest3d_meta_dispatch.h' 2025-07-17T06:38:00.8648760Z adding 'torch/include/ATen/ops/upsample_nearest3d_mps_dispatch.h' 2025-07-17T06:38:00.8649690Z adding 'torch/include/ATen/ops/upsample_nearest3d_native.h' 2025-07-17T06:38:00.8650740Z adding 'torch/include/ATen/ops/upsample_nearest3d_ops.h' 2025-07-17T06:38:00.8652060Z adding 'torch/include/ATen/ops/upsample_trilinear3d.h' 2025-07-17T06:38:00.8653340Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward.h' 2025-07-17T06:38:00.8654510Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8655350Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_cpu_dispatch.h' 2025-07-17T06:38:00.8656290Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_cuda_dispatch.h' 2025-07-17T06:38:00.8657160Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_meta.h' 2025-07-17T06:38:00.8658110Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_meta_dispatch.h' 2025-07-17T06:38:00.8659020Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_mps_dispatch.h' 2025-07-17T06:38:00.8659940Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_native.h' 2025-07-17T06:38:00.8660950Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_ops.h' 2025-07-17T06:38:00.8662040Z adding 'torch/include/ATen/ops/upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8662880Z adding 'torch/include/ATen/ops/upsample_trilinear3d_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8663770Z adding 'torch/include/ATen/ops/upsample_trilinear3d_cpu_dispatch.h' 2025-07-17T06:38:00.8664690Z adding 'torch/include/ATen/ops/upsample_trilinear3d_cuda_dispatch.h' 2025-07-17T06:38:00.8665540Z adding 'torch/include/ATen/ops/upsample_trilinear3d_meta.h' 2025-07-17T06:38:00.8666530Z adding 'torch/include/ATen/ops/upsample_trilinear3d_meta_dispatch.h' 2025-07-17T06:38:00.8667450Z adding 'torch/include/ATen/ops/upsample_trilinear3d_mps_dispatch.h' 2025-07-17T06:38:00.8668430Z adding 'torch/include/ATen/ops/upsample_trilinear3d_native.h' 2025-07-17T06:38:00.8670560Z adding 'torch/include/ATen/ops/upsample_trilinear3d_ops.h' 2025-07-17T06:38:00.8671320Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward.h' 2025-07-17T06:38:00.8672360Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8673130Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_native.h' 2025-07-17T06:38:00.8674080Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_ops.h' 2025-07-17T06:38:00.8674840Z adding 'torch/include/ATen/ops/values.h' 2025-07-17T06:38:00.8675820Z adding 'torch/include/ATen/ops/values_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8676660Z adding 'torch/include/ATen/ops/values_copy.h' 2025-07-17T06:38:00.8677680Z adding 'torch/include/ATen/ops/values_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8678630Z adding 'torch/include/ATen/ops/values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8679380Z adding 'torch/include/ATen/ops/values_copy_native.h' 2025-07-17T06:38:00.8680330Z adding 'torch/include/ATen/ops/values_copy_ops.h' 2025-07-17T06:38:00.8681150Z adding 'torch/include/ATen/ops/values_native.h' 2025-07-17T06:38:00.8682040Z adding 'torch/include/ATen/ops/values_ops.h' 2025-07-17T06:38:00.8682890Z adding 'torch/include/ATen/ops/vander.h' 2025-07-17T06:38:00.8683870Z adding 'torch/include/ATen/ops/vander_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8684630Z adding 'torch/include/ATen/ops/vander_native.h' 2025-07-17T06:38:00.8685610Z adding 'torch/include/ATen/ops/vander_ops.h' 2025-07-17T06:38:00.8686710Z adding 'torch/include/ATen/ops/var.h' 2025-07-17T06:38:00.8687770Z adding 'torch/include/ATen/ops/var_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8688610Z adding 'torch/include/ATen/ops/var_cpu_dispatch.h' 2025-07-17T06:38:00.8689460Z adding 'torch/include/ATen/ops/var_cuda_dispatch.h' 2025-07-17T06:38:00.8690490Z adding 'torch/include/ATen/ops/var_mean.h' 2025-07-17T06:38:00.8691490Z adding 'torch/include/ATen/ops/var_mean_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8692370Z adding 'torch/include/ATen/ops/var_mean_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8693200Z adding 'torch/include/ATen/ops/var_mean_cpu_dispatch.h' 2025-07-17T06:38:00.8694090Z adding 'torch/include/ATen/ops/var_mean_cuda_dispatch.h' 2025-07-17T06:38:00.8694860Z adding 'torch/include/ATen/ops/var_mean_mps_dispatch.h' 2025-07-17T06:38:00.8695760Z adding 'torch/include/ATen/ops/var_mean_native.h' 2025-07-17T06:38:00.8696950Z adding 'torch/include/ATen/ops/var_mean_ops.h' 2025-07-17T06:38:00.8697860Z adding 'torch/include/ATen/ops/var_mps_dispatch.h' 2025-07-17T06:38:00.8699200Z adding 'torch/include/ATen/ops/var_native.h' 2025-07-17T06:38:00.8700490Z adding 'torch/include/ATen/ops/var_ops.h' 2025-07-17T06:38:00.8701390Z adding 'torch/include/ATen/ops/vdot.h' 2025-07-17T06:38:00.8702350Z adding 'torch/include/ATen/ops/vdot_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8703140Z adding 'torch/include/ATen/ops/vdot_cpu_dispatch.h' 2025-07-17T06:38:00.8703970Z adding 'torch/include/ATen/ops/vdot_cuda_dispatch.h' 2025-07-17T06:38:00.8704810Z adding 'torch/include/ATen/ops/vdot_native.h' 2025-07-17T06:38:00.8710580Z adding 'torch/include/ATen/ops/vdot_ops.h' 2025-07-17T06:38:00.8710780Z adding 'torch/include/ATen/ops/view.h' 2025-07-17T06:38:00.8710880Z adding 'torch/include/ATen/ops/view_as.h' 2025-07-17T06:38:00.8711010Z adding 'torch/include/ATen/ops/view_as_complex.h' 2025-07-17T06:38:00.8711100Z adding 'torch/include/ATen/ops/view_as_complex_copy.h' 2025-07-17T06:38:00.8711300Z adding 'torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8711520Z adding 'torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8711640Z adding 'torch/include/ATen/ops/view_as_complex_copy_native.h' 2025-07-17T06:38:00.8712540Z adding 'torch/include/ATen/ops/view_as_complex_copy_ops.h' 2025-07-17T06:38:00.8713410Z adding 'torch/include/ATen/ops/view_as_complex_cpu_dispatch.h' 2025-07-17T06:38:00.8714220Z adding 'torch/include/ATen/ops/view_as_complex_cuda_dispatch.h' 2025-07-17T06:38:00.8715000Z adding 'torch/include/ATen/ops/view_as_complex_meta_dispatch.h' 2025-07-17T06:38:00.8715830Z adding 'torch/include/ATen/ops/view_as_complex_mps_dispatch.h' 2025-07-17T06:38:00.8716620Z adding 'torch/include/ATen/ops/view_as_complex_native.h' 2025-07-17T06:38:00.8717520Z adding 'torch/include/ATen/ops/view_as_complex_ops.h' 2025-07-17T06:38:00.8718430Z adding 'torch/include/ATen/ops/view_as_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8719180Z adding 'torch/include/ATen/ops/view_as_native.h' 2025-07-17T06:38:00.8720060Z adding 'torch/include/ATen/ops/view_as_ops.h' 2025-07-17T06:38:00.8721020Z adding 'torch/include/ATen/ops/view_as_real.h' 2025-07-17T06:38:00.8726320Z adding 'torch/include/ATen/ops/view_as_real_copy.h' 2025-07-17T06:38:00.8727490Z adding 'torch/include/ATen/ops/view_as_real_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8728560Z adding 'torch/include/ATen/ops/view_as_real_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8729390Z adding 'torch/include/ATen/ops/view_as_real_copy_native.h' 2025-07-17T06:38:00.8730710Z adding 'torch/include/ATen/ops/view_as_real_copy_ops.h' 2025-07-17T06:38:00.8731660Z adding 'torch/include/ATen/ops/view_as_real_cpu_dispatch.h' 2025-07-17T06:38:00.8732530Z adding 'torch/include/ATen/ops/view_as_real_cuda_dispatch.h' 2025-07-17T06:38:00.8733380Z adding 'torch/include/ATen/ops/view_as_real_meta_dispatch.h' 2025-07-17T06:38:00.8734440Z adding 'torch/include/ATen/ops/view_as_real_mps_dispatch.h' 2025-07-17T06:38:00.8735310Z adding 'torch/include/ATen/ops/view_as_real_native.h' 2025-07-17T06:38:00.8736240Z adding 'torch/include/ATen/ops/view_as_real_ops.h' 2025-07-17T06:38:00.8737210Z adding 'torch/include/ATen/ops/view_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8738520Z adding 'torch/include/ATen/ops/view_copy.h' 2025-07-17T06:38:00.8739590Z adding 'torch/include/ATen/ops/view_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8740520Z adding 'torch/include/ATen/ops/view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8741290Z adding 'torch/include/ATen/ops/view_copy_native.h' 2025-07-17T06:38:00.8742580Z adding 'torch/include/ATen/ops/view_copy_ops.h' 2025-07-17T06:38:00.8743450Z adding 'torch/include/ATen/ops/view_cpu_dispatch.h' 2025-07-17T06:38:00.8744290Z adding 'torch/include/ATen/ops/view_cuda_dispatch.h' 2025-07-17T06:38:00.8745140Z adding 'torch/include/ATen/ops/view_meta_dispatch.h' 2025-07-17T06:38:00.8746180Z adding 'torch/include/ATen/ops/view_mps_dispatch.h' 2025-07-17T06:38:00.8747070Z adding 'torch/include/ATen/ops/view_native.h' 2025-07-17T06:38:00.8748040Z adding 'torch/include/ATen/ops/view_ops.h' 2025-07-17T06:38:00.8748970Z adding 'torch/include/ATen/ops/vsplit.h' 2025-07-17T06:38:00.8750200Z adding 'torch/include/ATen/ops/vsplit_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8751000Z adding 'torch/include/ATen/ops/vsplit_native.h' 2025-07-17T06:38:00.8751990Z adding 'torch/include/ATen/ops/vsplit_ops.h' 2025-07-17T06:38:00.8752920Z adding 'torch/include/ATen/ops/vstack.h' 2025-07-17T06:38:00.8754130Z adding 'torch/include/ATen/ops/vstack_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8754940Z adding 'torch/include/ATen/ops/vstack_native.h' 2025-07-17T06:38:00.8755910Z adding 'torch/include/ATen/ops/vstack_ops.h' 2025-07-17T06:38:00.8756980Z adding 'torch/include/ATen/ops/where.h' 2025-07-17T06:38:00.8758220Z adding 'torch/include/ATen/ops/where_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8759100Z adding 'torch/include/ATen/ops/where_cpu_dispatch.h' 2025-07-17T06:38:00.8760010Z adding 'torch/include/ATen/ops/where_cuda_dispatch.h' 2025-07-17T06:38:00.8760870Z adding 'torch/include/ATen/ops/where_mps_dispatch.h' 2025-07-17T06:38:00.8761950Z adding 'torch/include/ATen/ops/where_native.h' 2025-07-17T06:38:00.8763160Z adding 'torch/include/ATen/ops/where_ops.h' 2025-07-17T06:38:00.8764200Z adding 'torch/include/ATen/ops/xlogy.h' 2025-07-17T06:38:00.8765270Z adding 'torch/include/ATen/ops/xlogy_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8766380Z adding 'torch/include/ATen/ops/xlogy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T06:38:00.8767160Z adding 'torch/include/ATen/ops/xlogy_cpu_dispatch.h' 2025-07-17T06:38:00.8767990Z adding 'torch/include/ATen/ops/xlogy_cuda_dispatch.h' 2025-07-17T06:38:00.8768870Z adding 'torch/include/ATen/ops/xlogy_meta.h' 2025-07-17T06:38:00.8770010Z adding 'torch/include/ATen/ops/xlogy_meta_dispatch.h' 2025-07-17T06:38:00.8770880Z adding 'torch/include/ATen/ops/xlogy_mps_dispatch.h' 2025-07-17T06:38:00.8771840Z adding 'torch/include/ATen/ops/xlogy_native.h' 2025-07-17T06:38:00.8773020Z adding 'torch/include/ATen/ops/xlogy_ops.h' 2025-07-17T06:38:00.8774200Z adding 'torch/include/ATen/ops/xor.h' 2025-07-17T06:38:00.8775190Z adding 'torch/include/ATen/ops/xor_compositeimplicitautograd_dispatch.h' 2025-07-17T06:38:00.8775980Z adding 'torch/include/ATen/ops/xor_native.h' 2025-07-17T06:38:00.8777020Z adding 'torch/include/ATen/ops/xor_ops.h' 2025-07-17T06:38:00.8778180Z adding 'torch/include/ATen/ops/zero.h' 2025-07-17T06:38:00.8779160Z adding 'torch/include/ATen/ops/zero_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8779940Z adding 'torch/include/ATen/ops/zero_cpu_dispatch.h' 2025-07-17T06:38:00.8780780Z adding 'torch/include/ATen/ops/zero_cuda_dispatch.h' 2025-07-17T06:38:00.8781820Z adding 'torch/include/ATen/ops/zero_meta_dispatch.h' 2025-07-17T06:38:00.8782660Z adding 'torch/include/ATen/ops/zero_mps_dispatch.h' 2025-07-17T06:38:00.8783510Z adding 'torch/include/ATen/ops/zero_native.h' 2025-07-17T06:38:00.8784500Z adding 'torch/include/ATen/ops/zero_ops.h' 2025-07-17T06:38:00.8786450Z adding 'torch/include/ATen/ops/zeros.h' 2025-07-17T06:38:00.8787160Z adding 'torch/include/ATen/ops/zeros_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8788100Z adding 'torch/include/ATen/ops/zeros_like.h' 2025-07-17T06:38:00.8789150Z adding 'torch/include/ATen/ops/zeros_like_compositeexplicitautograd_dispatch.h' 2025-07-17T06:38:00.8790330Z adding 'torch/include/ATen/ops/zeros_like_compositeimplicitautogradnestedtensor_dispatch.h' 2025-07-17T06:38:00.8791180Z adding 'torch/include/ATen/ops/zeros_like_native.h' 2025-07-17T06:38:00.8792140Z adding 'torch/include/ATen/ops/zeros_like_ops.h' 2025-07-17T06:38:00.8793040Z adding 'torch/include/ATen/ops/zeros_native.h' 2025-07-17T06:38:00.8794370Z adding 'torch/include/ATen/ops/zeros_ops.h' 2025-07-17T06:38:00.8797310Z adding 'torch/include/ATen/quantized/QTensorImpl.h' 2025-07-17T06:38:00.8799440Z adding 'torch/include/ATen/quantized/Quantizer.h' 2025-07-17T06:38:00.8800460Z adding 'torch/include/ATen/xpu/CachingHostAllocator.h' 2025-07-17T06:38:00.8801540Z adding 'torch/include/ATen/xpu/PinnedMemoryAllocator.h' 2025-07-17T06:38:00.8802390Z adding 'torch/include/ATen/xpu/XPUContext.h' 2025-07-17T06:38:00.8803210Z adding 'torch/include/ATen/xpu/XPUDevice.h' 2025-07-17T06:38:00.8805140Z adding 'torch/include/ATen/xpu/XPUEvent.h' 2025-07-17T06:38:00.8806020Z adding 'torch/include/ATen/xpu/XPUGeneratorImpl.h' 2025-07-17T06:38:00.8807240Z adding 'torch/include/ATen/xpu/detail/XPUHooks.h' 2025-07-17T06:38:00.8811960Z adding 'torch/include/c10/core/Allocator.h' 2025-07-17T06:38:00.8812760Z adding 'torch/include/c10/core/AutogradState.h' 2025-07-17T06:38:00.8815300Z adding 'torch/include/c10/core/Backend.h' 2025-07-17T06:38:00.8816130Z adding 'torch/include/c10/core/CPUAllocator.h' 2025-07-17T06:38:00.8817740Z adding 'torch/include/c10/core/CachingDeviceAllocator.h' 2025-07-17T06:38:00.8818670Z adding 'torch/include/c10/core/CompileTimeFunctionPointer.h' 2025-07-17T06:38:00.8820100Z adding 'torch/include/c10/core/ConstantSymNodeImpl.h' 2025-07-17T06:38:00.8821890Z adding 'torch/include/c10/core/Contiguity.h' 2025-07-17T06:38:00.8822750Z adding 'torch/include/c10/core/CopyBytes.h' 2025-07-17T06:38:00.8823590Z adding 'torch/include/c10/core/DefaultDtype.h' 2025-07-17T06:38:00.8824760Z adding 'torch/include/c10/core/DefaultTensorOptions.h' 2025-07-17T06:38:00.8826940Z adding 'torch/include/c10/core/Device.h' 2025-07-17T06:38:00.8827950Z adding 'torch/include/c10/core/DeviceArray.h' 2025-07-17T06:38:00.8830680Z adding 'torch/include/c10/core/DeviceGuard.h' 2025-07-17T06:38:00.8832120Z adding 'torch/include/c10/core/DeviceType.h' 2025-07-17T06:38:00.8840160Z adding 'torch/include/c10/core/DispatchKey.h' 2025-07-17T06:38:00.8849830Z adding 'torch/include/c10/core/DispatchKeySet.h' 2025-07-17T06:38:00.8851580Z adding 'torch/include/c10/core/DynamicCast.h' 2025-07-17T06:38:00.8853300Z adding 'torch/include/c10/core/Event.h' 2025-07-17T06:38:00.8854700Z adding 'torch/include/c10/core/GeneratorImpl.h' 2025-07-17T06:38:00.8855720Z adding 'torch/include/c10/core/GradMode.h' 2025-07-17T06:38:00.8857360Z adding 'torch/include/c10/core/InferenceMode.h' 2025-07-17T06:38:00.8858240Z adding 'torch/include/c10/core/Layout.h' 2025-07-17T06:38:00.8860830Z adding 'torch/include/c10/core/MemoryFormat.h' 2025-07-17T06:38:00.8861470Z adding 'torch/include/c10/core/OptionalRef.h' 2025-07-17T06:38:00.8862830Z adding 'torch/include/c10/core/PyHandleCache.h' 2025-07-17T06:38:00.8863730Z adding 'torch/include/c10/core/QEngine.h' 2025-07-17T06:38:00.8864710Z adding 'torch/include/c10/core/QScheme.h' 2025-07-17T06:38:00.8865870Z adding 'torch/include/c10/core/RefcountedDeleter.h' 2025-07-17T06:38:00.8867160Z adding 'torch/include/c10/core/SafePyObject.h' 2025-07-17T06:38:00.8870380Z adding 'torch/include/c10/core/Scalar.h' 2025-07-17T06:38:00.8874850Z adding 'torch/include/c10/core/ScalarType.h' 2025-07-17T06:38:00.8875640Z adding 'torch/include/c10/core/ScalarTypeToTypeMeta.h' 2025-07-17T06:38:00.8877640Z adding 'torch/include/c10/core/Storage.h' 2025-07-17T06:38:00.8880240Z adding 'torch/include/c10/core/StorageImpl.h' 2025-07-17T06:38:00.8882290Z adding 'torch/include/c10/core/Stream.h' 2025-07-17T06:38:00.8883690Z adding 'torch/include/c10/core/StreamGuard.h' 2025-07-17T06:38:00.8885050Z adding 'torch/include/c10/core/SymBool.h' 2025-07-17T06:38:00.8886330Z adding 'torch/include/c10/core/SymFloat.h' 2025-07-17T06:38:00.8889710Z adding 'torch/include/c10/core/SymInt.h' 2025-07-17T06:38:00.8890680Z adding 'torch/include/c10/core/SymIntArrayRef.h' 2025-07-17T06:38:00.8892650Z adding 'torch/include/c10/core/SymNodeImpl.h' 2025-07-17T06:38:00.8893920Z adding 'torch/include/c10/core/SymbolicShapeMeta.h' 2025-07-17T06:38:00.8920360Z adding 'torch/include/c10/core/TensorImpl.h' 2025-07-17T06:38:00.8926430Z adding 'torch/include/c10/core/TensorOptions.h' 2025-07-17T06:38:00.8927340Z adding 'torch/include/c10/core/UndefinedTensorImpl.h' 2025-07-17T06:38:00.8928360Z adding 'torch/include/c10/core/WrapDimMinimal.h' 2025-07-17T06:38:00.8929250Z adding 'torch/include/c10/core/alignment.h' 2025-07-17T06:38:00.8930500Z adding 'torch/include/c10/core/thread_pool.h' 2025-07-17T06:38:00.8932420Z adding 'torch/include/c10/core/impl/COW.h' 2025-07-17T06:38:00.8933330Z adding 'torch/include/c10/core/impl/COWDeleter.h' 2025-07-17T06:38:00.8936900Z adding 'torch/include/c10/core/impl/DeviceGuardImplInterface.h' 2025-07-17T06:38:00.8937890Z adding 'torch/include/c10/core/impl/FakeGuardImpl.h' 2025-07-17T06:38:00.8938820Z adding 'torch/include/c10/core/impl/GPUTrace.h' 2025-07-17T06:38:00.8940080Z adding 'torch/include/c10/core/impl/HermeticPyObjectTLS.h' 2025-07-17T06:38:00.8943750Z adding 'torch/include/c10/core/impl/InlineDeviceGuard.h' 2025-07-17T06:38:00.8944930Z adding 'torch/include/c10/core/impl/InlineEvent.h' 2025-07-17T06:38:00.8947590Z adding 'torch/include/c10/core/impl/InlineStreamGuard.h' 2025-07-17T06:38:00.8949050Z adding 'torch/include/c10/core/impl/LocalDispatchKeySet.h' 2025-07-17T06:38:00.8951990Z adding 'torch/include/c10/core/impl/PyInterpreter.h' 2025-07-17T06:38:00.8954030Z adding 'torch/include/c10/core/impl/PyObjectSlot.h' 2025-07-17T06:38:00.8954560Z adding 'torch/include/c10/core/impl/PythonDispatcherTLS.h' 2025-07-17T06:38:00.8956780Z adding 'torch/include/c10/core/impl/SizesAndStrides.h' 2025-07-17T06:38:00.8957660Z adding 'torch/include/c10/core/impl/TorchDispatchModeTLS.h' 2025-07-17T06:38:00.8958860Z adding 'torch/include/c10/core/impl/VirtualGuardImpl.h' 2025-07-17T06:38:00.8959710Z adding 'torch/include/c10/core/impl/alloc_cpu.h' 2025-07-17T06:38:00.8961040Z adding 'torch/include/c10/cuda/CUDAAlgorithm.h' 2025-07-17T06:38:00.8962650Z adding 'torch/include/c10/cuda/CUDAAllocatorConfig.h' 2025-07-17T06:38:00.8966570Z adding 'torch/include/c10/cuda/CUDACachingAllocator.h' 2025-07-17T06:38:00.8967820Z adding 'torch/include/c10/cuda/CUDADeviceAssertion.h' 2025-07-17T06:38:00.8970010Z adding 'torch/include/c10/cuda/CUDADeviceAssertionHost.h' 2025-07-17T06:38:00.8971160Z adding 'torch/include/c10/cuda/CUDAException.h' 2025-07-17T06:38:00.8973100Z adding 'torch/include/c10/cuda/CUDAFunctions.h' 2025-07-17T06:38:00.8974110Z adding 'torch/include/c10/cuda/CUDAGraphsC10Utils.h' 2025-07-17T06:38:00.8976440Z adding 'torch/include/c10/cuda/CUDAGuard.h' 2025-07-17T06:38:00.8977240Z adding 'torch/include/c10/cuda/CUDAMacros.h' 2025-07-17T06:38:00.8978360Z adding 'torch/include/c10/cuda/CUDAMathCompat.h' 2025-07-17T06:38:00.8979170Z adding 'torch/include/c10/cuda/CUDAMiscFunctions.h' 2025-07-17T06:38:00.8982050Z adding 'torch/include/c10/cuda/CUDAStream.h' 2025-07-17T06:38:00.8983080Z adding 'torch/include/c10/cuda/driver_api.h' 2025-07-17T06:38:00.8985780Z adding 'torch/include/c10/cuda/impl/CUDAGuardImpl.h' 2025-07-17T06:38:00.8986310Z adding 'torch/include/c10/cuda/impl/CUDATest.h' 2025-07-17T06:38:00.8987270Z adding 'torch/include/c10/macros/Export.h' 2025-07-17T06:38:00.8987990Z adding 'torch/include/c10/macros/Macros.h' 2025-07-17T06:38:00.8988790Z adding 'torch/include/c10/macros/cmake_macros.h' 2025-07-17T06:38:00.8990380Z adding 'torch/include/c10/metal/atomic.h' 2025-07-17T06:38:00.8991240Z adding 'torch/include/c10/metal/common.h' 2025-07-17T06:38:00.8992670Z adding 'torch/include/c10/metal/expm1f.h' 2025-07-17T06:38:00.8995930Z adding 'torch/include/c10/metal/indexing.h' 2025-07-17T06:38:00.8996910Z adding 'torch/include/c10/metal/random.h' 2025-07-17T06:38:00.8998580Z adding 'torch/include/c10/metal/reduction_utils.h' 2025-07-17T06:38:00.9007680Z adding 'torch/include/c10/metal/special_math.h' 2025-07-17T06:38:00.9009740Z adding 'torch/include/c10/metal/utils.h' 2025-07-17T06:38:00.9011280Z adding 'torch/include/c10/mobile/CPUCachingAllocator.h' 2025-07-17T06:38:00.9013170Z adding 'torch/include/c10/mobile/CPUProfilingAllocator.h' 2025-07-17T06:38:00.9014180Z adding 'torch/include/c10/test/util/Macros.h' 2025-07-17T06:38:00.9016940Z adding 'torch/include/c10/test/util/complex_math_test_common.h' 2025-07-17T06:38:00.9020110Z adding 'torch/include/c10/test/util/complex_test_common.h' 2025-07-17T06:38:00.9022320Z adding 'torch/include/c10/util/AbortHandler.h' 2025-07-17T06:38:00.9023560Z adding 'torch/include/c10/util/AlignOf.h' 2025-07-17T06:38:00.9025180Z adding 'torch/include/c10/util/ApproximateClock.h' 2025-07-17T06:38:00.9025810Z adding 'torch/include/c10/util/Array.h' 2025-07-17T06:38:00.9028460Z adding 'torch/include/c10/util/ArrayRef.h' 2025-07-17T06:38:00.9030200Z adding 'torch/include/c10/util/BFloat16-inl.h' 2025-07-17T06:38:00.9031940Z adding 'torch/include/c10/util/BFloat16-math.h' 2025-07-17T06:38:00.9033020Z adding 'torch/include/c10/util/BFloat16.h' 2025-07-17T06:38:00.9033890Z adding 'torch/include/c10/util/Backtrace.h' 2025-07-17T06:38:00.9035220Z adding 'torch/include/c10/util/Bitset.h' 2025-07-17T06:38:00.9036330Z adding 'torch/include/c10/util/C++17.h' 2025-07-17T06:38:00.9037420Z adding 'torch/include/c10/util/CallOnce.h' 2025-07-17T06:38:00.9039900Z adding 'torch/include/c10/util/ConstexprCrc.h' 2025-07-17T06:38:00.9040740Z adding 'torch/include/c10/util/DeadlockDetection.h' 2025-07-17T06:38:00.9041980Z adding 'torch/include/c10/util/Deprecated.h' 2025-07-17T06:38:00.9042800Z adding 'torch/include/c10/util/DimVector.h' 2025-07-17T06:38:00.9043780Z adding 'torch/include/c10/util/DynamicCounter.h' 2025-07-17T06:38:00.9045130Z adding 'torch/include/c10/util/Enumerate.h' 2025-07-17T06:38:00.9051360Z adding 'torch/include/c10/util/Exception.h' 2025-07-17T06:38:00.9052720Z adding 'torch/include/c10/util/ExclusivelyOwned.h' 2025-07-17T06:38:00.9053850Z adding 'torch/include/c10/util/ExclusivelyOwnedTensorTraits.h' 2025-07-17T06:38:00.9054660Z adding 'torch/include/c10/util/FbcodeMaps.h' 2025-07-17T06:38:00.9057240Z adding 'torch/include/c10/util/Flags.h' 2025-07-17T06:38:00.9057930Z adding 'torch/include/c10/util/Float4_e2m1fn_x2.h' 2025-07-17T06:38:00.9059870Z adding 'torch/include/c10/util/Float8_e4m3fn-inl.h' 2025-07-17T06:38:00.9062010Z adding 'torch/include/c10/util/Float8_e4m3fn.h' 2025-07-17T06:38:00.9063330Z adding 'torch/include/c10/util/Float8_e4m3fnuz-inl.h' 2025-07-17T06:38:00.9064920Z adding 'torch/include/c10/util/Float8_e4m3fnuz.h' 2025-07-17T06:38:00.9067100Z adding 'torch/include/c10/util/Float8_e5m2-inl.h' 2025-07-17T06:38:00.9068360Z adding 'torch/include/c10/util/Float8_e5m2.h' 2025-07-17T06:38:00.9070290Z adding 'torch/include/c10/util/Float8_e5m2fnuz-inl.h' 2025-07-17T06:38:00.9071370Z adding 'torch/include/c10/util/Float8_e5m2fnuz.h' 2025-07-17T06:38:00.9072600Z adding 'torch/include/c10/util/Float8_e8m0fnu-inl.h' 2025-07-17T06:38:00.9073880Z adding 'torch/include/c10/util/Float8_e8m0fnu.h' 2025-07-17T06:38:00.9074930Z adding 'torch/include/c10/util/Float8_fnuz_cvt.h' 2025-07-17T06:38:00.9076040Z adding 'torch/include/c10/util/FunctionRef.h' 2025-07-17T06:38:00.9077000Z adding 'torch/include/c10/util/Gauge.h' 2025-07-17T06:38:00.9079070Z adding 'torch/include/c10/util/Half-inl.h' 2025-07-17T06:38:00.9082630Z adding 'torch/include/c10/util/Half.h' 2025-07-17T06:38:00.9083540Z adding 'torch/include/c10/util/IdWrapper.h' 2025-07-17T06:38:00.9085160Z adding 'torch/include/c10/util/IntrusiveList.h' 2025-07-17T06:38:00.9086130Z adding 'torch/include/c10/util/Lazy.h' 2025-07-17T06:38:00.9088330Z adding 'torch/include/c10/util/LeftRight.h' 2025-07-17T06:38:00.9088960Z adding 'torch/include/c10/util/Load.h' 2025-07-17T06:38:00.9091960Z adding 'torch/include/c10/util/Logging.h' 2025-07-17T06:38:00.9092860Z adding 'torch/include/c10/util/MathConstants.h' 2025-07-17T06:38:00.9094920Z adding 'torch/include/c10/util/MaybeOwned.h' 2025-07-17T06:38:00.9096650Z adding 'torch/include/c10/util/Metaprogramming.h' 2025-07-17T06:38:00.9097450Z adding 'torch/include/c10/util/NetworkFlow.h' 2025-07-17T06:38:00.9098470Z adding 'torch/include/c10/util/Optional.h' 2025-07-17T06:38:00.9100380Z adding 'torch/include/c10/util/OptionalArrayRef.h' 2025-07-17T06:38:00.9100880Z adding 'torch/include/c10/util/ParallelGuard.h' 2025-07-17T06:38:00.9103660Z adding 'torch/include/c10/util/Registry.h' 2025-07-17T06:38:00.9104390Z adding 'torch/include/c10/util/ScopeExit.h' 2025-07-17T06:38:00.9105360Z adding 'torch/include/c10/util/Semaphore.h' 2025-07-17T06:38:00.9106400Z adding 'torch/include/c10/util/SmallBuffer.h' 2025-07-17T06:38:00.9116760Z adding 'torch/include/c10/util/SmallVector.h' 2025-07-17T06:38:00.9119040Z adding 'torch/include/c10/util/StringUtil.h' 2025-07-17T06:38:00.9119900Z adding 'torch/include/c10/util/Synchronized.h' 2025-07-17T06:38:00.9121280Z adding 'torch/include/c10/util/ThreadLocal.h' 2025-07-17T06:38:00.9122530Z adding 'torch/include/c10/util/ThreadLocalDebugInfo.h' 2025-07-17T06:38:00.9123420Z adding 'torch/include/c10/util/Type.h' 2025-07-17T06:38:00.9125360Z adding 'torch/include/c10/util/TypeCast.h' 2025-07-17T06:38:00.9126390Z adding 'torch/include/c10/util/TypeIndex.h' 2025-07-17T06:38:00.9129620Z adding 'torch/include/c10/util/TypeList.h' 2025-07-17T06:38:00.9130700Z adding 'torch/include/c10/util/TypeSafeSignMath.h' 2025-07-17T06:38:00.9132280Z adding 'torch/include/c10/util/TypeTraits.h' 2025-07-17T06:38:00.9132990Z adding 'torch/include/c10/util/Unicode.h' 2025-07-17T06:38:00.9134930Z adding 'torch/include/c10/util/UniqueVoidPtr.h' 2025-07-17T06:38:00.9135430Z adding 'torch/include/c10/util/Unroll.h' 2025-07-17T06:38:00.9136640Z adding 'torch/include/c10/util/WaitCounter.h' 2025-07-17T06:38:00.9137560Z adding 'torch/include/c10/util/WaitCounterDynamicBackend.h' 2025-07-17T06:38:00.9138700Z adding 'torch/include/c10/util/accumulate.h' 2025-07-17T06:38:00.9139680Z adding 'torch/include/c10/util/bit_cast.h' 2025-07-17T06:38:00.9140620Z adding 'torch/include/c10/util/bits.h' 2025-07-17T06:38:00.9144680Z adding 'torch/include/c10/util/complex.h' 2025-07-17T06:38:00.9146760Z adding 'torch/include/c10/util/complex_math.h' 2025-07-17T06:38:00.9147350Z adding 'torch/include/c10/util/complex_utils.h' 2025-07-17T06:38:00.9148240Z adding 'torch/include/c10/util/copysign.h' 2025-07-17T06:38:00.9149110Z adding 'torch/include/c10/util/env.h' 2025-07-17T06:38:00.9149920Z adding 'torch/include/c10/util/error.h' 2025-07-17T06:38:00.9159950Z adding 'torch/include/c10/util/flat_hash_map.h' 2025-07-17T06:38:00.9160920Z adding 'torch/include/c10/util/floating_point_utils.h' 2025-07-17T06:38:00.9162150Z adding 'torch/include/c10/util/generic_math.h' 2025-07-17T06:38:00.9165060Z adding 'torch/include/c10/util/hash.h' 2025-07-17T06:38:00.9168080Z adding 'torch/include/c10/util/int128.h' 2025-07-17T06:38:00.9175570Z adding 'torch/include/c10/util/intrusive_ptr.h' 2025-07-17T06:38:00.9176880Z adding 'torch/include/c10/util/irange.h' 2025-07-17T06:38:00.9182760Z adding 'torch/include/c10/util/llvmMathExtras.h' 2025-07-17T06:38:00.9183980Z adding 'torch/include/c10/util/logging_is_google_glog.h' 2025-07-17T06:38:00.9186310Z adding 'torch/include/c10/util/logging_is_not_google_glog.h' 2025-07-17T06:38:00.9186910Z adding 'torch/include/c10/util/numa.h' 2025-07-17T06:38:00.9198450Z adding 'torch/include/c10/util/order_preserving_flat_hash_map.h' 2025-07-17T06:38:00.9199830Z adding 'torch/include/c10/util/overflows.h' 2025-07-17T06:38:00.9200750Z adding 'torch/include/c10/util/overloaded.h' 2025-07-17T06:38:00.9201550Z adding 'torch/include/c10/util/python_stub.h' 2025-07-17T06:38:00.9202380Z adding 'torch/include/c10/util/qint32.h' 2025-07-17T06:38:00.9203250Z adding 'torch/include/c10/util/qint8.h' 2025-07-17T06:38:00.9204090Z adding 'torch/include/c10/util/quint2x4.h' 2025-07-17T06:38:00.9204880Z adding 'torch/include/c10/util/quint4x2.h' 2025-07-17T06:38:00.9205680Z adding 'torch/include/c10/util/quint8.h' 2025-07-17T06:38:00.9206870Z adding 'torch/include/c10/util/safe_numerics.h' 2025-07-17T06:38:00.9208330Z adding 'torch/include/c10/util/signal_handler.h' 2025-07-17T06:38:00.9213560Z adding 'torch/include/c10/util/sparse_bitset.h' 2025-07-17T06:38:00.9214450Z adding 'torch/include/c10/util/ssize.h' 2025-07-17T06:38:00.9215350Z adding 'torch/include/c10/util/static_tracepoint.h' 2025-07-17T06:38:00.9217480Z adding 'torch/include/c10/util/static_tracepoint_elfx86.h' 2025-07-17T06:38:00.9218060Z adding 'torch/include/c10/util/strides.h' 2025-07-17T06:38:00.9218910Z adding 'torch/include/c10/util/string_utils.h' 2025-07-17T06:38:00.9222470Z adding 'torch/include/c10/util/string_view.h' 2025-07-17T06:38:00.9227380Z adding 'torch/include/c10/util/strong_type.h' 2025-07-17T06:38:00.9228450Z adding 'torch/include/c10/util/tempfile.h' 2025-07-17T06:38:00.9229270Z adding 'torch/include/c10/util/thread_name.h' 2025-07-17T06:38:00.9234440Z adding 'torch/include/c10/util/typeid.h' 2025-07-17T06:38:00.9235170Z adding 'torch/include/c10/util/win32-headers.h' 2025-07-17T06:38:00.9236460Z adding 'torch/include/c10/xpu/XPUCachingAllocator.h' 2025-07-17T06:38:00.9238910Z adding 'torch/include/c10/xpu/XPUDeviceProp.h' 2025-07-17T06:38:00.9239520Z adding 'torch/include/c10/xpu/XPUException.h' 2025-07-17T06:38:00.9240500Z adding 'torch/include/c10/xpu/XPUFunctions.h' 2025-07-17T06:38:00.9241390Z adding 'torch/include/c10/xpu/XPUMacros.h' 2025-07-17T06:38:00.9243750Z adding 'torch/include/c10/xpu/XPUStream.h' 2025-07-17T06:38:00.9245960Z adding 'torch/include/c10/xpu/impl/XPUGuardImpl.h' 2025-07-17T06:38:00.9246870Z adding 'torch/include/c10/xpu/test/impl/XPUTest.h' 2025-07-17T06:38:00.9248790Z adding 'torch/include/caffe2/core/common.h' 2025-07-17T06:38:00.9249680Z adding 'torch/include/caffe2/core/macros.h' 2025-07-17T06:38:00.9250670Z adding 'torch/include/caffe2/core/timer.h' 2025-07-17T06:38:00.9253210Z adding 'torch/include/caffe2/perfkernels/batch_box_cox_vec.h' 2025-07-17T06:38:00.9254430Z adding 'torch/include/caffe2/perfkernels/common.h' 2025-07-17T06:38:00.9255670Z adding 'torch/include/caffe2/perfkernels/embedding_lookup_idx.h' 2025-07-17T06:38:00.9280540Z adding 'torch/include/caffe2/serialize/crc_alt.h' 2025-07-17T06:38:00.9281680Z adding 'torch/include/caffe2/serialize/file_adapter.h' 2025-07-17T06:38:00.9282670Z adding 'torch/include/caffe2/serialize/in_memory_adapter.h' 2025-07-17T06:38:00.9285500Z adding 'torch/include/caffe2/serialize/inline_container.h' 2025-07-17T06:38:00.9286200Z adding 'torch/include/caffe2/serialize/istream_adapter.h' 2025-07-17T06:38:00.9287080Z adding 'torch/include/caffe2/serialize/read_adapter_interface.h' 2025-07-17T06:38:00.9289280Z adding 'torch/include/caffe2/serialize/versions.h' 2025-07-17T06:38:00.9290630Z adding 'torch/include/caffe2/utils/fixed_divisor.h' 2025-07-17T06:38:00.9291560Z adding 'torch/include/caffe2/utils/proto_wrap.h' 2025-07-17T06:38:00.9292500Z adding 'torch/include/caffe2/utils/string_utils.h' 2025-07-17T06:38:00.9294470Z adding 'torch/include/caffe2/utils/threadpool/ThreadPool.h' 2025-07-17T06:38:00.9295060Z adding 'torch/include/caffe2/utils/threadpool/ThreadPoolCommon.h' 2025-07-17T06:38:00.9298190Z adding 'torch/include/caffe2/utils/threadpool/WorkersPool.h' 2025-07-17T06:38:00.9299000Z adding 'torch/include/caffe2/utils/threadpool/pthreadpool-cpp.h' 2025-07-17T06:38:00.9300890Z adding 'torch/include/caffe2/utils/threadpool/pthreadpool.h' 2025-07-17T06:38:00.9301420Z adding 'torch/include/caffe2/utils/threadpool/thread_pool_guard.h' 2025-07-17T06:38:00.9303890Z adding 'torch/include/fmt/args.h' 2025-07-17T06:38:00.9326800Z adding 'torch/include/fmt/base.h' 2025-07-17T06:38:00.9342000Z adding 'torch/include/fmt/chrono.h' 2025-07-17T06:38:00.9347640Z adding 'torch/include/fmt/color.h' 2025-07-17T06:38:00.9351520Z adding 'torch/include/fmt/compile.h' 2025-07-17T06:38:00.9352220Z adding 'torch/include/fmt/core.h' 2025-07-17T06:38:00.9371860Z adding 'torch/include/fmt/format-inl.h' 2025-07-17T06:38:00.9407710Z adding 'torch/include/fmt/format.h' 2025-07-17T06:38:00.9411950Z adding 'torch/include/fmt/os.h' 2025-07-17T06:38:00.9413460Z adding 'torch/include/fmt/ostream.h' 2025-07-17T06:38:00.9418080Z adding 'torch/include/fmt/printf.h' 2025-07-17T06:38:00.9423130Z adding 'torch/include/fmt/ranges.h' 2025-07-17T06:38:00.9427480Z adding 'torch/include/fmt/std.h' 2025-07-17T06:38:00.9429980Z adding 'torch/include/fmt/xchar.h' 2025-07-17T06:38:00.9431160Z adding 'torch/include/fp16/bitcasts.h' 2025-07-17T06:38:00.9434690Z adding 'torch/include/fp16/fp16.h' 2025-07-17T06:38:00.9436010Z adding 'torch/include/fp16/psimd.h' 2025-07-17T06:38:00.9438930Z adding 'torch/include/google/protobuf/any.h' 2025-07-17T06:38:00.9441620Z adding 'torch/include/google/protobuf/any.pb.h' 2025-07-17T06:38:00.9448060Z adding 'torch/include/google/protobuf/api.pb.h' 2025-07-17T06:38:00.9455010Z adding 'torch/include/google/protobuf/arena.h' 2025-07-17T06:38:00.9458730Z adding 'torch/include/google/protobuf/arena_impl.h' 2025-07-17T06:38:00.9461930Z adding 'torch/include/google/protobuf/arenastring.h' 2025-07-17T06:38:00.9481380Z adding 'torch/include/google/protobuf/descriptor.h' 2025-07-17T06:38:00.9531490Z adding 'torch/include/google/protobuf/descriptor.pb.h' 2025-07-17T06:38:00.9537890Z adding 'torch/include/google/protobuf/descriptor_database.h' 2025-07-17T06:38:00.9540070Z adding 'torch/include/google/protobuf/duration.pb.h' 2025-07-17T06:38:00.9542670Z adding 'torch/include/google/protobuf/dynamic_message.h' 2025-07-17T06:38:00.9544400Z adding 'torch/include/google/protobuf/empty.pb.h' 2025-07-17T06:38:00.9558430Z adding 'torch/include/google/protobuf/extension_set.h' 2025-07-17T06:38:00.9561270Z adding 'torch/include/google/protobuf/extension_set_inl.h' 2025-07-17T06:38:00.9563590Z adding 'torch/include/google/protobuf/field_mask.pb.h' 2025-07-17T06:38:00.9564900Z adding 'torch/include/google/protobuf/generated_enum_reflection.h' 2025-07-17T06:38:00.9566270Z adding 'torch/include/google/protobuf/generated_enum_util.h' 2025-07-17T06:38:00.9569640Z adding 'torch/include/google/protobuf/generated_message_reflection.h' 2025-07-17T06:38:00.9572650Z adding 'torch/include/google/protobuf/generated_message_table_driven.h' 2025-07-17T06:38:00.9574970Z adding 'torch/include/google/protobuf/generated_message_util.h' 2025-07-17T06:38:00.9575980Z adding 'torch/include/google/protobuf/has_bits.h' 2025-07-17T06:38:00.9578210Z adding 'torch/include/google/protobuf/implicit_weak_message.h' 2025-07-17T06:38:00.9579850Z adding 'torch/include/google/protobuf/inlined_string_field.h' 2025-07-17T06:38:00.9590160Z adding 'torch/include/google/protobuf/map.h' 2025-07-17T06:38:00.9592410Z adding 'torch/include/google/protobuf/map_entry.h' 2025-07-17T06:38:00.9597850Z adding 'torch/include/google/protobuf/map_entry_lite.h' 2025-07-17T06:38:00.9603850Z adding 'torch/include/google/protobuf/map_field.h' 2025-07-17T06:38:00.9606980Z adding 'torch/include/google/protobuf/map_field_inl.h' 2025-07-17T06:38:00.9609110Z adding 'torch/include/google/protobuf/map_field_lite.h' 2025-07-17T06:38:00.9614250Z adding 'torch/include/google/protobuf/map_type_handler.h' 2025-07-17T06:38:00.9627820Z adding 'torch/include/google/protobuf/message.h' 2025-07-17T06:38:00.9634100Z adding 'torch/include/google/protobuf/message_lite.h' 2025-07-17T06:38:00.9635120Z adding 'torch/include/google/protobuf/metadata.h' 2025-07-17T06:38:00.9637510Z adding 'torch/include/google/protobuf/metadata_lite.h' 2025-07-17T06:38:00.9643750Z adding 'torch/include/google/protobuf/parse_context.h' 2025-07-17T06:38:00.9644830Z adding 'torch/include/google/protobuf/port.h' 2025-07-17T06:38:00.9649200Z adding 'torch/include/google/protobuf/reflection.h' 2025-07-17T06:38:00.9650370Z adding 'torch/include/google/protobuf/reflection_ops.h' 2025-07-17T06:38:00.9670970Z adding 'torch/include/google/protobuf/repeated_field.h' 2025-07-17T06:38:00.9674840Z adding 'torch/include/google/protobuf/service.h' 2025-07-17T06:38:00.9677180Z adding 'torch/include/google/protobuf/source_context.pb.h' 2025-07-17T06:38:00.9683080Z adding 'torch/include/google/protobuf/struct.pb.h' 2025-07-17T06:38:00.9689300Z adding 'torch/include/google/protobuf/text_format.h' 2025-07-17T06:38:00.9691480Z adding 'torch/include/google/protobuf/timestamp.pb.h' 2025-07-17T06:38:00.9702560Z adding 'torch/include/google/protobuf/type.pb.h' 2025-07-17T06:38:00.9706250Z adding 'torch/include/google/protobuf/unknown_field_set.h' 2025-07-17T06:38:00.9709630Z adding 'torch/include/google/protobuf/wire_format.h' 2025-07-17T06:38:00.9722630Z adding 'torch/include/google/protobuf/wire_format_lite.h' 2025-07-17T06:38:00.9728540Z adding 'torch/include/google/protobuf/wrappers.pb.h' 2025-07-17T06:38:00.9731750Z adding 'torch/include/google/protobuf/compiler/code_generator.h' 2025-07-17T06:38:00.9736820Z adding 'torch/include/google/protobuf/compiler/command_line_interface.h' 2025-07-17T06:38:00.9740740Z adding 'torch/include/google/protobuf/compiler/importer.h' 2025-07-17T06:38:00.9747090Z adding 'torch/include/google/protobuf/compiler/parser.h' 2025-07-17T06:38:00.9748500Z adding 'torch/include/google/protobuf/compiler/plugin.h' 2025-07-17T06:38:00.9757300Z adding 'torch/include/google/protobuf/compiler/plugin.pb.h' 2025-07-17T06:38:00.9759810Z adding 'torch/include/google/protobuf/compiler/cpp/cpp_generator.h' 2025-07-17T06:38:00.9761090Z adding 'torch/include/google/protobuf/compiler/csharp/csharp_generator.h' 2025-07-17T06:38:00.9762590Z adding 'torch/include/google/protobuf/compiler/csharp/csharp_names.h' 2025-07-17T06:38:00.9764120Z adding 'torch/include/google/protobuf/compiler/java/java_generator.h' 2025-07-17T06:38:00.9765370Z adding 'torch/include/google/protobuf/compiler/java/java_names.h' 2025-07-17T06:38:00.9768640Z adding 'torch/include/google/protobuf/compiler/js/js_generator.h' 2025-07-17T06:38:00.9769540Z adding 'torch/include/google/protobuf/compiler/js/well_known_types_embed.h' 2025-07-17T06:38:00.9771120Z adding 'torch/include/google/protobuf/compiler/objectivec/objectivec_generator.h' 2025-07-17T06:38:00.9774090Z adding 'torch/include/google/protobuf/compiler/objectivec/objectivec_helpers.h' 2025-07-17T06:38:00.9775370Z adding 'torch/include/google/protobuf/compiler/php/php_generator.h' 2025-07-17T06:38:00.9777610Z adding 'torch/include/google/protobuf/compiler/python/python_generator.h' 2025-07-17T06:38:00.9778750Z adding 'torch/include/google/protobuf/compiler/ruby/ruby_generator.h' 2025-07-17T06:38:00.9795740Z adding 'torch/include/google/protobuf/io/coded_stream.h' 2025-07-17T06:38:00.9798060Z adding 'torch/include/google/protobuf/io/gzip_stream.h' 2025-07-17T06:38:00.9799510Z adding 'torch/include/google/protobuf/io/io_win32.h' 2025-07-17T06:38:00.9803400Z adding 'torch/include/google/protobuf/io/printer.h' 2025-07-17T06:38:00.9804390Z adding 'torch/include/google/protobuf/io/strtod.h' 2025-07-17T06:38:00.9808830Z adding 'torch/include/google/protobuf/io/tokenizer.h' 2025-07-17T06:38:00.9811480Z adding 'torch/include/google/protobuf/io/zero_copy_stream.h' 2025-07-17T06:38:00.9813980Z adding 'torch/include/google/protobuf/io/zero_copy_stream_impl.h' 2025-07-17T06:38:00.9817520Z adding 'torch/include/google/protobuf/io/zero_copy_stream_impl_lite.h' 2025-07-17T06:38:00.9820570Z adding 'torch/include/google/protobuf/stubs/bytestream.h' 2025-07-17T06:38:00.9823180Z adding 'torch/include/google/protobuf/stubs/callback.h' 2025-07-17T06:38:00.9824910Z adding 'torch/include/google/protobuf/stubs/casts.h' 2025-07-17T06:38:00.9827030Z adding 'torch/include/google/protobuf/stubs/common.h' 2025-07-17T06:38:00.9828540Z adding 'torch/include/google/protobuf/stubs/fastmem.h' 2025-07-17T06:38:00.9829890Z adding 'torch/include/google/protobuf/stubs/hash.h' 2025-07-17T06:38:00.9832280Z adding 'torch/include/google/protobuf/stubs/logging.h' 2025-07-17T06:38:00.9833640Z adding 'torch/include/google/protobuf/stubs/macros.h' 2025-07-17T06:38:00.9839260Z adding 'torch/include/google/protobuf/stubs/map_util.h' 2025-07-17T06:38:00.9840990Z adding 'torch/include/google/protobuf/stubs/mutex.h' 2025-07-17T06:38:00.9841840Z adding 'torch/include/google/protobuf/stubs/once.h' 2025-07-17T06:38:00.9843460Z adding 'torch/include/google/protobuf/stubs/platform_macros.h' 2025-07-17T06:38:00.9846090Z adding 'torch/include/google/protobuf/stubs/port.h' 2025-07-17T06:38:00.9847220Z adding 'torch/include/google/protobuf/stubs/status.h' 2025-07-17T06:38:00.9848570Z adding 'torch/include/google/protobuf/stubs/stl_util.h' 2025-07-17T06:38:00.9852800Z adding 'torch/include/google/protobuf/stubs/stringpiece.h' 2025-07-17T06:38:00.9860400Z adding 'torch/include/google/protobuf/stubs/strutil.h' 2025-07-17T06:38:00.9862170Z adding 'torch/include/google/protobuf/stubs/template_util.h' 2025-07-17T06:38:00.9864330Z adding 'torch/include/google/protobuf/util/delimited_message_util.h' 2025-07-17T06:38:00.9866780Z adding 'torch/include/google/protobuf/util/field_comparator.h' 2025-07-17T06:38:00.9869780Z adding 'torch/include/google/protobuf/util/field_mask_util.h' 2025-07-17T06:38:00.9871830Z adding 'torch/include/google/protobuf/util/json_util.h' 2025-07-17T06:38:00.9882320Z adding 'torch/include/google/protobuf/util/message_differencer.h' 2025-07-17T06:38:00.9884990Z adding 'torch/include/google/protobuf/util/time_util.h' 2025-07-17T06:38:00.9885970Z adding 'torch/include/google/protobuf/util/type_resolver.h' 2025-07-17T06:38:00.9887150Z adding 'torch/include/google/protobuf/util/type_resolver_util.h' 2025-07-17T06:38:00.9889360Z adding 'torch/include/kai/kai_common.h' 2025-07-17T06:38:00.9892320Z adding 'torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p/kai_imatmul_clamp_f16_f16p2vlx2_f16p2vlx2_2vlx2vl_sme2_mopa.h' 2025-07-17T06:38:00.9893070Z adding 'torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p/kai_imatmul_clamp_f16_f16p_f16p_interface.h' 2025-07-17T06:38:00.9894630Z adding 'torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p/kai_imatmul_clamp_f32_f32p2vlx1_f32p2vlx1b_2vlx2vl_sme2_mopa.h' 2025-07-17T06:38:00.9895580Z adding 'torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p/kai_imatmul_clamp_f32_f32p_f32p_interface.h' 2025-07-17T06:38:00.9897230Z adding 'torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp/kai_imatmul_clamp_qai8_qai8p2vlx4_qsi8cxpsb2vlx4_2vlx2vl_sme2_mopa.h' 2025-07-17T06:38:00.9898160Z adding 'torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp/kai_imatmul_clamp_qai8_qai8p_qsi8cxp_interface.h' 2025-07-17T06:38:00.9899750Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p/kai_matmul_clamp_f16_bf16p8x4_bf16p12x4b_8x12_neon_mmla.h' 2025-07-17T06:38:00.9900720Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p/kai_matmul_clamp_f16_bf16p_bf16p_interface.h' 2025-07-17T06:38:00.9902310Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p16x1biasf16_6x16x8_neon_mla.h' 2025-07-17T06:38:00.9903610Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p2vlx2b_1x16vl_sme2_dot.h' 2025-07-17T06:38:00.9904640Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p_interface.h' 2025-07-17T06:38:00.9906260Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p/kai_matmul_clamp_f16_f16p2vlx2_f16p2vlx2_2vlx2vl_sme2_mopa.h' 2025-07-17T06:38:00.9907210Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p/kai_matmul_clamp_f16_f16p_f16p_interface.h' 2025-07-17T06:38:00.9909320Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp1x4_qsi4cxp4x4_1x4_neon_dotprod.h' 2025-07-17T06:38:00.9910520Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp1x8_qsi4cxp4x8_1x4_neon_dotprod.h' 2025-07-17T06:38:00.9911960Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp4x4_qsi4cxp4x4_16x4_neon_dotprod.h' 2025-07-17T06:38:00.9913340Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp4x8_qsi4cxp4x8_16x4_neon_i8mm.h' 2025-07-17T06:38:00.9914340Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp_qsi4cxp_interface.h' 2025-07-17T06:38:00.9916430Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp1x4_qsi8cxp4x4_1x4_neon_dotprod.h' 2025-07-17T06:38:00.9917450Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp1x8_qsi8cxp4x8_1x4_neon_dotprod.h' 2025-07-17T06:38:00.9918800Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp4x4_qsi8cxp4x4_16x4_neon_dotprod.h' 2025-07-17T06:38:00.9920130Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp4x8_qsi8cxp4x8_16x4_neon_i8mm.h' 2025-07-17T06:38:00.9921140Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp_qsi8cxp_interface.h' 2025-07-17T06:38:00.9923230Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p1x8_qai4c32p4x8_1x4_neon_dotprod.h' 2025-07-17T06:38:00.9924420Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p4x8_qai4c32p4x8_8x4_neon_i8mm.h' 2025-07-17T06:38:00.9925490Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p_qai4c32p_interface.h' 2025-07-17T06:38:00.9927020Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p1x4_bf16p12x4b_1x36_neon_dot.h' 2025-07-17T06:38:00.9928280Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p8x4_bf16p12x4b_8x12_neon_mmla.h' 2025-07-17T06:38:00.9929310Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p_bf16p_interface.h' 2025-07-17T06:38:00.9930810Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p16vlx1b_1x16vl_sme2_mla.h' 2025-07-17T06:38:00.9932070Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p2vlx1b_1x16vl_sme2_mla.h' 2025-07-17T06:38:00.9933290Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p8x1biasf32_6x8x4_neon_mla.h' 2025-07-17T06:38:00.9934280Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p_interface.h' 2025-07-17T06:38:00.9935830Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p/kai_matmul_clamp_f32_f32p2vlx1_f32p2vlx1biasf32_sme2_mopa.h' 2025-07-17T06:38:00.9936820Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p/kai_matmul_clamp_f32_f32p_f32p_interface.h' 2025-07-17T06:38:00.9938980Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x4_qsi4c32p4x4_1x4_neon_dotprod.h' 2025-07-17T06:38:00.9940210Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x4_qsi4c32p8x4_1x8_neon_dotprod.h' 2025-07-17T06:38:00.9941710Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p4x8_1x4x32_neon_dotprod.h' 2025-07-17T06:38:00.9943130Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p8x8_1x8_neon_dotprod.h' 2025-07-17T06:38:00.9944580Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p8x8_1x8x32_neon_dotprod.h' 2025-07-17T06:38:00.9945990Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x4_qsi4c32p4x4_16x4_neon_dotprod.h' 2025-07-17T06:38:00.9947410Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x4_qsi4c32p8x4_4x8_neon_dotprod.h' 2025-07-17T06:38:00.9948770Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p4x8_16x4x32_neon_i8mm.h' 2025-07-17T06:38:00.9950180Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p4x8_8x4x32_neon_i8mm.h' 2025-07-17T06:38:00.9951580Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p8x8_4x8_neon_i8mm.h' 2025-07-17T06:38:00.9952960Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p8x8_4x8x32_neon_i8mm.h' 2025-07-17T06:38:00.9953950Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp_qsi4c32p_interface.h' 2025-07-17T06:38:00.9956030Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1vlx8_qsi4cxp4vlx8_1vlx4vl_sme2_mopa.h' 2025-07-17T06:38:00.9957120Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi4cxp4vlx4_1x4vl_sme2_sdot.h' 2025-07-17T06:38:00.9958580Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi4cxp4x4_1x4_neon_dotprod.h' 2025-07-17T06:38:00.9960070Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x8_qsi4cxp4x8_1x4x32_neon_dotprod.h' 2025-07-17T06:38:00.9961520Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x8_qsi4cxp8x8_1x8x32_neon_dotprod.h' 2025-07-17T06:38:00.9962900Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x4_qsi4cxp8x4_8x8x32_neon_dotprod.h' 2025-07-17T06:38:00.9964340Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp4x4_16x4x32_neon_dotprod.h' 2025-07-17T06:38:00.9965810Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp4x8_4x4x32_neon_i8mm.h' 2025-07-17T06:38:00.9967290Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp4x8_8x4x32_neon_i8mm.h' 2025-07-17T06:38:00.9968630Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp8x8_4x8x32_neon_i8mm.h' 2025-07-17T06:38:00.9970020Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp8x8_8x8x32_neon_i8mm.h' 2025-07-17T06:38:00.9971040Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp_qsi4cxp_interface.h' 2025-07-17T06:38:00.9973100Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi8cxp4x4_1x4_neon_dotprod.h' 2025-07-17T06:38:00.9974070Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1x8_qsi8cxp4x8_1x4_neon_dotprod.h' 2025-07-17T06:38:00.9975460Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp4x4_qsi8cxp4x4_16x4_neon_dotprod.h' 2025-07-17T06:38:00.9976770Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi8cxp4x8_16x4_neon_i8mm.h' 2025-07-17T06:38:00.9977820Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp_qsi8cxp_interface.h' 2025-07-17T06:38:00.9979900Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p1x8_qai4c32p4x8_1x4_neon_dotprod.h' 2025-07-17T06:38:00.9981030Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qai4c32p4x8_8x4_neon_i8mm.h' 2025-07-17T06:38:00.9982090Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p_qai4c32p_interface.h' 2025-07-17T06:38:00.9984170Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1vlx4_qsi4c32p4vlx4_1vlx4vl_sme2_mopa.h' 2025-07-17T06:38:00.9985260Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x4_qsi4c32p4vlx4_1x4vl_sme2_sdot.h' 2025-07-17T06:38:00.9986720Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x4_qsi4c32p4x4_1x4_neon_dotprod.h' 2025-07-17T06:38:00.9988140Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x8_qsi4c32p4x8_1x4x32_neon_dotprod.h' 2025-07-17T06:38:00.9989550Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p4x4_qsi4c32p4x4_16x4_neon_dotprod.h' 2025-07-17T06:38:00.9990940Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qsi4c32p4x8_16x4_neon_i8mm.h' 2025-07-17T06:38:00.9992390Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qsi4c32p4x8_8x4x32_neon_i8mm.h' 2025-07-17T06:38:00.9993390Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p_qsi4c32p_interface.h' 2025-07-17T06:38:00.9994960Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p2vlx2_bf16p2vlx2_2vlx2vl_sme2_mopa.h' 2025-07-17T06:38:00.9995990Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p_bf16p_interface.h' 2025-07-17T06:38:00.9997560Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp/kai_matmul_clamp_qai8_qai8_qsi8cxp2vlx4sb_1x16vl_sme2_dot.h' 2025-07-17T06:38:00.9998570Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp/kai_matmul_clamp_qai8_qai8_qsi8cxp_interface.h' 2025-07-17T06:38:01.0000180Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp/kai_matmul_clamp_qai8_qai8p2vlx4_qsi8cxpsb2vlx4_2vlx2vl_sme2_mopa.h' 2025-07-17T06:38:01.0001270Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp/kai_matmul_clamp_qai8_qai8p_qsi8cxpsb_interface.h' 2025-07-17T06:38:01.0003220Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x16p2vlx2_x16p_sme.h' 2025-07-17T06:38:01.0003870Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x32p2vlx1_x32p_sme.h' 2025-07-17T06:38:01.0004940Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x8p2vlx4_x8p_sme.h' 2025-07-17T06:38:01.0006040Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_bf16p2vlx2_f32_sme.h' 2025-07-17T06:38:01.0007160Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_bf16p8x4_f16_neon.h' 2025-07-17T06:38:01.0008240Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_f32p2vlx1_f32_sme.h' 2025-07-17T06:38:01.0009290Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_x16p2vlx2_x16_sme.h' 2025-07-17T06:38:01.0010320Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_x8p2vlx4_x8_sme.h' 2025-07-17T06:38:01.0011450Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_bf16p1x4_f32_neon.h' 2025-07-17T06:38:01.0012460Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_bf16p8x4_f32_neon.h' 2025-07-17T06:38:01.0013680Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qai8dxp_f16_neon.h' 2025-07-17T06:38:01.0019760Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qai8dxp_f32.h' 2025-07-17T06:38:01.0020060Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32p_f32.h' 2025-07-17T06:38:01.0020240Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32p_f32_neon.h' 2025-07-17T06:38:01.0021140Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32pscalef32_f16_neon.h' 2025-07-17T06:38:01.0021340Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32pscalef32_f32_neon.h' 2025-07-17T06:38:01.0021590Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_qsi8cxp2vlx4sb_qs8cx_f32_i32_sme.h' 2025-07-17T06:38:01.0021800Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_x16p2vlx2b_x16_x16_sme.h' 2025-07-17T06:38:01.0022900Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_x32p2vlx1b_x32_x32_sme.h' 2025-07-17T06:38:01.0024060Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p12x4biasf16_f16_neon.h' 2025-07-17T06:38:01.0025190Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p12x4biasf32_f16_neon.h' 2025-07-17T06:38:01.0026350Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p2vlx2b_f32_x32_sme.h' 2025-07-17T06:38:01.0027490Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f16p16x1biasf16_f16_f16_neon.h' 2025-07-17T06:38:01.0028590Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p16vlx1b_f32_f32_sme.h' 2025-07-17T06:38:01.0029750Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p2vlx1biasf32_f32_f32_sme.h' 2025-07-17T06:38:01.0030840Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p8x1biasf32_f32_f32_neon.h' 2025-07-17T06:38:01.0032780Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi4c32p_qsu4c32s1s0.h' 2025-07-17T06:38:01.0033910Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi4cxp_qs4cxs1s0.h' 2025-07-17T06:38:01.0035150Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi8cxp2vlx4sb_qs8cx_f32_i32_sme.h' 2025-07-17T06:38:01.0036480Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi8cxp_qsi8cx_neon.h' 2025-07-17T06:38:01.0037650Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_x16p2vlx2b_x16_x16_sme.h' 2025-07-17T06:38:01.0038780Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_f32p2vlx1biasf32_f32_f32_sme.h' 2025-07-17T06:38:01.0040230Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qai4c32p_qau4c32s0s1_f32_f32_f32_neon.h' 2025-07-17T06:38:01.0042190Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32p_qsu4c32s1s0.h' 2025-07-17T06:38:01.0043320Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32ps1s0scalef16_qsu4c32s16s0_neon.h' 2025-07-17T06:38:01.0045290Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32pscalef16_qsu4c32s16s0.h' 2025-07-17T06:38:01.0046240Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4cxp_qs4cxs1s0.h' 2025-07-17T06:38:01.0047700Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4cxps1s0_qsu4cxs1s0_neon.h' 2025-07-17T06:38:01.0048970Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi8cxp_qsi8cx_neon.h' 2025-07-17T06:38:01.0050140Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_x16p2vlx2b_x16_x16_sme.h' 2025-07-17T06:38:01.0051310Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_quant_pack_kxn_bf16p12x4biasf32_f32_neon.h' 2025-07-17T06:38:01.0053240Z adding 'torch/include/kineto/AbstractConfig.h' 2025-07-17T06:38:01.0054350Z adding 'torch/include/kineto/ActivityProfilerInterface.h' 2025-07-17T06:38:01.0055200Z adding 'torch/include/kineto/ActivityTraceInterface.h' 2025-07-17T06:38:01.0056300Z adding 'torch/include/kineto/ActivityType.h' 2025-07-17T06:38:01.0057180Z adding 'torch/include/kineto/ClientInterface.h' 2025-07-17T06:38:01.0060780Z adding 'torch/include/kineto/Config.h' 2025-07-17T06:38:01.0061970Z adding 'torch/include/kineto/GenericTraceActivity.h' 2025-07-17T06:38:01.0063910Z adding 'torch/include/kineto/IActivityProfiler.h' 2025-07-17T06:38:01.0064580Z adding 'torch/include/kineto/ILoggerObserver.h' 2025-07-17T06:38:01.0065680Z adding 'torch/include/kineto/ITraceActivity.h' 2025-07-17T06:38:01.0066470Z adding 'torch/include/kineto/LoggingAPI.h' 2025-07-17T06:38:01.0067350Z adding 'torch/include/kineto/ThreadUtil.h' 2025-07-17T06:38:01.0068250Z adding 'torch/include/kineto/TraceSpan.h' 2025-07-17T06:38:01.0069590Z adding 'torch/include/kineto/libkineto.h' 2025-07-17T06:38:01.0070650Z adding 'torch/include/kineto/output_base.h' 2025-07-17T06:38:01.0071470Z adding 'torch/include/kineto/time_since_epoch.h' 2025-07-17T06:38:01.0076620Z adding 'torch/include/pybind11/attr.h' 2025-07-17T06:38:01.0078800Z adding 'torch/include/pybind11/buffer_info.h' 2025-07-17T06:38:01.0092980Z adding 'torch/include/pybind11/cast.h' 2025-07-17T06:38:01.0095300Z adding 'torch/include/pybind11/chrono.h' 2025-07-17T06:38:01.0095870Z adding 'torch/include/pybind11/common.h' 2025-07-17T06:38:01.0096980Z adding 'torch/include/pybind11/complex.h' 2025-07-17T06:38:01.0097800Z adding 'torch/include/pybind11/eigen.h' 2025-07-17T06:38:01.0100910Z adding 'torch/include/pybind11/embed.h' 2025-07-17T06:38:01.0102090Z adding 'torch/include/pybind11/eval.h' 2025-07-17T06:38:01.0104030Z adding 'torch/include/pybind11/functional.h' 2025-07-17T06:38:01.0106070Z adding 'torch/include/pybind11/gil.h' 2025-07-17T06:38:01.0107250Z adding 'torch/include/pybind11/gil_safe_call_once.h' 2025-07-17T06:38:01.0109650Z adding 'torch/include/pybind11/iostream.h' 2025-07-17T06:38:01.0126010Z adding 'torch/include/pybind11/numpy.h' 2025-07-17T06:38:01.0128300Z adding 'torch/include/pybind11/operators.h' 2025-07-17T06:38:01.0129250Z adding 'torch/include/pybind11/options.h' 2025-07-17T06:38:01.0154850Z adding 'torch/include/pybind11/pybind11.h' 2025-07-17T06:38:01.0173970Z adding 'torch/include/pybind11/pytypes.h' 2025-07-17T06:38:01.0177330Z adding 'torch/include/pybind11/stl.h' 2025-07-17T06:38:01.0182520Z adding 'torch/include/pybind11/stl_bind.h' 2025-07-17T06:38:01.0183550Z adding 'torch/include/pybind11/type_caster_pyobject_ptr.h' 2025-07-17T06:38:01.0185430Z adding 'torch/include/pybind11/typing.h' 2025-07-17T06:38:01.0191790Z adding 'torch/include/pybind11/detail/class.h' 2025-07-17T06:38:01.0202810Z adding 'torch/include/pybind11/detail/common.h' 2025-07-17T06:38:01.0204060Z adding 'torch/include/pybind11/detail/cpp_conduit.h' 2025-07-17T06:38:01.0206010Z adding 'torch/include/pybind11/detail/descr.h' 2025-07-17T06:38:01.0207060Z adding 'torch/include/pybind11/detail/exception_translation.h' 2025-07-17T06:38:01.0210790Z adding 'torch/include/pybind11/detail/init.h' 2025-07-17T06:38:01.0217320Z adding 'torch/include/pybind11/detail/internals.h' 2025-07-17T06:38:01.0227810Z adding 'torch/include/pybind11/detail/type_caster_base.h' 2025-07-17T06:38:01.0228860Z adding 'torch/include/pybind11/detail/typeid.h' 2025-07-17T06:38:01.0230080Z adding 'torch/include/pybind11/detail/value_and_holder.h' 2025-07-17T06:38:01.0231240Z adding 'torch/include/pybind11/eigen/common.h' 2025-07-17T06:38:01.0237940Z adding 'torch/include/pybind11/eigen/matrix.h' 2025-07-17T06:38:01.0241120Z adding 'torch/include/pybind11/eigen/tensor.h' 2025-07-17T06:38:01.0242540Z adding 'torch/include/pybind11/stl/filesystem.h' 2025-07-17T06:38:01.0247250Z adding 'torch/include/torch/custom_class.h' 2025-07-17T06:38:01.0249400Z adding 'torch/include/torch/custom_class_detail.h' 2025-07-17T06:38:01.0249980Z adding 'torch/include/torch/extension.h' 2025-07-17T06:38:01.0259560Z adding 'torch/include/torch/library.h' 2025-07-17T06:38:01.0260320Z adding 'torch/include/torch/script.h' 2025-07-17T06:38:01.0262650Z adding 'torch/include/torch/csrc/CudaIPCTypes.h' 2025-07-17T06:38:01.0263210Z adding 'torch/include/torch/csrc/DataLoader.h' 2025-07-17T06:38:01.0264080Z adding 'torch/include/torch/csrc/Device.h' 2025-07-17T06:38:01.0264940Z adding 'torch/include/torch/csrc/DeviceAccelerator.h' 2025-07-17T06:38:01.0265820Z adding 'torch/include/torch/csrc/Dtype.h' 2025-07-17T06:38:01.0266770Z adding 'torch/include/torch/csrc/DynamicTypes.h' 2025-07-17T06:38:01.0267620Z adding 'torch/include/torch/csrc/Event.h' 2025-07-17T06:38:01.0271060Z adding 'torch/include/torch/csrc/Exceptions.h' 2025-07-17T06:38:01.0271640Z adding 'torch/include/torch/csrc/Export.h' 2025-07-17T06:38:01.0272630Z adding 'torch/include/torch/csrc/Generator.h' 2025-07-17T06:38:01.0273520Z adding 'torch/include/torch/csrc/Layout.h' 2025-07-17T06:38:01.0274400Z adding 'torch/include/torch/csrc/MemoryFormat.h' 2025-07-17T06:38:01.0275150Z adding 'torch/include/torch/csrc/Module.h' 2025-07-17T06:38:01.0275980Z adding 'torch/include/torch/csrc/PyInterpreter.h' 2025-07-17T06:38:01.0276830Z adding 'torch/include/torch/csrc/QScheme.h' 2025-07-17T06:38:01.0277750Z adding 'torch/include/torch/csrc/Size.h' 2025-07-17T06:38:01.0278720Z adding 'torch/include/torch/csrc/Storage.h' 2025-07-17T06:38:01.0279500Z adding 'torch/include/torch/csrc/StorageMethods.h' 2025-07-17T06:38:01.0280280Z adding 'torch/include/torch/csrc/StorageSharing.h' 2025-07-17T06:38:01.0281120Z adding 'torch/include/torch/csrc/Stream.h' 2025-07-17T06:38:01.0281920Z adding 'torch/include/torch/csrc/THConcat.h' 2025-07-17T06:38:01.0282790Z adding 'torch/include/torch/csrc/THP.h' 2025-07-17T06:38:01.0283630Z adding 'torch/include/torch/csrc/TypeInfo.h' 2025-07-17T06:38:01.0284420Z adding 'torch/include/torch/csrc/Types.h' 2025-07-17T06:38:01.0285400Z adding 'torch/include/torch/csrc/copy_utils.h' 2025-07-17T06:38:01.0286160Z adding 'torch/include/torch/csrc/itt.h' 2025-07-17T06:38:01.0286960Z adding 'torch/include/torch/csrc/itt_wrapper.h' 2025-07-17T06:38:01.0287730Z adding 'torch/include/torch/csrc/python_dimname.h' 2025-07-17T06:38:01.0288580Z adding 'torch/include/torch/csrc/python_headers.h' 2025-07-17T06:38:01.0289430Z adding 'torch/include/torch/csrc/serialization.h' 2025-07-17T06:38:01.0291280Z adding 'torch/include/torch/csrc/utils.h' 2025-07-17T06:38:01.0294040Z adding 'torch/include/torch/csrc/api/include/torch/all.h' 2025-07-17T06:38:01.0294700Z adding 'torch/include/torch/csrc/api/include/torch/arg.h' 2025-07-17T06:38:01.0295540Z adding 'torch/include/torch/csrc/api/include/torch/autograd.h' 2025-07-17T06:38:01.0296480Z adding 'torch/include/torch/csrc/api/include/torch/cuda.h' 2025-07-17T06:38:01.0297260Z adding 'torch/include/torch/csrc/api/include/torch/data.h' 2025-07-17T06:38:01.0299250Z adding 'torch/include/torch/csrc/api/include/torch/enum.h' 2025-07-17T06:38:01.0300610Z adding 'torch/include/torch/csrc/api/include/torch/expanding_array.h' 2025-07-17T06:38:01.0302720Z adding 'torch/include/torch/csrc/api/include/torch/fft.h' 2025-07-17T06:38:01.0303550Z adding 'torch/include/torch/csrc/api/include/torch/imethod.h' 2025-07-17T06:38:01.0304460Z adding 'torch/include/torch/csrc/api/include/torch/jit.h' 2025-07-17T06:38:01.0305460Z adding 'torch/include/torch/csrc/api/include/torch/mps.h' 2025-07-17T06:38:01.0306610Z adding 'torch/include/torch/csrc/api/include/torch/nested.h' 2025-07-17T06:38:01.0307390Z adding 'torch/include/torch/csrc/api/include/torch/nn.h' 2025-07-17T06:38:01.0308560Z adding 'torch/include/torch/csrc/api/include/torch/optim.h' 2025-07-17T06:38:01.0311970Z adding 'torch/include/torch/csrc/api/include/torch/ordered_dict.h' 2025-07-17T06:38:01.0314290Z adding 'torch/include/torch/csrc/api/include/torch/python.h' 2025-07-17T06:38:01.0315440Z adding 'torch/include/torch/csrc/api/include/torch/serialize.h' 2025-07-17T06:38:01.0316220Z adding 'torch/include/torch/csrc/api/include/torch/sparse.h' 2025-07-17T06:38:01.0320000Z adding 'torch/include/torch/csrc/api/include/torch/special.h' 2025-07-17T06:38:01.0320650Z adding 'torch/include/torch/csrc/api/include/torch/torch.h' 2025-07-17T06:38:01.0321770Z adding 'torch/include/torch/csrc/api/include/torch/types.h' 2025-07-17T06:38:01.0323050Z adding 'torch/include/torch/csrc/api/include/torch/utils.h' 2025-07-17T06:38:01.0323930Z adding 'torch/include/torch/csrc/api/include/torch/version.h' 2025-07-17T06:38:01.0324790Z adding 'torch/include/torch/csrc/api/include/torch/xpu.h' 2025-07-17T06:38:01.0326730Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader.h' 2025-07-17T06:38:01.0327550Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader_options.h' 2025-07-17T06:38:01.0328340Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets.h' 2025-07-17T06:38:01.0329320Z adding 'torch/include/torch/csrc/api/include/torch/data/example.h' 2025-07-17T06:38:01.0331300Z adding 'torch/include/torch/csrc/api/include/torch/data/iterator.h' 2025-07-17T06:38:01.0331730Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers.h' 2025-07-17T06:38:01.0332610Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms.h' 2025-07-17T06:38:01.0333650Z adding 'torch/include/torch/csrc/api/include/torch/data/worker_exception.h' 2025-07-17T06:38:01.0336660Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/base.h' 2025-07-17T06:38:01.0337680Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/stateful.h' 2025-07-17T06:38:01.0339010Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/stateless.h' 2025-07-17T06:38:01.0340500Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/base.h' 2025-07-17T06:38:01.0345580Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/chunk.h' 2025-07-17T06:38:01.0346840Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/map.h' 2025-07-17T06:38:01.0347870Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/mnist.h' 2025-07-17T06:38:01.0349020Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/shared.h' 2025-07-17T06:38:01.0350170Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/stateful.h' 2025-07-17T06:38:01.0351130Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/tensor.h' 2025-07-17T06:38:01.0353170Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/data_shuttle.h' 2025-07-17T06:38:01.0354190Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/queue.h' 2025-07-17T06:38:01.0355500Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/sequencers.h' 2025-07-17T06:38:01.0356770Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/base.h' 2025-07-17T06:38:01.0357690Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/custom_batch_request.h' 2025-07-17T06:38:01.0358890Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/distributed.h' 2025-07-17T06:38:01.0359890Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/random.h' 2025-07-17T06:38:01.0360910Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/sequential.h' 2025-07-17T06:38:01.0361730Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/serialize.h' 2025-07-17T06:38:01.0362790Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/stream.h' 2025-07-17T06:38:01.0364020Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/base.h' 2025-07-17T06:38:01.0364980Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/collate.h' 2025-07-17T06:38:01.0365950Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/lambda.h' 2025-07-17T06:38:01.0366900Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/stack.h' 2025-07-17T06:38:01.0367990Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/tensor.h' 2025-07-17T06:38:01.0371390Z adding 'torch/include/torch/csrc/api/include/torch/detail/TensorDataContainer.h' 2025-07-17T06:38:01.0372210Z adding 'torch/include/torch/csrc/api/include/torch/detail/static.h' 2025-07-17T06:38:01.0374170Z adding 'torch/include/torch/csrc/api/include/torch/nn/cloneable.h' 2025-07-17T06:38:01.0374700Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional.h' 2025-07-17T06:38:01.0376050Z adding 'torch/include/torch/csrc/api/include/torch/nn/init.h' 2025-07-17T06:38:01.0381220Z adding 'torch/include/torch/csrc/api/include/torch/nn/module.h' 2025-07-17T06:38:01.0381920Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules.h' 2025-07-17T06:38:01.0382750Z adding 'torch/include/torch/csrc/api/include/torch/nn/options.h' 2025-07-17T06:38:01.0384000Z adding 'torch/include/torch/csrc/api/include/torch/nn/pimpl-inl.h' 2025-07-17T06:38:01.0386110Z adding 'torch/include/torch/csrc/api/include/torch/nn/pimpl.h' 2025-07-17T06:38:01.0386620Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils.h' 2025-07-17T06:38:01.0391310Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/activation.h' 2025-07-17T06:38:01.0392300Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/batchnorm.h' 2025-07-17T06:38:01.0393610Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/conv.h' 2025-07-17T06:38:01.0394760Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/distance.h' 2025-07-17T06:38:01.0396160Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/dropout.h' 2025-07-17T06:38:01.0398000Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/embedding.h' 2025-07-17T06:38:01.0398890Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/fold.h' 2025-07-17T06:38:01.0399890Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/instancenorm.h' 2025-07-17T06:38:01.0400740Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/linear.h' 2025-07-17T06:38:01.0404570Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/loss.h' 2025-07-17T06:38:01.0405840Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/normalization.h' 2025-07-17T06:38:01.0406880Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/padding.h' 2025-07-17T06:38:01.0407880Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/pixelshuffle.h' 2025-07-17T06:38:01.0411560Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/pooling.h' 2025-07-17T06:38:01.0413690Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/upsampling.h' 2025-07-17T06:38:01.0414670Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/vision.h' 2025-07-17T06:38:01.0416000Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/_functions.h' 2025-07-17T06:38:01.0419490Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/activation.h' 2025-07-17T06:38:01.0420630Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/adaptive.h' 2025-07-17T06:38:01.0422710Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/batchnorm.h' 2025-07-17T06:38:01.0423750Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/common.h' 2025-07-17T06:38:01.0426550Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/conv.h' 2025-07-17T06:38:01.0427520Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/distance.h' 2025-07-17T06:38:01.0428920Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/dropout.h' 2025-07-17T06:38:01.0430400Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/embedding.h' 2025-07-17T06:38:01.0431550Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/fold.h' 2025-07-17T06:38:01.0432950Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/instancenorm.h' 2025-07-17T06:38:01.0434450Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/linear.h' 2025-07-17T06:38:01.0438420Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/loss.h' 2025-07-17T06:38:01.0439790Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/normalization.h' 2025-07-17T06:38:01.0441980Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/padding.h' 2025-07-17T06:38:01.0442900Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/pixelshuffle.h' 2025-07-17T06:38:01.0446260Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/pooling.h' 2025-07-17T06:38:01.0448550Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/rnn.h' 2025-07-17T06:38:01.0449940Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformer.h' 2025-07-17T06:38:01.0451400Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformercoder.h' 2025-07-17T06:38:01.0453180Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformerlayer.h' 2025-07-17T06:38:01.0453970Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/upsampling.h' 2025-07-17T06:38:01.0454940Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/utils.h' 2025-07-17T06:38:01.0458620Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any.h' 2025-07-17T06:38:01.0459980Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any_module_holder.h' 2025-07-17T06:38:01.0461380Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any_value.h' 2025-07-17T06:38:01.0462880Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/functional.h' 2025-07-17T06:38:01.0465150Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/moduledict.h' 2025-07-17T06:38:01.0467380Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/modulelist.h' 2025-07-17T06:38:01.0468300Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/named_any.h' 2025-07-17T06:38:01.0469700Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterdict.h' 2025-07-17T06:38:01.0471210Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterlist.h' 2025-07-17T06:38:01.0474560Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/sequential.h' 2025-07-17T06:38:01.0477540Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/activation.h' 2025-07-17T06:38:01.0478320Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/adaptive.h' 2025-07-17T06:38:01.0479430Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/batchnorm.h' 2025-07-17T06:38:01.0481570Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/conv.h' 2025-07-17T06:38:01.0482350Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/distance.h' 2025-07-17T06:38:01.0483470Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/dropout.h' 2025-07-17T06:38:01.0485550Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/embedding.h' 2025-07-17T06:38:01.0486420Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/fold.h' 2025-07-17T06:38:01.0487510Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/instancenorm.h' 2025-07-17T06:38:01.0488590Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/linear.h' 2025-07-17T06:38:01.0492100Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/loss.h' 2025-07-17T06:38:01.0493250Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/normalization.h' 2025-07-17T06:38:01.0494750Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/padding.h' 2025-07-17T06:38:01.0495700Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/pixelshuffle.h' 2025-07-17T06:38:01.0498280Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/pooling.h' 2025-07-17T06:38:01.0499610Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/rnn.h' 2025-07-17T06:38:01.0500750Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformer.h' 2025-07-17T06:38:01.0501840Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformercoder.h' 2025-07-17T06:38:01.0502850Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformerlayer.h' 2025-07-17T06:38:01.0504190Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/upsampling.h' 2025-07-17T06:38:01.0505100Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/vision.h' 2025-07-17T06:38:01.0508340Z adding 'torch/include/torch/csrc/api/include/torch/nn/parallel/data_parallel.h' 2025-07-17T06:38:01.0509790Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/clip_grad.h' 2025-07-17T06:38:01.0511040Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/convert_parameters.h' 2025-07-17T06:38:01.0514140Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/rnn.h' 2025-07-17T06:38:01.0515540Z adding 'torch/include/torch/csrc/api/include/torch/optim/adagrad.h' 2025-07-17T06:38:01.0516720Z adding 'torch/include/torch/csrc/api/include/torch/optim/adam.h' 2025-07-17T06:38:01.0517850Z adding 'torch/include/torch/csrc/api/include/torch/optim/adamw.h' 2025-07-17T06:38:01.0519110Z adding 'torch/include/torch/csrc/api/include/torch/optim/lbfgs.h' 2025-07-17T06:38:01.0521490Z adding 'torch/include/torch/csrc/api/include/torch/optim/optimizer.h' 2025-07-17T06:38:01.0522240Z adding 'torch/include/torch/csrc/api/include/torch/optim/rmsprop.h' 2025-07-17T06:38:01.0524960Z adding 'torch/include/torch/csrc/api/include/torch/optim/serialize.h' 2025-07-17T06:38:01.0525820Z adding 'torch/include/torch/csrc/api/include/torch/optim/sgd.h' 2025-07-17T06:38:01.0527210Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/lr_scheduler.h' 2025-07-17T06:38:01.0528340Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/reduce_on_plateau_scheduler.h' 2025-07-17T06:38:01.0529160Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/step_lr.h' 2025-07-17T06:38:01.0530110Z adding 'torch/include/torch/csrc/api/include/torch/python/init.h' 2025-07-17T06:38:01.0531110Z adding 'torch/include/torch/csrc/api/include/torch/serialize/archive.h' 2025-07-17T06:38:01.0532460Z adding 'torch/include/torch/csrc/api/include/torch/serialize/input-archive.h' 2025-07-17T06:38:01.0533530Z adding 'torch/include/torch/csrc/api/include/torch/serialize/output-archive.h' 2025-07-17T06:38:01.0534340Z adding 'torch/include/torch/csrc/api/include/torch/serialize/tensor.h' 2025-07-17T06:38:01.0539840Z adding 'torch/include/torch/csrc/autograd/FunctionsManual.h' 2025-07-17T06:38:01.0540480Z adding 'torch/include/torch/csrc/autograd/InferenceMode.h' 2025-07-17T06:38:01.0543730Z adding 'torch/include/torch/csrc/autograd/VariableTypeUtils.h' 2025-07-17T06:38:01.0544560Z adding 'torch/include/torch/csrc/autograd/anomaly_mode.h' 2025-07-17T06:38:01.0546510Z adding 'torch/include/torch/csrc/autograd/autograd.h' 2025-07-17T06:38:01.0547230Z adding 'torch/include/torch/csrc/autograd/autograd_not_implemented_fallback.h' 2025-07-17T06:38:01.0548050Z adding 'torch/include/torch/csrc/autograd/cpp_hook.h' 2025-07-17T06:38:01.0553000Z adding 'torch/include/torch/csrc/autograd/custom_function.h' 2025-07-17T06:38:01.0553830Z adding 'torch/include/torch/csrc/autograd/edge.h' 2025-07-17T06:38:01.0556740Z adding 'torch/include/torch/csrc/autograd/engine.h' 2025-07-17T06:38:01.0559310Z adding 'torch/include/torch/csrc/autograd/forward_grad.h' 2025-07-17T06:38:01.0566780Z adding 'torch/include/torch/csrc/autograd/function.h' 2025-07-17T06:38:01.0567640Z adding 'torch/include/torch/csrc/autograd/function_hook.h' 2025-07-17T06:38:01.0568470Z adding 'torch/include/torch/csrc/autograd/grad_mode.h' 2025-07-17T06:38:01.0571270Z adding 'torch/include/torch/csrc/autograd/graph_task.h' 2025-07-17T06:38:01.0572110Z adding 'torch/include/torch/csrc/autograd/input_buffer.h' 2025-07-17T06:38:01.0573300Z adding 'torch/include/torch/csrc/autograd/input_metadata.h' 2025-07-17T06:38:01.0574360Z adding 'torch/include/torch/csrc/autograd/jit_decomp_interface.h' 2025-07-17T06:38:01.0575080Z adding 'torch/include/torch/csrc/autograd/profiler.h' 2025-07-17T06:38:01.0577400Z adding 'torch/include/torch/csrc/autograd/profiler_kineto.h' 2025-07-17T06:38:01.0579990Z adding 'torch/include/torch/csrc/autograd/profiler_legacy.h' 2025-07-17T06:38:01.0580530Z adding 'torch/include/torch/csrc/autograd/profiler_python.h' 2025-07-17T06:38:01.0581530Z adding 'torch/include/torch/csrc/autograd/python_anomaly_mode.h' 2025-07-17T06:38:01.0582350Z adding 'torch/include/torch/csrc/autograd/python_autograd.h' 2025-07-17T06:38:01.0583750Z adding 'torch/include/torch/csrc/autograd/python_cpp_function.h' 2025-07-17T06:38:01.0584700Z adding 'torch/include/torch/csrc/autograd/python_engine.h' 2025-07-17T06:38:01.0585470Z adding 'torch/include/torch/csrc/autograd/python_enum_tag.h' 2025-07-17T06:38:01.0586240Z adding 'torch/include/torch/csrc/autograd/python_fft_functions.h' 2025-07-17T06:38:01.0588130Z adding 'torch/include/torch/csrc/autograd/python_function.h' 2025-07-17T06:38:01.0588800Z adding 'torch/include/torch/csrc/autograd/python_hook.h' 2025-07-17T06:38:01.0589620Z adding 'torch/include/torch/csrc/autograd/python_legacy_variable.h' 2025-07-17T06:38:01.0590410Z adding 'torch/include/torch/csrc/autograd/python_linalg_functions.h' 2025-07-17T06:38:01.0591150Z adding 'torch/include/torch/csrc/autograd/python_nested_functions.h' 2025-07-17T06:38:01.0591870Z adding 'torch/include/torch/csrc/autograd/python_nn_functions.h' 2025-07-17T06:38:01.0592780Z adding 'torch/include/torch/csrc/autograd/python_saved_variable_hooks.h' 2025-07-17T06:38:01.0593540Z adding 'torch/include/torch/csrc/autograd/python_sparse_functions.h' 2025-07-17T06:38:01.0594250Z adding 'torch/include/torch/csrc/autograd/python_special_functions.h' 2025-07-17T06:38:01.0595140Z adding 'torch/include/torch/csrc/autograd/python_torch_functions.h' 2025-07-17T06:38:01.0596380Z adding 'torch/include/torch/csrc/autograd/python_variable.h' 2025-07-17T06:38:01.0597590Z adding 'torch/include/torch/csrc/autograd/python_variable_indexing.h' 2025-07-17T06:38:01.0598510Z adding 'torch/include/torch/csrc/autograd/record_function_ops.h' 2025-07-17T06:38:01.0600460Z adding 'torch/include/torch/csrc/autograd/saved_variable.h' 2025-07-17T06:38:01.0601040Z adding 'torch/include/torch/csrc/autograd/saved_variable_hooks.h' 2025-07-17T06:38:01.0601840Z adding 'torch/include/torch/csrc/autograd/symbolic.h' 2025-07-17T06:38:01.0611480Z adding 'torch/include/torch/csrc/autograd/variable.h' 2025-07-17T06:38:01.0612330Z adding 'torch/include/torch/csrc/autograd/variable_info.h' 2025-07-17T06:38:01.0616380Z adding 'torch/include/torch/csrc/autograd/functions/accumulate_grad.h' 2025-07-17T06:38:01.0617340Z adding 'torch/include/torch/csrc/autograd/functions/basic_ops.h' 2025-07-17T06:38:01.0618270Z adding 'torch/include/torch/csrc/autograd/functions/comm.h' 2025-07-17T06:38:01.0619130Z adding 'torch/include/torch/csrc/autograd/functions/pybind.h' 2025-07-17T06:38:01.0621620Z adding 'torch/include/torch/csrc/autograd/functions/tensor.h' 2025-07-17T06:38:01.0622640Z adding 'torch/include/torch/csrc/autograd/functions/utils.h' 2025-07-17T06:38:01.0656120Z adding 'torch/include/torch/csrc/autograd/generated/Functions.h' 2025-07-17T06:38:01.0659960Z adding 'torch/include/torch/csrc/autograd/generated/VariableType.h' 2025-07-17T06:38:01.0663080Z adding 'torch/include/torch/csrc/autograd/generated/ViewFuncs.h' 2025-07-17T06:38:01.0663940Z adding 'torch/include/torch/csrc/autograd/generated/python_functions.h' 2025-07-17T06:38:01.0665010Z adding 'torch/include/torch/csrc/autograd/generated/python_return_types.h' 2025-07-17T06:38:01.0669510Z adding 'torch/include/torch/csrc/autograd/generated/variable_factories.h' 2025-07-17T06:38:01.0670570Z adding 'torch/include/torch/csrc/autograd/utils/error_messages.h' 2025-07-17T06:38:01.0671790Z adding 'torch/include/torch/csrc/autograd/utils/grad_layout_contract.h' 2025-07-17T06:38:01.0672790Z adding 'torch/include/torch/csrc/autograd/utils/lambda_post_hook.h' 2025-07-17T06:38:01.0673750Z adding 'torch/include/torch/csrc/autograd/utils/python_arg_parsing.h' 2025-07-17T06:38:01.0674600Z adding 'torch/include/torch/csrc/autograd/utils/warnings.h' 2025-07-17T06:38:01.0675880Z adding 'torch/include/torch/csrc/autograd/utils/wrap_outputs.h' 2025-07-17T06:38:01.0676870Z adding 'torch/include/torch/csrc/cpu/Module.h' 2025-07-17T06:38:01.0679190Z adding 'torch/include/torch/csrc/cuda/CUDAPluggableAllocator.h' 2025-07-17T06:38:01.0679750Z adding 'torch/include/torch/csrc/cuda/Event.h' 2025-07-17T06:38:01.0680550Z adding 'torch/include/torch/csrc/cuda/GdsFile.h' 2025-07-17T06:38:01.0681410Z adding 'torch/include/torch/csrc/cuda/Module.h' 2025-07-17T06:38:01.0682230Z adding 'torch/include/torch/csrc/cuda/Stream.h' 2025-07-17T06:38:01.0682990Z adding 'torch/include/torch/csrc/cuda/THCP.h' 2025-07-17T06:38:01.0683950Z adding 'torch/include/torch/csrc/cuda/comm.h' 2025-07-17T06:38:01.0684760Z adding 'torch/include/torch/csrc/cuda/device_set.h' 2025-07-17T06:38:01.0685740Z adding 'torch/include/torch/csrc/cuda/memory_snapshot.h' 2025-07-17T06:38:01.0687690Z adding 'torch/include/torch/csrc/cuda/nccl.h' 2025-07-17T06:38:01.0688060Z adding 'torch/include/torch/csrc/cuda/python_comm.h' 2025-07-17T06:38:01.0688880Z adding 'torch/include/torch/csrc/cuda/python_nccl.h' 2025-07-17T06:38:01.0689620Z adding 'torch/include/torch/csrc/cuda/utils.h' 2025-07-17T06:38:01.0691770Z adding 'torch/include/torch/csrc/distributed/autograd/autograd.h' 2025-07-17T06:38:01.0692170Z adding 'torch/include/torch/csrc/distributed/autograd/python_autograd.h' 2025-07-17T06:38:01.0693270Z adding 'torch/include/torch/csrc/distributed/autograd/utils.h' 2025-07-17T06:38:01.0695850Z adding 'torch/include/torch/csrc/distributed/autograd/context/container.h' 2025-07-17T06:38:01.0697590Z adding 'torch/include/torch/csrc/distributed/autograd/context/context.h' 2025-07-17T06:38:01.0700010Z adding 'torch/include/torch/csrc/distributed/autograd/engine/dist_engine.h' 2025-07-17T06:38:01.0701380Z adding 'torch/include/torch/csrc/distributed/autograd/functions/recvrpc_backward.h' 2025-07-17T06:38:01.0702400Z adding 'torch/include/torch/csrc/distributed/autograd/functions/sendrpc_backward.h' 2025-07-17T06:38:01.0703580Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/autograd_metadata.h' 2025-07-17T06:38:01.0704560Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_req.h' 2025-07-17T06:38:01.0705450Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_resp.h' 2025-07-17T06:38:01.0706400Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_req.h' 2025-07-17T06:38:01.0707310Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_resp.h' 2025-07-17T06:38:01.0708540Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_autograd.h' 2025-07-17T06:38:01.0709690Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_req.h' 2025-07-17T06:38:01.0710770Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_resp.h' 2025-07-17T06:38:01.0711710Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_req.h' 2025-07-17T06:38:01.0712570Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_resp.h' 2025-07-17T06:38:01.0716100Z adding 'torch/include/torch/csrc/distributed/c10d/Backend.hpp' 2025-07-17T06:38:01.0716840Z adding 'torch/include/torch/csrc/distributed/c10d/Backoff.hpp' 2025-07-17T06:38:01.0718300Z adding 'torch/include/torch/csrc/distributed/c10d/FakeProcessGroup.hpp' 2025-07-17T06:38:01.0719250Z adding 'torch/include/torch/csrc/distributed/c10d/FileStore.hpp' 2025-07-17T06:38:01.0721940Z adding 'torch/include/torch/csrc/distributed/c10d/FlightRecorder.hpp' 2025-07-17T06:38:01.0725730Z adding 'torch/include/torch/csrc/distributed/c10d/FlightRecorderDetail.hpp' 2025-07-17T06:38:01.0726490Z adding 'torch/include/torch/csrc/distributed/c10d/Functional.hpp' 2025-07-17T06:38:01.0727580Z adding 'torch/include/torch/csrc/distributed/c10d/GlooDeviceFactory.hpp' 2025-07-17T06:38:01.0728390Z adding 'torch/include/torch/csrc/distributed/c10d/GroupRegistry.hpp' 2025-07-17T06:38:01.0729430Z adding 'torch/include/torch/csrc/distributed/c10d/HashStore.hpp' 2025-07-17T06:38:01.0732920Z adding 'torch/include/torch/csrc/distributed/c10d/NCCLUtils.hpp' 2025-07-17T06:38:01.0733580Z adding 'torch/include/torch/csrc/distributed/c10d/NanCheck.hpp' 2025-07-17T06:38:01.0735500Z adding 'torch/include/torch/csrc/distributed/c10d/ParamCommsUtils.hpp' 2025-07-17T06:38:01.0736280Z adding 'torch/include/torch/csrc/distributed/c10d/PrefixStore.hpp' 2025-07-17T06:38:01.0741870Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroup.hpp' 2025-07-17T06:38:01.0745350Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupGloo.hpp' 2025-07-17T06:38:01.0749600Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupGlooDetail.hpp' 2025-07-17T06:38:01.0751500Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupMPI.hpp' 2025-07-17T06:38:01.0764690Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupNCCL.hpp' 2025-07-17T06:38:01.0767310Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupUCC.hpp' 2025-07-17T06:38:01.0768540Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupWrapper.hpp' 2025-07-17T06:38:01.0770980Z adding 'torch/include/torch/csrc/distributed/c10d/PyProcessGroup.hpp' 2025-07-17T06:38:01.0771980Z adding 'torch/include/torch/csrc/distributed/c10d/RankLocal.hpp' 2025-07-17T06:38:01.0773360Z adding 'torch/include/torch/csrc/distributed/c10d/Store.hpp' 2025-07-17T06:38:01.0775220Z adding 'torch/include/torch/csrc/distributed/c10d/TCPStore.hpp' 2025-07-17T06:38:01.0776040Z adding 'torch/include/torch/csrc/distributed/c10d/TCPStoreBackend.hpp' 2025-07-17T06:38:01.0778540Z adding 'torch/include/torch/csrc/distributed/c10d/TraceUtils.h' 2025-07-17T06:38:01.0779840Z adding 'torch/include/torch/csrc/distributed/c10d/Types.hpp' 2025-07-17T06:38:01.0780980Z adding 'torch/include/torch/csrc/distributed/c10d/UCCTracing.hpp' 2025-07-17T06:38:01.0782990Z adding 'torch/include/torch/csrc/distributed/c10d/UCCUtils.hpp' 2025-07-17T06:38:01.0783600Z adding 'torch/include/torch/csrc/distributed/c10d/UnixSockUtils.hpp' 2025-07-17T06:38:01.0788210Z adding 'torch/include/torch/csrc/distributed/c10d/Utils.hpp' 2025-07-17T06:38:01.0788950Z adding 'torch/include/torch/csrc/distributed/c10d/WinSockUtils.hpp' 2025-07-17T06:38:01.0790950Z adding 'torch/include/torch/csrc/distributed/c10d/Work.hpp' 2025-07-17T06:38:01.0791470Z adding 'torch/include/torch/csrc/distributed/c10d/c10d.h' 2025-07-17T06:38:01.0793100Z adding 'torch/include/torch/csrc/distributed/c10d/comm.hpp' 2025-07-17T06:38:01.0793870Z adding 'torch/include/torch/csrc/distributed/c10d/debug.h' 2025-07-17T06:38:01.0794890Z adding 'torch/include/torch/csrc/distributed/c10d/default_comm_hooks.hpp' 2025-07-17T06:38:01.0795800Z adding 'torch/include/torch/csrc/distributed/c10d/error.h' 2025-07-17T06:38:01.0796800Z adding 'torch/include/torch/csrc/distributed/c10d/exception.h' 2025-07-17T06:38:01.0799010Z adding 'torch/include/torch/csrc/distributed/c10d/logger.hpp' 2025-07-17T06:38:01.0799720Z adding 'torch/include/torch/csrc/distributed/c10d/logging.h' 2025-07-17T06:38:01.0800700Z adding 'torch/include/torch/csrc/distributed/c10d/python_comm_hook.h' 2025-07-17T06:38:01.0807150Z adding 'torch/include/torch/csrc/distributed/c10d/reducer.hpp' 2025-07-17T06:38:01.0808240Z adding 'torch/include/torch/csrc/distributed/c10d/reducer_timer.hpp' 2025-07-17T06:38:01.0809290Z adding 'torch/include/torch/csrc/distributed/c10d/sequence_num.hpp' 2025-07-17T06:38:01.0811750Z adding 'torch/include/torch/csrc/distributed/c10d/socket.h' 2025-07-17T06:38:01.0812430Z adding 'torch/include/torch/csrc/distributed/c10d/socket_fmt.h' 2025-07-17T06:38:01.0813990Z adding 'torch/include/torch/csrc/distributed/c10d/control_collectives/ControlCollectives.hpp' 2025-07-17T06:38:01.0815010Z adding 'torch/include/torch/csrc/distributed/c10d/control_collectives/StoreCollectives.hpp' 2025-07-17T06:38:01.0816300Z adding 'torch/include/torch/csrc/distributed/c10d/control_plane/Handlers.hpp' 2025-07-17T06:38:01.0817210Z adding 'torch/include/torch/csrc/distributed/c10d/control_plane/WorkerServer.hpp' 2025-07-17T06:38:01.0818330Z adding 'torch/include/torch/csrc/distributed/c10d/cuda/StreamBlock.hpp' 2025-07-17T06:38:01.0819160Z adding 'torch/include/torch/csrc/distributed/c10d/cuda/utils.hpp' 2025-07-17T06:38:01.0820300Z adding 'torch/include/torch/csrc/distributed/c10d/quantization/quantization.h' 2025-07-17T06:38:01.0821160Z adding 'torch/include/torch/csrc/distributed/c10d/quantization/quantization_gpu.h' 2025-07-17T06:38:01.0822190Z adding 'torch/include/torch/csrc/distributed/c10d/quantization/quantization_utils.h' 2025-07-17T06:38:01.0825330Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemory-inl.h' 2025-07-17T06:38:01.0826310Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemory.hpp' 2025-07-17T06:38:01.0827240Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemoryTypes.hpp' 2025-07-17T06:38:01.0828470Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemoryUtils.hpp' 2025-07-17T06:38:01.0829450Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/DMAConnectivity.hpp' 2025-07-17T06:38:01.0831710Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/SymmetricMemory.hpp' 2025-07-17T06:38:01.0832670Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/intra_node_comm.hpp' 2025-07-17T06:38:01.0834380Z adding 'torch/include/torch/csrc/distributed/rpc/agent_utils.h' 2025-07-17T06:38:01.0836510Z adding 'torch/include/torch/csrc/distributed/rpc/message.h' 2025-07-17T06:38:01.0837500Z adding 'torch/include/torch/csrc/distributed/rpc/py_rref.h' 2025-07-17T06:38:01.0838520Z adding 'torch/include/torch/csrc/distributed/rpc/python_call.h' 2025-07-17T06:38:01.0839740Z adding 'torch/include/torch/csrc/distributed/rpc/python_functions.h' 2025-07-17T06:38:01.0840710Z adding 'torch/include/torch/csrc/distributed/rpc/python_remote_call.h' 2025-07-17T06:38:01.0841610Z adding 'torch/include/torch/csrc/distributed/rpc/python_resp.h' 2025-07-17T06:38:01.0843590Z adding 'torch/include/torch/csrc/distributed/rpc/python_rpc_handler.h' 2025-07-17T06:38:01.0844290Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback.h' 2025-07-17T06:38:01.0845320Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback_impl.h' 2025-07-17T06:38:01.0846600Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback_no_python.h' 2025-07-17T06:38:01.0847390Z adding 'torch/include/torch/csrc/distributed/rpc/rpc.h' 2025-07-17T06:38:01.0850930Z adding 'torch/include/torch/csrc/distributed/rpc/rpc_agent.h' 2025-07-17T06:38:01.0851690Z adding 'torch/include/torch/csrc/distributed/rpc/rpc_command_base.h' 2025-07-17T06:38:01.0856210Z adding 'torch/include/torch/csrc/distributed/rpc/rref_context.h' 2025-07-17T06:38:01.0860440Z adding 'torch/include/torch/csrc/distributed/rpc/rref_impl.h' 2025-07-17T06:38:01.0861590Z adding 'torch/include/torch/csrc/distributed/rpc/rref_proto.h' 2025-07-17T06:38:01.0862720Z adding 'torch/include/torch/csrc/distributed/rpc/script_call.h' 2025-07-17T06:38:01.0863760Z adding 'torch/include/torch/csrc/distributed/rpc/script_remote_call.h' 2025-07-17T06:38:01.0864630Z adding 'torch/include/torch/csrc/distributed/rpc/script_resp.h' 2025-07-17T06:38:01.0868950Z adding 'torch/include/torch/csrc/distributed/rpc/tensorpipe_agent.h' 2025-07-17T06:38:01.0870180Z adding 'torch/include/torch/csrc/distributed/rpc/tensorpipe_utils.h' 2025-07-17T06:38:01.0871230Z adding 'torch/include/torch/csrc/distributed/rpc/torchscript_functions.h' 2025-07-17T06:38:01.0872230Z adding 'torch/include/torch/csrc/distributed/rpc/types.h' 2025-07-17T06:38:01.0873280Z adding 'torch/include/torch/csrc/distributed/rpc/unpickled_python_call.h' 2025-07-17T06:38:01.0874240Z adding 'torch/include/torch/csrc/distributed/rpc/unpickled_python_remote_call.h' 2025-07-17T06:38:01.0875540Z adding 'torch/include/torch/csrc/distributed/rpc/utils.h' 2025-07-17T06:38:01.0877100Z adding 'torch/include/torch/csrc/distributed/rpc/metrics/RpcMetricsHandler.h' 2025-07-17T06:38:01.0878490Z adding 'torch/include/torch/csrc/distributed/rpc/profiler/remote_profiler_manager.h' 2025-07-17T06:38:01.0879970Z adding 'torch/include/torch/csrc/distributed/rpc/profiler/server_process_global_profiler.h' 2025-07-17T06:38:01.0881890Z adding 'torch/include/torch/csrc/distributed/rpc/testing/faulty_tensorpipe_agent.h' 2025-07-17T06:38:01.0882300Z adding 'torch/include/torch/csrc/distributed/rpc/testing/testing.h' 2025-07-17T06:38:01.0884180Z adding 'torch/include/torch/csrc/dynamo/cache_entry.h' 2025-07-17T06:38:01.0894110Z adding 'torch/include/torch/csrc/dynamo/compiled_autograd.h' 2025-07-17T06:38:01.0894950Z adding 'torch/include/torch/csrc/dynamo/cpp_shim.h' 2025-07-17T06:38:01.0895930Z adding 'torch/include/torch/csrc/dynamo/cpython_defs.h' 2025-07-17T06:38:01.0896940Z adding 'torch/include/torch/csrc/dynamo/cpython_includes.h' 2025-07-17T06:38:01.0898260Z adding 'torch/include/torch/csrc/dynamo/debug_macros.h' 2025-07-17T06:38:01.0899200Z adding 'torch/include/torch/csrc/dynamo/eval_frame.h' 2025-07-17T06:38:01.0900100Z adding 'torch/include/torch/csrc/dynamo/eval_frame_cpp.h' 2025-07-17T06:38:01.0902200Z adding 'torch/include/torch/csrc/dynamo/extra_state.h' 2025-07-17T06:38:01.0903220Z adding 'torch/include/torch/csrc/dynamo/framelocals_mapping.h' 2025-07-17T06:38:01.0904370Z adding 'torch/include/torch/csrc/dynamo/guards.h' 2025-07-17T06:38:01.0905180Z adding 'torch/include/torch/csrc/dynamo/init.h' 2025-07-17T06:38:01.0906070Z adding 'torch/include/torch/csrc/dynamo/python_compiled_autograd.h' 2025-07-17T06:38:01.0906840Z adding 'torch/include/torch/csrc/dynamo/utils.h' 2025-07-17T06:38:01.0907990Z adding 'torch/include/torch/csrc/export/example_upgraders.h' 2025-07-17T06:38:01.0909350Z adding 'torch/include/torch/csrc/export/pt2_archive_constants.h' 2025-07-17T06:38:01.0910090Z adding 'torch/include/torch/csrc/export/pybind.h' 2025-07-17T06:38:01.0912020Z adding 'torch/include/torch/csrc/export/upgrader.h' 2025-07-17T06:38:01.0912610Z adding 'torch/include/torch/csrc/functorch/init.h' 2025-07-17T06:38:01.0913610Z adding 'torch/include/torch/csrc/fx/node.h' 2025-07-17T06:38:01.0915280Z adding 'torch/include/torch/csrc/inductor/array_ref_impl.h' 2025-07-17T06:38:01.0922070Z adding 'torch/include/torch/csrc/inductor/cpp_prefix.h' 2025-07-17T06:38:01.0922950Z adding 'torch/include/torch/csrc/inductor/inductor_ops.h' 2025-07-17T06:38:01.0923790Z adding 'torch/include/torch/csrc/inductor/static_cuda_launcher.h' 2025-07-17T06:38:01.0925890Z adding 'torch/include/torch/csrc/inductor/aoti_eager/kernel_holder.h' 2025-07-17T06:38:01.0927400Z adding 'torch/include/torch/csrc/inductor/aoti_eager/kernel_meta_info.h' 2025-07-17T06:38:01.0928430Z adding 'torch/include/torch/csrc/inductor/aoti_include/array_ref.h' 2025-07-17T06:38:01.0929250Z adding 'torch/include/torch/csrc/inductor/aoti_include/common.h' 2025-07-17T06:38:01.0930030Z adding 'torch/include/torch/csrc/inductor/aoti_include/cpu.h' 2025-07-17T06:38:01.0930950Z adding 'torch/include/torch/csrc/inductor/aoti_include/cuda.h' 2025-07-17T06:38:01.0931580Z adding 'torch/include/torch/csrc/inductor/aoti_include/mps.h' 2025-07-17T06:38:01.0932380Z adding 'torch/include/torch/csrc/inductor/aoti_include/xpu.h' 2025-07-17T06:38:01.0933760Z adding 'torch/include/torch/csrc/inductor/aoti_package/model_package_loader.h' 2025-07-17T06:38:01.0934460Z adding 'torch/include/torch/csrc/inductor/aoti_package/pybind.h' 2025-07-17T06:38:01.0936650Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner.h' 2025-07-17T06:38:01.0937090Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cpu.h' 2025-07-17T06:38:01.0938050Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cuda.h' 2025-07-17T06:38:01.0938900Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_mps.h' 2025-07-17T06:38:01.0939850Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_xpu.h' 2025-07-17T06:38:01.0940570Z adding 'torch/include/torch/csrc/inductor/aoti_runner/pybind.h' 2025-07-17T06:38:01.0942860Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/arrayref_tensor.h' 2025-07-17T06:38:01.0943410Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/constant_type.h' 2025-07-17T06:38:01.0944590Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/device_utils.h' 2025-07-17T06:38:01.0946720Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/interface.h' 2025-07-17T06:38:01.0947920Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/mini_array_ref.h' 2025-07-17T06:38:01.0949070Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/model.h' 2025-07-17T06:38:01.0953770Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/model_base.h' 2025-07-17T06:38:01.0958890Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/model_container.h' 2025-07-17T06:38:01.0959810Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/scalar_to_tensor.h' 2025-07-17T06:38:01.0961950Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/sycl_runtime_wrappers.h' 2025-07-17T06:38:01.0962930Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/thread_local.h' 2025-07-17T06:38:01.0965340Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils.h' 2025-07-17T06:38:01.0966130Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils_cuda.h' 2025-07-17T06:38:01.0967120Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils_xpu.h' 2025-07-17T06:38:01.0968300Z adding 'torch/include/torch/csrc/inductor/aoti_torch/mkldnn_tensor.h' 2025-07-17T06:38:01.0969770Z adding 'torch/include/torch/csrc/inductor/aoti_torch/oss_proxy_executor.h' 2025-07-17T06:38:01.0970680Z adding 'torch/include/torch/csrc/inductor/aoti_torch/proxy_executor.h' 2025-07-17T06:38:01.0971690Z adding 'torch/include/torch/csrc/inductor/aoti_torch/tensor_converter.h' 2025-07-17T06:38:01.0973600Z adding 'torch/include/torch/csrc/inductor/aoti_torch/utils.h' 2025-07-17T06:38:01.0978570Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim.h' 2025-07-17T06:38:01.0979860Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_cpu.h' 2025-07-17T06:38:01.0980850Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_mps.h' 2025-07-17T06:38:01.0981930Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_xpu.h' 2025-07-17T06:38:01.0985840Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cpu.h' 2025-07-17T06:38:01.0989600Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cuda.h' 2025-07-17T06:38:01.0992510Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_mps.h' 2025-07-17T06:38:01.0994060Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_xpu.h' 2025-07-17T06:38:01.0995070Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/array_ref.h' 2025-07-17T06:38:01.0996100Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/common.h' 2025-07-17T06:38:01.0996870Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/cpu.h' 2025-07-17T06:38:01.0997640Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/cuda.h' 2025-07-17T06:38:01.0998440Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/mps.h' 2025-07-17T06:38:01.0999200Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/xpu.h' 2025-07-17T06:38:01.1000410Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/cpu.h' 2025-07-17T06:38:01.1001120Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/cuda.h' 2025-07-17T06:38:01.1001860Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/mps.h' 2025-07-17T06:38:01.1002620Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/xpu.h' 2025-07-17T06:38:01.1003660Z adding 'torch/include/torch/csrc/instruction_counter/Module.h' 2025-07-17T06:38:01.1005710Z adding 'torch/include/torch/csrc/jit/jit_log.h' 2025-07-17T06:38:01.1006480Z adding 'torch/include/torch/csrc/jit/jit_opt_limit.h' 2025-07-17T06:38:01.1007350Z adding 'torch/include/torch/csrc/jit/resource_guard.h' 2025-07-17T06:38:01.1011150Z adding 'torch/include/torch/csrc/jit/api/compilation_unit.h' 2025-07-17T06:38:01.1012880Z adding 'torch/include/torch/csrc/jit/api/function_impl.h' 2025-07-17T06:38:01.1013860Z adding 'torch/include/torch/csrc/jit/api/method.h' 2025-07-17T06:38:01.1019440Z adding 'torch/include/torch/csrc/jit/api/module.h' 2025-07-17T06:38:01.1021230Z adding 'torch/include/torch/csrc/jit/api/object.h' 2025-07-17T06:38:01.1022790Z adding 'torch/include/torch/csrc/jit/backends/backend.h' 2025-07-17T06:38:01.1025150Z adding 'torch/include/torch/csrc/jit/backends/backend_debug_handler.h' 2025-07-17T06:38:01.1025970Z adding 'torch/include/torch/csrc/jit/backends/backend_debug_info.h' 2025-07-17T06:38:01.1032310Z adding 'torch/include/torch/csrc/jit/backends/backend_detail.h' 2025-07-17T06:38:01.1032600Z adding 'torch/include/torch/csrc/jit/backends/backend_exception.h' 2025-07-17T06:38:01.1032750Z adding 'torch/include/torch/csrc/jit/backends/backend_init.h' 2025-07-17T06:38:01.1032880Z adding 'torch/include/torch/csrc/jit/backends/backend_interface.h' 2025-07-17T06:38:01.1033020Z adding 'torch/include/torch/csrc/jit/backends/backend_preprocess.h' 2025-07-17T06:38:01.1033140Z adding 'torch/include/torch/csrc/jit/backends/backend_resolver.h' 2025-07-17T06:38:01.1033260Z adding 'torch/include/torch/csrc/jit/backends/coreml/cpp/context.h' 2025-07-17T06:38:01.1033890Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLCompiler.h' 2025-07-17T06:38:01.1034800Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLExecutor.h' 2025-07-17T06:38:01.1035620Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLFeatureProvider.h' 2025-07-17T06:38:01.1036490Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLModelWrapper.h' 2025-07-17T06:38:01.1037340Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLTensorSpec.h' 2025-07-17T06:38:01.1039030Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/xnnpack_graph_builder.h' 2025-07-17T06:38:01.1040120Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/compiler/xnn_compiler.h' 2025-07-17T06:38:01.1041350Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/executor/xnn_executor.h' 2025-07-17T06:38:01.1042750Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/serialization/serializer.h' 2025-07-17T06:38:01.1044230Z adding 'torch/include/torch/csrc/jit/codegen/cuda/interface.h' 2025-07-17T06:38:01.1045520Z adding 'torch/include/torch/csrc/jit/codegen/fuser/arg_spec.h' 2025-07-17T06:38:01.1046380Z adding 'torch/include/torch/csrc/jit/codegen/fuser/codegen.h' 2025-07-17T06:38:01.1047400Z adding 'torch/include/torch/csrc/jit/codegen/fuser/compiler.h' 2025-07-17T06:38:01.1048300Z adding 'torch/include/torch/csrc/jit/codegen/fuser/executor.h' 2025-07-17T06:38:01.1049070Z adding 'torch/include/torch/csrc/jit/codegen/fuser/fallback.h' 2025-07-17T06:38:01.1050330Z adding 'torch/include/torch/csrc/jit/codegen/fuser/fused_kernel.h' 2025-07-17T06:38:01.1051360Z adding 'torch/include/torch/csrc/jit/codegen/fuser/interface.h' 2025-07-17T06:38:01.1052280Z adding 'torch/include/torch/csrc/jit/codegen/fuser/kernel_cache.h' 2025-07-17T06:38:01.1053870Z adding 'torch/include/torch/csrc/jit/codegen/fuser/kernel_spec.h' 2025-07-17T06:38:01.1054820Z adding 'torch/include/torch/csrc/jit/codegen/fuser/partition_desc.h' 2025-07-17T06:38:01.1056020Z adding 'torch/include/torch/csrc/jit/codegen/fuser/tensor_desc.h' 2025-07-17T06:38:01.1056860Z adding 'torch/include/torch/csrc/jit/codegen/fuser/tensor_info.h' 2025-07-17T06:38:01.1058100Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cpu/fused_kernel.h' 2025-07-17T06:38:01.1059240Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cpu/resource_strings.h' 2025-07-17T06:38:01.1060470Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cpu/temp_file.h' 2025-07-17T06:38:01.1061710Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cuda/fused_kernel.h' 2025-07-17T06:38:01.1067440Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cuda/resource_strings.h' 2025-07-17T06:38:01.1069740Z adding 'torch/include/torch/csrc/jit/codegen/onednn/LlgaTensorImpl.h' 2025-07-17T06:38:01.1070290Z adding 'torch/include/torch/csrc/jit/codegen/onednn/decompose_silu.h' 2025-07-17T06:38:01.1071080Z adding 'torch/include/torch/csrc/jit/codegen/onednn/defer_size_check.h' 2025-07-17T06:38:01.1072080Z adding 'torch/include/torch/csrc/jit/codegen/onednn/graph_fuser.h' 2025-07-17T06:38:01.1073210Z adding 'torch/include/torch/csrc/jit/codegen/onednn/graph_helper.h' 2025-07-17T06:38:01.1074020Z adding 'torch/include/torch/csrc/jit/codegen/onednn/guard_shape.h' 2025-07-17T06:38:01.1075020Z adding 'torch/include/torch/csrc/jit/codegen/onednn/interface.h' 2025-07-17T06:38:01.1076240Z adding 'torch/include/torch/csrc/jit/codegen/onednn/kernel.h' 2025-07-17T06:38:01.1077060Z adding 'torch/include/torch/csrc/jit/codegen/onednn/layout_propagation.h' 2025-07-17T06:38:01.1078360Z adding 'torch/include/torch/csrc/jit/codegen/onednn/operator.h' 2025-07-17T06:38:01.1079210Z adding 'torch/include/torch/csrc/jit/codegen/onednn/prepare_binary.h' 2025-07-17T06:38:01.1081380Z adding 'torch/include/torch/csrc/jit/cuda/cuda.h' 2025-07-17T06:38:01.1082260Z adding 'torch/include/torch/csrc/jit/frontend/builtin_functions.h' 2025-07-17T06:38:01.1083240Z adding 'torch/include/torch/csrc/jit/frontend/canonicalize_modified_loop.h' 2025-07-17T06:38:01.1085850Z adding 'torch/include/torch/csrc/jit/frontend/concrete_module_type.h' 2025-07-17T06:38:01.1086370Z adding 'torch/include/torch/csrc/jit/frontend/convert_to_ssa.h' 2025-07-17T06:38:01.1087220Z adding 'torch/include/torch/csrc/jit/frontend/edit_distance.h' 2025-07-17T06:38:01.1088160Z adding 'torch/include/torch/csrc/jit/frontend/error_report.h' 2025-07-17T06:38:01.1088960Z adding 'torch/include/torch/csrc/jit/frontend/exit_transforms.h' 2025-07-17T06:38:01.1089910Z adding 'torch/include/torch/csrc/jit/frontend/function_schema_parser.h' 2025-07-17T06:38:01.1090700Z adding 'torch/include/torch/csrc/jit/frontend/inline_loop_condition.h' 2025-07-17T06:38:01.1091490Z adding 'torch/include/torch/csrc/jit/frontend/ir_emitter.h' 2025-07-17T06:38:01.1096260Z adding 'torch/include/torch/csrc/jit/frontend/lexer.h' 2025-07-17T06:38:01.1097190Z adding 'torch/include/torch/csrc/jit/frontend/mini_environment.h' 2025-07-17T06:38:01.1098040Z adding 'torch/include/torch/csrc/jit/frontend/name_mangler.h' 2025-07-17T06:38:01.1099200Z adding 'torch/include/torch/csrc/jit/frontend/parse_string_literal.h' 2025-07-17T06:38:01.1100040Z adding 'torch/include/torch/csrc/jit/frontend/parser.h' 2025-07-17T06:38:01.1100850Z adding 'torch/include/torch/csrc/jit/frontend/parser_constants.h' 2025-07-17T06:38:01.1101880Z adding 'torch/include/torch/csrc/jit/frontend/resolver.h' 2025-07-17T06:38:01.1102960Z adding 'torch/include/torch/csrc/jit/frontend/schema_matching.h' 2025-07-17T06:38:01.1103920Z adding 'torch/include/torch/csrc/jit/frontend/schema_type_parser.h' 2025-07-17T06:38:01.1104920Z adding 'torch/include/torch/csrc/jit/frontend/script_type_parser.h' 2025-07-17T06:38:01.1108960Z adding 'torch/include/torch/csrc/jit/frontend/source_range.h' 2025-07-17T06:38:01.1109790Z adding 'torch/include/torch/csrc/jit/frontend/source_ref.h' 2025-07-17T06:38:01.1110580Z adding 'torch/include/torch/csrc/jit/frontend/strtod.h' 2025-07-17T06:38:01.1116220Z adding 'torch/include/torch/csrc/jit/frontend/sugared_value.h' 2025-07-17T06:38:01.1118870Z adding 'torch/include/torch/csrc/jit/frontend/tracer.h' 2025-07-17T06:38:01.1120910Z adding 'torch/include/torch/csrc/jit/frontend/tree.h' 2025-07-17T06:38:01.1127250Z adding 'torch/include/torch/csrc/jit/frontend/tree_views.h' 2025-07-17T06:38:01.1128050Z adding 'torch/include/torch/csrc/jit/frontend/versioned_symbols.h' 2025-07-17T06:38:01.1132060Z adding 'torch/include/torch/csrc/jit/ir/alias_analysis.h' 2025-07-17T06:38:01.1133250Z adding 'torch/include/torch/csrc/jit/ir/attributes.h' 2025-07-17T06:38:01.1134380Z adding 'torch/include/torch/csrc/jit/ir/constants.h' 2025-07-17T06:38:01.1136370Z adding 'torch/include/torch/csrc/jit/ir/graph_node_list.h' 2025-07-17T06:38:01.1136800Z adding 'torch/include/torch/csrc/jit/ir/graph_utils.h' 2025-07-17T06:38:01.1149340Z adding 'torch/include/torch/csrc/jit/ir/ir.h' 2025-07-17T06:38:01.1151060Z adding 'torch/include/torch/csrc/jit/ir/ir_views.h' 2025-07-17T06:38:01.1152210Z adding 'torch/include/torch/csrc/jit/ir/irparser.h' 2025-07-17T06:38:01.1153380Z adding 'torch/include/torch/csrc/jit/ir/named_value.h' 2025-07-17T06:38:01.1154220Z adding 'torch/include/torch/csrc/jit/ir/node_hashing.h' 2025-07-17T06:38:01.1156330Z adding 'torch/include/torch/csrc/jit/ir/scope.h' 2025-07-17T06:38:01.1157500Z adding 'torch/include/torch/csrc/jit/ir/subgraph_matcher.h' 2025-07-17T06:38:01.1158320Z adding 'torch/include/torch/csrc/jit/ir/type_hashing.h' 2025-07-17T06:38:01.1159890Z adding 'torch/include/torch/csrc/jit/mobile/code.h' 2025-07-17T06:38:01.1160840Z adding 'torch/include/torch/csrc/jit/mobile/debug_info.h' 2025-07-17T06:38:01.1162930Z adding 'torch/include/torch/csrc/jit/mobile/file_format.h' 2025-07-17T06:38:01.1164150Z adding 'torch/include/torch/csrc/jit/mobile/flatbuffer_loader.h' 2025-07-17T06:38:01.1165110Z adding 'torch/include/torch/csrc/jit/mobile/frame.h' 2025-07-17T06:38:01.1166290Z adding 'torch/include/torch/csrc/jit/mobile/function.h' 2025-07-17T06:38:01.1167640Z adding 'torch/include/torch/csrc/jit/mobile/import.h' 2025-07-17T06:38:01.1168600Z adding 'torch/include/torch/csrc/jit/mobile/import_data.h' 2025-07-17T06:38:01.1169470Z adding 'torch/include/torch/csrc/jit/mobile/import_export_common.h' 2025-07-17T06:38:01.1170340Z adding 'torch/include/torch/csrc/jit/mobile/interpreter.h' 2025-07-17T06:38:01.1171210Z adding 'torch/include/torch/csrc/jit/mobile/method.h' 2025-07-17T06:38:01.1173150Z adding 'torch/include/torch/csrc/jit/mobile/module.h' 2025-07-17T06:38:01.1174180Z adding 'torch/include/torch/csrc/jit/mobile/observer.h' 2025-07-17T06:38:01.1175100Z adding 'torch/include/torch/csrc/jit/mobile/parse_bytecode.h' 2025-07-17T06:38:01.1176000Z adding 'torch/include/torch/csrc/jit/mobile/parse_operators.h' 2025-07-17T06:38:01.1176850Z adding 'torch/include/torch/csrc/jit/mobile/prim_ops_registery.h' 2025-07-17T06:38:01.1178490Z adding 'torch/include/torch/csrc/jit/mobile/profiler_edge.h' 2025-07-17T06:38:01.1179240Z adding 'torch/include/torch/csrc/jit/mobile/promoted_prim_ops.h' 2025-07-17T06:38:01.1180200Z adding 'torch/include/torch/csrc/jit/mobile/quantization.h' 2025-07-17T06:38:01.1181250Z adding 'torch/include/torch/csrc/jit/mobile/register_ops_common_utils.h' 2025-07-17T06:38:01.1182270Z adding 'torch/include/torch/csrc/jit/mobile/type_parser.h' 2025-07-17T06:38:01.1183160Z adding 'torch/include/torch/csrc/jit/mobile/upgrader_mobile.h' 2025-07-17T06:38:01.1184440Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/backport.h' 2025-07-17T06:38:01.1185430Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/backport_manager.h' 2025-07-17T06:38:01.1186600Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/model_compatibility.h' 2025-07-17T06:38:01.1187560Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/runtime_compatibility.h' 2025-07-17T06:38:01.1188740Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/BuildFeatureTracer.h' 2025-07-17T06:38:01.1189660Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/CustomClassTracer.h' 2025-07-17T06:38:01.1190620Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/KernelDTypeTracer.h' 2025-07-17T06:38:01.1192630Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/MobileModelRunner.h' 2025-07-17T06:38:01.1193100Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/OperatorCallTracer.h' 2025-07-17T06:38:01.1193920Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/TensorUtils.h' 2025-07-17T06:38:01.1194820Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/TracerRunner.h' 2025-07-17T06:38:01.1195920Z adding 'torch/include/torch/csrc/jit/mobile/nnc/aot_compiler.h' 2025-07-17T06:38:01.1197880Z adding 'torch/include/torch/csrc/jit/mobile/nnc/context.h' 2025-07-17T06:38:01.1198610Z adding 'torch/include/torch/csrc/jit/mobile/nnc/registry.h' 2025-07-17T06:38:01.1199830Z adding 'torch/include/torch/csrc/jit/mobile/train/export_data.h' 2025-07-17T06:38:01.1200820Z adding 'torch/include/torch/csrc/jit/mobile/train/random.h' 2025-07-17T06:38:01.1201760Z adding 'torch/include/torch/csrc/jit/mobile/train/sequential.h' 2025-07-17T06:38:01.1203700Z adding 'torch/include/torch/csrc/jit/mobile/train/optim/sgd.h' 2025-07-17T06:38:01.1204570Z adding 'torch/include/torch/csrc/jit/operator_upgraders/upgraders.h' 2025-07-17T06:38:01.1205420Z adding 'torch/include/torch/csrc/jit/operator_upgraders/upgraders_entry.h' 2025-07-17T06:38:01.1206430Z adding 'torch/include/torch/csrc/jit/operator_upgraders/utils.h' 2025-07-17T06:38:01.1207320Z adding 'torch/include/torch/csrc/jit/operator_upgraders/version_map.h' 2025-07-17T06:38:01.1209270Z adding 'torch/include/torch/csrc/jit/passes/add_if_then_else.h' 2025-07-17T06:38:01.1209890Z adding 'torch/include/torch/csrc/jit/passes/annotate_warns.h' 2025-07-17T06:38:01.1210700Z adding 'torch/include/torch/csrc/jit/passes/autocast.h' 2025-07-17T06:38:01.1211700Z adding 'torch/include/torch/csrc/jit/passes/bailout_graph.h' 2025-07-17T06:38:01.1212450Z adding 'torch/include/torch/csrc/jit/passes/batch_mm.h' 2025-07-17T06:38:01.1213320Z adding 'torch/include/torch/csrc/jit/passes/canonicalize.h' 2025-07-17T06:38:01.1214120Z adding 'torch/include/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.h' 2025-07-17T06:38:01.1214870Z adding 'torch/include/torch/csrc/jit/passes/check_strict_fusion.h' 2025-07-17T06:38:01.1215730Z adding 'torch/include/torch/csrc/jit/passes/clear_profiling.h' 2025-07-17T06:38:01.1216610Z adding 'torch/include/torch/csrc/jit/passes/clear_undefinedness.h' 2025-07-17T06:38:01.1217420Z adding 'torch/include/torch/csrc/jit/passes/common_subexpression_elimination.h' 2025-07-17T06:38:01.1218190Z adding 'torch/include/torch/csrc/jit/passes/concat_opt.h' 2025-07-17T06:38:01.1218960Z adding 'torch/include/torch/csrc/jit/passes/constant_pooling.h' 2025-07-17T06:38:01.1219930Z adding 'torch/include/torch/csrc/jit/passes/constant_propagation.h' 2025-07-17T06:38:01.1220790Z adding 'torch/include/torch/csrc/jit/passes/create_autodiff_subgraphs.h' 2025-07-17T06:38:01.1221570Z adding 'torch/include/torch/csrc/jit/passes/create_functional_graphs.h' 2025-07-17T06:38:01.1222540Z adding 'torch/include/torch/csrc/jit/passes/dead_code_elimination.h' 2025-07-17T06:38:01.1223300Z adding 'torch/include/torch/csrc/jit/passes/decompose_ops.h' 2025-07-17T06:38:01.1224120Z adding 'torch/include/torch/csrc/jit/passes/device_type_analysis.h' 2025-07-17T06:38:01.1224960Z adding 'torch/include/torch/csrc/jit/passes/dtype_analysis.h' 2025-07-17T06:38:01.1225760Z adding 'torch/include/torch/csrc/jit/passes/eliminate_no_ops.h' 2025-07-17T06:38:01.1226690Z adding 'torch/include/torch/csrc/jit/passes/erase_number_types.h' 2025-07-17T06:38:01.1227750Z adding 'torch/include/torch/csrc/jit/passes/fixup_trace_scope_blocks.h' 2025-07-17T06:38:01.1228640Z adding 'torch/include/torch/csrc/jit/passes/fold_conv_bn.h' 2025-07-17T06:38:01.1229500Z adding 'torch/include/torch/csrc/jit/passes/fold_linear_bn.h' 2025-07-17T06:38:01.1230450Z adding 'torch/include/torch/csrc/jit/passes/freeze_module.h' 2025-07-17T06:38:01.1231270Z adding 'torch/include/torch/csrc/jit/passes/frozen_concat_linear.h' 2025-07-17T06:38:01.1232080Z adding 'torch/include/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.h' 2025-07-17T06:38:01.1232940Z adding 'torch/include/torch/csrc/jit/passes/frozen_conv_folding.h' 2025-07-17T06:38:01.1233790Z adding 'torch/include/torch/csrc/jit/passes/frozen_graph_optimizations.h' 2025-07-17T06:38:01.1234580Z adding 'torch/include/torch/csrc/jit/passes/frozen_linear_folding.h' 2025-07-17T06:38:01.1235390Z adding 'torch/include/torch/csrc/jit/passes/frozen_linear_transpose.h' 2025-07-17T06:38:01.1236180Z adding 'torch/include/torch/csrc/jit/passes/frozen_ops_to_mkldnn.h' 2025-07-17T06:38:01.1237020Z adding 'torch/include/torch/csrc/jit/passes/fuse_linear.h' 2025-07-17T06:38:01.1237790Z adding 'torch/include/torch/csrc/jit/passes/fuse_relu.h' 2025-07-17T06:38:01.1238750Z adding 'torch/include/torch/csrc/jit/passes/graph_fuser.h' 2025-07-17T06:38:01.1239820Z adding 'torch/include/torch/csrc/jit/passes/graph_rewrite_helper.h' 2025-07-17T06:38:01.1240610Z adding 'torch/include/torch/csrc/jit/passes/guard_elimination.h' 2025-07-17T06:38:01.1241380Z adding 'torch/include/torch/csrc/jit/passes/hoist_conv_packed_params.h' 2025-07-17T06:38:01.1242180Z adding 'torch/include/torch/csrc/jit/passes/inline_autodiff_subgraphs.h' 2025-07-17T06:38:01.1243000Z adding 'torch/include/torch/csrc/jit/passes/inline_fork_wait.h' 2025-07-17T06:38:01.1243780Z adding 'torch/include/torch/csrc/jit/passes/inline_forked_closures.h' 2025-07-17T06:38:01.1244520Z adding 'torch/include/torch/csrc/jit/passes/inliner.h' 2025-07-17T06:38:01.1245300Z adding 'torch/include/torch/csrc/jit/passes/inplace_check.h' 2025-07-17T06:38:01.1246090Z adding 'torch/include/torch/csrc/jit/passes/insert_guards.h' 2025-07-17T06:38:01.1246960Z adding 'torch/include/torch/csrc/jit/passes/integer_value_refinement.h' 2025-07-17T06:38:01.1247680Z adding 'torch/include/torch/csrc/jit/passes/lift_closures.h' 2025-07-17T06:38:01.1248540Z adding 'torch/include/torch/csrc/jit/passes/liveness.h' 2025-07-17T06:38:01.1249460Z adding 'torch/include/torch/csrc/jit/passes/loop_unrolling.h' 2025-07-17T06:38:01.1250260Z adding 'torch/include/torch/csrc/jit/passes/lower_grad_of.h' 2025-07-17T06:38:01.1251130Z adding 'torch/include/torch/csrc/jit/passes/lower_graph.h' 2025-07-17T06:38:01.1251970Z adding 'torch/include/torch/csrc/jit/passes/lower_tuples.h' 2025-07-17T06:38:01.1252880Z adding 'torch/include/torch/csrc/jit/passes/metal_rewrite.h' 2025-07-17T06:38:01.1253670Z adding 'torch/include/torch/csrc/jit/passes/mkldnn_rewrite.h' 2025-07-17T06:38:01.1254500Z adding 'torch/include/torch/csrc/jit/passes/mobile_optimizer_type.h' 2025-07-17T06:38:01.1255310Z adding 'torch/include/torch/csrc/jit/passes/normalize_ops.h' 2025-07-17T06:38:01.1256300Z adding 'torch/include/torch/csrc/jit/passes/onednn_graph_fuser.h' 2025-07-17T06:38:01.1257130Z adding 'torch/include/torch/csrc/jit/passes/onnx.h' 2025-07-17T06:38:01.1258940Z adding 'torch/include/torch/csrc/jit/passes/pass_manager.h' 2025-07-17T06:38:01.1259580Z adding 'torch/include/torch/csrc/jit/passes/peephole.h' 2025-07-17T06:38:01.1260430Z adding 'torch/include/torch/csrc/jit/passes/peephole_alias_sensitive.h' 2025-07-17T06:38:01.1261330Z adding 'torch/include/torch/csrc/jit/passes/peephole_dict_idioms.h' 2025-07-17T06:38:01.1262360Z adding 'torch/include/torch/csrc/jit/passes/peephole_list_idioms.h' 2025-07-17T06:38:01.1263160Z adding 'torch/include/torch/csrc/jit/passes/peephole_non_tensor.h' 2025-07-17T06:38:01.1263950Z adding 'torch/include/torch/csrc/jit/passes/prepack_folding.h' 2025-07-17T06:38:01.1264740Z adding 'torch/include/torch/csrc/jit/passes/refine_tuple_types.h' 2025-07-17T06:38:01.1265530Z adding 'torch/include/torch/csrc/jit/passes/remove_dropout.h' 2025-07-17T06:38:01.1266430Z adding 'torch/include/torch/csrc/jit/passes/remove_exceptions.h' 2025-07-17T06:38:01.1267190Z adding 'torch/include/torch/csrc/jit/passes/remove_expands.h' 2025-07-17T06:38:01.1267970Z adding 'torch/include/torch/csrc/jit/passes/remove_inplace_ops.h' 2025-07-17T06:38:01.1269150Z adding 'torch/include/torch/csrc/jit/passes/remove_mutation.h' 2025-07-17T06:38:01.1269920Z adding 'torch/include/torch/csrc/jit/passes/remove_redundant_profiles.h' 2025-07-17T06:38:01.1270800Z adding 'torch/include/torch/csrc/jit/passes/replacement_of_old_operators.h' 2025-07-17T06:38:01.1271510Z adding 'torch/include/torch/csrc/jit/passes/requires_grad_analysis.h' 2025-07-17T06:38:01.1272530Z adding 'torch/include/torch/csrc/jit/passes/restore_mutation.h' 2025-07-17T06:38:01.1273460Z adding 'torch/include/torch/csrc/jit/passes/shape_analysis.h' 2025-07-17T06:38:01.1274340Z adding 'torch/include/torch/csrc/jit/passes/specialize_autogradzero.h' 2025-07-17T06:38:01.1275780Z adding 'torch/include/torch/csrc/jit/passes/subgraph_rewrite.h' 2025-07-17T06:38:01.1276910Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_analysis.h' 2025-07-17T06:38:01.1277840Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_cache.h' 2025-07-17T06:38:01.1279050Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.h' 2025-07-17T06:38:01.1280190Z adding 'torch/include/torch/csrc/jit/passes/tensorexpr_fuser.h' 2025-07-17T06:38:01.1281160Z adding 'torch/include/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.h' 2025-07-17T06:38:01.1282200Z adding 'torch/include/torch/csrc/jit/passes/value_refinement_utils.h' 2025-07-17T06:38:01.1283050Z adding 'torch/include/torch/csrc/jit/passes/variadic_ops.h' 2025-07-17T06:38:01.1283880Z adding 'torch/include/torch/csrc/jit/passes/vulkan_rewrite.h' 2025-07-17T06:38:01.1284740Z adding 'torch/include/torch/csrc/jit/passes/xnnpack_rewrite.h' 2025-07-17T06:38:01.1286030Z adding 'torch/include/torch/csrc/jit/passes/dbr_quantization/remove_redundant_aliases.h' 2025-07-17T06:38:01.1287180Z adding 'torch/include/torch/csrc/jit/passes/onnx/cast_all_constant_to_floating.h' 2025-07-17T06:38:01.1288050Z adding 'torch/include/torch/csrc/jit/passes/onnx/constant_fold.h' 2025-07-17T06:38:01.1289440Z adding 'torch/include/torch/csrc/jit/passes/onnx/constant_map.h' 2025-07-17T06:38:01.1290300Z adding 'torch/include/torch/csrc/jit/passes/onnx/deduplicate_initializers.h' 2025-07-17T06:38:01.1291130Z adding 'torch/include/torch/csrc/jit/passes/onnx/eliminate_unused_items.h' 2025-07-17T06:38:01.1291880Z adding 'torch/include/torch/csrc/jit/passes/onnx/eval_peephole.h' 2025-07-17T06:38:01.1292730Z adding 'torch/include/torch/csrc/jit/passes/onnx/fixup_onnx_controlflow.h' 2025-07-17T06:38:01.1293910Z adding 'torch/include/torch/csrc/jit/passes/onnx/function_extraction.h' 2025-07-17T06:38:01.1294670Z adding 'torch/include/torch/csrc/jit/passes/onnx/function_substitution.h' 2025-07-17T06:38:01.1295710Z adding 'torch/include/torch/csrc/jit/passes/onnx/helper.h' 2025-07-17T06:38:01.1296560Z adding 'torch/include/torch/csrc/jit/passes/onnx/list_model_parameters.h' 2025-07-17T06:38:01.1297380Z adding 'torch/include/torch/csrc/jit/passes/onnx/naming.h' 2025-07-17T06:38:01.1298270Z adding 'torch/include/torch/csrc/jit/passes/onnx/onnx_log.h' 2025-07-17T06:38:01.1299030Z adding 'torch/include/torch/csrc/jit/passes/onnx/peephole.h' 2025-07-17T06:38:01.1299940Z adding 'torch/include/torch/csrc/jit/passes/onnx/prepare_division_for_onnx.h' 2025-07-17T06:38:01.1300710Z adding 'torch/include/torch/csrc/jit/passes/onnx/preprocess_for_onnx.h' 2025-07-17T06:38:01.1301520Z adding 'torch/include/torch/csrc/jit/passes/onnx/remove_inplace_ops_for_onnx.h' 2025-07-17T06:38:01.1302290Z adding 'torch/include/torch/csrc/jit/passes/onnx/scalar_type_analysis.h' 2025-07-17T06:38:01.1303760Z adding 'torch/include/torch/csrc/jit/passes/onnx/shape_type_inference.h' 2025-07-17T06:38:01.1304610Z adding 'torch/include/torch/csrc/jit/passes/onnx/unpack_quantized_weights.h' 2025-07-17T06:38:01.1305750Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/autograd_function_process.h' 2025-07-17T06:38:01.1306570Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/common.h' 2025-07-17T06:38:01.1307730Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_conversion.h' 2025-07-17T06:38:01.1308800Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_encapsulation.h' 2025-07-17T06:38:01.1310040Z adding 'torch/include/torch/csrc/jit/passes/quantization/dedup_module_uses.h' 2025-07-17T06:38:01.1311120Z adding 'torch/include/torch/csrc/jit/passes/quantization/finalize.h' 2025-07-17T06:38:01.1311950Z adding 'torch/include/torch/csrc/jit/passes/quantization/fusion_passes.h' 2025-07-17T06:38:01.1313930Z adding 'torch/include/torch/csrc/jit/passes/quantization/helper.h' 2025-07-17T06:38:01.1314870Z adding 'torch/include/torch/csrc/jit/passes/quantization/insert_observers.h' 2025-07-17T06:38:01.1315840Z adding 'torch/include/torch/csrc/jit/passes/quantization/insert_quant_dequant.h' 2025-07-17T06:38:01.1321980Z adding 'torch/include/torch/csrc/jit/passes/quantization/quantization_patterns.h' 2025-07-17T06:38:01.1322870Z adding 'torch/include/torch/csrc/jit/passes/quantization/quantization_type.h' 2025-07-17T06:38:01.1323690Z adding 'torch/include/torch/csrc/jit/passes/quantization/register_packed_params.h' 2025-07-17T06:38:01.1324760Z adding 'torch/include/torch/csrc/jit/passes/utils/check_alias_annotation.h' 2025-07-17T06:38:01.1326900Z adding 'torch/include/torch/csrc/jit/passes/utils/memory_dag.h' 2025-07-17T06:38:01.1327660Z adding 'torch/include/torch/csrc/jit/passes/utils/op_registry.h' 2025-07-17T06:38:01.1328480Z adding 'torch/include/torch/csrc/jit/passes/utils/optimization_utils.h' 2025-07-17T06:38:01.1329600Z adding 'torch/include/torch/csrc/jit/passes/utils/subgraph_utils.h' 2025-07-17T06:38:01.1330660Z adding 'torch/include/torch/csrc/jit/python/init.h' 2025-07-17T06:38:01.1331710Z adding 'torch/include/torch/csrc/jit/python/module_python.h' 2025-07-17T06:38:01.1333850Z adding 'torch/include/torch/csrc/jit/python/pybind.h' 2025-07-17T06:38:01.1343360Z adding 'torch/include/torch/csrc/jit/python/pybind_utils.h' 2025-07-17T06:38:01.1344790Z adding 'torch/include/torch/csrc/jit/python/python_arg_flatten.h' 2025-07-17T06:38:01.1345750Z adding 'torch/include/torch/csrc/jit/python/python_custom_class.h' 2025-07-17T06:38:01.1427270Z adding 'torch/include/torch/csrc/jit/python/python_dict.h' 2025-07-17T06:38:01.1429310Z adding 'torch/include/torch/csrc/jit/python/python_ir.h' 2025-07-17T06:38:01.1430720Z adding 'torch/include/torch/csrc/jit/python/python_ivalue.h' 2025-07-17T06:38:01.1432990Z adding 'torch/include/torch/csrc/jit/python/python_list.h' 2025-07-17T06:38:01.1436240Z adding 'torch/include/torch/csrc/jit/python/python_sugared_value.h' 2025-07-17T06:38:01.1437140Z adding 'torch/include/torch/csrc/jit/python/python_tracer.h' 2025-07-17T06:38:01.1438020Z adding 'torch/include/torch/csrc/jit/python/python_tree_views.h' 2025-07-17T06:38:01.1438960Z adding 'torch/include/torch/csrc/jit/python/script_init.h' 2025-07-17T06:38:01.1440070Z adding 'torch/include/torch/csrc/jit/python/update_graph_executor_opt.h' 2025-07-17T06:38:01.1440970Z adding 'torch/include/torch/csrc/jit/python/utf8_decoding_ignore.h' 2025-07-17T06:38:01.1445710Z adding 'torch/include/torch/csrc/jit/runtime/argument_spec.h' 2025-07-17T06:38:01.1447060Z adding 'torch/include/torch/csrc/jit/runtime/autodiff.h' 2025-07-17T06:38:01.1448520Z adding 'torch/include/torch/csrc/jit/runtime/calculate_necessary_args.h' 2025-07-17T06:38:01.1449470Z adding 'torch/include/torch/csrc/jit/runtime/custom_operator.h' 2025-07-17T06:38:01.1450460Z adding 'torch/include/torch/csrc/jit/runtime/decomposition_registry.h' 2025-07-17T06:38:01.1451330Z adding 'torch/include/torch/csrc/jit/runtime/decomposition_registry_util.h' 2025-07-17T06:38:01.1452410Z adding 'torch/include/torch/csrc/jit/runtime/exception_message.h' 2025-07-17T06:38:01.1454340Z adding 'torch/include/torch/csrc/jit/runtime/graph_executor.h' 2025-07-17T06:38:01.1455450Z adding 'torch/include/torch/csrc/jit/runtime/graph_executor_impl.h' 2025-07-17T06:38:01.1457460Z adding 'torch/include/torch/csrc/jit/runtime/graph_iterator.h' 2025-07-17T06:38:01.1459260Z adding 'torch/include/torch/csrc/jit/runtime/instruction.h' 2025-07-17T06:38:01.1460790Z adding 'torch/include/torch/csrc/jit/runtime/interpreter.h' 2025-07-17T06:38:01.1461780Z adding 'torch/include/torch/csrc/jit/runtime/jit_exception.h' 2025-07-17T06:38:01.1462770Z adding 'torch/include/torch/csrc/jit/runtime/jit_trace.h' 2025-07-17T06:38:01.1464110Z adding 'torch/include/torch/csrc/jit/runtime/logging.h' 2025-07-17T06:38:01.1466940Z adding 'torch/include/torch/csrc/jit/runtime/operator.h' 2025-07-17T06:38:01.1467510Z adding 'torch/include/torch/csrc/jit/runtime/operator_options.h' 2025-07-17T06:38:01.1468330Z adding 'torch/include/torch/csrc/jit/runtime/print_handler.h' 2025-07-17T06:38:01.1469990Z adding 'torch/include/torch/csrc/jit/runtime/profiling_graph_executor_impl.h' 2025-07-17T06:38:01.1472310Z adding 'torch/include/torch/csrc/jit/runtime/profiling_record.h' 2025-07-17T06:38:01.1477790Z adding 'torch/include/torch/csrc/jit/runtime/register_ops_utils.h' 2025-07-17T06:38:01.1478880Z adding 'torch/include/torch/csrc/jit/runtime/script_profile.h' 2025-07-17T06:38:01.1479830Z adding 'torch/include/torch/csrc/jit/runtime/serialized_shape_function_registry.h' 2025-07-17T06:38:01.1480800Z adding 'torch/include/torch/csrc/jit/runtime/shape_function_registry.h' 2025-07-17T06:38:01.1481700Z adding 'torch/include/torch/csrc/jit/runtime/simple_graph_executor_impl.h' 2025-07-17T06:38:01.1482640Z adding 'torch/include/torch/csrc/jit/runtime/slice_indices_adjust.h' 2025-07-17T06:38:01.1483460Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_script.h' 2025-07-17T06:38:01.1485110Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_shape_registry.h' 2025-07-17T06:38:01.1485790Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_shape_registry_util.h' 2025-07-17T06:38:01.1486760Z adding 'torch/include/torch/csrc/jit/runtime/vararg_functions.h' 2025-07-17T06:38:01.1487650Z adding 'torch/include/torch/csrc/jit/runtime/variable_tensor_list.h' 2025-07-17T06:38:01.1490030Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/can_emit_inline.h' 2025-07-17T06:38:01.1496620Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/code_impl.h' 2025-07-17T06:38:01.1497470Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/frame.h' 2025-07-17T06:38:01.1498570Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/preprocess_graph.h' 2025-07-17T06:38:01.1500910Z adding 'torch/include/torch/csrc/jit/runtime/static/ProcessedNodeInputs.h' 2025-07-17T06:38:01.1501510Z adding 'torch/include/torch/csrc/jit/runtime/static/fusion.h' 2025-07-17T06:38:01.1509650Z adding 'torch/include/torch/csrc/jit/runtime/static/impl.h' 2025-07-17T06:38:01.1510630Z adding 'torch/include/torch/csrc/jit/runtime/static/init.h' 2025-07-17T06:38:01.1513590Z adding 'torch/include/torch/csrc/jit/runtime/static/memory_planner.h' 2025-07-17T06:38:01.1514920Z adding 'torch/include/torch/csrc/jit/runtime/static/ops.h' 2025-07-17T06:38:01.1516850Z adding 'torch/include/torch/csrc/jit/runtime/static/passes.h' 2025-07-17T06:38:01.1518220Z adding 'torch/include/torch/csrc/jit/runtime/static/processed_node_wrapper.h' 2025-07-17T06:38:01.1519260Z adding 'torch/include/torch/csrc/jit/runtime/static/static_method.h' 2025-07-17T06:38:01.1520190Z adding 'torch/include/torch/csrc/jit/runtime/static/te_wrapper.h' 2025-07-17T06:38:01.1522350Z adding 'torch/include/torch/csrc/jit/serialization/callstack_debug_info_serialization.h' 2025-07-17T06:38:01.1524840Z adding 'torch/include/torch/csrc/jit/serialization/export.h' 2025-07-17T06:38:01.1525630Z adding 'torch/include/torch/csrc/jit/serialization/export_bytecode.h' 2025-07-17T06:38:01.1526930Z adding 'torch/include/torch/csrc/jit/serialization/flatbuffer_serializer.h' 2025-07-17T06:38:01.1527990Z adding 'torch/include/torch/csrc/jit/serialization/flatbuffer_serializer_jit.h' 2025-07-17T06:38:01.1529340Z adding 'torch/include/torch/csrc/jit/serialization/import.h' 2025-07-17T06:38:01.1530370Z adding 'torch/include/torch/csrc/jit/serialization/import_export_constants.h' 2025-07-17T06:38:01.1531230Z adding 'torch/include/torch/csrc/jit/serialization/import_export_functions.h' 2025-07-17T06:38:01.1532280Z adding 'torch/include/torch/csrc/jit/serialization/import_export_helpers.h' 2025-07-17T06:38:01.1533560Z adding 'torch/include/torch/csrc/jit/serialization/import_read.h' 2025-07-17T06:38:01.1534530Z adding 'torch/include/torch/csrc/jit/serialization/import_source.h' 2025-07-17T06:38:01.1546930Z adding 'torch/include/torch/csrc/jit/serialization/mobile_bytecode_generated.h' 2025-07-17T06:38:01.1548300Z adding 'torch/include/torch/csrc/jit/serialization/onnx.h' 2025-07-17T06:38:01.1549820Z adding 'torch/include/torch/csrc/jit/serialization/pickle.h' 2025-07-17T06:38:01.1552030Z adding 'torch/include/torch/csrc/jit/serialization/pickler.h' 2025-07-17T06:38:01.1554280Z adding 'torch/include/torch/csrc/jit/serialization/pickler_helper.h' 2025-07-17T06:38:01.1555090Z adding 'torch/include/torch/csrc/jit/serialization/python_print.h' 2025-07-17T06:38:01.1556170Z adding 'torch/include/torch/csrc/jit/serialization/source_range_serialization.h' 2025-07-17T06:38:01.1557120Z adding 'torch/include/torch/csrc/jit/serialization/source_range_serialization_impl.h' 2025-07-17T06:38:01.1558390Z adding 'torch/include/torch/csrc/jit/serialization/storage_context.h' 2025-07-17T06:38:01.1559310Z adding 'torch/include/torch/csrc/jit/serialization/type_name_uniquer.h' 2025-07-17T06:38:01.1561690Z adding 'torch/include/torch/csrc/jit/serialization/unpickler.h' 2025-07-17T06:38:01.1564230Z adding 'torch/include/torch/csrc/jit/tensorexpr/analysis.h' 2025-07-17T06:38:01.1565610Z adding 'torch/include/torch/csrc/jit/tensorexpr/block_codegen.h' 2025-07-17T06:38:01.1566750Z adding 'torch/include/torch/csrc/jit/tensorexpr/bounds_inference.h' 2025-07-17T06:38:01.1568680Z adding 'torch/include/torch/csrc/jit/tensorexpr/bounds_overlap.h' 2025-07-17T06:38:01.1570740Z adding 'torch/include/torch/csrc/jit/tensorexpr/codegen.h' 2025-07-17T06:38:01.1571740Z adding 'torch/include/torch/csrc/jit/tensorexpr/cpp_codegen.h' 2025-07-17T06:38:01.1572650Z adding 'torch/include/torch/csrc/jit/tensorexpr/cpp_intrinsics.h' 2025-07-17T06:38:01.1574920Z adding 'torch/include/torch/csrc/jit/tensorexpr/cuda_codegen.h' 2025-07-17T06:38:01.1575840Z adding 'torch/include/torch/csrc/jit/tensorexpr/cuda_random.h' 2025-07-17T06:38:01.1578460Z adding 'torch/include/torch/csrc/jit/tensorexpr/eval.h' 2025-07-17T06:38:01.1579330Z adding 'torch/include/torch/csrc/jit/tensorexpr/exceptions.h' 2025-07-17T06:38:01.1582470Z adding 'torch/include/torch/csrc/jit/tensorexpr/expr.h' 2025-07-17T06:38:01.1583490Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions.h' 2025-07-17T06:38:01.1584600Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions_core.h' 2025-07-17T06:38:01.1585800Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions_registry.h' 2025-07-17T06:38:01.1587030Z adding 'torch/include/torch/csrc/jit/tensorexpr/fwd_decls.h' 2025-07-17T06:38:01.1589000Z adding 'torch/include/torch/csrc/jit/tensorexpr/graph_opt.h' 2025-07-17T06:38:01.1590370Z adding 'torch/include/torch/csrc/jit/tensorexpr/half_support.h' 2025-07-17T06:38:01.1592580Z adding 'torch/include/torch/csrc/jit/tensorexpr/hash_provider.h' 2025-07-17T06:38:01.1593180Z adding 'torch/include/torch/csrc/jit/tensorexpr/intrinsic_symbols.h' 2025-07-17T06:38:01.1597570Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir.h' 2025-07-17T06:38:01.1598640Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_cloner.h' 2025-07-17T06:38:01.1599700Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_mutator.h' 2025-07-17T06:38:01.1601020Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_printer.h' 2025-07-17T06:38:01.1604350Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_simplifier.h' 2025-07-17T06:38:01.1605250Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_verifier.h' 2025-07-17T06:38:01.1606260Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_visitor.h' 2025-07-17T06:38:01.1609580Z adding 'torch/include/torch/csrc/jit/tensorexpr/kernel.h' 2025-07-17T06:38:01.1610710Z adding 'torch/include/torch/csrc/jit/tensorexpr/llvm_codegen.h' 2025-07-17T06:38:01.1611990Z adding 'torch/include/torch/csrc/jit/tensorexpr/llvm_jit.h' 2025-07-17T06:38:01.1617270Z adding 'torch/include/torch/csrc/jit/tensorexpr/loopnest.h' 2025-07-17T06:38:01.1618000Z adding 'torch/include/torch/csrc/jit/tensorexpr/loopnest_randomization.h' 2025-07-17T06:38:01.1618920Z adding 'torch/include/torch/csrc/jit/tensorexpr/lowerings.h' 2025-07-17T06:38:01.1622410Z adding 'torch/include/torch/csrc/jit/tensorexpr/mem_dependency_checker.h' 2025-07-17T06:38:01.1624390Z adding 'torch/include/torch/csrc/jit/tensorexpr/reduction.h' 2025-07-17T06:38:01.1627490Z adding 'torch/include/torch/csrc/jit/tensorexpr/registerizer.h' 2025-07-17T06:38:01.1632020Z adding 'torch/include/torch/csrc/jit/tensorexpr/stmt.h' 2025-07-17T06:38:01.1634280Z adding 'torch/include/torch/csrc/jit/tensorexpr/tensor.h' 2025-07-17T06:38:01.1634990Z adding 'torch/include/torch/csrc/jit/tensorexpr/tensorexpr_init.h' 2025-07-17T06:38:01.1636560Z adding 'torch/include/torch/csrc/jit/tensorexpr/types.h' 2025-07-17T06:38:01.1637420Z adding 'torch/include/torch/csrc/jit/tensorexpr/unique_name_manager.h' 2025-07-17T06:38:01.1638620Z adding 'torch/include/torch/csrc/jit/tensorexpr/var_substitutor.h' 2025-07-17T06:38:01.1640070Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/conv2d.h' 2025-07-17T06:38:01.1640900Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/matmul.h' 2025-07-17T06:38:01.1642000Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/misc.h' 2025-07-17T06:38:01.1643020Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/norm.h' 2025-07-17T06:38:01.1643830Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/operators.h' 2025-07-17T06:38:01.1644850Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/pointwise.h' 2025-07-17T06:38:01.1645940Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/quantization.h' 2025-07-17T06:38:01.1646990Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/reduction.h' 2025-07-17T06:38:01.1647830Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/softmax.h' 2025-07-17T06:38:01.1648930Z adding 'torch/include/torch/csrc/jit/testing/catch_utils.hpp' 2025-07-17T06:38:01.1650050Z adding 'torch/include/torch/csrc/jit/testing/file_check.h' 2025-07-17T06:38:01.1651150Z adding 'torch/include/torch/csrc/jit/testing/hooks_for_testing.h' 2025-07-17T06:38:01.1653100Z adding 'torch/include/torch/csrc/lazy/backend/backend_data.h' 2025-07-17T06:38:01.1654070Z adding 'torch/include/torch/csrc/lazy/backend/backend_device.h' 2025-07-17T06:38:01.1656020Z adding 'torch/include/torch/csrc/lazy/backend/backend_interface.h' 2025-07-17T06:38:01.1657000Z adding 'torch/include/torch/csrc/lazy/backend/lowering_context.h' 2025-07-17T06:38:01.1659040Z adding 'torch/include/torch/csrc/lazy/core/cache.h' 2025-07-17T06:38:01.1659690Z adding 'torch/include/torch/csrc/lazy/core/config.h' 2025-07-17T06:38:01.1660650Z adding 'torch/include/torch/csrc/lazy/core/debug_util.h' 2025-07-17T06:38:01.1661850Z adding 'torch/include/torch/csrc/lazy/core/dynamic_ir.h' 2025-07-17T06:38:01.1663980Z adding 'torch/include/torch/csrc/lazy/core/hash.h' 2025-07-17T06:38:01.1664890Z adding 'torch/include/torch/csrc/lazy/core/helpers.h' 2025-07-17T06:38:01.1667290Z adding 'torch/include/torch/csrc/lazy/core/ir.h' 2025-07-17T06:38:01.1668610Z adding 'torch/include/torch/csrc/lazy/core/ir_builder.h' 2025-07-17T06:38:01.1669540Z adding 'torch/include/torch/csrc/lazy/core/ir_dump_util.h' 2025-07-17T06:38:01.1670510Z adding 'torch/include/torch/csrc/lazy/core/ir_metadata.h' 2025-07-17T06:38:01.1671520Z adding 'torch/include/torch/csrc/lazy/core/ir_util.h' 2025-07-17T06:38:01.1675200Z adding 'torch/include/torch/csrc/lazy/core/lazy_graph_executor.h' 2025-07-17T06:38:01.1677370Z adding 'torch/include/torch/csrc/lazy/core/metrics.h' 2025-07-17T06:38:01.1678230Z adding 'torch/include/torch/csrc/lazy/core/multi_wait.h' 2025-07-17T06:38:01.1679240Z adding 'torch/include/torch/csrc/lazy/core/permutation_util.h' 2025-07-17T06:38:01.1680500Z adding 'torch/include/torch/csrc/lazy/core/shape.h' 2025-07-17T06:38:01.1684050Z adding 'torch/include/torch/csrc/lazy/core/shape_inference.h' 2025-07-17T06:38:01.1687850Z adding 'torch/include/torch/csrc/lazy/core/tensor.h' 2025-07-17T06:38:01.1688720Z adding 'torch/include/torch/csrc/lazy/core/tensor_impl.h' 2025-07-17T06:38:01.1689840Z adding 'torch/include/torch/csrc/lazy/core/tensor_util.h' 2025-07-17T06:38:01.1690750Z adding 'torch/include/torch/csrc/lazy/core/thread_pool.h' 2025-07-17T06:38:01.1691870Z adding 'torch/include/torch/csrc/lazy/core/trie.h' 2025-07-17T06:38:01.1692860Z adding 'torch/include/torch/csrc/lazy/core/unique.h' 2025-07-17T06:38:01.1694090Z adding 'torch/include/torch/csrc/lazy/core/util.h' 2025-07-17T06:38:01.1695410Z adding 'torch/include/torch/csrc/lazy/core/internal_ops/ltc_ops.h' 2025-07-17T06:38:01.1696470Z adding 'torch/include/torch/csrc/lazy/core/ops/arithmetic_ir_ops.h' 2025-07-17T06:38:01.1697360Z adding 'torch/include/torch/csrc/lazy/core/ops/utils.h' 2025-07-17T06:38:01.1720040Z adding 'torch/include/torch/csrc/lazy/generated/LazyIr.h' 2025-07-17T06:38:01.1724200Z adding 'torch/include/torch/csrc/lazy/generated/LazyNativeFunctions.h' 2025-07-17T06:38:01.1725320Z adding 'torch/include/torch/csrc/lazy/generated/LazyNonNativeIr.h' 2025-07-17T06:38:01.1726420Z adding 'torch/include/torch/csrc/lazy/python/init.h' 2025-07-17T06:38:01.1727310Z adding 'torch/include/torch/csrc/lazy/python/python_util.h' 2025-07-17T06:38:01.1728410Z adding 'torch/include/torch/csrc/lazy/ts_backend/config.h' 2025-07-17T06:38:01.1729540Z adding 'torch/include/torch/csrc/lazy/ts_backend/dynamic_ir.h' 2025-07-17T06:38:01.1730630Z adding 'torch/include/torch/csrc/lazy/ts_backend/ir_builder.h' 2025-07-17T06:38:01.1731490Z adding 'torch/include/torch/csrc/lazy/ts_backend/tensor_aten_ops.h' 2025-07-17T06:38:01.1732380Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_autograd_functions.h' 2025-07-17T06:38:01.1733310Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_backend_impl.h' 2025-07-17T06:38:01.1734170Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_eager_fallback.h' 2025-07-17T06:38:01.1736100Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_lowering_context.h' 2025-07-17T06:38:01.1737020Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_node.h' 2025-07-17T06:38:01.1737920Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_node_lowering.h' 2025-07-17T06:38:01.1739160Z adding 'torch/include/torch/csrc/lazy/ts_backend/ops/device_data.h' 2025-07-17T06:38:01.1740170Z adding 'torch/include/torch/csrc/lazy/ts_backend/ops/generic.h' 2025-07-17T06:38:01.1741500Z adding 'torch/include/torch/csrc/lazy/ts_backend/ops/to_copy.h' 2025-07-17T06:38:01.1744000Z adding 'torch/include/torch/csrc/monitor/counters.h' 2025-07-17T06:38:01.1744950Z adding 'torch/include/torch/csrc/monitor/events.h' 2025-07-17T06:38:01.1745760Z adding 'torch/include/torch/csrc/monitor/python_init.h' 2025-07-17T06:38:01.1746780Z adding 'torch/include/torch/csrc/mps/Module.h' 2025-07-17T06:38:01.1747740Z adding 'torch/include/torch/csrc/mtia/Module.h' 2025-07-17T06:38:01.1748890Z adding 'torch/include/torch/csrc/mtia/profiler/MTIAMemoryProfiler.h' 2025-07-17T06:38:01.1749840Z adding 'torch/include/torch/csrc/multiprocessing/init.h' 2025-07-17T06:38:01.1750940Z adding 'torch/include/torch/csrc/onnx/back_compat.h' 2025-07-17T06:38:01.1751720Z adding 'torch/include/torch/csrc/onnx/init.h' 2025-07-17T06:38:01.1752580Z adding 'torch/include/torch/csrc/onnx/onnx.h' 2025-07-17T06:38:01.1753770Z adding 'torch/include/torch/csrc/profiler/api.h' 2025-07-17T06:38:01.1758260Z adding 'torch/include/torch/csrc/profiler/collection.h' 2025-07-17T06:38:01.1759260Z adding 'torch/include/torch/csrc/profiler/combined_traceback.h' 2025-07-17T06:38:01.1761280Z adding 'torch/include/torch/csrc/profiler/containers.h' 2025-07-17T06:38:01.1762400Z adding 'torch/include/torch/csrc/profiler/data_flow.h' 2025-07-17T06:38:01.1763330Z adding 'torch/include/torch/csrc/profiler/events.h' 2025-07-17T06:38:01.1764230Z adding 'torch/include/torch/csrc/profiler/kineto_client_interface.h' 2025-07-17T06:38:01.1765470Z adding 'torch/include/torch/csrc/profiler/kineto_shim.h' 2025-07-17T06:38:01.1766440Z adding 'torch/include/torch/csrc/profiler/perf-inl.h' 2025-07-17T06:38:01.1767610Z adding 'torch/include/torch/csrc/profiler/perf.h' 2025-07-17T06:38:01.1769720Z adding 'torch/include/torch/csrc/profiler/util.h' 2025-07-17T06:38:01.1771970Z adding 'torch/include/torch/csrc/profiler/orchestration/observer.h' 2025-07-17T06:38:01.1772860Z adding 'torch/include/torch/csrc/profiler/orchestration/python_tracer.h' 2025-07-17T06:38:01.1773720Z adding 'torch/include/torch/csrc/profiler/orchestration/vulkan.h' 2025-07-17T06:38:01.1774890Z adding 'torch/include/torch/csrc/profiler/python/combined_traceback.h' 2025-07-17T06:38:01.1775750Z adding 'torch/include/torch/csrc/profiler/python/init.h' 2025-07-17T06:38:01.1776720Z adding 'torch/include/torch/csrc/profiler/python/pybind.h' 2025-07-17T06:38:01.1777850Z adding 'torch/include/torch/csrc/profiler/standalone/execution_trace_observer.h' 2025-07-17T06:38:01.1778630Z adding 'torch/include/torch/csrc/profiler/standalone/itt_observer.h' 2025-07-17T06:38:01.1779400Z adding 'torch/include/torch/csrc/profiler/standalone/nvtx_observer.h' 2025-07-17T06:38:01.1780390Z adding 'torch/include/torch/csrc/profiler/standalone/privateuse1_observer.h' 2025-07-17T06:38:01.1781500Z adding 'torch/include/torch/csrc/profiler/stubs/base.h' 2025-07-17T06:38:01.1782850Z adding 'torch/include/torch/csrc/profiler/unwind/action.h' 2025-07-17T06:38:01.1783950Z adding 'torch/include/torch/csrc/profiler/unwind/communicate.h' 2025-07-17T06:38:01.1786230Z adding 'torch/include/torch/csrc/profiler/unwind/debug_info.h' 2025-07-17T06:38:01.1786940Z adding 'torch/include/torch/csrc/profiler/unwind/dwarf_enums.h' 2025-07-17T06:38:01.1788570Z adding 'torch/include/torch/csrc/profiler/unwind/dwarf_symbolize_enums.h' 2025-07-17T06:38:01.1789570Z adding 'torch/include/torch/csrc/profiler/unwind/eh_frame_hdr.h' 2025-07-17T06:38:01.1790850Z adding 'torch/include/torch/csrc/profiler/unwind/fast_symbolizer.h' 2025-07-17T06:38:01.1793630Z adding 'torch/include/torch/csrc/profiler/unwind/fde.h' 2025-07-17T06:38:01.1794750Z adding 'torch/include/torch/csrc/profiler/unwind/lexer.h' 2025-07-17T06:38:01.1797410Z adding 'torch/include/torch/csrc/profiler/unwind/line_number_program.h' 2025-07-17T06:38:01.1798670Z adding 'torch/include/torch/csrc/profiler/unwind/mem_file.h' 2025-07-17T06:38:01.1799840Z adding 'torch/include/torch/csrc/profiler/unwind/range_table.h' 2025-07-17T06:38:01.1801130Z adding 'torch/include/torch/csrc/profiler/unwind/sections.h' 2025-07-17T06:38:01.1802080Z adding 'torch/include/torch/csrc/profiler/unwind/unwind.h' 2025-07-17T06:38:01.1804450Z adding 'torch/include/torch/csrc/profiler/unwind/unwind_error.h' 2025-07-17T06:38:01.1805300Z adding 'torch/include/torch/csrc/profiler/unwind/unwinder.h' 2025-07-17T06:38:01.1808620Z adding 'torch/include/torch/csrc/stable/library.h' 2025-07-17T06:38:01.1809270Z adding 'torch/include/torch/csrc/stable/ops.h' 2025-07-17T06:38:01.1810870Z adding 'torch/include/torch/csrc/stable/tensor.h' 2025-07-17T06:38:01.1811880Z adding 'torch/include/torch/csrc/tensor/python_tensor.h' 2025-07-17T06:38:01.1813820Z adding 'torch/include/torch/csrc/utils/byte_order.h' 2025-07-17T06:38:01.1814330Z adding 'torch/include/torch/csrc/utils/cpp_stacktraces.h' 2025-07-17T06:38:01.1815080Z adding 'torch/include/torch/csrc/utils/cuda_enabled.h' 2025-07-17T06:38:01.1816230Z adding 'torch/include/torch/csrc/utils/device_lazy_init.h' 2025-07-17T06:38:01.1817260Z adding 'torch/include/torch/csrc/utils/disable_torch_function.h' 2025-07-17T06:38:01.1830670Z adding 'torch/include/torch/csrc/utils/generated_serialization_types.h' 2025-07-17T06:38:01.1832120Z adding 'torch/include/torch/csrc/utils/init.h' 2025-07-17T06:38:01.1832920Z adding 'torch/include/torch/csrc/utils/invalid_arguments.h' 2025-07-17T06:38:01.1833720Z adding 'torch/include/torch/csrc/utils/nested.h' 2025-07-17T06:38:01.1834600Z adding 'torch/include/torch/csrc/utils/numpy_stub.h' 2025-07-17T06:38:01.1835680Z adding 'torch/include/torch/csrc/utils/object_ptr.h' 2025-07-17T06:38:01.1836510Z adding 'torch/include/torch/csrc/utils/out_types.h' 2025-07-17T06:38:01.1839290Z adding 'torch/include/torch/csrc/utils/pybind.h' 2025-07-17T06:38:01.1840050Z adding 'torch/include/torch/csrc/utils/pycfunction_helpers.h' 2025-07-17T06:38:01.1840800Z adding 'torch/include/torch/csrc/utils/pyobject_preservation.h' 2025-07-17T06:38:01.1848580Z adding 'torch/include/torch/csrc/utils/python_arg_parser.h' 2025-07-17T06:38:01.1849590Z adding 'torch/include/torch/csrc/utils/python_compat.h' 2025-07-17T06:38:01.1850450Z adding 'torch/include/torch/csrc/utils/python_dispatch.h' 2025-07-17T06:38:01.1852050Z adding 'torch/include/torch/csrc/utils/python_numbers.h' 2025-07-17T06:38:01.1853010Z adding 'torch/include/torch/csrc/utils/python_raii.h' 2025-07-17T06:38:01.1854960Z adding 'torch/include/torch/csrc/utils/python_scalars.h' 2025-07-17T06:38:01.1855970Z adding 'torch/include/torch/csrc/utils/python_strings.h' 2025-07-17T06:38:01.1856700Z adding 'torch/include/torch/csrc/utils/python_stub.h' 2025-07-17T06:38:01.1858690Z adding 'torch/include/torch/csrc/utils/python_symnode.h' 2025-07-17T06:38:01.1859330Z adding 'torch/include/torch/csrc/utils/python_torch_function_mode.h' 2025-07-17T06:38:01.1860200Z adding 'torch/include/torch/csrc/utils/python_tuples.h' 2025-07-17T06:38:01.1867580Z adding 'torch/include/torch/csrc/utils/pythoncapi_compat.h' 2025-07-17T06:38:01.1868870Z adding 'torch/include/torch/csrc/utils/schema_info.h' 2025-07-17T06:38:01.1869890Z adding 'torch/include/torch/csrc/utils/six.h' 2025-07-17T06:38:01.1870700Z adding 'torch/include/torch/csrc/utils/structseq.h' 2025-07-17T06:38:01.1871550Z adding 'torch/include/torch/csrc/utils/tensor_apply.h' 2025-07-17T06:38:01.1872340Z adding 'torch/include/torch/csrc/utils/tensor_dtypes.h' 2025-07-17T06:38:01.1873530Z adding 'torch/include/torch/csrc/utils/tensor_flatten.h' 2025-07-17T06:38:01.1874290Z adding 'torch/include/torch/csrc/utils/tensor_layouts.h' 2025-07-17T06:38:01.1875030Z adding 'torch/include/torch/csrc/utils/tensor_list.h' 2025-07-17T06:38:01.1875870Z adding 'torch/include/torch/csrc/utils/tensor_memoryformats.h' 2025-07-17T06:38:01.1876980Z adding 'torch/include/torch/csrc/utils/tensor_new.h' 2025-07-17T06:38:01.1877890Z adding 'torch/include/torch/csrc/utils/tensor_numpy.h' 2025-07-17T06:38:01.1878680Z adding 'torch/include/torch/csrc/utils/tensor_qschemes.h' 2025-07-17T06:38:01.1879570Z adding 'torch/include/torch/csrc/utils/tensor_types.h' 2025-07-17T06:38:01.1881610Z adding 'torch/include/torch/csrc/utils/throughput_benchmark-inl.h' 2025-07-17T06:38:01.1883700Z adding 'torch/include/torch/csrc/utils/throughput_benchmark.h' 2025-07-17T06:38:01.1884280Z adding 'torch/include/torch/csrc/utils/torch_dispatch_mode.h' 2025-07-17T06:38:01.1885500Z adding 'torch/include/torch/csrc/utils/variadic.h' 2025-07-17T06:38:01.1886260Z adding 'torch/include/torch/csrc/utils/verbose.h' 2025-07-17T06:38:01.1887360Z adding 'torch/include/torch/csrc/xpu/Event.h' 2025-07-17T06:38:01.1888170Z adding 'torch/include/torch/csrc/xpu/Module.h' 2025-07-17T06:38:01.1889000Z adding 'torch/include/torch/csrc/xpu/Stream.h' 2025-07-17T06:38:01.1891490Z adding 'torch/include/torch/headeronly/macros/Export.h' 2025-07-17T06:38:01.1895350Z adding 'torch/include/torch/headeronly/macros/Macros.h' 2025-07-17T06:38:01.1896000Z adding 'torch/include/torch/headeronly/macros/cmake_macros.h' 2025-07-17T06:38:01.1898960Z adding 'torch/jit/__init__.py' 2025-07-17T06:38:01.1900150Z adding 'torch/jit/_async.py' 2025-07-17T06:38:01.1901040Z adding 'torch/jit/_await.py' 2025-07-17T06:38:01.1903200Z adding 'torch/jit/_builtins.py' 2025-07-17T06:38:01.1905490Z adding 'torch/jit/_check.py' 2025-07-17T06:38:01.1907560Z adding 'torch/jit/_dataclass_impls.py' 2025-07-17T06:38:01.1908060Z adding 'torch/jit/_decomposition_utils.py' 2025-07-17T06:38:01.1909970Z adding 'torch/jit/_decompositions.py' 2025-07-17T06:38:01.1912170Z adding 'torch/jit/_freeze.py' 2025-07-17T06:38:01.1913920Z adding 'torch/jit/_fuser.py' 2025-07-17T06:38:01.1914650Z adding 'torch/jit/_ir_utils.py' 2025-07-17T06:38:01.1915490Z adding 'torch/jit/_logging.py' 2025-07-17T06:38:01.1923320Z adding 'torch/jit/_monkeytype_config.py' 2025-07-17T06:38:01.1923500Z adding 'torch/jit/_pickle.py' 2025-07-17T06:38:01.1928400Z adding 'torch/jit/_recursive.py' 2025-07-17T06:38:01.1943310Z adding 'torch/jit/_script.py' 2025-07-17T06:38:01.1945860Z adding 'torch/jit/_script.pyi' 2025-07-17T06:38:01.1948220Z adding 'torch/jit/_serialization.py' 2025-07-17T06:38:01.1957240Z adding 'torch/jit/_shape_functions.py' 2025-07-17T06:38:01.1958870Z adding 'torch/jit/_state.py' 2025-07-17T06:38:01.1970460Z adding 'torch/jit/_trace.py' 2025-07-17T06:38:01.1974940Z adding 'torch/jit/annotations.py' 2025-07-17T06:38:01.1984470Z adding 'torch/jit/frontend.py' 2025-07-17T06:38:01.1985620Z adding 'torch/jit/generate_bytecode.py' 2025-07-17T06:38:01.1986760Z adding 'torch/jit/quantized.py' 2025-07-17T06:38:01.1989460Z adding 'torch/jit/supported_ops.py' 2025-07-17T06:38:01.1990400Z adding 'torch/jit/unsupported_tensor_ops.py' 2025-07-17T06:38:01.1991430Z adding 'torch/jit/_passes/__init__.py' 2025-07-17T06:38:01.1992510Z adding 'torch/jit/_passes/_property_propagation.py' 2025-07-17T06:38:01.1994790Z adding 'torch/jit/mobile/__init__.py' 2025-07-17T06:38:01.2261650Z adding 'torch/lib/libc10.dylib' 2025-07-17T06:38:01.2477530Z adding 'torch/lib/libomp.dylib' 2025-07-17T06:38:01.2490120Z adding 'torch/lib/libshm.dylib' 2025-07-17T06:38:01.2492640Z adding 'torch/lib/libtorch.dylib' 2025-07-17T06:38:04.8231940Z adding 'torch/lib/libtorch_cpu.dylib' 2025-07-17T06:38:04.9023880Z adding 'torch/lib/libtorch_global_deps.dylib' 2025-07-17T06:38:05.4224040Z adding 'torch/lib/libtorch_python.dylib' 2025-07-17T06:38:05.4328400Z adding 'torch/lib/libshm/alloc_info.h' 2025-07-17T06:38:05.4329190Z adding 'torch/lib/libshm/err.h' 2025-07-17T06:38:05.4330280Z adding 'torch/lib/libshm/libshm.h' 2025-07-17T06:38:05.4332240Z adding 'torch/lib/libshm/socket.h' 2025-07-17T06:38:05.4333330Z adding 'torch/lib/libshm_windows/libshm.h' 2025-07-17T06:38:05.4354680Z adding 'torch/linalg/__init__.py' 2025-07-17T06:38:05.4357650Z adding 'torch/masked/__init__.py' 2025-07-17T06:38:05.4361600Z adding 'torch/masked/_docs.py' 2025-07-17T06:38:05.4374540Z adding 'torch/masked/_ops.py' 2025-07-17T06:38:05.4375950Z adding 'torch/masked/maskedtensor/__init__.py' 2025-07-17T06:38:05.4379440Z adding 'torch/masked/maskedtensor/_ops_refs.py' 2025-07-17T06:38:05.4381050Z adding 'torch/masked/maskedtensor/binary.py' 2025-07-17T06:38:05.4384170Z adding 'torch/masked/maskedtensor/core.py' 2025-07-17T06:38:05.4384840Z adding 'torch/masked/maskedtensor/creation.py' 2025-07-17T06:38:05.4385850Z adding 'torch/masked/maskedtensor/passthrough.py' 2025-07-17T06:38:05.4387860Z adding 'torch/masked/maskedtensor/reductions.py' 2025-07-17T06:38:05.4388890Z adding 'torch/masked/maskedtensor/unary.py' 2025-07-17T06:38:05.4390200Z adding 'torch/monitor/__init__.py' 2025-07-17T06:38:05.4392540Z adding 'torch/mps/__init__.py' 2025-07-17T06:38:05.4393360Z adding 'torch/mps/event.py' 2025-07-17T06:38:05.4394590Z adding 'torch/mps/profiler.py' 2025-07-17T06:38:05.4398030Z adding 'torch/mtia/__init__.py' 2025-07-17T06:38:05.4398880Z adding 'torch/mtia/_utils.py' 2025-07-17T06:38:05.4399860Z adding 'torch/mtia/memory.py' 2025-07-17T06:38:05.4401860Z adding 'torch/multiprocessing/__init__.py' 2025-07-17T06:38:05.4402490Z adding 'torch/multiprocessing/_atfork.py' 2025-07-17T06:38:05.4403550Z adding 'torch/multiprocessing/pool.py' 2025-07-17T06:38:05.4404550Z adding 'torch/multiprocessing/queue.py' 2025-07-17T06:38:05.4409650Z adding 'torch/multiprocessing/reductions.py' 2025-07-17T06:38:05.4413080Z adding 'torch/multiprocessing/spawn.py' 2025-07-17T06:38:05.4417940Z adding 'torch/nested/__init__.py' 2025-07-17T06:38:05.4418820Z adding 'torch/nested/_internal/__init__.py' 2025-07-17T06:38:05.4420030Z adding 'torch/nested/_internal/nested_int.py' 2025-07-17T06:38:05.4425430Z adding 'torch/nested/_internal/nested_tensor.py' 2025-07-17T06:38:05.4442890Z adding 'torch/nested/_internal/ops.py' 2025-07-17T06:38:05.4450200Z adding 'torch/nested/_internal/sdpa.py' 2025-07-17T06:38:05.4452340Z adding 'torch/nn/__init__.py' 2025-07-17T06:38:05.4453190Z adding 'torch/nn/_reduction.py' 2025-07-17T06:38:05.4454280Z adding 'torch/nn/common_types.py' 2025-07-17T06:38:05.4455620Z adding 'torch/nn/cpp.py' 2025-07-17T06:38:05.4499460Z adding 'torch/nn/functional.py' 2025-07-17T06:38:05.4504070Z adding 'torch/nn/functional.pyi' 2025-07-17T06:38:05.4505500Z adding 'torch/nn/grad.py' 2025-07-17T06:38:05.4510340Z adding 'torch/nn/init.py' 2025-07-17T06:38:05.4513020Z adding 'torch/nn/parameter.py' 2025-07-17T06:38:05.4513780Z adding 'torch/nn/parameter.pyi' 2025-07-17T06:38:05.4516320Z adding 'torch/nn/attention/__init__.py' 2025-07-17T06:38:05.4517160Z adding 'torch/nn/attention/_utils.py' 2025-07-17T06:38:05.4520210Z adding 'torch/nn/attention/bias.py' 2025-07-17T06:38:05.4533600Z adding 'torch/nn/attention/flex_attention.py' 2025-07-17T06:38:05.4535040Z adding 'torch/nn/attention/experimental/__init__.py' 2025-07-17T06:38:05.4537910Z adding 'torch/nn/attention/experimental/_paged_attention.py' 2025-07-17T06:38:05.4538580Z adding 'torch/nn/backends/__init__.py' 2025-07-17T06:38:05.4539380Z adding 'torch/nn/backends/thnn.py' 2025-07-17T06:38:05.4540570Z adding 'torch/nn/intrinsic/__init__.py' 2025-07-17T06:38:05.4541780Z adding 'torch/nn/intrinsic/modules/__init__.py' 2025-07-17T06:38:05.4542630Z adding 'torch/nn/intrinsic/modules/fused.py' 2025-07-17T06:38:05.4543630Z adding 'torch/nn/intrinsic/qat/__init__.py' 2025-07-17T06:38:05.4544770Z adding 'torch/nn/intrinsic/qat/modules/__init__.py' 2025-07-17T06:38:05.4545720Z adding 'torch/nn/intrinsic/qat/modules/conv_fused.py' 2025-07-17T06:38:05.4546640Z adding 'torch/nn/intrinsic/qat/modules/linear_fused.py' 2025-07-17T06:38:05.4547460Z adding 'torch/nn/intrinsic/qat/modules/linear_relu.py' 2025-07-17T06:38:05.4548580Z adding 'torch/nn/intrinsic/quantized/__init__.py' 2025-07-17T06:38:05.4549680Z adding 'torch/nn/intrinsic/quantized/dynamic/__init__.py' 2025-07-17T06:38:05.4550760Z adding 'torch/nn/intrinsic/quantized/dynamic/modules/__init__.py' 2025-07-17T06:38:05.4551560Z adding 'torch/nn/intrinsic/quantized/dynamic/modules/linear_relu.py' 2025-07-17T06:38:05.4552580Z adding 'torch/nn/intrinsic/quantized/modules/__init__.py' 2025-07-17T06:38:05.4553360Z adding 'torch/nn/intrinsic/quantized/modules/bn_relu.py' 2025-07-17T06:38:05.4554170Z adding 'torch/nn/intrinsic/quantized/modules/conv_relu.py' 2025-07-17T06:38:05.4554970Z adding 'torch/nn/intrinsic/quantized/modules/linear_relu.py' 2025-07-17T06:38:05.4557420Z adding 'torch/nn/modules/__init__.py' 2025-07-17T06:38:05.4560610Z adding 'torch/nn/modules/_functions.py' 2025-07-17T06:38:05.4570850Z adding 'torch/nn/modules/activation.py' 2025-07-17T06:38:05.4575200Z adding 'torch/nn/modules/adaptive.py' 2025-07-17T06:38:05.4581010Z adding 'torch/nn/modules/batchnorm.py' 2025-07-17T06:38:05.4582140Z adding 'torch/nn/modules/channelshuffle.py' 2025-07-17T06:38:05.4589160Z adding 'torch/nn/modules/container.py' 2025-07-17T06:38:05.4599350Z adding 'torch/nn/modules/conv.py' 2025-07-17T06:38:05.4600860Z adding 'torch/nn/modules/distance.py' 2025-07-17T06:38:05.4603470Z adding 'torch/nn/modules/dropout.py' 2025-07-17T06:38:05.4604890Z adding 'torch/nn/modules/flatten.py' 2025-07-17T06:38:05.4607780Z adding 'torch/nn/modules/fold.py' 2025-07-17T06:38:05.4610620Z adding 'torch/nn/modules/instancenorm.py' 2025-07-17T06:38:05.4613720Z adding 'torch/nn/modules/lazy.py' 2025-07-17T06:38:05.4616110Z adding 'torch/nn/modules/linear.py' 2025-07-17T06:38:05.4631580Z adding 'torch/nn/modules/loss.py' 2025-07-17T06:38:05.4656760Z adding 'torch/nn/modules/module.py' 2025-07-17T06:38:05.4660480Z adding 'torch/nn/modules/normalization.py' 2025-07-17T06:38:05.4663690Z adding 'torch/nn/modules/padding.py' 2025-07-17T06:38:05.4664890Z adding 'torch/nn/modules/pixelshuffle.py' 2025-07-17T06:38:05.4672400Z adding 'torch/nn/modules/pooling.py' 2025-07-17T06:38:05.4683900Z adding 'torch/nn/modules/rnn.py' 2025-07-17T06:38:05.4688300Z adding 'torch/nn/modules/sparse.py' 2025-07-17T06:38:05.4696440Z adding 'torch/nn/modules/transformer.py' 2025-07-17T06:38:05.4699290Z adding 'torch/nn/modules/upsampling.py' 2025-07-17T06:38:05.4700370Z adding 'torch/nn/modules/utils.py' 2025-07-17T06:38:05.4701790Z adding 'torch/nn/parallel/__init__.py' 2025-07-17T06:38:05.4703320Z adding 'torch/nn/parallel/_functions.py' 2025-07-17T06:38:05.4706290Z adding 'torch/nn/parallel/comm.py' 2025-07-17T06:38:05.4709150Z adding 'torch/nn/parallel/data_parallel.py' 2025-07-17T06:38:05.4734600Z adding 'torch/nn/parallel/distributed.py' 2025-07-17T06:38:05.4736780Z adding 'torch/nn/parallel/parallel_apply.py' 2025-07-17T06:38:05.4738990Z adding 'torch/nn/parallel/replicate.py' 2025-07-17T06:38:05.4740420Z adding 'torch/nn/parallel/scatter_gather.py' 2025-07-17T06:38:05.4741620Z adding 'torch/nn/qat/__init__.py' 2025-07-17T06:38:05.4742780Z adding 'torch/nn/qat/dynamic/__init__.py' 2025-07-17T06:38:05.4744070Z adding 'torch/nn/qat/dynamic/modules/__init__.py' 2025-07-17T06:38:05.4744970Z adding 'torch/nn/qat/dynamic/modules/linear.py' 2025-07-17T06:38:05.4746060Z adding 'torch/nn/qat/modules/__init__.py' 2025-07-17T06:38:05.4746900Z adding 'torch/nn/qat/modules/conv.py' 2025-07-17T06:38:05.4748010Z adding 'torch/nn/qat/modules/embedding_ops.py' 2025-07-17T06:38:05.4748850Z adding 'torch/nn/qat/modules/linear.py' 2025-07-17T06:38:05.4749830Z adding 'torch/nn/quantizable/__init__.py' 2025-07-17T06:38:05.4750890Z adding 'torch/nn/quantizable/modules/__init__.py' 2025-07-17T06:38:05.4751960Z adding 'torch/nn/quantizable/modules/activation.py' 2025-07-17T06:38:05.4752790Z adding 'torch/nn/quantizable/modules/rnn.py' 2025-07-17T06:38:05.4753940Z adding 'torch/nn/quantized/__init__.py' 2025-07-17T06:38:05.4754760Z adding 'torch/nn/quantized/functional.py' 2025-07-17T06:38:05.4756160Z adding 'torch/nn/quantized/_reference/__init__.py' 2025-07-17T06:38:05.4757420Z adding 'torch/nn/quantized/_reference/modules/__init__.py' 2025-07-17T06:38:05.4758300Z adding 'torch/nn/quantized/_reference/modules/conv.py' 2025-07-17T06:38:05.4759170Z adding 'torch/nn/quantized/_reference/modules/linear.py' 2025-07-17T06:38:05.4760220Z adding 'torch/nn/quantized/_reference/modules/rnn.py' 2025-07-17T06:38:05.4761120Z adding 'torch/nn/quantized/_reference/modules/sparse.py' 2025-07-17T06:38:05.4762000Z adding 'torch/nn/quantized/_reference/modules/utils.py' 2025-07-17T06:38:05.4762970Z adding 'torch/nn/quantized/dynamic/__init__.py' 2025-07-17T06:38:05.4764520Z adding 'torch/nn/quantized/dynamic/modules/__init__.py' 2025-07-17T06:38:05.4765370Z adding 'torch/nn/quantized/dynamic/modules/conv.py' 2025-07-17T06:38:05.4766220Z adding 'torch/nn/quantized/dynamic/modules/linear.py' 2025-07-17T06:38:05.4767130Z adding 'torch/nn/quantized/dynamic/modules/rnn.py' 2025-07-17T06:38:05.4769150Z adding 'torch/nn/quantized/modules/__init__.py' 2025-07-17T06:38:05.4769790Z adding 'torch/nn/quantized/modules/activation.py' 2025-07-17T06:38:05.4770580Z adding 'torch/nn/quantized/modules/batchnorm.py' 2025-07-17T06:38:05.4771460Z adding 'torch/nn/quantized/modules/conv.py' 2025-07-17T06:38:05.4772530Z adding 'torch/nn/quantized/modules/dropout.py' 2025-07-17T06:38:05.4773440Z adding 'torch/nn/quantized/modules/embedding_ops.py' 2025-07-17T06:38:05.4774690Z adding 'torch/nn/quantized/modules/functional_modules.py' 2025-07-17T06:38:05.4775490Z adding 'torch/nn/quantized/modules/linear.py' 2025-07-17T06:38:05.4776560Z adding 'torch/nn/quantized/modules/normalization.py' 2025-07-17T06:38:05.4777390Z adding 'torch/nn/quantized/modules/rnn.py' 2025-07-17T06:38:05.4778190Z adding 'torch/nn/quantized/modules/utils.py' 2025-07-17T06:38:05.4779430Z adding 'torch/nn/utils/__init__.py' 2025-07-17T06:38:05.4780780Z adding 'torch/nn/utils/_deprecation_utils.py' 2025-07-17T06:38:05.4783740Z adding 'torch/nn/utils/_named_member_accessor.py' 2025-07-17T06:38:05.4785250Z adding 'torch/nn/utils/_per_sample_grad.py' 2025-07-17T06:38:05.4787920Z adding 'torch/nn/utils/clip_grad.py' 2025-07-17T06:38:05.4789240Z adding 'torch/nn/utils/convert_parameters.py' 2025-07-17T06:38:05.4791210Z adding 'torch/nn/utils/fusion.py' 2025-07-17T06:38:05.4792120Z adding 'torch/nn/utils/init.py' 2025-07-17T06:38:05.4794120Z adding 'torch/nn/utils/memory_format.py' 2025-07-17T06:38:05.4800120Z adding 'torch/nn/utils/parametrizations.py' 2025-07-17T06:38:05.4807830Z adding 'torch/nn/utils/parametrize.py' 2025-07-17T06:38:05.4818300Z adding 'torch/nn/utils/prune.py' 2025-07-17T06:38:05.4823510Z adding 'torch/nn/utils/rnn.py' 2025-07-17T06:38:05.4826970Z adding 'torch/nn/utils/spectral_norm.py' 2025-07-17T06:38:05.4829910Z adding 'torch/nn/utils/stateless.py' 2025-07-17T06:38:05.4832050Z adding 'torch/nn/utils/weight_norm.py' 2025-07-17T06:38:05.4833100Z adding 'torch/nn/utils/_expanded_weights/__init__.py' 2025-07-17T06:38:05.4834380Z adding 'torch/nn/utils/_expanded_weights/conv_expanded_weights.py' 2025-07-17T06:38:05.4837320Z adding 'torch/nn/utils/_expanded_weights/conv_utils.py' 2025-07-17T06:38:05.4838580Z adding 'torch/nn/utils/_expanded_weights/embedding_expanded_weights.py' 2025-07-17T06:38:05.4840690Z adding 'torch/nn/utils/_expanded_weights/expanded_weights_impl.py' 2025-07-17T06:38:05.4842800Z adding 'torch/nn/utils/_expanded_weights/expanded_weights_utils.py' 2025-07-17T06:38:05.4843750Z adding 'torch/nn/utils/_expanded_weights/group_norm_expanded_weights.py' 2025-07-17T06:38:05.4845350Z adding 'torch/nn/utils/_expanded_weights/instance_norm_expanded_weights.py' 2025-07-17T06:38:05.4846610Z adding 'torch/nn/utils/_expanded_weights/layer_norm_expanded_weights.py' 2025-07-17T06:38:05.4847730Z adding 'torch/nn/utils/_expanded_weights/linear_expanded_weights.py' 2025-07-17T06:38:05.4852230Z adding 'torch/onnx/__init__.py' 2025-07-17T06:38:05.4853180Z adding 'torch/onnx/_constants.py' 2025-07-17T06:38:05.4854140Z adding 'torch/onnx/_experimental.py' 2025-07-17T06:38:05.4855150Z adding 'torch/onnx/_flags.py' 2025-07-17T06:38:05.4856320Z adding 'torch/onnx/_globals.py' 2025-07-17T06:38:05.4857830Z adding 'torch/onnx/_onnx_supported_ops.py' 2025-07-17T06:38:05.4860890Z adding 'torch/onnx/_type_utils.py' 2025-07-17T06:38:05.4861930Z adding 'torch/onnx/errors.py' 2025-07-17T06:38:05.4862890Z adding 'torch/onnx/operators.py' 2025-07-17T06:38:05.4879910Z adding 'torch/onnx/symbolic_helper.py' 2025-07-17T06:38:05.4886240Z adding 'torch/onnx/symbolic_opset10.py' 2025-07-17T06:38:05.4896240Z adding 'torch/onnx/symbolic_opset11.py' 2025-07-17T06:38:05.4899740Z adding 'torch/onnx/symbolic_opset12.py' 2025-07-17T06:38:05.4906850Z adding 'torch/onnx/symbolic_opset13.py' 2025-07-17T06:38:05.4909330Z adding 'torch/onnx/symbolic_opset14.py' 2025-07-17T06:38:05.4910360Z adding 'torch/onnx/symbolic_opset15.py' 2025-07-17T06:38:05.4912710Z adding 'torch/onnx/symbolic_opset16.py' 2025-07-17T06:38:05.4914930Z adding 'torch/onnx/symbolic_opset17.py' 2025-07-17T06:38:05.4916730Z adding 'torch/onnx/symbolic_opset18.py' 2025-07-17T06:38:05.4917510Z adding 'torch/onnx/symbolic_opset19.py' 2025-07-17T06:38:05.4918900Z adding 'torch/onnx/symbolic_opset20.py' 2025-07-17T06:38:05.4919940Z adding 'torch/onnx/symbolic_opset7.py' 2025-07-17T06:38:05.4923150Z adding 'torch/onnx/symbolic_opset8.py' 2025-07-17T06:38:05.4966080Z adding 'torch/onnx/symbolic_opset9.py' 2025-07-17T06:38:05.4984840Z adding 'torch/onnx/utils.py' 2025-07-17T06:38:05.5000230Z adding 'torch/onnx/verification.py' 2025-07-17T06:38:05.5002020Z adding 'torch/onnx/_internal/__init__.py' 2025-07-17T06:38:05.5004130Z adding 'torch/onnx/_internal/_exporter_legacy.py' 2025-07-17T06:38:05.5004840Z adding 'torch/onnx/_internal/_lazy_import.py' 2025-07-17T06:38:05.5008410Z adding 'torch/onnx/_internal/jit_utils.py' 2025-07-17T06:38:05.5010780Z adding 'torch/onnx/_internal/onnx_proto_utils.py' 2025-07-17T06:38:05.5013470Z adding 'torch/onnx/_internal/registration.py' 2025-07-17T06:38:05.5014460Z adding 'torch/onnx/_internal/exporter/__init__.py' 2025-07-17T06:38:05.5017340Z adding 'torch/onnx/_internal/exporter/_analysis.py' 2025-07-17T06:38:05.5023670Z adding 'torch/onnx/_internal/exporter/_building.py' 2025-07-17T06:38:05.5026000Z adding 'torch/onnx/_internal/exporter/_capture_strategies.py' 2025-07-17T06:38:05.5028040Z adding 'torch/onnx/_internal/exporter/_compat.py' 2025-07-17T06:38:05.5028880Z adding 'torch/onnx/_internal/exporter/_constants.py' 2025-07-17T06:38:05.5043930Z adding 'torch/onnx/_internal/exporter/_core.py' 2025-07-17T06:38:05.5045160Z adding 'torch/onnx/_internal/exporter/_decomp.py' 2025-07-17T06:38:05.5048890Z adding 'torch/onnx/_internal/exporter/_dispatching.py' 2025-07-17T06:38:05.5052000Z adding 'torch/onnx/_internal/exporter/_dynamic_shapes.py' 2025-07-17T06:38:05.5052610Z adding 'torch/onnx/_internal/exporter/_errors.py' 2025-07-17T06:38:05.5053500Z adding 'torch/onnx/_internal/exporter/_flags.py' 2025-07-17T06:38:05.5054860Z adding 'torch/onnx/_internal/exporter/_fx_passes.py' 2025-07-17T06:38:05.5056890Z adding 'torch/onnx/_internal/exporter/_ir_passes.py' 2025-07-17T06:38:05.5057680Z adding 'torch/onnx/_internal/exporter/_isolated.py' 2025-07-17T06:38:05.5061740Z adding 'torch/onnx/_internal/exporter/_onnx_program.py' 2025-07-17T06:38:05.5064810Z adding 'torch/onnx/_internal/exporter/_registration.py' 2025-07-17T06:38:05.5066420Z adding 'torch/onnx/_internal/exporter/_reporting.py' 2025-07-17T06:38:05.5071170Z adding 'torch/onnx/_internal/exporter/_schemas.py' 2025-07-17T06:38:05.5072130Z adding 'torch/onnx/_internal/exporter/_tensors.py' 2025-07-17T06:38:05.5074140Z adding 'torch/onnx/_internal/exporter/_testing.py' 2025-07-17T06:38:05.5074740Z adding 'torch/onnx/_internal/exporter/_type_casting.py' 2025-07-17T06:38:05.5077980Z adding 'torch/onnx/_internal/exporter/_verification.py' 2025-07-17T06:38:05.5078800Z adding 'torch/onnx/_internal/exporter/_torchlib/__init__.py' 2025-07-17T06:38:05.5080170Z adding 'torch/onnx/_internal/exporter/_torchlib/_tensor_typing.py' 2025-07-17T06:38:05.5081430Z adding 'torch/onnx/_internal/exporter/_torchlib/_torchlib_registry.py' 2025-07-17T06:38:05.5082550Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/__init__.py' 2025-07-17T06:38:05.5083560Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/core.py' 2025-07-17T06:38:05.5085700Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/hop.py' 2025-07-17T06:38:05.5088120Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/nn.py' 2025-07-17T06:38:05.5089360Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/symbolic.py' 2025-07-17T06:38:05.5090290Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/symops.py' 2025-07-17T06:38:05.5091590Z adding 'torch/onnx/_internal/fx/__init__.py' 2025-07-17T06:38:05.5094210Z adding 'torch/onnx/_internal/fx/_pass.py' 2025-07-17T06:38:05.5095580Z adding 'torch/onnx/_internal/fx/patcher.py' 2025-07-17T06:38:05.5100990Z adding 'torch/onnx/_internal/fx/serialization.py' 2025-07-17T06:38:05.5101240Z adding 'torch/onnx/_internal/fx/type_utils.py' 2025-07-17T06:38:05.5101480Z adding 'torch/onnx/_internal/fx/passes/__init__.py' 2025-07-17T06:38:05.5103060Z adding 'torch/onnx/_internal/fx/passes/_utils.py' 2025-07-17T06:38:05.5112400Z adding 'torch/onnx/_internal/fx/passes/type_promotion.py' 2025-07-17T06:38:05.5117230Z adding 'torch/onnx/ops/__init__.py' 2025-07-17T06:38:05.5118040Z adding 'torch/onnx/ops/_dtype_mappings.py' 2025-07-17T06:38:05.5121350Z adding 'torch/onnx/ops/_impl.py' 2025-07-17T06:38:05.5123810Z adding 'torch/onnx/ops/_symbolic_impl.py' 2025-07-17T06:38:05.5125160Z adding 'torch/optim/__init__.py' 2025-07-17T06:38:05.5130670Z adding 'torch/optim/_adafactor.py' 2025-07-17T06:38:05.5131760Z adding 'torch/optim/_functional.py' 2025-07-17T06:38:05.5135540Z adding 'torch/optim/adadelta.py' 2025-07-17T06:38:05.5139720Z adding 'torch/optim/adagrad.py' 2025-07-17T06:38:05.5146930Z adding 'torch/optim/adam.py' 2025-07-17T06:38:05.5150610Z adding 'torch/optim/adamax.py' 2025-07-17T06:38:05.5152570Z adding 'torch/optim/adamw.py' 2025-07-17T06:38:05.5156070Z adding 'torch/optim/asgd.py' 2025-07-17T06:38:05.5159920Z adding 'torch/optim/lbfgs.py' 2025-07-17T06:38:05.5174440Z adding 'torch/optim/lr_scheduler.py' 2025-07-17T06:38:05.5179410Z adding 'torch/optim/nadam.py' 2025-07-17T06:38:05.5189720Z adding 'torch/optim/optimizer.py' 2025-07-17T06:38:05.5194730Z adding 'torch/optim/radam.py' 2025-07-17T06:38:05.5198690Z adding 'torch/optim/rmsprop.py' 2025-07-17T06:38:05.5202290Z adding 'torch/optim/rprop.py' 2025-07-17T06:38:05.5206250Z adding 'torch/optim/sgd.py' 2025-07-17T06:38:05.5208790Z adding 'torch/optim/sparse_adam.py' 2025-07-17T06:38:05.5212770Z adding 'torch/optim/swa_utils.py' 2025-07-17T06:38:05.5213890Z adding 'torch/optim/_multi_tensor/__init__.py' 2025-07-17T06:38:05.5214720Z adding 'torch/optim/_multi_tensor/__init__.pyi' 2025-07-17T06:38:05.5216180Z adding 'torch/package/__init__.py' 2025-07-17T06:38:05.5218040Z adding 'torch/package/_digraph.py' 2025-07-17T06:38:05.5219000Z adding 'torch/package/_directory_reader.py' 2025-07-17T06:38:05.5220290Z adding 'torch/package/_importlib.py' 2025-07-17T06:38:05.5221660Z adding 'torch/package/_mangling.py' 2025-07-17T06:38:05.5222890Z adding 'torch/package/_mock.py' 2025-07-17T06:38:05.5224860Z adding 'torch/package/_package_pickler.py' 2025-07-17T06:38:05.5225470Z adding 'torch/package/_package_unpickler.py' 2025-07-17T06:38:05.5227460Z adding 'torch/package/_stdlib.py' 2025-07-17T06:38:05.5228980Z adding 'torch/package/file_structure_representation.py' 2025-07-17T06:38:05.5230300Z adding 'torch/package/find_file_dependencies.py' 2025-07-17T06:38:05.5231620Z adding 'torch/package/glob_group.py' 2025-07-17T06:38:05.5234460Z adding 'torch/package/importer.py' 2025-07-17T06:38:05.5244920Z adding 'torch/package/package_exporter.py' 2025-07-17T06:38:05.5252330Z adding 'torch/package/package_importer.py' 2025-07-17T06:38:05.5253460Z adding 'torch/package/analyze/__init__.py' 2025-07-17T06:38:05.5254540Z adding 'torch/package/analyze/find_first_use_of_broken_modules.py' 2025-07-17T06:38:05.5255330Z adding 'torch/package/analyze/is_from_package.py' 2025-07-17T06:38:05.5256520Z adding 'torch/package/analyze/trace_dependencies.py' 2025-07-17T06:38:05.5258040Z adding 'torch/profiler/__init__.py' 2025-07-17T06:38:05.5268550Z adding 'torch/profiler/_memory_profiler.py' 2025-07-17T06:38:05.5273450Z adding 'torch/profiler/_pattern_matcher.py' 2025-07-17T06:38:05.5277050Z adding 'torch/profiler/_utils.py' 2025-07-17T06:38:05.5278000Z adding 'torch/profiler/itt.py' 2025-07-17T06:38:05.5287090Z adding 'torch/profiler/profiler.py' 2025-07-17T06:38:05.5287920Z adding 'torch/profiler/python_tracer.py' 2025-07-17T06:38:05.5289750Z adding 'torch/quantization/__init__.py' 2025-07-17T06:38:05.5290670Z adding 'torch/quantization/_numeric_suite.py' 2025-07-17T06:38:05.5291660Z adding 'torch/quantization/_numeric_suite_fx.py' 2025-07-17T06:38:05.5293110Z adding 'torch/quantization/_quantized_conversions.py' 2025-07-17T06:38:05.5294000Z adding 'torch/quantization/fake_quantize.py' 2025-07-17T06:38:05.5295100Z adding 'torch/quantization/fuse_modules.py' 2025-07-17T06:38:05.5296000Z adding 'torch/quantization/fuser_method_mappings.py' 2025-07-17T06:38:05.5296900Z adding 'torch/quantization/observer.py' 2025-07-17T06:38:05.5297780Z adding 'torch/quantization/qconfig.py' 2025-07-17T06:38:05.5298850Z adding 'torch/quantization/quant_type.py' 2025-07-17T06:38:05.5299800Z adding 'torch/quantization/quantization_mappings.py' 2025-07-17T06:38:05.5300670Z adding 'torch/quantization/quantize.py' 2025-07-17T06:38:05.5301510Z adding 'torch/quantization/quantize_fx.py' 2025-07-17T06:38:05.5302620Z adding 'torch/quantization/quantize_jit.py' 2025-07-17T06:38:05.5303440Z adding 'torch/quantization/stubs.py' 2025-07-17T06:38:05.5304300Z adding 'torch/quantization/utils.py' 2025-07-17T06:38:05.5305500Z adding 'torch/quantization/fx/__init__.py' 2025-07-17T06:38:05.5306660Z adding 'torch/quantization/fx/_equalize.py' 2025-07-17T06:38:05.5307500Z adding 'torch/quantization/fx/convert.py' 2025-07-17T06:38:05.5308310Z adding 'torch/quantization/fx/fuse.py' 2025-07-17T06:38:05.5309150Z adding 'torch/quantization/fx/fusion_patterns.py' 2025-07-17T06:38:05.5310230Z adding 'torch/quantization/fx/graph_module.py' 2025-07-17T06:38:05.5311040Z adding 'torch/quantization/fx/match_utils.py' 2025-07-17T06:38:05.5311990Z adding 'torch/quantization/fx/pattern_utils.py' 2025-07-17T06:38:05.5312810Z adding 'torch/quantization/fx/prepare.py' 2025-07-17T06:38:05.5314030Z adding 'torch/quantization/fx/quantization_patterns.py' 2025-07-17T06:38:05.5314910Z adding 'torch/quantization/fx/quantization_types.py' 2025-07-17T06:38:05.5315700Z adding 'torch/quantization/fx/utils.py' 2025-07-17T06:38:05.5317680Z adding 'torch/share/cmake/ATen/ATenConfig.cmake' 2025-07-17T06:38:05.5319470Z adding 'torch/share/cmake/Caffe2/Caffe2Config.cmake' 2025-07-17T06:38:05.5320360Z adding 'torch/share/cmake/Caffe2/Caffe2Targets-release.cmake' 2025-07-17T06:38:05.5321970Z adding 'torch/share/cmake/Caffe2/Caffe2Targets.cmake' 2025-07-17T06:38:05.5329580Z adding 'torch/share/cmake/Caffe2/FindCUDAToolkit.cmake' 2025-07-17T06:38:05.5330950Z adding 'torch/share/cmake/Caffe2/FindCUDSS.cmake' 2025-07-17T06:38:05.5332160Z adding 'torch/share/cmake/Caffe2/FindCUSPARSELT.cmake' 2025-07-17T06:38:05.5333690Z adding 'torch/share/cmake/Caffe2/FindSYCLToolkit.cmake' 2025-07-17T06:38:05.5335100Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDA.cmake' 2025-07-17T06:38:05.5336310Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDNN.cmake' 2025-07-17T06:38:05.5337740Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/CMakeInitializeConfigs.cmake' 2025-07-17T06:38:05.5356680Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA.cmake' 2025-07-17T06:38:05.5360840Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindPackageHandleStandardArgs.cmake' 2025-07-17T06:38:05.5361830Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindPackageMessage.cmake' 2025-07-17T06:38:05.5364060Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/make2cmake.cmake' 2025-07-17T06:38:05.5365300Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/parse_cubin.cmake' 2025-07-17T06:38:05.5368250Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/run_nvcc.cmake' 2025-07-17T06:38:05.5370770Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/select_compute_arch.cmake' 2025-07-17T06:38:05.5373290Z adding 'torch/share/cmake/Caffe2/public/LoadHIP.cmake' 2025-07-17T06:38:05.5376430Z adding 'torch/share/cmake/Caffe2/public/cuda.cmake' 2025-07-17T06:38:05.5377430Z adding 'torch/share/cmake/Caffe2/public/gflags.cmake' 2025-07-17T06:38:05.5378580Z adding 'torch/share/cmake/Caffe2/public/glog.cmake' 2025-07-17T06:38:05.5379610Z adding 'torch/share/cmake/Caffe2/public/mkl.cmake' 2025-07-17T06:38:05.5380710Z adding 'torch/share/cmake/Caffe2/public/mkldnn.cmake' 2025-07-17T06:38:05.5381960Z adding 'torch/share/cmake/Caffe2/public/protobuf.cmake' 2025-07-17T06:38:05.5386550Z adding 'torch/share/cmake/Caffe2/public/utils.cmake' 2025-07-17T06:38:05.5387440Z adding 'torch/share/cmake/Caffe2/public/xpu.cmake' 2025-07-17T06:38:05.5389680Z adding 'torch/share/cmake/Torch/TorchConfig.cmake' 2025-07-17T06:38:05.5390320Z adding 'torch/share/cmake/Torch/TorchConfigVersion.cmake' 2025-07-17T06:38:05.5391210Z adding 'torch/signal/__init__.py' 2025-07-17T06:38:05.5392310Z adding 'torch/signal/windows/__init__.py' 2025-07-17T06:38:05.5396250Z adding 'torch/signal/windows/windows.py' 2025-07-17T06:38:05.5401660Z adding 'torch/sparse/__init__.py' 2025-07-17T06:38:05.5405100Z adding 'torch/sparse/_semi_structured_conversions.py' 2025-07-17T06:38:05.5406570Z adding 'torch/sparse/_semi_structured_ops.py' 2025-07-17T06:38:05.5422280Z adding 'torch/sparse/_triton_ops.py' 2025-07-17T06:38:05.5502490Z adding 'torch/sparse/_triton_ops_meta.py' 2025-07-17T06:38:05.5509920Z adding 'torch/sparse/semi_structured.py' 2025-07-17T06:38:05.5514970Z adding 'torch/special/__init__.py' 2025-07-17T06:38:05.5516020Z adding 'torch/testing/__init__.py' 2025-07-17T06:38:05.5528970Z adding 'torch/testing/_comparison.py' 2025-07-17T06:38:05.5532440Z adding 'torch/testing/_creation.py' 2025-07-17T06:38:05.5535020Z adding 'torch/testing/_utils.py' 2025-07-17T06:38:05.5536220Z adding 'torch/testing/_internal/__init__.py' 2025-07-17T06:38:05.5540440Z adding 'torch/testing/_internal/autocast_test_lists.py' 2025-07-17T06:38:05.5543340Z adding 'torch/testing/_internal/autograd_function_db.py' 2025-07-17T06:38:05.5545450Z adding 'torch/testing/_internal/check_kernel_launches.py' 2025-07-17T06:38:05.5548270Z adding 'torch/testing/_internal/common_cuda.py' 2025-07-17T06:38:05.5564710Z adding 'torch/testing/_internal/common_device_type.py' 2025-07-17T06:38:05.5566220Z adding 'torch/testing/_internal/common_dist_composable.py' 2025-07-17T06:38:05.5580970Z adding 'torch/testing/_internal/common_distributed.py' 2025-07-17T06:38:05.5583110Z adding 'torch/testing/_internal/common_dtype.py' 2025-07-17T06:38:05.5594540Z adding 'torch/testing/_internal/common_fsdp.py' 2025-07-17T06:38:05.5598570Z adding 'torch/testing/_internal/common_jit.py' 2025-07-17T06:38:05.5751220Z adding 'torch/testing/_internal/common_methods_invocations.py' 2025-07-17T06:38:05.5757920Z adding 'torch/testing/_internal/common_mkldnn.py' 2025-07-17T06:38:05.5778990Z adding 'torch/testing/_internal/common_modules.py' 2025-07-17T06:38:05.5784990Z adding 'torch/testing/_internal/common_mps.py' 2025-07-17T06:38:05.5806830Z adding 'torch/testing/_internal/common_nn.py' 2025-07-17T06:38:05.5817660Z adding 'torch/testing/_internal/common_optimizers.py' 2025-07-17T06:38:05.5820520Z adding 'torch/testing/_internal/common_pruning.py' 2025-07-17T06:38:05.5839840Z adding 'torch/testing/_internal/common_quantization.py' 2025-07-17T06:38:05.5844600Z adding 'torch/testing/_internal/common_quantized.py' 2025-07-17T06:38:05.5847540Z adding 'torch/testing/_internal/common_subclass.py' 2025-07-17T06:38:05.5902480Z adding 'torch/testing/_internal/common_utils.py' 2025-07-17T06:38:05.5908780Z adding 'torch/testing/_internal/composite_compliance.py' 2025-07-17T06:38:05.5912560Z adding 'torch/testing/_internal/custom_op_db.py' 2025-07-17T06:38:05.5913990Z adding 'torch/testing/_internal/custom_tensor.py' 2025-07-17T06:38:05.5916330Z adding 'torch/testing/_internal/dist_utils.py' 2025-07-17T06:38:05.5917760Z adding 'torch/testing/_internal/dynamo_test_failures.py' 2025-07-17T06:38:05.5919090Z adding 'torch/testing/_internal/fake_config_module.py' 2025-07-17T06:38:05.5919980Z adding 'torch/testing/_internal/fake_config_module2.py' 2025-07-17T06:38:05.5920830Z adding 'torch/testing/_internal/fake_config_module3.py' 2025-07-17T06:38:05.5923250Z adding 'torch/testing/_internal/hop_db.py' 2025-07-17T06:38:05.5926740Z adding 'torch/testing/_internal/hypothesis_utils.py' 2025-07-17T06:38:05.5929560Z adding 'torch/testing/_internal/inductor_utils.py' 2025-07-17T06:38:05.5935640Z adding 'torch/testing/_internal/jit_metaprogramming_utils.py' 2025-07-17T06:38:05.5942450Z adding 'torch/testing/_internal/jit_utils.py' 2025-07-17T06:38:05.5944680Z adding 'torch/testing/_internal/logging_tensor.py' 2025-07-17T06:38:05.5946780Z adding 'torch/testing/_internal/logging_utils.py' 2025-07-17T06:38:05.5947730Z adding 'torch/testing/_internal/quantization_torch_package_models.py' 2025-07-17T06:38:05.5948590Z adding 'torch/testing/_internal/static_module.py' 2025-07-17T06:38:05.5949730Z adding 'torch/testing/_internal/subclasses.py' 2025-07-17T06:38:05.5951300Z adding 'torch/testing/_internal/torchbind_impls.py' 2025-07-17T06:38:05.5955870Z adding 'torch/testing/_internal/triton_utils.py' 2025-07-17T06:38:05.5957020Z adding 'torch/testing/_internal/two_tensor.py' 2025-07-17T06:38:05.5958340Z adding 'torch/testing/_internal/codegen/__init__.py' 2025-07-17T06:38:05.5959290Z adding 'torch/testing/_internal/data/__init__.py' 2025-07-17T06:38:05.5960330Z adding 'torch/testing/_internal/data/network1.py' 2025-07-17T06:38:05.5961170Z adding 'torch/testing/_internal/data/network2.py' 2025-07-17T06:38:05.5962310Z adding 'torch/testing/_internal/distributed/__init__.py' 2025-07-17T06:38:05.5964430Z adding 'torch/testing/_internal/distributed/checkpoint_utils.py' 2025-07-17T06:38:05.5966620Z adding 'torch/testing/_internal/distributed/common_state_dict.py' 2025-07-17T06:38:05.5971300Z adding 'torch/testing/_internal/distributed/ddp_under_dist_autograd_test.py' 2025-07-17T06:38:05.6035250Z adding 'torch/testing/_internal/distributed/distributed_test.py' 2025-07-17T06:38:05.6038470Z adding 'torch/testing/_internal/distributed/distributed_utils.py' 2025-07-17T06:38:05.6039260Z adding 'torch/testing/_internal/distributed/fake_pg.py' 2025-07-17T06:38:05.6043380Z adding 'torch/testing/_internal/distributed/multi_threaded_pg.py' 2025-07-17T06:38:05.6045670Z adding 'torch/testing/_internal/distributed/rpc_utils.py' 2025-07-17T06:38:05.6046610Z adding 'torch/testing/_internal/distributed/_shard/__init__.py' 2025-07-17T06:38:05.6047630Z adding 'torch/testing/_internal/distributed/_shard/test_common.py' 2025-07-17T06:38:05.6049280Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/__init__.py' 2025-07-17T06:38:05.6050970Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/_test_ops_common.py' 2025-07-17T06:38:05.6052050Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/_test_st_common.py' 2025-07-17T06:38:05.6052940Z adding 'torch/testing/_internal/distributed/_tensor/__init__.py' 2025-07-17T06:38:05.6058060Z adding 'torch/testing/_internal/distributed/_tensor/common_dtensor.py' 2025-07-17T06:38:05.6059040Z adding 'torch/testing/_internal/distributed/nn/__init__.py' 2025-07-17T06:38:05.6059990Z adding 'torch/testing/_internal/distributed/nn/api/__init__.py' 2025-07-17T06:38:05.6064100Z adding 'torch/testing/_internal/distributed/nn/api/remote_module_test.py' 2025-07-17T06:38:05.6064910Z adding 'torch/testing/_internal/distributed/rpc/__init__.py' 2025-07-17T06:38:05.6082180Z adding 'torch/testing/_internal/distributed/rpc/dist_autograd_test.py' 2025-07-17T06:38:05.6085020Z adding 'torch/testing/_internal/distributed/rpc/dist_optimizer_test.py' 2025-07-17T06:38:05.6087520Z adding 'torch/testing/_internal/distributed/rpc/faulty_agent_rpc_test.py' 2025-07-17T06:38:05.6088510Z adding 'torch/testing/_internal/distributed/rpc/faulty_rpc_agent_test_fixture.py' 2025-07-17T06:38:05.6089870Z adding 'torch/testing/_internal/distributed/rpc/rpc_agent_test_fixture.py' 2025-07-17T06:38:05.6126510Z adding 'torch/testing/_internal/distributed/rpc/rpc_test.py' 2025-07-17T06:38:05.6128680Z adding 'torch/testing/_internal/distributed/rpc/tensorpipe_rpc_agent_test_fixture.py' 2025-07-17T06:38:05.6129700Z adding 'torch/testing/_internal/distributed/rpc/examples/__init__.py' 2025-07-17T06:38:05.6131270Z adding 'torch/testing/_internal/distributed/rpc/examples/parameter_server_test.py' 2025-07-17T06:38:05.6134000Z adding 'torch/testing/_internal/distributed/rpc/examples/reinforcement_learning_rpc_test.py' 2025-07-17T06:38:05.6134630Z adding 'torch/testing/_internal/distributed/rpc/jit/__init__.py' 2025-07-17T06:38:05.6136260Z adding 'torch/testing/_internal/distributed/rpc/jit/dist_autograd_test.py' 2025-07-17T06:38:05.6144610Z adding 'torch/testing/_internal/distributed/rpc/jit/rpc_test.py' 2025-07-17T06:38:05.6146720Z adding 'torch/testing/_internal/distributed/rpc/jit/rpc_test_faulty.py' 2025-07-17T06:38:05.6147580Z adding 'torch/testing/_internal/generated/__init__.py' 2025-07-17T06:38:05.6180190Z adding 'torch/testing/_internal/generated/annotated_fn_args.py' 2025-07-17T06:38:05.6183650Z adding 'torch/testing/_internal/opinfo/__init__.py' 2025-07-17T06:38:05.6209950Z adding 'torch/testing/_internal/opinfo/core.py' 2025-07-17T06:38:05.6212380Z adding 'torch/testing/_internal/opinfo/refs.py' 2025-07-17T06:38:05.6215120Z adding 'torch/testing/_internal/opinfo/utils.py' 2025-07-17T06:38:05.6216140Z adding 'torch/testing/_internal/opinfo/definitions/__init__.py' 2025-07-17T06:38:05.6221600Z adding 'torch/testing/_internal/opinfo/definitions/_masked.py' 2025-07-17T06:38:05.6224800Z adding 'torch/testing/_internal/opinfo/definitions/fft.py' 2025-07-17T06:38:05.6237070Z adding 'torch/testing/_internal/opinfo/definitions/linalg.py' 2025-07-17T06:38:05.6248110Z adding 'torch/testing/_internal/opinfo/definitions/nested.py' 2025-07-17T06:38:05.6250840Z adding 'torch/testing/_internal/opinfo/definitions/signal.py' 2025-07-17T06:38:05.6255860Z adding 'torch/testing/_internal/opinfo/definitions/sparse.py' 2025-07-17T06:38:05.6259240Z adding 'torch/testing/_internal/opinfo/definitions/special.py' 2025-07-17T06:38:05.6260230Z adding 'torch/testing/_internal/optests/__init__.py' 2025-07-17T06:38:05.6262630Z adding 'torch/testing/_internal/optests/aot_autograd.py' 2025-07-17T06:38:05.6264250Z adding 'torch/testing/_internal/optests/autograd_registration.py' 2025-07-17T06:38:05.6265050Z adding 'torch/testing/_internal/optests/fake_tensor.py' 2025-07-17T06:38:05.6272120Z adding 'torch/testing/_internal/optests/generate_tests.py' 2025-07-17T06:38:05.6273520Z adding 'torch/testing/_internal/optests/make_fx.py' 2025-07-17T06:38:05.6274550Z adding 'torch/testing/_internal/test_module/__init__.py' 2025-07-17T06:38:05.6275330Z adding 'torch/testing/_internal/test_module/future_div.py' 2025-07-17T06:38:05.6276160Z adding 'torch/testing/_internal/test_module/no_future_div.py' 2025-07-17T06:38:05.6278670Z adding 'torch/utils/__init__.py' 2025-07-17T06:38:05.6279830Z adding 'torch/utils/_appending_byte_serializer.py' 2025-07-17T06:38:05.6281820Z adding 'torch/utils/_backport_slots.py' 2025-07-17T06:38:05.6288020Z adding 'torch/utils/_config_module.py' 2025-07-17T06:38:05.6289080Z adding 'torch/utils/_config_typing.pyi' 2025-07-17T06:38:05.6291850Z adding 'torch/utils/_content_store.py' 2025-07-17T06:38:05.6293410Z adding 'torch/utils/_contextlib.py' 2025-07-17T06:38:05.6294500Z adding 'torch/utils/_cpp_embed_headers.py' 2025-07-17T06:38:05.6295810Z adding 'torch/utils/_cpp_extension_versioner.py' 2025-07-17T06:38:05.6302370Z adding 'torch/utils/_cxx_pytree.py' 2025-07-17T06:38:05.6303570Z adding 'torch/utils/_device.py' 2025-07-17T06:38:05.6304670Z adding 'torch/utils/_dtype_abbrs.py' 2025-07-17T06:38:05.6305590Z adding 'torch/utils/_exposed_in.py' 2025-07-17T06:38:05.6306620Z adding 'torch/utils/_filelock.py' 2025-07-17T06:38:05.6307770Z adding 'torch/utils/_foreach_utils.py' 2025-07-17T06:38:05.6308980Z adding 'torch/utils/_functools.py' 2025-07-17T06:38:05.6311200Z adding 'torch/utils/_get_clean_triton.py' 2025-07-17T06:38:05.6311780Z adding 'torch/utils/_helion.py' 2025-07-17T06:38:05.6312760Z adding 'torch/utils/_import_utils.py' 2025-07-17T06:38:05.6313840Z adding 'torch/utils/_mode_utils.py' 2025-07-17T06:38:05.6315790Z adding 'torch/utils/_ordered_set.py' 2025-07-17T06:38:05.6322260Z adding 'torch/utils/_python_dispatch.py' 2025-07-17T06:38:05.6336410Z adding 'torch/utils/_pytree.py' 2025-07-17T06:38:05.6337770Z adding 'torch/utils/_stats.py' 2025-07-17T06:38:05.6338740Z adding 'torch/utils/_thunk.py' 2025-07-17T06:38:05.6341630Z adding 'torch/utils/_traceback.py' 2025-07-17T06:38:05.6342990Z adding 'torch/utils/_triton.py' 2025-07-17T06:38:05.6343860Z adding 'torch/utils/_typing_utils.py' 2025-07-17T06:38:05.6345070Z adding 'torch/utils/_zip.py' 2025-07-17T06:38:05.6349400Z adding 'torch/utils/backend_registration.py' 2025-07-17T06:38:05.6354100Z adding 'torch/utils/bundled_inputs.py' 2025-07-17T06:38:05.6370480Z adding 'torch/utils/checkpoint.py' 2025-07-17T06:38:05.6377090Z adding 'torch/utils/collect_env.py' 2025-07-17T06:38:05.6378110Z adding 'torch/utils/cpp_backtrace.py' 2025-07-17T06:38:05.6407000Z adding 'torch/utils/cpp_extension.py' 2025-07-17T06:38:05.6408270Z adding 'torch/utils/deterministic.py' 2025-07-17T06:38:05.6410570Z adding 'torch/utils/dlpack.py' 2025-07-17T06:38:05.6411500Z adding 'torch/utils/file_baton.py' 2025-07-17T06:38:05.6418230Z adding 'torch/utils/flop_counter.py' 2025-07-17T06:38:05.6420820Z adding 'torch/utils/hooks.py' 2025-07-17T06:38:05.6422730Z adding 'torch/utils/mkldnn.py' 2025-07-17T06:38:05.6424140Z adding 'torch/utils/mobile_optimizer.py' 2025-07-17T06:38:05.6424940Z adding 'torch/utils/model_zoo.py' 2025-07-17T06:38:05.6426910Z adding 'torch/utils/module_tracker.py' 2025-07-17T06:38:05.6428420Z adding 'torch/utils/show_pickle.py' 2025-07-17T06:38:05.6430730Z adding 'torch/utils/throughput_benchmark.py' 2025-07-17T06:38:05.6433350Z adding 'torch/utils/weak.py' 2025-07-17T06:38:05.6434460Z adding 'torch/utils/_strobelight/__init__.py' 2025-07-17T06:38:05.6437330Z adding 'torch/utils/_strobelight/cli_function_profiler.py' 2025-07-17T06:38:05.6438120Z adding 'torch/utils/_sympy/__init__.py' 2025-07-17T06:38:05.6449100Z adding 'torch/utils/_sympy/functions.py' 2025-07-17T06:38:05.6451490Z adding 'torch/utils/_sympy/interp.py' 2025-07-17T06:38:05.6453790Z adding 'torch/utils/_sympy/numbers.py' 2025-07-17T06:38:05.6457180Z adding 'torch/utils/_sympy/printers.py' 2025-07-17T06:38:05.6459750Z adding 'torch/utils/_sympy/reference.py' 2025-07-17T06:38:05.6460800Z adding 'torch/utils/_sympy/singleton_int.py' 2025-07-17T06:38:05.6462990Z adding 'torch/utils/_sympy/solve.py' 2025-07-17T06:38:05.6464260Z adding 'torch/utils/_sympy/symbol.py' 2025-07-17T06:38:05.6471760Z adding 'torch/utils/_sympy/value_ranges.py' 2025-07-17T06:38:05.6472800Z adding 'torch/utils/backcompat/__init__.py' 2025-07-17T06:38:05.6473860Z adding 'torch/utils/benchmark/__init__.py' 2025-07-17T06:38:05.6478880Z adding 'torch/utils/benchmark/examples/__init__.py' 2025-07-17T06:38:05.6479130Z adding 'torch/utils/benchmark/examples/compare.py' 2025-07-17T06:38:05.6479370Z adding 'torch/utils/benchmark/examples/fuzzer.py' 2025-07-17T06:38:05.6479620Z adding 'torch/utils/benchmark/examples/op_benchmark.py' 2025-07-17T06:38:05.6480060Z adding 'torch/utils/benchmark/examples/simple_timeit.py' 2025-07-17T06:38:05.6481610Z adding 'torch/utils/benchmark/examples/spectral_ops_fuzz_test.py' 2025-07-17T06:38:05.6482590Z adding 'torch/utils/benchmark/op_fuzzers/__init__.py' 2025-07-17T06:38:05.6483860Z adding 'torch/utils/benchmark/op_fuzzers/binary.py' 2025-07-17T06:38:05.6485140Z adding 'torch/utils/benchmark/op_fuzzers/sparse_binary.py' 2025-07-17T06:38:05.6486340Z adding 'torch/utils/benchmark/op_fuzzers/sparse_unary.py' 2025-07-17T06:38:05.6487600Z adding 'torch/utils/benchmark/op_fuzzers/spectral.py' 2025-07-17T06:38:05.6488760Z adding 'torch/utils/benchmark/op_fuzzers/unary.py' 2025-07-17T06:38:05.6489770Z adding 'torch/utils/benchmark/utils/__init__.py' 2025-07-17T06:38:05.6490750Z adding 'torch/utils/benchmark/utils/_stubs.py' 2025-07-17T06:38:05.6494280Z adding 'torch/utils/benchmark/utils/common.py' 2025-07-17T06:38:05.6497490Z adding 'torch/utils/benchmark/utils/compare.py' 2025-07-17T06:38:05.6499590Z adding 'torch/utils/benchmark/utils/compile.py' 2025-07-17T06:38:05.6501370Z adding 'torch/utils/benchmark/utils/cpp_jit.py' 2025-07-17T06:38:05.6505680Z adding 'torch/utils/benchmark/utils/fuzzer.py' 2025-07-17T06:38:05.6507250Z adding 'torch/utils/benchmark/utils/sparse_fuzzer.py' 2025-07-17T06:38:05.6508200Z adding 'torch/utils/benchmark/utils/timeit_template.cpp' 2025-07-17T06:38:05.6513110Z adding 'torch/utils/benchmark/utils/timer.py' 2025-07-17T06:38:05.6514100Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/__init__.py' 2025-07-17T06:38:05.6516190Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/callgrind.h' 2025-07-17T06:38:05.6516850Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/compat_bindings.cpp' 2025-07-17T06:38:05.6517940Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/timer_callgrind_template.cpp' 2025-07-17T06:38:05.6526220Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/timer_interface.py' 2025-07-17T06:38:05.6562020Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/valgrind.h' 2025-07-17T06:38:05.6564910Z adding 'torch/utils/bottleneck/__init__.py' 2025-07-17T06:38:05.6567120Z adding 'torch/utils/bottleneck/__main__.py' 2025-07-17T06:38:05.6569250Z adding 'torch/utils/data/__init__.py' 2025-07-17T06:38:05.6569820Z adding 'torch/utils/data/backward_compatibility.py' 2025-07-17T06:38:05.6588940Z adding 'torch/utils/data/dataloader.py' 2025-07-17T06:38:05.6593330Z adding 'torch/utils/data/dataset.py' 2025-07-17T06:38:05.6595480Z adding 'torch/utils/data/distributed.py' 2025-07-17T06:38:05.6596970Z adding 'torch/utils/data/graph.py' 2025-07-17T06:38:05.6598980Z adding 'torch/utils/data/graph_settings.py' 2025-07-17T06:38:05.6601830Z adding 'torch/utils/data/sampler.py' 2025-07-17T06:38:05.6603310Z adding 'torch/utils/data/_utils/__init__.py' 2025-07-17T06:38:05.6606760Z adding 'torch/utils/data/_utils/collate.py' 2025-07-17T06:38:05.6607680Z adding 'torch/utils/data/_utils/fetch.py' 2025-07-17T06:38:05.6609160Z adding 'torch/utils/data/_utils/pin_memory.py' 2025-07-17T06:38:05.6610740Z adding 'torch/utils/data/_utils/signal_handling.py' 2025-07-17T06:38:05.6614330Z adding 'torch/utils/data/_utils/worker.py' 2025-07-17T06:38:05.6615220Z adding 'torch/utils/data/datapipes/__init__.py' 2025-07-17T06:38:05.6617370Z adding 'torch/utils/data/datapipes/_decorator.py' 2025-07-17T06:38:05.6620400Z adding 'torch/utils/data/datapipes/_hook_iterator.py' 2025-07-17T06:38:05.6624190Z adding 'torch/utils/data/datapipes/_typing.py' 2025-07-17T06:38:05.6627360Z adding 'torch/utils/data/datapipes/datapipe.py' 2025-07-17T06:38:05.6633150Z adding 'torch/utils/data/datapipes/datapipe.pyi' 2025-07-17T06:38:05.6636270Z adding 'torch/utils/data/datapipes/gen_pyi.py' 2025-07-17T06:38:05.6637330Z adding 'torch/utils/data/datapipes/dataframe/__init__.py' 2025-07-17T06:38:05.6638510Z adding 'torch/utils/data/datapipes/dataframe/dataframe_wrapper.py' 2025-07-17T06:38:05.6641460Z adding 'torch/utils/data/datapipes/dataframe/dataframes.py' 2025-07-17T06:38:05.6642800Z adding 'torch/utils/data/datapipes/dataframe/datapipes.py' 2025-07-17T06:38:05.6643750Z adding 'torch/utils/data/datapipes/dataframe/structures.py' 2025-07-17T06:38:05.6645060Z adding 'torch/utils/data/datapipes/iter/__init__.py' 2025-07-17T06:38:05.6647640Z adding 'torch/utils/data/datapipes/iter/callable.py' 2025-07-17T06:38:05.6649810Z adding 'torch/utils/data/datapipes/iter/combinatorics.py' 2025-07-17T06:38:05.6654590Z adding 'torch/utils/data/datapipes/iter/combining.py' 2025-07-17T06:38:05.6655640Z adding 'torch/utils/data/datapipes/iter/filelister.py' 2025-07-17T06:38:05.6656930Z adding 'torch/utils/data/datapipes/iter/fileopener.py' 2025-07-17T06:38:05.6659830Z adding 'torch/utils/data/datapipes/iter/grouping.py' 2025-07-17T06:38:05.6661010Z adding 'torch/utils/data/datapipes/iter/routeddecoder.py' 2025-07-17T06:38:05.6662430Z adding 'torch/utils/data/datapipes/iter/selecting.py' 2025-07-17T06:38:05.6663710Z adding 'torch/utils/data/datapipes/iter/sharding.py' 2025-07-17T06:38:05.6665000Z adding 'torch/utils/data/datapipes/iter/streamreader.py' 2025-07-17T06:38:05.6666150Z adding 'torch/utils/data/datapipes/iter/utils.py' 2025-07-17T06:38:05.6667340Z adding 'torch/utils/data/datapipes/map/__init__.py' 2025-07-17T06:38:05.6668440Z adding 'torch/utils/data/datapipes/map/callable.py' 2025-07-17T06:38:05.6670870Z adding 'torch/utils/data/datapipes/map/combinatorics.py' 2025-07-17T06:38:05.6672090Z adding 'torch/utils/data/datapipes/map/combining.py' 2025-07-17T06:38:05.6673540Z adding 'torch/utils/data/datapipes/map/grouping.py' 2025-07-17T06:38:05.6674750Z adding 'torch/utils/data/datapipes/map/utils.py' 2025-07-17T06:38:05.6675740Z adding 'torch/utils/data/datapipes/utils/__init__.py' 2025-07-17T06:38:05.6679180Z adding 'torch/utils/data/datapipes/utils/common.py' 2025-07-17T06:38:05.6681990Z adding 'torch/utils/data/datapipes/utils/decoder.py' 2025-07-17T06:38:05.6683200Z adding 'torch/utils/data/datapipes/utils/snapshot.py' 2025-07-17T06:38:05.6684150Z adding 'torch/utils/hipify/__init__.py' 2025-07-17T06:38:05.6685220Z adding 'torch/utils/hipify/constants.py' 2025-07-17T06:38:05.6725620Z adding 'torch/utils/hipify/cuda_to_hip_mappings.py' 2025-07-17T06:38:05.6737490Z adding 'torch/utils/hipify/hipify_python.py' 2025-07-17T06:38:05.6738980Z adding 'torch/utils/hipify/version.py' 2025-07-17T06:38:05.6740000Z adding 'torch/utils/jit/__init__.py' 2025-07-17T06:38:05.6741540Z adding 'torch/utils/jit/log_extract.py' 2025-07-17T06:38:05.6745820Z adding 'torch/utils/model_dump/__init__.py' 2025-07-17T06:38:05.6746380Z adding 'torch/utils/model_dump/__main__.py' 2025-07-17T06:38:05.6750480Z adding 'torch/utils/model_dump/code.js' 2025-07-17T06:38:05.6751320Z adding 'torch/utils/model_dump/htm.mjs' 2025-07-17T06:38:05.6754310Z adding 'torch/utils/model_dump/preact.mjs' 2025-07-17T06:38:05.6754970Z adding 'torch/utils/model_dump/skeleton.html' 2025-07-17T06:38:05.6755890Z adding 'torch/utils/serialization/__init__.py' 2025-07-17T06:38:05.6756780Z adding 'torch/utils/serialization/config.py' 2025-07-17T06:38:05.6757920Z adding 'torch/utils/tensorboard/__init__.py' 2025-07-17T06:38:05.6758860Z adding 'torch/utils/tensorboard/_convert_np.py' 2025-07-17T06:38:05.6760140Z adding 'torch/utils/tensorboard/_embedding.py' 2025-07-17T06:38:05.6761210Z adding 'torch/utils/tensorboard/_onnx_graph.py' 2025-07-17T06:38:05.6762320Z adding 'torch/utils/tensorboard/_proto_graph.py' 2025-07-17T06:38:05.6766000Z adding 'torch/utils/tensorboard/_pytorch_graph.py' 2025-07-17T06:38:05.6767310Z adding 'torch/utils/tensorboard/_utils.py' 2025-07-17T06:38:05.6774880Z adding 'torch/utils/tensorboard/summary.py' 2025-07-17T06:38:05.6783030Z adding 'torch/utils/tensorboard/writer.py' 2025-07-17T06:38:05.6784200Z adding 'torch/utils/viz/__init__.py' 2025-07-17T06:38:05.6788280Z adding 'torch/utils/viz/_cycles.py' 2025-07-17T06:38:05.6792480Z adding 'torch/xpu/__init__.py' 2025-07-17T06:38:05.6793280Z adding 'torch/xpu/_gpu_trace.py' 2025-07-17T06:38:05.6794320Z adding 'torch/xpu/_utils.py' 2025-07-17T06:38:05.6796380Z adding 'torch/xpu/memory.py' 2025-07-17T06:38:05.6797500Z adding 'torch/xpu/random.py' 2025-07-17T06:38:05.6799440Z adding 'torch/xpu/streams.py' 2025-07-17T06:38:05.6802220Z adding 'torchgen/__init__.py' 2025-07-17T06:38:05.6803240Z adding 'torchgen/code_template.py' 2025-07-17T06:38:05.6804580Z adding 'torchgen/context.py' 2025-07-17T06:38:05.6827430Z adding 'torchgen/gen.py' 2025-07-17T06:38:05.6833030Z adding 'torchgen/gen_aoti_c_shim.py' 2025-07-17T06:38:05.6837930Z adding 'torchgen/gen_backend_stubs.py' 2025-07-17T06:38:05.6845640Z adding 'torchgen/gen_functionalization_type.py' 2025-07-17T06:38:05.6850720Z adding 'torchgen/gen_lazy_tensor.py' 2025-07-17T06:38:05.6851920Z adding 'torchgen/gen_schema_utils.py' 2025-07-17T06:38:05.6854330Z adding 'torchgen/gen_vmap_plumbing.py' 2025-07-17T06:38:05.6855120Z adding 'torchgen/local.py' 2025-07-17T06:38:05.6881970Z adding 'torchgen/model.py' 2025-07-17T06:38:05.6889360Z adding 'torchgen/native_function_generation.py' 2025-07-17T06:38:05.6893840Z adding 'torchgen/utils.py' 2025-07-17T06:38:05.6894660Z adding 'torchgen/yaml_utils.py' 2025-07-17T06:38:05.6895840Z adding 'torchgen/aoti/__init__.py' 2025-07-17T06:38:05.6897800Z adding 'torchgen/aoti/fallback_ops.py' 2025-07-17T06:38:05.6898500Z adding 'torchgen/api/__init__.py' 2025-07-17T06:38:05.6907210Z adding 'torchgen/api/autograd.py' 2025-07-17T06:38:05.6911340Z adding 'torchgen/api/cpp.py' 2025-07-17T06:38:05.6912510Z adding 'torchgen/api/dispatcher.py' 2025-07-17T06:38:05.6914840Z adding 'torchgen/api/functionalization.py' 2025-07-17T06:38:05.6918790Z adding 'torchgen/api/lazy.py' 2025-07-17T06:38:05.6919540Z adding 'torchgen/api/meta.py' 2025-07-17T06:38:05.6921430Z adding 'torchgen/api/native.py' 2025-07-17T06:38:05.6934150Z adding 'torchgen/api/python.py' 2025-07-17T06:38:05.6936280Z adding 'torchgen/api/structured.py' 2025-07-17T06:38:05.6939910Z adding 'torchgen/api/translate.py' 2025-07-17T06:38:05.6941680Z adding 'torchgen/api/ufunc.py' 2025-07-17T06:38:05.6944140Z adding 'torchgen/api/unboxing.py' 2025-07-17T06:38:05.6944990Z adding 'torchgen/api/types/__init__.py' 2025-07-17T06:38:05.6948510Z adding 'torchgen/api/types/signatures.py' 2025-07-17T06:38:05.6950110Z adding 'torchgen/api/types/types.py' 2025-07-17T06:38:05.6952350Z adding 'torchgen/api/types/types_base.py' 2025-07-17T06:38:05.6953330Z adding 'torchgen/dest/__init__.py' 2025-07-17T06:38:05.6959250Z adding 'torchgen/dest/lazy_ir.py' 2025-07-17T06:38:05.6960200Z adding 'torchgen/dest/lazy_ts_lowering.py' 2025-07-17T06:38:05.6961460Z adding 'torchgen/dest/native_functions.py' 2025-07-17T06:38:05.6969810Z adding 'torchgen/dest/register_dispatch_key.py' 2025-07-17T06:38:05.6973930Z adding 'torchgen/dest/ufunc.py' 2025-07-17T06:38:05.6974690Z adding 'torchgen/operator_versions/__init__.py' 2025-07-17T06:38:05.6977620Z adding 'torchgen/operator_versions/gen_mobile_upgraders.py' 2025-07-17T06:38:05.6978240Z adding 'torchgen/operator_versions/gen_mobile_upgraders_constant.py' 2025-07-17T06:38:05.7052140Z adding 'torchgen/packaged/ATen/native/native_functions.yaml' 2025-07-17T06:38:05.7056440Z adding 'torchgen/packaged/ATen/native/tags.yaml' 2025-07-17T06:38:05.7058010Z adding 'torchgen/packaged/ATen/templates/ATenOpList.cpp' 2025-07-17T06:38:05.7059160Z adding 'torchgen/packaged/ATen/templates/CompositeViewCopyKernels.cpp' 2025-07-17T06:38:05.7060100Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunction.h' 2025-07-17T06:38:05.7061210Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunctions.h' 2025-07-17T06:38:05.7062200Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunctions_inl.h' 2025-07-17T06:38:05.7063060Z adding 'torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.cpp' 2025-07-17T06:38:05.7063920Z adding 'torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.h' 2025-07-17T06:38:05.7064730Z adding 'torchgen/packaged/ATen/templates/Function.h' 2025-07-17T06:38:05.7065740Z adding 'torchgen/packaged/ATen/templates/FunctionalInverses.h' 2025-07-17T06:38:05.7067080Z adding 'torchgen/packaged/ATen/templates/Functions.cpp' 2025-07-17T06:38:05.7068530Z adding 'torchgen/packaged/ATen/templates/Functions.h' 2025-07-17T06:38:05.7069450Z adding 'torchgen/packaged/ATen/templates/LazyIr.h' 2025-07-17T06:38:05.7070250Z adding 'torchgen/packaged/ATen/templates/LazyNonNativeIr.h' 2025-07-17T06:38:05.7071180Z adding 'torchgen/packaged/ATen/templates/MethodOperators.h' 2025-07-17T06:38:05.7075530Z adding 'torchgen/packaged/ATen/templates/NativeFunction.h' 2025-07-17T06:38:05.7075840Z adding 'torchgen/packaged/ATen/templates/NativeFunctions.h' 2025-07-17T06:38:05.7076140Z adding 'torchgen/packaged/ATen/templates/NativeMetaFunction.h' 2025-07-17T06:38:05.7076480Z adding 'torchgen/packaged/ATen/templates/NativeMetaFunctions.h' 2025-07-17T06:38:05.7076760Z adding 'torchgen/packaged/ATen/templates/Operator.h' 2025-07-17T06:38:05.7077020Z adding 'torchgen/packaged/ATen/templates/Operators.cpp' 2025-07-17T06:38:05.7077520Z adding 'torchgen/packaged/ATen/templates/Operators.h' 2025-07-17T06:38:05.7078370Z adding 'torchgen/packaged/ATen/templates/RedispatchFunctions.cpp' 2025-07-17T06:38:05.7079270Z adding 'torchgen/packaged/ATen/templates/RedispatchFunctions.h' 2025-07-17T06:38:05.7080200Z adding 'torchgen/packaged/ATen/templates/RegisterBackendSelect.cpp' 2025-07-17T06:38:05.7081200Z adding 'torchgen/packaged/ATen/templates/RegisterCodegenUnboxedKernels.cpp' 2025-07-17T06:38:05.7082070Z adding 'torchgen/packaged/ATen/templates/RegisterDispatchDefinitions.ini' 2025-07-17T06:38:05.7082990Z adding 'torchgen/packaged/ATen/templates/RegisterDispatchKey.cpp' 2025-07-17T06:38:05.7084320Z adding 'torchgen/packaged/ATen/templates/RegisterFunctionalization.cpp' 2025-07-17T06:38:05.7085100Z adding 'torchgen/packaged/ATen/templates/RegisterSchema.cpp' 2025-07-17T06:38:05.7085900Z adding 'torchgen/packaged/ATen/templates/RegistrationDeclarations.h' 2025-07-17T06:38:05.7092780Z adding 'torchgen/packaged/ATen/templates/TensorBody.h' 2025-07-17T06:38:05.7093750Z adding 'torchgen/packaged/ATen/templates/TensorMethods.cpp' 2025-07-17T06:38:05.7094590Z adding 'torchgen/packaged/ATen/templates/UfuncCPU.cpp' 2025-07-17T06:38:05.7095440Z adding 'torchgen/packaged/ATen/templates/UfuncCPUKernel.cpp' 2025-07-17T06:38:05.7096290Z adding 'torchgen/packaged/ATen/templates/UfuncCUDA.cu' 2025-07-17T06:38:05.7097170Z adding 'torchgen/packaged/ATen/templates/UnboxingFunctions.cpp' 2025-07-17T06:38:05.7098140Z adding 'torchgen/packaged/ATen/templates/UnboxingFunctions.h' 2025-07-17T06:38:05.7099070Z adding 'torchgen/packaged/ATen/templates/aten_interned_strings.h' 2025-07-17T06:38:05.7099800Z adding 'torchgen/packaged/ATen/templates/enum_tag.h' 2025-07-17T06:38:05.7100920Z adding 'torchgen/packaged/autograd/BUILD.bazel' 2025-07-17T06:38:05.7101700Z adding 'torchgen/packaged/autograd/README.md' 2025-07-17T06:38:05.7102440Z adding 'torchgen/packaged/autograd/__init__.py' 2025-07-17T06:38:05.7103260Z adding 'torchgen/packaged/autograd/build.bzl' 2025-07-17T06:38:05.7104150Z adding 'torchgen/packaged/autograd/context.py' 2025-07-17T06:38:05.7105410Z adding 'torchgen/packaged/autograd/deprecated.yaml' 2025-07-17T06:38:05.7135010Z adding 'torchgen/packaged/autograd/derivatives.yaml' 2025-07-17T06:38:05.7138000Z adding 'torchgen/packaged/autograd/gen_annotated_fn_args.py' 2025-07-17T06:38:05.7139220Z adding 'torchgen/packaged/autograd/gen_autograd.py' 2025-07-17T06:38:05.7145890Z adding 'torchgen/packaged/autograd/gen_autograd_functions.py' 2025-07-17T06:38:05.7151090Z adding 'torchgen/packaged/autograd/gen_inplace_or_view_type.py' 2025-07-17T06:38:05.7160720Z adding 'torchgen/packaged/autograd/gen_python_functions.py' 2025-07-17T06:38:05.7165040Z adding 'torchgen/packaged/autograd/gen_trace_type.py' 2025-07-17T06:38:05.7166510Z adding 'torchgen/packaged/autograd/gen_variable_factories.py' 2025-07-17T06:38:05.7183400Z adding 'torchgen/packaged/autograd/gen_variable_type.py' 2025-07-17T06:38:05.7186680Z adding 'torchgen/packaged/autograd/gen_view_funcs.py' 2025-07-17T06:38:05.7195290Z adding 'torchgen/packaged/autograd/load_derivatives.py' 2025-07-17T06:38:05.7196730Z adding 'torchgen/packaged/autograd/templates/ADInplaceOrViewType.cpp' 2025-07-17T06:38:05.7197810Z adding 'torchgen/packaged/autograd/templates/Functions.cpp' 2025-07-17T06:38:05.7198890Z adding 'torchgen/packaged/autograd/templates/Functions.h' 2025-07-17T06:38:05.7199870Z adding 'torchgen/packaged/autograd/templates/TraceType.cpp' 2025-07-17T06:38:05.7201000Z adding 'torchgen/packaged/autograd/templates/VariableType.cpp' 2025-07-17T06:38:05.7202190Z adding 'torchgen/packaged/autograd/templates/VariableType.h' 2025-07-17T06:38:05.7202860Z adding 'torchgen/packaged/autograd/templates/ViewFuncs.cpp' 2025-07-17T06:38:05.7203700Z adding 'torchgen/packaged/autograd/templates/ViewFuncs.h' 2025-07-17T06:38:05.7204540Z adding 'torchgen/packaged/autograd/templates/annotated_fn_args.py.in' 2025-07-17T06:38:05.7205430Z adding 'torchgen/packaged/autograd/templates/python_enum_tag.cpp' 2025-07-17T06:38:05.7206520Z adding 'torchgen/packaged/autograd/templates/python_fft_functions.cpp' 2025-07-17T06:38:05.7207470Z adding 'torchgen/packaged/autograd/templates/python_functions.cpp' 2025-07-17T06:38:05.7208270Z adding 'torchgen/packaged/autograd/templates/python_functions.h' 2025-07-17T06:38:05.7209300Z adding 'torchgen/packaged/autograd/templates/python_linalg_functions.cpp' 2025-07-17T06:38:05.7210330Z adding 'torchgen/packaged/autograd/templates/python_nested_functions.cpp' 2025-07-17T06:38:05.7211620Z adding 'torchgen/packaged/autograd/templates/python_nn_functions.cpp' 2025-07-17T06:38:05.7212590Z adding 'torchgen/packaged/autograd/templates/python_return_types.cpp' 2025-07-17T06:38:05.7213390Z adding 'torchgen/packaged/autograd/templates/python_return_types.h' 2025-07-17T06:38:05.7214370Z adding 'torchgen/packaged/autograd/templates/python_sparse_functions.cpp' 2025-07-17T06:38:05.7215410Z adding 'torchgen/packaged/autograd/templates/python_special_functions.cpp' 2025-07-17T06:38:05.7216540Z adding 'torchgen/packaged/autograd/templates/python_torch_functions.cpp' 2025-07-17T06:38:05.7223830Z adding 'torchgen/packaged/autograd/templates/python_variable_methods.cpp' 2025-07-17T06:38:05.7225690Z adding 'torchgen/packaged/autograd/templates/variable_factories.h' 2025-07-17T06:38:05.7226540Z adding 'torchgen/selective_build/__init__.py' 2025-07-17T06:38:05.7228670Z adding 'torchgen/selective_build/operator.py' 2025-07-17T06:38:05.7231410Z adding 'torchgen/selective_build/selector.py' 2025-07-17T06:38:05.7232100Z adding 'torchgen/static_runtime/__init__.py' 2025-07-17T06:38:05.7234420Z adding 'torchgen/static_runtime/config.py' 2025-07-17T06:38:05.7236220Z adding 'torchgen/static_runtime/gen_static_runtime_ops.py' 2025-07-17T06:38:05.7241120Z adding 'torchgen/static_runtime/generator.py' 2025-07-17T06:38:05.7315240Z adding 'torch-2.9.0a0+gita38f433.dist-info/LICENSE' 2025-07-17T06:38:05.7323990Z adding 'torch-2.9.0a0+gita38f433.dist-info/METADATA' 2025-07-17T06:38:05.7329270Z adding 'torch-2.9.0a0+gita38f433.dist-info/NOTICE' 2025-07-17T06:38:05.7329730Z adding 'torch-2.9.0a0+gita38f433.dist-info/WHEEL' 2025-07-17T06:38:05.7330440Z adding 'torch-2.9.0a0+gita38f433.dist-info/entry_points.txt' 2025-07-17T06:38:05.7330950Z adding 'torch-2.9.0a0+gita38f433.dist-info/top_level.txt' 2025-07-17T06:38:05.7719180Z adding 'torch-2.9.0a0+gita38f433.dist-info/RECORD' 2025-07-17T06:38:05.8089740Z removing build/bdist.macosx-14.0-arm64/wheel 2025-07-17T06:38:06.3123490Z + which sccache 2025-07-17T06:38:06.3149360Z + print_sccache_stats 2025-07-17T06:38:06.3149570Z + echo 'PyTorch Build Statistics' 2025-07-17T06:38:06.3149770Z + sccache --show-stats 2025-07-17T06:38:06.3149940Z PyTorch Build Statistics 2025-07-17T06:38:06.3181740Z Compile requests 5272 2025-07-17T06:38:06.3182040Z Compile requests executed 4897 2025-07-17T06:38:06.3182240Z Cache hits 4873 2025-07-17T06:38:06.3182430Z Cache hits (C/C++) 4873 2025-07-17T06:38:06.3182620Z Cache misses 1 2025-07-17T06:38:06.3182810Z Cache misses (C/C++) 1 2025-07-17T06:38:06.3182990Z Cache timeouts 0 2025-07-17T06:38:06.3188410Z Cache read errors 0 2025-07-17T06:38:06.3188630Z Forced recaches 0 2025-07-17T06:38:06.3188820Z Cache write errors 0 2025-07-17T06:38:06.3189010Z Compilation failures 2 2025-07-17T06:38:06.3189200Z Cache errors 21 2025-07-17T06:38:06.3189390Z Cache errors (C/C++) 21 2025-07-17T06:38:06.3189820Z Non-cacheable compilations 0 2025-07-17T06:38:06.3190020Z Non-cacheable calls 283 2025-07-17T06:38:06.3190220Z Non-compilation calls 92 2025-07-17T06:38:06.3190430Z Unsupported compiler calls 0 2025-07-17T06:38:06.3190630Z Average cache write 0.030 s 2025-07-17T06:38:06.3190820Z Average compiler 0.856 s 2025-07-17T06:38:06.3191010Z Average cache read hit 0.000 s 2025-07-17T06:38:06.3191210Z Failed distributed compilations 0 2025-07-17T06:38:06.3191340Z 2025-07-17T06:38:06.3191390Z Non-cacheable reasons: 2025-07-17T06:38:06.3191550Z unknown source language 271 2025-07-17T06:38:06.3191730Z multiple input files 6 2025-07-17T06:38:06.3191900Z @ 6 2025-07-17T06:38:06.3192010Z 2025-07-17T06:38:06.3192250Z Cache location s3, name: ossci-compiler-cache-circleci-v2, prefix: /trunk/ 2025-07-17T06:38:06.3192530Z Version (client) 0.4.1 2025-07-17T06:38:06.3192770Z + [[ -n 46153706216 ]] 2025-07-17T06:38:06.3192930Z + sccache --show-stats --stats-format json 2025-07-17T06:38:06.3193110Z + jq .stats 2025-07-17T06:38:06.3844570Z + python tools/stats/export_test_times.py 2025-07-17T06:38:06.7037300Z Exporting test times from test-infra 2025-07-17T06:38:06.7038000Z Downloading https://raw.githubusercontent.com/pytorch/test-infra/generated-stats/stats/test-times.json to /Users/ec2-user/runner/_work/pytorch/pytorch/.additional_ci_files/test-times.json 2025-07-17T06:38:06.7039050Z Downloading https://raw.githubusercontent.com/pytorch/test-infra/generated-stats/stats/test-class-times.json to /Users/ec2-user/runner/_work/pytorch/pytorch/.additional_ci_files/test-class-times.json 2025-07-17T06:38:06.7103520Z + assert_git_not_dirty 2025-07-17T06:38:06.7103710Z + [[ macos-py3-arm64 != *rocm* ]] 2025-07-17T06:38:06.7103920Z + [[ macos-py3-arm64 != *xla* ]] 2025-07-17T06:38:06.7109880Z ++ git status --porcelain 2025-07-17T06:38:06.7110630Z ++ grep -v '?? third_party' 2025-07-17T06:38:07.3914250Z ++ true 2025-07-17T06:38:07.3915350Z + git_status= 2025-07-17T06:38:07.3915500Z + [[ -n '' ]] 2025-07-17T06:38:07.3915940Z + rm -rfv /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.O6KyizQevp 2025-07-17T06:38:07.3980110Z /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.O6KyizQevp/clang 2025-07-17T06:38:07.3980510Z /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.O6KyizQevp/clang++ 2025-07-17T06:38:07.3980870Z /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.O6KyizQevp 2025-07-17T06:38:07.4011620Z ##[group]Run zip -1 -r artifacts.zip dist/ build/.ninja_log build/compile_commands.json .additional_ci_files 2025-07-17T06:38:07.4012120Z zip -1 -r artifacts.zip dist/ build/.ninja_log build/compile_commands.json .additional_ci_files 2025-07-17T06:38:07.4332350Z shell: /bin/bash -e {0} 2025-07-17T06:38:07.4332500Z env: 2025-07-17T06:38:07.4332620Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-07-17T06:38:07.4332810Z SCCACHE_USE_GHA: false 2025-07-17T06:38:07.4333030Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1752734038 2025-07-17T06:38:07.4333300Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-07-17T06:38:07.4333510Z SCCACHE_S3_KEY_PREFIX: trunk 2025-07-17T06:38:07.4333650Z ##[endgroup] 2025-07-17T06:38:07.4575030Z adding: dist/ (stored 0%) 2025-07-17T06:38:08.8654880Z adding: dist/torch-2.9.0a0+gita38f433-cp312-cp312-macosx_11_0_arm64.whl (deflated 4%) 2025-07-17T06:38:08.8778950Z adding: build/.ninja_log (deflated 89%) 2025-07-17T06:38:08.9252280Z adding: build/compile_commands.json (deflated 97%) 2025-07-17T06:38:08.9252540Z adding: .additional_ci_files/ (stored 0%) 2025-07-17T06:38:08.9456990Z adding: .additional_ci_files/test-times.json (deflated 68%) 2025-07-17T06:38:09.0275920Z adding: .additional_ci_files/test-class-times.json (deflated 65%) 2025-07-17T06:38:09.0458100Z ##[group]Run actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 2025-07-17T06:38:09.0458410Z with: 2025-07-17T06:38:09.0458540Z name: macos-py3-arm64 2025-07-17T06:38:09.0458690Z retention-days: 14 2025-07-17T06:38:09.0458840Z if-no-files-found: error 2025-07-17T06:38:09.0459000Z path: artifacts.zip 2025-07-17T06:38:09.0459150Z compression-level: 6 2025-07-17T06:38:09.0459300Z overwrite: false 2025-07-17T06:38:09.0459440Z include-hidden-files: false 2025-07-17T06:38:09.0459610Z env: 2025-07-17T06:38:09.0459740Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-07-17T06:38:09.0459930Z SCCACHE_USE_GHA: false 2025-07-17T06:38:09.0460190Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1752734038 2025-07-17T06:38:09.0460470Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-07-17T06:38:09.0460690Z SCCACHE_S3_KEY_PREFIX: trunk 2025-07-17T06:38:09.0460840Z ##[endgroup] 2025-07-17T06:38:09.1775740Z With the provided path, there will be 1 file uploaded 2025-07-17T06:38:09.1778040Z Artifact name is valid! 2025-07-17T06:38:09.1778330Z Root directory input is valid! 2025-07-17T06:38:09.2653170Z Beginning upload of artifact content to blob storage 2025-07-17T06:38:09.6406790Z Uploaded bytes 8388608 2025-07-17T06:38:09.8056020Z Uploaded bytes 16777216 2025-07-17T06:38:09.8847210Z Uploaded bytes 25165824 2025-07-17T06:38:10.0439050Z Uploaded bytes 33554432 2025-07-17T06:38:10.1958170Z Uploaded bytes 41943040 2025-07-17T06:38:10.3536110Z Uploaded bytes 50331648 2025-07-17T06:38:10.5146900Z Uploaded bytes 58720256 2025-07-17T06:38:10.7236450Z Uploaded bytes 67108864 2025-07-17T06:38:10.8193410Z Uploaded bytes 70653767 2025-07-17T06:38:10.8404920Z Finished uploading artifact content to blob storage! 2025-07-17T06:38:10.8409010Z SHA256 digest of uploaded artifact zip is 6d45381d423937eca6bd3f9b244b81431c18532b7b40fb78315abce56be71843 2025-07-17T06:38:10.8411760Z Finalizing artifact upload 2025-07-17T06:38:10.9195610Z Artifact macos-py3-arm64.zip successfully finalized. Artifact ID 3551917746 2025-07-17T06:38:10.9199570Z Artifact macos-py3-arm64 has been successfully uploaded! Final size is 70653767 bytes. Artifact ID is 3551917746 2025-07-17T06:38:10.9238440Z Artifact download URL: https://github.com/pytorch/pytorch/actions/runs/16337959945/artifacts/3551917746 2025-07-17T06:38:10.9497790Z ##[group]Run actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 2025-07-17T06:38:10.9498640Z with: 2025-07-17T06:38:10.9499270Z name: sccache-stats-macos-py3-arm64-runattempt1-46153706216 2025-07-17T06:38:10.9500080Z retention-days: 14 2025-07-17T06:38:10.9500570Z if-no-files-found: warn 2025-07-17T06:38:10.9501080Z path: sccache-stats-*.json 2025-07-17T06:38:10.9501630Z compression-level: 6 2025-07-17T06:38:10.9502140Z overwrite: false 2025-07-17T06:38:10.9502600Z include-hidden-files: false 2025-07-17T06:38:10.9503070Z env: 2025-07-17T06:38:10.9503500Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-07-17T06:38:10.9504090Z SCCACHE_USE_GHA: false 2025-07-17T06:38:10.9504800Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1752734038 2025-07-17T06:38:10.9505720Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-07-17T06:38:10.9506440Z SCCACHE_S3_KEY_PREFIX: trunk 2025-07-17T06:38:10.9506990Z ##[endgroup] 2025-07-17T06:38:11.1014190Z With the provided path, there will be 1 file uploaded 2025-07-17T06:38:11.1016180Z Artifact name is valid! 2025-07-17T06:38:11.1016780Z Root directory input is valid! 2025-07-17T06:38:11.1635060Z Beginning upload of artifact content to blob storage 2025-07-17T06:38:11.2144060Z Uploaded bytes 528 2025-07-17T06:38:11.2322350Z Finished uploading artifact content to blob storage! 2025-07-17T06:38:11.2324020Z SHA256 digest of uploaded artifact zip is efb1029cc8e7cb5d85a9a33b9c669c5819cb2f9c1f980a6a12cb9dd38fda0809 2025-07-17T06:38:11.2324960Z Finalizing artifact upload 2025-07-17T06:38:11.2912730Z Artifact sccache-stats-macos-py3-arm64-runattempt1-46153706216.zip successfully finalized. Artifact ID 3551917791 2025-07-17T06:38:11.2914190Z Artifact sccache-stats-macos-py3-arm64-runattempt1-46153706216 has been successfully uploaded! Final size is 528 bytes. Artifact ID is 3551917791 2025-07-17T06:38:11.2927950Z Artifact download URL: https://github.com/pytorch/pytorch/actions/runs/16337959945/artifacts/3551917791 2025-07-17T06:38:11.3055540Z ##[group]Run pytorch/test-infra/.github/actions/check-disk-space@main 2025-07-17T06:38:11.3056050Z with: 2025-07-17T06:38:11.3056320Z minimum-available-space-in-gb: 6 2025-07-17T06:38:11.3056660Z env: 2025-07-17T06:38:11.3056910Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-07-17T06:38:11.3057260Z SCCACHE_USE_GHA: false 2025-07-17T06:38:11.3057710Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1752734038 2025-07-17T06:38:11.3058250Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-07-17T06:38:11.3058690Z SCCACHE_S3_KEY_PREFIX: trunk 2025-07-17T06:38:11.3059000Z ##[endgroup] 2025-07-17T06:38:11.3076480Z ##[group]Run echo "Print the available disk space for manual inspection" 2025-07-17T06:38:11.3077110Z echo "Print the available disk space for manual inspection" 2025-07-17T06:38:11.3077590Z df -h 2025-07-17T06:38:11.3077880Z  2025-07-17T06:38:11.3078130Z function check_disk_space() { 2025-07-17T06:38:11.3078480Z  set +e 2025-07-17T06:38:11.3078720Z  2025-07-17T06:38:11.3078990Z  # Set the minimum requirement space to 6GB 2025-07-17T06:38:11.3079520Z  MINIMUM_AVAILABLE_SPACE_IN_KB=$(($MINIMUM_AVAILABLE_SPACE_IN_GB * 1024 * 1024)) 2025-07-17T06:38:11.3079990Z  2025-07-17T06:38:11.3080270Z  # Use KB to avoid floating point warning like 3.1GB 2025-07-17T06:38:11.3080740Z  df -k | tr -s ' ' | cut -d' ' -f 4,9 | while read -r LINE; 2025-07-17T06:38:11.3081150Z  do 2025-07-17T06:38:11.3081430Z  AVAIL=$(echo $LINE | cut -f1 -d' ') 2025-07-17T06:38:11.3081800Z  MOUNT=$(echo $LINE | cut -f2 -d' ') 2025-07-17T06:38:11.3082120Z  2025-07-17T06:38:11.3082370Z  if [ "${MOUNT}" = "/" ]; then 2025-07-17T06:38:11.3082900Z  if [ "${AVAIL}" -lt "${MINIMUM_AVAILABLE_SPACE_IN_KB}" ]; then 2025-07-17T06:38:11.3083770Z  echo "Failure: There is only ${AVAIL}KB free space left in ${MOUNT}, which is less than the minimum requirement of ${MINIMUM_AVAILABLE_SPACE_IN_KB}KB for ${RUNNER_OS}" 2025-07-17T06:38:11.3084490Z  else 2025-07-17T06:38:11.3084950Z  echo "Success: There is ${AVAIL}KB free space left in ${MOUNT} for ${RUNNER_OS}, continue" 2025-07-17T06:38:11.3085450Z  fi 2025-07-17T06:38:11.3085690Z  fi 2025-07-17T06:38:11.3085950Z  done 2025-07-17T06:38:11.3086180Z  2025-07-17T06:38:11.3086380Z  set -e 2025-07-17T06:38:11.3098840Z } 2025-07-17T06:38:11.3099060Z  2025-07-17T06:38:11.3099340Z RESULT=$(check_disk_space) 2025-07-17T06:38:11.3099640Z echo "${RESULT}" 2025-07-17T06:38:11.3099880Z  2025-07-17T06:38:11.3100180Z if [[ "${RESULT}" == *Failure* && "${RUNNER_OS}" == "macOS" ]]; then 2025-07-17T06:38:11.3100970Z  # We can clean up /System/Library/Caches/com.apple.coresymbolicationd on MacOS to free up the space and this should free up enough space 2025-07-17T06:38:11.3101740Z  # https://github.com/pytorch/pytorch/issues/85440 2025-07-17T06:38:11.3102300Z  sudo rm "/System/Library/Caches/com.apple.coresymbolicationd/data" || true 2025-07-17T06:38:11.3103130Z  # Stop the daemon and launchctl will automatically start it again, thus accomplish a restart and free up the above file 2025-07-17T06:38:11.3103840Z  sudo launchctl stop com.apple.coresymbolicationd || true 2025-07-17T06:38:11.3104260Z  2025-07-17T06:38:11.3104510Z  # Clean up crash reports on the runner 2025-07-17T06:38:11.3105000Z  sudo rm -rf "/System/Volumes/Data/Library/Logs/CrashReporter" || true 2025-07-17T06:38:11.3105480Z  2025-07-17T06:38:11.3105770Z  # Also try to clean up torch.hub caching directory 2025-07-17T06:38:11.3106220Z  rm -rf "${HOME}/.cache/torch/hub" || true 2025-07-17T06:38:11.3106550Z  2025-07-17T06:38:11.3107110Z  # Purge conda 2025-07-17T06:38:11.3107410Z  conda clean -p -t -y || true 2025-07-17T06:38:11.3107770Z  # and pip cache 2025-07-17T06:38:11.3108080Z  pip cache purge || true 2025-07-17T06:38:11.3108380Z  2025-07-17T06:38:11.3108720Z  echo "Re-run disk space check for ${RUNNER_OS} after cleaning up" 2025-07-17T06:38:11.3109190Z  # Re-run the check 2025-07-17T06:38:11.3109480Z  RESULT=$(check_disk_space) 2025-07-17T06:38:11.3109790Z  echo "${RESULT}" 2025-07-17T06:38:11.3110080Z fi 2025-07-17T06:38:11.3110300Z  2025-07-17T06:38:11.3110560Z if [[ "${RESULT}" == *Failure* ]]; then 2025-07-17T06:38:11.3110890Z  df -h 2025-07-17T06:38:11.3111110Z  2025-07-17T06:38:11.3111820Z  echo "Please help create an issue to PyTorch Release Engineering via https://github.com/pytorch/test-infra/issues and provide the link to the workflow run." 2025-07-17T06:38:11.3112630Z  exit 1 2025-07-17T06:38:11.3112880Z fi 2025-07-17T06:38:11.3137660Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-07-17T06:38:11.3138030Z env: 2025-07-17T06:38:11.3138260Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-07-17T06:38:11.3138560Z SCCACHE_USE_GHA: false 2025-07-17T06:38:11.3138950Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1752734038 2025-07-17T06:38:11.3139410Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-07-17T06:38:11.3139780Z SCCACHE_S3_KEY_PREFIX: trunk 2025-07-17T06:38:11.3140100Z MINIMUM_AVAILABLE_SPACE_IN_GB: 6 2025-07-17T06:38:11.3140400Z ##[endgroup] 2025-07-17T06:38:11.3315190Z Print the available disk space for manual inspection 2025-07-17T06:38:11.3341600Z Filesystem Size Used Avail Capacity iused ifree %iused Mounted on 2025-07-17T06:38:11.3342220Z /dev/disk5s2s1 256Gi 9.5Gi 166Gi 6% 404k 1.7G 0% / 2025-07-17T06:38:11.3342630Z devfs 217Ki 217Ki 0Bi 100% 752 0 100% /dev 2025-07-17T06:38:11.3342990Z /dev/disk5s5 256Gi 1.0Gi 166Gi 1% 1 1.7G 0% /System/Volumes/VM 2025-07-17T06:38:11.3343430Z /dev/disk5s3 256Gi 5.7Gi 166Gi 4% 1.0k 1.7G 0% /System/Volumes/Preboot 2025-07-17T06:38:11.3343870Z /dev/disk1s2 500Mi 6.0Mi 387Mi 2% 1 4.0M 0% /System/Volumes/xarts 2025-07-17T06:38:11.3344350Z /dev/disk1s1 500Mi 53Mi 387Mi 13% 61 4.0M 0% /System/Volumes/iSCPreboot 2025-07-17T06:38:11.3344780Z /dev/disk1s3 500Mi 1.1Mi 387Mi 1% 51 4.0M 0% /System/Volumes/Hardware 2025-07-17T06:38:11.3345200Z /dev/disk5s1 256Gi 73Gi 166Gi 31% 2.9M 1.7G 0% /System/Volumes/Data 2025-07-17T06:38:11.3345620Z map auto_home 0Bi 0Bi 0Bi 100% 0 0 - /System/Volumes/Data/home 2025-07-17T06:38:11.3346060Z /dev/disk3s4 228Gi 120Ki 210Gi 1% 18 2.2G 0% /private/tmp/tmp-mount-vPh67o 2025-07-17T06:38:11.3346500Z map auto_home 0Bi 0Bi 0Bi 100% 0 0 - /System/Volumes/Data/home 2025-07-17T06:38:11.3766640Z Success: There is 173977548KB free space left in / for macOS, continue 2025-07-17T06:38:11.3798150Z Post job cleanup. 2025-07-17T06:38:11.4113640Z Removing virtual environment at /Users/ec2-user/runner/_work/_temp/venv-3.12-1752734038 2025-07-17T06:38:14.4527470Z Post job cleanup. 2025-07-17T06:38:14.4564050Z Post job cleanup. 2025-07-17T06:38:14.5231060Z [command]/usr/bin/git version 2025-07-17T06:38:14.5298820Z git version 2.39.3 (Apple Git-146) 2025-07-17T06:38:14.5317420Z Copying '/Users/ec2-user/.gitconfig' to '/Users/ec2-user/runner/_work/_temp/765ffd45-68d7-4c7c-b831-d58743c668cc/.gitconfig' 2025-07-17T06:38:14.5322770Z Temporarily overriding HOME='/Users/ec2-user/runner/_work/_temp/765ffd45-68d7-4c7c-b831-d58743c668cc' before making global git config changes 2025-07-17T06:38:14.5323410Z Adding repository directory to the temporary git global config as a safe directory 2025-07-17T06:38:14.5329830Z [command]/usr/bin/git config --global --add safe.directory /Users/ec2-user/runner/_work/pytorch/pytorch 2025-07-17T06:38:14.5399030Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2025-07-17T06:38:14.5460210Z [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-07-17T06:38:14.6013960Z Entering 'android/libs/fbjni' 2025-07-17T06:38:14.6118320Z Entering 'third_party/FP16' 2025-07-17T06:38:14.6219330Z Entering 'third_party/FXdiv' 2025-07-17T06:38:14.6323800Z Entering 'third_party/NNPACK' 2025-07-17T06:38:14.6427120Z Entering 'third_party/NVTX' 2025-07-17T06:38:14.6525820Z Entering 'third_party/VulkanMemoryAllocator' 2025-07-17T06:38:14.6624560Z Entering 'third_party/XNNPACK' 2025-07-17T06:38:14.6729140Z Entering 'third_party/aiter' 2025-07-17T06:38:14.6827740Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-07-17T06:38:14.6930080Z Entering 'third_party/benchmark' 2025-07-17T06:38:14.7030420Z Entering 'third_party/composable_kernel' 2025-07-17T06:38:14.7132840Z Entering 'third_party/cpp-httplib' 2025-07-17T06:38:14.7234600Z Entering 'third_party/cpuinfo' 2025-07-17T06:38:14.7335970Z Entering 'third_party/cudnn_frontend' 2025-07-17T06:38:14.7440260Z Entering 'third_party/cutlass' 2025-07-17T06:38:14.7545480Z Entering 'third_party/fbgemm' 2025-07-17T06:38:14.7652270Z Entering 'third_party/fbgemm/external/asmjit' 2025-07-17T06:38:14.7761030Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-07-17T06:38:14.7864020Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-07-17T06:38:14.7963460Z Entering 'third_party/fbgemm/external/cutlass' 2025-07-17T06:38:14.8064730Z Entering 'third_party/fbgemm/external/googletest' 2025-07-17T06:38:14.8162700Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-07-17T06:38:14.8262870Z Entering 'third_party/fbgemm/external/json' 2025-07-17T06:38:14.8366330Z Entering 'third_party/flash-attention' 2025-07-17T06:38:14.8469810Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-07-17T06:38:14.8572200Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-07-17T06:38:14.8678990Z Entering 'third_party/flatbuffers' 2025-07-17T06:38:14.8787890Z Entering 'third_party/fmt' 2025-07-17T06:38:14.8890730Z Entering 'third_party/gemmlowp/gemmlowp' 2025-07-17T06:38:14.8992170Z Entering 'third_party/gloo' 2025-07-17T06:38:14.9092530Z Entering 'third_party/googletest' 2025-07-17T06:38:14.9192460Z Entering 'third_party/ideep' 2025-07-17T06:38:14.9290800Z Entering 'third_party/ideep/mkl-dnn' 2025-07-17T06:38:14.9394040Z Entering 'third_party/ittapi' 2025-07-17T06:38:14.9494820Z Entering 'third_party/kineto' 2025-07-17T06:38:14.9594130Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-07-17T06:38:14.9693570Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-07-17T06:38:14.9795560Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-07-17T06:38:14.9896490Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-07-17T06:38:14.9997790Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-07-17T06:38:15.0097010Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-07-17T06:38:15.0200820Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-07-17T06:38:15.0300860Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-07-17T06:38:15.0401650Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-07-17T06:38:15.0503290Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-07-17T06:38:15.0607250Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-07-17T06:38:15.0707790Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-07-17T06:38:15.0810570Z Entering 'third_party/kleidiai' 2025-07-17T06:38:15.0912930Z Entering 'third_party/mimalloc' 2025-07-17T06:38:15.1014350Z Entering 'third_party/nlohmann' 2025-07-17T06:38:15.1117220Z Entering 'third_party/onnx' 2025-07-17T06:38:15.1227050Z Entering 'third_party/onnx/third_party/pybind11' 2025-07-17T06:38:15.1334480Z Entering 'third_party/opentelemetry-cpp' 2025-07-17T06:38:15.1437610Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-07-17T06:38:15.1540550Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-07-17T06:38:15.1641490Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-07-17T06:38:15.1741890Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-07-17T06:38:15.1843630Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-07-17T06:38:15.1945660Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-07-17T06:38:15.2045610Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-07-17T06:38:15.2144350Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-07-17T06:38:15.2248020Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-07-17T06:38:15.2350520Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-07-17T06:38:15.2459970Z Entering 'third_party/pocketfft' 2025-07-17T06:38:15.2566000Z Entering 'third_party/protobuf' 2025-07-17T06:38:15.2667600Z Entering 'third_party/protobuf/third_party/benchmark' 2025-07-17T06:38:15.2771080Z Entering 'third_party/protobuf/third_party/googletest' 2025-07-17T06:38:15.2873720Z Entering 'third_party/psimd' 2025-07-17T06:38:15.2976400Z Entering 'third_party/pthreadpool' 2025-07-17T06:38:15.3077290Z Entering 'third_party/pybind11' 2025-07-17T06:38:15.3179760Z Entering 'third_party/python-peachpy' 2025-07-17T06:38:15.3280940Z Entering 'third_party/sleef' 2025-07-17T06:38:15.3383100Z Entering 'third_party/tensorpipe' 2025-07-17T06:38:15.3484570Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-07-17T06:38:15.3584680Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-07-17T06:38:15.3685190Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-07-17T06:38:15.3786560Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-07-17T06:38:15.3884710Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-07-17T06:38:15.4000520Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-07-17T06:38:15.4056570Z http.https://github.com/.extraheader 2025-07-17T06:38:15.4063130Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader 2025-07-17T06:38:15.4142740Z [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-07-17T06:38:15.4633130Z Entering 'android/libs/fbjni' 2025-07-17T06:38:15.4699680Z http.https://github.com/.extraheader 2025-07-17T06:38:15.4783410Z Entering 'third_party/FP16' 2025-07-17T06:38:15.4848310Z http.https://github.com/.extraheader 2025-07-17T06:38:15.4919730Z Entering 'third_party/FXdiv' 2025-07-17T06:38:15.4986020Z http.https://github.com/.extraheader 2025-07-17T06:38:15.5060650Z Entering 'third_party/NNPACK' 2025-07-17T06:38:15.5128370Z http.https://github.com/.extraheader 2025-07-17T06:38:15.5201750Z Entering 'third_party/NVTX' 2025-07-17T06:38:15.5268820Z http.https://github.com/.extraheader 2025-07-17T06:38:15.5336050Z Entering 'third_party/VulkanMemoryAllocator' 2025-07-17T06:38:15.5402710Z http.https://github.com/.extraheader 2025-07-17T06:38:15.5469700Z Entering 'third_party/XNNPACK' 2025-07-17T06:38:15.5536250Z http.https://github.com/.extraheader 2025-07-17T06:38:15.5608080Z Entering 'third_party/aiter' 2025-07-17T06:38:15.5674970Z http.https://github.com/.extraheader 2025-07-17T06:38:15.5740070Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-07-17T06:38:15.5806670Z http.https://github.com/.extraheader 2025-07-17T06:38:15.5877270Z Entering 'third_party/benchmark' 2025-07-17T06:38:15.5944770Z http.https://github.com/.extraheader 2025-07-17T06:38:15.6023550Z Entering 'third_party/composable_kernel' 2025-07-17T06:38:15.6090050Z http.https://github.com/.extraheader 2025-07-17T06:38:15.6158580Z Entering 'third_party/cpp-httplib' 2025-07-17T06:38:15.6226350Z http.https://github.com/.extraheader 2025-07-17T06:38:15.6292970Z Entering 'third_party/cpuinfo' 2025-07-17T06:38:15.6359640Z http.https://github.com/.extraheader 2025-07-17T06:38:15.6426790Z Entering 'third_party/cudnn_frontend' 2025-07-17T06:38:15.6493750Z http.https://github.com/.extraheader 2025-07-17T06:38:15.6561170Z Entering 'third_party/cutlass' 2025-07-17T06:38:15.6627980Z http.https://github.com/.extraheader 2025-07-17T06:38:15.6695980Z Entering 'third_party/fbgemm' 2025-07-17T06:38:15.6761610Z http.https://github.com/.extraheader 2025-07-17T06:38:15.6825410Z Entering 'third_party/fbgemm/external/asmjit' 2025-07-17T06:38:15.6890020Z http.https://github.com/.extraheader 2025-07-17T06:38:15.6961790Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-07-17T06:38:15.7025950Z http.https://github.com/.extraheader 2025-07-17T06:38:15.7099400Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-07-17T06:38:15.7164610Z http.https://github.com/.extraheader 2025-07-17T06:38:15.7235430Z Entering 'third_party/fbgemm/external/cutlass' 2025-07-17T06:38:15.7299490Z http.https://github.com/.extraheader 2025-07-17T06:38:15.7373240Z Entering 'third_party/fbgemm/external/googletest' 2025-07-17T06:38:15.7437760Z http.https://github.com/.extraheader 2025-07-17T06:38:15.7508850Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-07-17T06:38:15.7572840Z http.https://github.com/.extraheader 2025-07-17T06:38:15.7637020Z Entering 'third_party/fbgemm/external/json' 2025-07-17T06:38:15.7701350Z http.https://github.com/.extraheader 2025-07-17T06:38:15.7775230Z Entering 'third_party/flash-attention' 2025-07-17T06:38:15.7840420Z http.https://github.com/.extraheader 2025-07-17T06:38:15.7903640Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-07-17T06:38:15.7967570Z http.https://github.com/.extraheader 2025-07-17T06:38:15.8034300Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-07-17T06:38:15.8106000Z http.https://github.com/.extraheader 2025-07-17T06:38:15.8169650Z Entering 'third_party/flatbuffers' 2025-07-17T06:38:15.8235430Z http.https://github.com/.extraheader 2025-07-17T06:38:15.8307600Z Entering 'third_party/fmt' 2025-07-17T06:38:15.8372300Z http.https://github.com/.extraheader 2025-07-17T06:38:15.8436810Z Entering 'third_party/gemmlowp/gemmlowp' 2025-07-17T06:38:15.8501850Z http.https://github.com/.extraheader 2025-07-17T06:38:15.8566510Z Entering 'third_party/gloo' 2025-07-17T06:38:15.8630150Z http.https://github.com/.extraheader 2025-07-17T06:38:15.8701280Z Entering 'third_party/googletest' 2025-07-17T06:38:15.8765610Z http.https://github.com/.extraheader 2025-07-17T06:38:15.8836920Z Entering 'third_party/ideep' 2025-07-17T06:38:15.8901420Z http.https://github.com/.extraheader 2025-07-17T06:38:15.8965450Z Entering 'third_party/ideep/mkl-dnn' 2025-07-17T06:38:15.9029260Z http.https://github.com/.extraheader 2025-07-17T06:38:15.9104200Z Entering 'third_party/ittapi' 2025-07-17T06:38:15.9170200Z http.https://github.com/.extraheader 2025-07-17T06:38:15.9235410Z Entering 'third_party/kineto' 2025-07-17T06:38:15.9299410Z http.https://github.com/.extraheader 2025-07-17T06:38:15.9362910Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-07-17T06:38:15.9427210Z http.https://github.com/.extraheader 2025-07-17T06:38:15.9490880Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-07-17T06:38:15.9555240Z http.https://github.com/.extraheader 2025-07-17T06:38:15.9620770Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-07-17T06:38:15.9685140Z http.https://github.com/.extraheader 2025-07-17T06:38:15.9750310Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-07-17T06:38:15.9815020Z http.https://github.com/.extraheader 2025-07-17T06:38:15.9880180Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-07-17T06:38:15.9944490Z http.https://github.com/.extraheader 2025-07-17T06:38:16.0008040Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-07-17T06:38:16.0072210Z http.https://github.com/.extraheader 2025-07-17T06:38:16.0139620Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-07-17T06:38:16.0204310Z http.https://github.com/.extraheader 2025-07-17T06:38:16.0269710Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-07-17T06:38:16.0333830Z http.https://github.com/.extraheader 2025-07-17T06:38:16.0405080Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-07-17T06:38:16.0469650Z http.https://github.com/.extraheader 2025-07-17T06:38:16.0535280Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-07-17T06:38:16.0599850Z http.https://github.com/.extraheader 2025-07-17T06:38:16.0667350Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-07-17T06:38:16.0731740Z http.https://github.com/.extraheader 2025-07-17T06:38:16.0796490Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-07-17T06:38:16.0860420Z http.https://github.com/.extraheader 2025-07-17T06:38:16.0927240Z Entering 'third_party/kleidiai' 2025-07-17T06:38:16.0992290Z http.https://github.com/.extraheader 2025-07-17T06:38:16.1056960Z Entering 'third_party/mimalloc' 2025-07-17T06:38:16.1121300Z http.https://github.com/.extraheader 2025-07-17T06:38:16.1185910Z Entering 'third_party/nlohmann' 2025-07-17T06:38:16.1249880Z http.https://github.com/.extraheader 2025-07-17T06:38:16.1315580Z Entering 'third_party/onnx' 2025-07-17T06:38:16.1382460Z http.https://github.com/.extraheader 2025-07-17T06:38:16.1454520Z Entering 'third_party/onnx/third_party/pybind11' 2025-07-17T06:38:16.1524400Z http.https://github.com/.extraheader 2025-07-17T06:38:16.1593720Z Entering 'third_party/opentelemetry-cpp' 2025-07-17T06:38:16.1661640Z http.https://github.com/.extraheader 2025-07-17T06:38:16.1727620Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-07-17T06:38:16.1794310Z http.https://github.com/.extraheader 2025-07-17T06:38:16.1861360Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-07-17T06:38:16.1928070Z http.https://github.com/.extraheader 2025-07-17T06:38:16.1994770Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-07-17T06:38:16.2061120Z http.https://github.com/.extraheader 2025-07-17T06:38:16.2127740Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-07-17T06:38:16.2194390Z http.https://github.com/.extraheader 2025-07-17T06:38:16.2261590Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-07-17T06:38:16.2328840Z http.https://github.com/.extraheader 2025-07-17T06:38:16.2395670Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-07-17T06:38:16.2461860Z http.https://github.com/.extraheader 2025-07-17T06:38:16.2528920Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-07-17T06:38:16.2595220Z http.https://github.com/.extraheader 2025-07-17T06:38:16.2661160Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-07-17T06:38:16.2727180Z http.https://github.com/.extraheader 2025-07-17T06:38:16.2795900Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-07-17T06:38:16.2862530Z http.https://github.com/.extraheader 2025-07-17T06:38:16.2931950Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-07-17T06:38:16.2999380Z http.https://github.com/.extraheader 2025-07-17T06:38:16.3076150Z Entering 'third_party/pocketfft' 2025-07-17T06:38:16.3145980Z http.https://github.com/.extraheader 2025-07-17T06:38:16.3212980Z Entering 'third_party/protobuf' 2025-07-17T06:38:16.3279690Z http.https://github.com/.extraheader 2025-07-17T06:38:16.3344330Z Entering 'third_party/protobuf/third_party/benchmark' 2025-07-17T06:38:16.3408850Z http.https://github.com/.extraheader 2025-07-17T06:38:16.3473510Z Entering 'third_party/protobuf/third_party/googletest' 2025-07-17T06:38:16.3537440Z http.https://github.com/.extraheader 2025-07-17T06:38:16.3603430Z Entering 'third_party/psimd' 2025-07-17T06:38:16.3670300Z http.https://github.com/.extraheader 2025-07-17T06:38:16.3737100Z Entering 'third_party/pthreadpool' 2025-07-17T06:38:16.3804030Z http.https://github.com/.extraheader 2025-07-17T06:38:16.3877200Z Entering 'third_party/pybind11' 2025-07-17T06:38:16.3943940Z http.https://github.com/.extraheader 2025-07-17T06:38:16.4017710Z Entering 'third_party/python-peachpy' 2025-07-17T06:38:16.4084690Z http.https://github.com/.extraheader 2025-07-17T06:38:16.4151670Z Entering 'third_party/sleef' 2025-07-17T06:38:16.4218160Z http.https://github.com/.extraheader 2025-07-17T06:38:16.4292940Z Entering 'third_party/tensorpipe' 2025-07-17T06:38:16.4359370Z http.https://github.com/.extraheader 2025-07-17T06:38:16.4444400Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-07-17T06:38:16.4510350Z http.https://github.com/.extraheader 2025-07-17T06:38:16.4584070Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-07-17T06:38:16.4650300Z http.https://github.com/.extraheader 2025-07-17T06:38:16.4716500Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-07-17T06:38:16.4783020Z http.https://github.com/.extraheader 2025-07-17T06:38:16.4856550Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-07-17T06:38:16.4925300Z http.https://github.com/.extraheader 2025-07-17T06:38:16.4996240Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-07-17T06:38:16.5062980Z http.https://github.com/.extraheader 2025-07-17T06:38:16.5194260Z A job completed hook has been configured by the self-hosted runner administrator 2025-07-17T06:38:16.5230440Z ##[group]Run '/opt/runner_scripts/post-job.sh' 2025-07-17T06:38:16.5242460Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-07-17T06:38:16.5242670Z ##[endgroup] 2025-07-17T06:38:16.5482720Z + df -h 2025-07-17T06:38:16.5493810Z + Checking if runner needs to be terminated...ok 2025-07-17T06:38:16.5494130Z + Outputting disk space 2025-07-17T06:38:16.5494420Z Filesystem Size Used Avail Capacity iused ifree %iused Mounted on 2025-07-17T06:38:16.5494790Z /dev/disk5s2s1 256Gi 9.5Gi 167Gi 6% 404k 1.7G 0% / 2025-07-17T06:38:16.5495110Z devfs 217Ki 217Ki 0Bi 100% 752 0 100% /dev 2025-07-17T06:38:16.5495490Z /dev/disk5s5 256Gi 1.0Gi 167Gi 1% 1 1.7G 0% /System/Volumes/VM 2025-07-17T06:38:16.5495950Z /dev/disk5s3 256Gi 5.7Gi 167Gi 4% 1.0k 1.7G 0% /System/Volumes/Preboot 2025-07-17T06:38:16.5496360Z /dev/disk1s2 500Mi 6.0Mi 387Mi 2% 1 4.0M 0% /System/Volumes/xarts 2025-07-17T06:38:16.5496780Z /dev/disk1s1 500Mi 53Mi 387Mi 13% 61 4.0M 0% /System/Volumes/iSCPreboot 2025-07-17T06:38:16.5497210Z /dev/disk1s3 500Mi 1.1Mi 387Mi 1% 51 4.0M 0% /System/Volumes/Hardware 2025-07-17T06:38:16.5497590Z /dev/disk5s1 256Gi 72Gi 167Gi 31% 2.8M 1.7G 0% /System/Volumes/Data 2025-07-17T06:38:16.5497990Z map auto_home 0Bi 0Bi 0Bi 100% 0 0 - /System/Volumes/Data/home 2025-07-17T06:38:16.5498390Z /dev/disk3s4 228Gi 120Ki 210Gi 1% 18 2.2G 0% /private/tmp/tmp-mount-vPh67o 2025-07-17T06:38:16.5498790Z map auto_home 0Bi 0Bi 0Bi 100% 0 0 - /System/Volumes/Data/home 2025-07-17T06:38:16.5499110Z + Cleaning up old logs (Keep the latest 100) 2025-07-17T06:38:16.5502160Z + ls -t /var/log/post_job 2025-07-17T06:38:16.5503010Z + awk 'NR>100' 2025-07-17T06:38:16.5503780Z + xargs rm -fv 2025-07-17T06:38:16.7439250Z + Restoring SSH key to be the skeleton key 2025-07-17T06:38:16.7531740Z Evaluate and set job outputs 2025-07-17T06:38:16.7535060Z Set output 'build-outcome' 2025-07-17T06:38:16.7536870Z Set output 'test-matrix' 2025-07-17T06:38:16.7537350Z Cleaning up orphan processes 2025-07-17T06:38:16.9839340Z Terminate orphan process: pid (67024) (sccache)